/* =============================================================================
   DashSign landing — stylesheet
   Aesthetic: refined editorial. Warm paper ground (#FAF8F4), deep ink type
   (#0C0A09), magenta-to-indigo gradient used as a precision accent ONLY on
   key surfaces. Fraunces serif display + DM Sans body + JetBrains Mono for
   technical detail.
   ============================================================================= */

:root {
  /* Surfaces */
  --paper:        #FAF8F4;   /* page ground — warm, paper-like, not stark */
  --paper-2:      #F2EFE8;   /* subtle alternate ground */
  --ink:          #0C0A09;   /* near-black ink for headlines + dark sections */
  --ink-2:        #1C1917;   /* slightly lifted dark surface */
  --body:         #292524;   /* primary body text */
  --mid:          #57534E;   /* secondary text, captions */
  --faint:        #A8A29E;   /* hints, fine print */
  --line:         #E7E5E4;   /* hairlines, borders */
  --line-2:       #D6D3D1;   /* slightly more visible hairline */

  /* Brand gradient — used SPARINGLY */
  --brand-1:      #6366F1;
  --brand-2:      #A855F7;
  --gradient:     linear-gradient(135deg, var(--brand-1), var(--brand-2));

  /* Type */
  --display:      'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:         'DM Sans', system-ui, sans-serif;
  --mono:         'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Layout */
  --container:    1180px;
  --container-narrow: 720px;
  --pad:          clamp(20px, 4vw, 40px);
}

/* =============================================================================
   RESET & BASE
   ============================================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  background: var(--paper);
  font-feature-settings: 'ss01', 'cv11';
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .18s ease; }
ul, ol { list-style: none; }
em { font-style: italic; }
code {
  font-family: var(--mono);
  font-size: .92em;
  background: var(--paper-2);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--body);
  border: 1px solid var(--line);
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.container-narrow { max-width: var(--container-narrow); }

/* =============================================================================
   NAVIGATION
   ============================================================================= */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-brand:hover { opacity: 0.85; }
.nav-logo {
  height: 28px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .nav-logo { height: 24px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a { color: var(--mid); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
}
.nav-cta:hover { background: #000; }
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* =============================================================================
   HERO
   ============================================================================= */
.hero {
  padding: clamp(60px, 10vw, 120px) 0 clamp(80px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* very subtle paper grain — soft radial highlight, no animation */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% -10%, rgba(168, 85, 247, 0.08), transparent 50%),
              radial-gradient(circle at 0% 100%, rgba(99, 102, 241, 0.06), transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
  z-index: 1;
}
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 32px;
  animation: rise 0.7s ease both;
  animation-delay: 0.05s;
}
.display {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
  font-variation-settings: 'opsz' 144;
  animation: rise 0.9s ease both;
  animation-delay: 0.15s;
}
.display em {
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 144;
  color: var(--mid);
}
.display-grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 600;
  position: relative;
}
.lede {
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.55;
  color: var(--mid);
  max-width: 620px;
  margin: 0 auto 40px;
  animation: rise 1.1s ease both;
  animation-delay: 0.3s;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
  animation: rise 1.3s ease both;
  animation-delay: 0.45s;
}
.micro-trust {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.01em;
  animation: rise 1.5s ease both;
  animation-delay: 0.6s;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  isolation: isolate;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity .25s ease;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg { transition: transform .2s ease; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-2); }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
  justify-content: center;
}
.btn-ghost-dark:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-light {
  background: var(--paper);
  color: var(--ink);
}
.btn-light:hover { background: #fff; }
.btn-light svg { transition: transform .2s ease; }
.btn-light:hover svg { transform: translateX(3px); }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* =============================================================================
   SECTIONS
   ============================================================================= */
.section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}
.section-dark {
  background: var(--ink);
  color: var(--paper);
}
.section-dark .section-kicker { color: var(--faint); }
.section-dark .section-title { color: var(--paper); }
.section-dark h3 { color: var(--paper); }
.section-dark p { color: #d6d3d1; }
.section-kicker {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 60px;
  max-width: 720px;
  font-variation-settings: 'opsz' 144;
}

/* =============================================================================
   FEATURES GRID
   ============================================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.feature h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 12px;
}
.feature p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--mid);
}
.feature-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--ink);
  border: 1px solid var(--line-2);
  background: var(--paper);
  transition: transform .25s ease;
}
.feature:hover .feature-mark { transform: rotate(-3deg) scale(1.05); }
.feature-mark-1 { color: var(--brand-1); }
.feature-mark-2 { color: #d97706; }
.feature-mark-3 { color: var(--brand-2); }

/* =============================================================================
   HOW IT WORKS
   ============================================================================= */
.how-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.how-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.how-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  font-variation-settings: 'opsz' 144;
}
.how-list h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.how-list p { font-size: 15px; line-height: 1.55; }
.section-dark code {
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.12);
}

/* =============================================================================
   PRICING
   ============================================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.plan:hover { border-color: var(--line-2); }
.plan-featured {
  border-color: var(--ink);
  position: relative;
}
.plan-featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient);
  z-index: -1;
  opacity: 0.18;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-head h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.plan-blurb {
  font-size: 14.5px;
  color: var(--mid);
  margin-bottom: 24px;
}
.plan-price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.plan-amount {
  font-family: var(--display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.plan-cadence {
  font-size: 16px;
  color: var(--mid);
  margin-left: 4px;
}
.plan-annual {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mid);
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.plan-annual strong { color: var(--ink); font-weight: 500; }
.plan-features {
  flex: 1;
  margin-bottom: 28px;
}
.plan-features li {
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--body);
  border-bottom: 1px dashed var(--line);
  position: relative;
  padding-left: 22px;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--ink) 25%, transparent 26%) center / 100% 100%,
    var(--paper-2);
  border: 1px solid var(--line);
}
.plan-features li:last-child { border-bottom: none; }
.pricing-fine {
  text-align: center;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.005em;
}

/* =============================================================================
   FAQ
   ============================================================================= */
.faq { display: flex; flex-direction: column; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  color: var(--mid);
  transition: transform .25s ease, color .2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
  color: var(--ink);
}
.faq summary:hover { color: var(--ink); }
.faq summary:hover::after { color: var(--ink); }
.faq-body {
  padding-top: 18px;
  max-width: 640px;
}
.faq-body p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--mid);
  margin-bottom: 12px;
}
.faq-body p:last-child { margin-bottom: 0; }

/* =============================================================================
   CTA BAND
   ============================================================================= */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.18), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.16), transparent 40%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 18px;
  max-width: 640px;
  margin-inline: auto;
}
.cta-lede {
  font-size: 16.5px;
  line-height: 1.55;
  color: #D6D3D1;
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta-fine {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  margin-top: 20px;
  letter-spacing: 0.005em;
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
  background: var(--paper-2);
  padding: clamp(50px, 7vw, 80px) 0 36px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 12px; }
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 26px;
  width: auto;
  display: block;
}
.footer-tag {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mid);
  max-width: 320px;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer ul li {
  margin-bottom: 10px;
  font-size: 14.5px;
}
.footer ul li a { color: var(--mid); }
.footer ul li a:hover { color: var(--ink); }
.footer-base {
  margin-top: clamp(40px, 6vw, 60px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--mid);
}
.footer-disclaim {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--faint);
  letter-spacing: 0.005em;
}

/* =============================================================================
   LEGAL PAGES (terms.html / privacy.html)
   ============================================================================= */
.legal-page {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: clamp(50px, 8vw, 90px) var(--pad) clamp(70px, 10vw, 120px);
}
.legal-page h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
  font-variation-settings: 'opsz' 144;
}
.legal-meta {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--mid);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.005em;
}
.legal-page h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 48px 0 16px;
}
.legal-page h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  margin: 28px 0 10px;
}
.legal-page p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 16px;
}
.legal-page ul, .legal-page ol {
  margin: 0 0 18px 22px;
  padding-left: 6px;
}
.legal-page ul li, .legal-page ol li {
  list-style: initial;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 6px;
}
.legal-page ol li { list-style: decimal; }
.legal-page ul ul, .legal-page ol ol, .legal-page ul ol, .legal-page ol ul {
  margin-top: 8px; margin-bottom: 10px;
}
.legal-page strong { color: var(--ink); font-weight: 600; }
.legal-page em { font-style: italic; color: var(--mid); }
.legal-page a { color: var(--brand-1); text-decoration: underline; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--brand-2); }
.legal-page hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}
.legal-disclaim {
  margin-top: 60px;
  padding: 22px 24px;
  background: var(--paper-2);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.legal-disclaim p {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--mid);
  margin: 0;
}

/* =============================================================================
   VERIFY PAGE
   ============================================================================= */
.verify-page {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) var(--pad);
}
.verify-hero {
  text-align: center;
  margin-bottom: 40px;
}
.verify-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.1;
}
.verify-hero p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto;
}
.verify-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 42px);
  margin-bottom: 24px;
}
.verify-status {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.verify-status-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.verify-status-icon.ok { background: #16a34a; }
.verify-status-icon.fail { background: #dc2626; }
.verify-status-icon.loading {
  background: var(--paper-2);
  color: var(--mid);
  border: 1px solid var(--line);
}
.verify-status h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.verify-status p {
  font-size: 14px;
  color: var(--mid);
  margin-top: 2px;
}
.verify-fields { display: grid; gap: 18px; }
.verify-field-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}
.verify-field-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.verify-field-value.mono {
  font-family: var(--mono);
  font-size: 12.5px;
  word-break: break-all;
  font-weight: 400;
  background: var(--paper-2);
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.verify-search {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.verify-search h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--ink);
}
.verify-search p {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.5;
}
.verify-search-row {
  display: flex;
  gap: 8px;
}
.verify-search input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 13px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s ease;
}
.verify-search input:focus {
  outline: none;
  border-color: var(--ink);
}

/* =============================================================================
   UTILITIES
   ============================================================================= */
::selection { background: var(--ink); color: var(--paper); }
