/* ArtPawn — client site shared styles */
:root {
  --ink: #1F3550;
  --ink-2: #3A5070;
  --ink-3: #5A7090;
  --bordeaux: #B85042;
  --bordeaux-dark: #a04338;
  --terracota: #C68863;
  --ink-tint: #E8ECF2;
  --offwhite: #F5F6F7;
  --white: #FFFFFF;
  --gray-1: #E2E4E8;
  --gray-2: #B0B5BD;
  --gray-3: #6B7280;
  --gray-4: #4A5161;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--offwhite);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* ============ WORDMARK ============ */
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wordmark .name { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); }
.wordmark .name .dot { color: var(--bordeaux); }
.wordmark .desc { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gray-3); margin-top: 5px; }
.on-dark .wordmark .name { color: var(--offwhite); }
.on-dark .wordmark .desc { color: rgba(245,246,247,0.55); }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(31,53,80,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,246,247,0.08);
}
.site-header .bar {
  max-width: 1180px; margin: 0 auto; padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header nav { display: flex; align-items: center; gap: 32px; }
.site-header nav a {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(245,246,247,0.72);
  transition: color 0.2s ease;
}
.site-header nav a:hover { color: var(--offwhite); }
.btn-primary {
  display: inline-block; background: var(--bordeaux); color: var(--offwhite) !important;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px; letter-spacing: 0.01em;
  padding: 12px 26px; transition: background 0.2s ease; text-transform: none !important;
}
.btn-primary:hover { background: var(--bordeaux-dark); }
.btn-secondary {
  display: inline-block; border: 1px solid rgba(245,246,247,0.35); color: var(--offwhite);
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 15px;
  padding: 12px 26px; transition: border-color 0.2s ease;
}
.btn-secondary:hover { border-color: var(--offwhite); }
.nav-cta { font-size: 13px !important; padding: 10px 22px; }

/* ============ HERO / DARK SECTIONS ============ */
.dark { background: var(--ink); color: var(--offwhite); }
.hero { padding: 180px 0 110px; position: relative; overflow: hidden; }
.hero .vrules {
  position: absolute; top: 0; bottom: 0; right: 0; width: 320px;
  background-image: repeating-linear-gradient(90deg, rgba(245,246,247,0.05) 0, rgba(245,246,247,0.05) 1px, transparent 1px, transparent 28px);
  pointer-events: none;
}
.eyebrow {
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--terracota); display: block; margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Inter', sans-serif; font-weight: 200; font-size: 72px; line-height: 1.04;
  letter-spacing: -0.03em; color: var(--offwhite);
}
.hero h1 .dot { color: var(--bordeaux); font-weight: 400; }
.hero .tagline {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 27px; line-height: 1.35;
  color: var(--terracota); margin-top: 20px;
}
.hero .lead {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 19px; line-height: 1.65;
  color: rgba(245,246,247,0.78); max-width: 720px; margin-top: 22px; text-wrap: pretty;
}
.hero .cta-row { display: flex; gap: 18px; margin-top: 44px; flex-wrap: wrap; }

/* ============ SECTIONS ============ */
section.block { padding: 96px 0; }
section.block.white { background: var(--white); }
section.block.offwhite { background: var(--offwhite); }
section.block.dark { background: var(--ink); }
.section-id {
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--bordeaux); display: block; margin-bottom: 18px;
}
.dark .section-id { color: var(--terracota); }
h2.s-title {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 38px; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--ink); text-wrap: balance; margin-bottom: 22px;
}
.dark h2.s-title { color: var(--offwhite); }
p.body-p { font-size: 17.5px; line-height: 1.7; color: var(--gray-4); max-width: 780px; margin-bottom: 18px; text-wrap: pretty; }
.dark p.body-p { color: rgba(245,246,247,0.78); }
p.body-p strong { font-weight: 600; color: var(--ink); }
.lead-p { font-size: 18px; line-height: 1.7; color: var(--gray-4); max-width: 820px; margin-bottom: 40px; text-wrap: pretty; }

/* ============ KEY TERMS GRID ============ */
.terms-grid {
  border-top: 2px solid var(--bordeaux); border-bottom: 2px solid var(--bordeaux);
  background: var(--offwhite); padding: 28px; margin-top: 44px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.term-card { background: var(--white); padding: 26px 28px; }
.term-card .t-label { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-3); margin-bottom: 14px; }
.term-card .t-value { font-family: 'IBM Plex Mono', monospace; font-weight: 300; font-size: 38px; line-height: 1; color: var(--ink); }
.term-card .t-value .unit { color: var(--bordeaux); }
.term-card .t-note { font-size: 14.5px; line-height: 1.55; color: var(--gray-4); margin-top: 14px; }
.term-card.full { grid-column: 1 / -1; display: flex; align-items: baseline; gap: 30px; padding: 22px 28px; }
.term-card.full .t-label { margin-bottom: 0; min-width: 120px; }
.term-card.full .t-note { margin-top: 0; font-size: 16.5px; color: var(--ink); }
.footnote { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.06em; color: var(--gray-3); margin-top: 22px; }

/* ============ CARDS ============ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.card-grid.two { grid-template-columns: 1fr 1fr; }
.c-card { background: var(--white); border-top: 2px solid var(--terracota); padding: 28px 30px; }
.c-card h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 17.5px; color: var(--ink); margin-bottom: 10px; }
.c-card p { font-size: 15.5px; line-height: 1.6; color: var(--gray-4); }
.c-card.full { grid-column: 1 / -1; }

/* ============ NUMBERED FLOW (dark) ============ */
.flow-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 48px; }
.flow-step { border-top: 2px solid var(--terracota); padding-top: 20px; }
.flow-step .step-num { font-family: 'IBM Plex Mono', monospace; font-size: 26px; color: var(--terracota); margin-bottom: 12px; }
.flow-step .step-title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 18px; color: var(--offwhite); margin-bottom: 8px; }
.flow-step .step-desc { font-size: 15.5px; line-height: 1.65; color: rgba(245,246,247,0.75); }
.flow-step.full { grid-column: 1 / -1; }

/* ============ FIGURE TABLE ============ */
.fig-table { background: var(--ink-tint); padding: 40px 48px; margin-top: 44px; max-width: 720px; }
.fig-row { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 14px 0; border-bottom: 1px solid rgba(31,53,80,0.12); font-size: 16.5px; color: var(--gray-4); }
.fig-row .num { font-family: 'IBM Plex Mono', monospace; color: var(--ink); }
.fig-row.total { border-bottom: none; border-top: 2px solid var(--ink); margin-top: 8px; padding-top: 18px; color: var(--ink); font-weight: 500; }
.fig-row.total .num { color: var(--bordeaux); font-size: 24px; }

/* ============ TIMELINE ============ */
.tl-list { margin-top: 44px; }
.tl-item { display: grid; grid-template-columns: 60px 1fr 320px; gap: 24px; align-items: baseline; padding: 16px 0; border-top: 1px solid var(--gray-1); }
.tl-item:last-child { border-bottom: 1px solid var(--gray-1); }
.tl-item .n { font-family: 'IBM Plex Mono', monospace; font-size: 16px; color: var(--bordeaux); }
.tl-item .stage { font-weight: 500; font-size: 17px; color: var(--ink); }
.tl-item .time { font-family: 'IBM Plex Mono', monospace; font-size: 13.5px; letter-spacing: 0.04em; color: var(--gray-3); }

/* ============ LISTS ============ */
ul.bul { list-style: none; margin-top: 16px; }
ul.bul li { position: relative; padding-left: 24px; font-size: 16px; line-height: 1.6; color: var(--gray-4); margin-bottom: 12px; }
ul.bul li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; background: var(--terracota); }

/* ============ CALLOUT ============ */
.callout { background: var(--ink-tint); padding: 44px 48px; text-align: center; margin: 44px 0 0; }
.callout p { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 21px; line-height: 1.55; color: var(--ink); max-width: 760px; margin: 0 auto; font-style: italic; }

/* ============ DEFINITION ROWS ============ */
.def-row { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: baseline; padding: 22px 0; border-top: 1px solid var(--gray-1); }
.def-row:last-of-type { border-bottom: 1px solid var(--gray-1); }
.def-row .d-label { font-family: 'IBM Plex Mono', monospace; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bordeaux); }
.def-row p { font-size: 16.5px; line-height: 1.65; color: var(--gray-4); }

/* ============ MONO SUBHEAD ============ */
.mono-subhead { font-family: 'IBM Plex Mono', monospace; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bordeaux); margin: 40px 0 6px; }

/* ============ CLOSING CTA ============ */
.cta-section { padding: 110px 0; position: relative; overflow: hidden; }
.cta-section h2 { font-family: 'Inter', sans-serif; font-weight: 200; font-size: 52px; line-height: 1.1; letter-spacing: -0.025em; color: var(--offwhite); }
.cta-section h2 em { font-style: normal; color: var(--terracota); }
.cta-section .lead { font-weight: 300; font-size: 19px; line-height: 1.65; color: rgba(245,246,247,0.78); max-width: 720px; margin-top: 22px; }
.contact-line { margin-top: 44px; }
.contact-line .cl-label { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,246,247,0.5); margin-bottom: 10px; }
.contact-line .cl-val { font-size: 18px; color: var(--offwhite); }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); color: rgba(245,246,247,0.6); padding: 44px 0 36px; border-top: 1px solid rgba(245,246,247,0.1); }
.site-footer .foot-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.site-footer .foot-links { display: flex; gap: 26px; }
.site-footer .foot-links a { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,246,247,0.55); }
.site-footer .foot-links a:hover { color: var(--offwhite); }
.site-footer .disclaimer { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; line-height: 1.7; color: rgba(245,246,247,0.4); max-width: 880px; margin-top: 28px; }

/* ============ FORM ============ */
.form-card { background: var(--white); padding: 48px; max-width: 860px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-4); }
.field label .req { color: var(--bordeaux); }
.field input, .field select, .field textarea {
  font-family: 'Inter', sans-serif; font-size: 16px; color: var(--ink);
  background: var(--offwhite); border: 1px solid var(--gray-1); padding: 12px 14px;
  outline: none; border-radius: 0; -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B7280'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink-3); }
.field textarea { min-height: 120px; resize: vertical; }
/* Checkboxes must keep native rendering (the rule above strips it with appearance:none) */
.field input[type="checkbox"] {
  -webkit-appearance: auto; appearance: auto;
  width: 18px; height: 18px; min-width: 18px; padding: 0; margin: 0;
  border: 0; background: none; border-radius: 0;
  accent-color: var(--bordeaux); cursor: pointer; flex: 0 0 auto;
}
.work-toggle {
  display: flex; align-items: center; gap: 14px; cursor: pointer; user-select: none;
  border-top: 1px solid var(--gray-1); margin-top: 36px; padding-top: 28px;
}
.work-toggle .wt-box { width: 22px; height: 22px; border: 1px solid var(--gray-2); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--bordeaux); background: var(--offwhite); }
.work-toggle .wt-label { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 16.5px; color: var(--ink); }
.work-toggle .wt-hint { font-size: 14px; color: var(--gray-3); }
.work-fields { display: none; margin-top: 26px; }
.work-fields.open { display: block; }
.privacy-line { font-size: 13.5px; color: var(--gray-3); margin-top: 16px; }
.form-success { display: none; background: var(--ink-tint); padding: 44px 48px; max-width: 860px; font-size: 18px; line-height: 1.65; color: var(--ink); }

/* ============ HERO TERMS STRIP ============ */
.hero-terms {
  font-family: 'IBM Plex Mono', monospace; font-size: 14px; letter-spacing: 0.08em;
  color: rgba(245,246,247,0.85); margin-top: 30px; line-height: 2;
}
.hero-terms .sep { color: var(--terracota); padding: 0 10px; }
.trust-line { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.1em; color: rgba(245,246,247,0.5); margin-top: 26px; }

/* ============ TERMS CARD STRIP ============ */
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 44px; }
.strip-card { background: var(--white); border-top: 2px solid var(--bordeaux); padding: 28px 30px; }
.offwhite .strip-card, .white .strip-card { box-shadow: 0 1px 0 var(--gray-1), 1px 0 0 var(--gray-1), -1px 0 0 var(--gray-1); }
.strip-card .s-value { font-family: 'IBM Plex Mono', monospace; font-weight: 300; font-size: 32px; line-height: 1.1; color: var(--ink); }
.strip-card .s-value .unit { color: var(--bordeaux); }
.strip-card .s-note { font-size: 15px; line-height: 1.55; color: var(--gray-4); margin-top: 12px; }

/* ============ 3-STEP FLOW (light) ============ */
.steps-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.step-card { background: var(--white); border-top: 2px solid var(--terracota); padding: 28px 30px; }
.step-card .step-num { font-family: 'IBM Plex Mono', monospace; font-size: 22px; color: var(--bordeaux); margin-bottom: 12px; }
.step-card h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.step-card p { font-size: 15.5px; line-height: 1.65; color: var(--gray-4); }

/* ============ ELIGIBILITY CHECKLISTS ============ */
.check-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 44px; }
.check-panel { background: var(--white); padding: 30px 34px; border-top: 2px solid var(--terracota); }
.check-panel.neg { border-top-color: var(--gray-2); }
.check-panel h4 { font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bordeaux); margin-bottom: 18px; }
.check-panel.neg h4 { color: var(--gray-3); }
.check-panel ul { list-style: none; }
.check-panel li { position: relative; padding-left: 24px; font-size: 15.5px; line-height: 1.6; color: var(--gray-4); margin-bottom: 11px; }
.check-panel li::before { content: ''; position: absolute; left: 0; top: 0.58em; width: 6px; height: 6px; background: var(--terracota); }
.check-panel.neg li::before { background: var(--gray-2); }

/* ============ TRUST COLUMNS ============ */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.trust-col { border-top: 2px solid var(--bordeaux); padding-top: 22px; }
.trust-col h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 18px; color: var(--ink); margin-bottom: 10px; }
.trust-col p { font-size: 15.5px; line-height: 1.65; color: var(--gray-4); }

/* ============ FAQ ============ */
.faq-list { margin-top: 44px; max-width: 860px; }
.faq-list details { border-top: 1px solid var(--gray-1); }
.faq-list details:last-child { border-bottom: 1px solid var(--gray-1); }
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 17.5px; color: var(--ink); padding: 20px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-family: 'IBM Plex Mono', monospace; font-size: 20px; color: var(--bordeaux); flex-shrink: 0; }
.faq-list details[open] summary::after { content: '\2212'; }
.faq-list .faq-a { font-size: 16px; line-height: 1.65; color: var(--gray-4); padding: 0 40px 22px 0; max-width: 760px; }

/* ============ MOBILE ============ */
@media (max-width: 700px) {
  .wrap { padding: 0 22px; }
  .site-header .bar { padding: 12px 22px; }
  .site-header nav { gap: 16px; }
  .site-header nav a.nav-link { display: none; }
  .hero { padding: 130px 0 70px; }
  .hero h1 { font-size: 42px; }
  .hero .tagline { font-size: 21px; }
  section.block { padding: 64px 0; }
  h2.s-title { font-size: 29px; }
  .terms-grid { grid-template-columns: 1fr; padding: 18px; gap: 0; background: var(--white); }
  .term-card { display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; align-items: baseline; padding: 18px 4px; border-bottom: 1px solid var(--gray-1); }
  .term-card:last-child { border-bottom: none; }
  .term-card .t-label { margin-bottom: 0; align-self: center; }
  .term-card .t-value { font-size: 28px; text-align: right; }
  .term-card .t-note { grid-column: 1 / -1; margin-top: 4px; }
  .term-card.full { display: grid; padding: 18px 4px; }
  .card-grid, .card-grid.two, .flow-grid, .strip-grid, .steps-3, .check-cols, .trust-grid { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 44px 1fr; }
  .tl-item .time { grid-column: 2; }
  .def-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .fig-table { padding: 26px 22px; }
  .form-card { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 34px; }
  .site-footer .foot-row { flex-direction: column; gap: 22px; }
}
