:root {
  --ink: #12171d;
  --ink-soft: #252d35;
  --paper: #f5f0e7;
  --paper-strong: #fffdf8;
  --muted: #6f777f;
  --line: rgba(18, 23, 29, 0.14);
  --gold: #dca72f;
  --gold-light: #f2cc67;
  --green: #426f62;
  --burgundy: #7b4147;
  --shadow: 0 20px 60px rgba(16, 20, 24, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--paper); }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 12px max(24px, calc((100vw - 1280px) / 2));
  color: var(--paper-strong);
  background: rgba(16, 21, 27, 0.94);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 850; }
.brand img { display: block; width: 44px; height: 44px; border-radius: 50%; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 28px; font-size: 14px; font-weight: 700; }
.site-nav a { color: rgba(255,255,255,0.72); transition: color .2s ease; }
.site-nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-toggle, .menu-toggle { border: 0; color: #fff; background: transparent; cursor: pointer; }
.language-toggle { min-width: 42px; min-height: 38px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-weight: 800; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 7px; font-size: 15px; font-weight: 850; line-height: 1.15; text-align: center; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 0 18px; color: #17130a; background: var(--gold-light); }
.button-primary { color: #17130a; background: var(--gold-light); box-shadow: 0 12px 30px rgba(220, 167, 47, .24); }
.button-primary:hover { background: #f8d87d; }
.button-secondary { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(16,21,27,.34); backdrop-filter: blur(10px); }
.button-secondary:hover { background: rgba(255,255,255,.12); }

.hero { position: relative; display: grid; min-width: 0; min-height: min(780px, calc(100svh - 104px)); overflow: hidden; color: #fff; background: #1b1d20; }
.hero-image, .hero-scrim { position: absolute; inset: 0; }
.hero-image { background: url('/assets/hero-numismatics.jpg') center center / cover no-repeat; }
.hero-scrim { background: linear-gradient(90deg, rgba(13,16,19,.96) 0%, rgba(13,16,19,.84) 30%, rgba(13,16,19,.28) 62%, rgba(13,16,19,.08) 100%); }
.hero-content { position: relative; z-index: 2; align-self: center; min-width: 0; width: min(1280px, 100%); padding: 76px max(24px, calc((100vw - 1280px) / 2)); }
.hero-content > * { min-width: 0; width: min(650px, 100%); }
.eyebrow { margin: 0 0 14px; color: var(--gold-light); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(54px, 8vw, 108px); line-height: .9; letter-spacing: 0; }
.hero-lead { margin: 24px 0 14px; font-size: clamp(27px, 3.7vw, 48px); font-weight: 820; line-height: 1.06; letter-spacing: 0; }
.hero-copy { margin: 0; color: rgba(255,255,255,.78); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 24px; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 750; }
.hero-notes span { position: relative; padding-left: 15px; }
.hero-notes span::before { content: ''; position: absolute; left: 0; top: .42em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); }
.next-section { position: absolute; z-index: 3; left: 50%; bottom: 18px; display: grid; width: 42px; height: 42px; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; transform: translateX(-50%); }

.proof-band { display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; padding: 26px max(24px, calc((100vw - 1280px) / 2)); color: #fff; background: var(--ink-soft); }
.proof-band div { display: grid; gap: 4px; min-width: 0; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.16); }
.proof-band div:first-child { padding-left: 0; }
.proof-band div:last-child { padding-right: 0; border-right: 0; }
.proof-band strong { font-size: 18px; }
.proof-band span { color: rgba(255,255,255,.6); font-size: 13px; }

.section { width: min(1280px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 720px; margin-bottom: 54px; }
.section-heading.compact { margin-bottom: 38px; }
.section h2, .final-cta h2 { margin: 0; font-size: clamp(36px, 5vw, 62px); line-height: 1.03; letter-spacing: 0; }
.section-heading > p:last-child, .product-copy > p, .pricing-section p, .final-cta p { margin: 20px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; }

.how-section { padding-bottom: 125px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps li { min-height: 260px; padding: 30px 34px 38px; border-right: 1px solid var(--line); }
.steps li:first-child { padding-left: 0; }
.steps li:last-child { padding-right: 0; border-right: 0; }
.step-number { display: block; margin-bottom: 52px; color: var(--burgundy); font: 800 14px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.steps h3 { margin: 0 0 12px; font-size: 24px; }
.steps p { margin: 0; color: var(--muted); line-height: 1.55; }

.product-section { display: grid; grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr); align-items: center; gap: 70px; width: 100%; padding: 110px max(24px, calc((100vw - 1280px) / 2)); color: #fff; background: #10151b; }
.product-copy h2 { font-size: clamp(38px, 4.6vw, 64px); }
.product-copy > p { color: rgba(255,255,255,.62); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 34px; margin: 42px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; gap: 7px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); }
.feature-list strong { font-size: 17px; }
.feature-list span { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.45; }
.product-shot { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; background: #0c1117; box-shadow: 0 34px 90px rgba(0,0,0,.42); }
.product-shot img { display: block; width: 100%; height: auto; }
.browser-bar { display: flex; align-items: center; gap: 7px; height: 42px; padding: 0 14px; color: rgba(255,255,255,.62); background: #202730; font-size: 11px; }
.browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: #64707b; }
.browser-bar b { margin-left: 8px; font-weight: 700; }
.product-shot figcaption { padding: 13px 16px; color: rgba(255,255,255,.6); font-size: 12px; }

.mode-section { padding-bottom: 70px; }
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mode-item { position: relative; min-height: 330px; overflow: hidden; padding: 38px; border-radius: 8px; color: #fff; }
.mode-auto { background: var(--green); }
.mode-manual { background: var(--burgundy); }
.mode-label { display: inline-block; margin-bottom: 76px; font: 800 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; opacity: .7; }
.mode-item h3 { margin: 0 0 16px; font-size: 34px; }
.mode-item p { max-width: 510px; margin: 0; color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.55; }
.mode-best { display: block; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.9); font-size: 13px; font-weight: 800; }

.audience-section { padding-top: 70px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.audience-grid div { display: grid; gap: 10px; min-height: 190px; padding: 30px; border-right: 1px solid var(--line); }
.audience-grid div:first-child { padding-left: 0; }
.audience-grid div:last-child { padding-right: 0; border-right: 0; }
.audience-grid strong { font-size: 24px; }
.audience-grid span { color: var(--muted); line-height: 1.5; }

.pricing-section { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 50px; width: 100%; padding: 76px max(24px, calc((100vw - 1280px) / 2)); background: #e9dfce; }
.pricing-section > div { max-width: 820px; }
.pricing-section .button { min-width: 240px; }

.faq-section { display: grid; grid-template-columns: minmax(260px,.6fr) minmax(0,1.4fr); gap: 80px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 44px 24px 0; font-size: 18px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 4px; top: 19px; font-size: 26px; font-weight: 400; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list p { max-width: 700px; margin: -4px 0 24px; color: var(--muted); line-height: 1.6; }

.final-cta { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; width: min(1280px, calc(100% - 48px)); margin: 0 auto 60px; padding: 38px; color: #fff; background: var(--ink-soft); }
.final-cta img { border-radius: 50%; }
.final-cta h2 { font-size: clamp(28px, 3.6vw, 46px); }
.final-cta p { color: rgba(255,255,255,.6); font-size: 15px; }

.site-footer { padding: 28px max(24px, calc((100vw - 1280px) / 2)); color: rgba(255,255,255,.6); background: #10151b; font-size: 13px; }
.footer-main { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 28px; }
.site-footer .brand { color: #fff; font-size: 15px; }
.site-footer .brand img { width: 36px; height: 36px; }
.site-footer a:not(.brand) { color: var(--gold-light); font-weight: 800; }
.footer-payments { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 24px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-payments > p { font-weight: 700; white-space: nowrap; }
.payment-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 18px 24px; min-width: 0; padding: 13px 18px; background: #fff; border-radius: 6px; }
.payment-logos img { display: block; flex: 0 1 auto; width: auto; height: 25px; max-width: 104px; object-fit: contain; }
.payment-logos .payment-logo-apple { filter: invert(1); }

@media (max-width: 960px) {
  body.menu-open::before { content: ''; position: fixed; z-index: 45; inset: 74px 0 0; background: #10151b; }
  body.menu-open .site-header { background: #10151b; backdrop-filter: none; }
  .site-header { grid-template-columns: auto 1fr auto auto; grid-template-areas: "brand spacer actions menu"; gap: 12px; }
  .site-header .brand { grid-area: brand; }
  .menu-toggle { grid-area: menu; display: block; }
  .site-nav { position: fixed; z-index: 55; inset: 74px 0 0; display: none; align-content: start; justify-content: stretch; width: 100%; min-height: calc(100vh - 74px); padding: 24px; overflow-y: auto; background: #10151b; opacity: 1; box-shadow: 0 28px 60px rgba(0,0,0,.35); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 20px; }
  .header-actions { grid-area: actions; justify-self: end; }
  .product-section { grid-template-columns: 1fr; }
  .product-shot { width: min(780px, 100%); }
  .faq-section { grid-template-columns: 1fr; gap: 12px; }
  .final-cta { grid-template-columns: auto 1fr; }
  .final-cta .button { grid-column: 1 / -1; justify-self: stretch; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main p { grid-column: 1 / -1; }
  .footer-payments { grid-template-columns: 1fr; gap: 14px; }
  .payment-logos { justify-content: flex-start; }
}

@media (max-width: 720px) {
  body.menu-open::before { top: 66px; }
  .site-header { min-height: 66px; padding: 10px 14px; }
  .site-header .brand span { font-size: 15px; }
  .site-header .brand img { width: 38px; height: 38px; }
  .menu-toggle { width: 38px; height: 38px; padding: 7px; }
  .header-actions { gap: 6px; }
  .header-actions .button-small { display: none; }
  .button-small { min-height: 38px; padding: 0 12px; font-size: 13px; }
  .language-toggle { min-width: 38px; min-height: 36px; }
  .site-nav { inset: 66px 0 0; }
  .hero { min-height: calc(100svh - 112px); }
  .hero-image { background-position: 62% center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(13,16,19,.94) 0%, rgba(13,16,19,.78) 72%, rgba(13,16,19,.38) 100%); }
  .hero-content { align-self: end; padding: 48px 20px 82px; }
  .hero h1 { max-width: 100%; font-size: clamp(42px, 13.5vw, 56px); overflow-wrap: anywhere; }
  .hero-lead { margin-top: 18px; font-size: 29px; }
  .hero-lead, .hero-copy { overflow-wrap: break-word; }
  .hero-copy { font-size: 15px; }
  .hero-actions { display: grid; margin-top: 24px; }
  .hero-actions .button { min-width: 0; width: 100%; padding-inline: 14px; }
  .hero-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 18px; }
  .proof-band { grid-template-columns: 1fr 1fr; padding: 20px; }
  .proof-band div { padding: 14px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .proof-band div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.13); }
  .proof-band div:nth-last-child(-n+2) { border-bottom: 0; }
  .section { width: calc(100% - 36px); padding: 74px 0; }
  .section-heading { margin-bottom: 34px; }
  .section h2 { font-size: 38px; }
  .section-heading > p:last-child, .product-copy > p, .pricing-section p { font-size: 16px; }
  .steps { grid-template-columns: 1fr; }
  .steps li, .steps li:first-child, .steps li:last-child { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps li:last-child { border-bottom: 0; }
  .step-number { margin-bottom: 28px; }
  .product-section { width: 100%; padding: 76px 18px; gap: 44px; }
  .product-copy h2 { font-size: 38px; }
  .feature-list { grid-template-columns: 1fr; gap: 22px; }
  .mode-grid { grid-template-columns: 1fr; }
  .mode-item { min-height: 310px; padding: 28px; }
  .mode-label { margin-bottom: 54px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid div, .audience-grid div:first-child, .audience-grid div:last-child { min-height: 0; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .pricing-section { grid-template-columns: 1fr; align-items: start; gap: 30px; width: 100%; padding: 64px 20px; }
  .pricing-section .button { width: 100%; }
  .faq-section { gap: 4px; }
  .final-cta { grid-template-columns: 1fr; justify-items: start; width: calc(100% - 36px); margin-bottom: 36px; padding: 28px; }
  .final-cta .button { width: 100%; }
  .site-footer { padding: 28px 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 16px; }
  .footer-main p { grid-column: auto; }
  .footer-payments { margin-top: 22px; padding-top: 22px; }
  .footer-payments > p { white-space: normal; }
  .payment-logos { gap: 16px 20px; padding: 14px; }
  .payment-logos img { height: 23px; max-width: 92px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
