:root {
  --bg: #F5F0E8;
  --ink: #1A1A1A;
  --ink-light: #6B6560;
  --ink-faint: #C4BFB7;
  --accent: #2B5CE6;
  --serif: 'Playfair Display', Georgia, serif;
  --mono: 'DM Mono', 'Courier New', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--ink-faint);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: 0.01em;
}
.nav-cta {
  margin-left: auto;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border: 1.5px solid var(--accent);
  transition: background 0.15s, color 0.15s;
}
.nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

/* Social proof strip */
.social-proof {
  padding: 18px 40px;
  border-bottom: 1px solid var(--ink-faint);
  background: var(--bg);
}
.social-proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.social-proof-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.social-proof-items {
  display: flex;
  align-items: center;
  gap: 24px;
}
.social-proof-item {
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: 0.02em;
}
.social-proof-item strong {
  color: var(--ink);
  font-weight: 500;
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 40px 64px;
  overflow: hidden;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--ink-faint) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ink-faint) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}
.hero-layout {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content {
  max-width: 500px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 440px;
  font-weight: 300;
  margin-bottom: 36px;
}
.hero-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  transition: background 0.15s, color 0.15s;
  /* Glove-friendly: generous tap target */
  min-height: 48px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.hero-cta:hover {
  background: transparent;
  color: var(--ink);
}
.hero-cta-note {
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 14px;
  letter-spacing: 0.01em;
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sketch-panel,
.schematic-panel {
  background: #fff;
  border: 1.5px solid var(--ink);
  padding: 14px;
  box-shadow: 5px 5px 0 var(--ink-faint);
}
.panel-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 8px;
}
.sketch-svg,
.schematic-svg {
  width: 100%;
  height: auto;
  display: block;
}
.hero-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.hero-arrow-brand {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* Section label utility */
.section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 48px;
  max-width: 560px;
}

/* How it works */
.howitworks {
  padding: 80px 40px;
  border-top: 1px solid var(--ink-faint);
}
.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
}
.step {
  padding: 32px 48px 32px 0;
  border-right: 1px solid var(--ink-faint);
}
.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; padding-right: 0; }
.step-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.step-icon svg {
  width: 32px;
  height: 32px;
}
.step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-body {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.65;
  font-weight: 300;
}

/* Trust / format section */
.trust {
  padding: 80px 40px;
  background: var(--ink);
  color: var(--bg);
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.trust-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
  max-width: 600px;
}
.trust-items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item-text {
  font-size: 14px;
  color: #A8A39B;
  line-height: 1.5;
  font-weight: 300;
}
.trust-item-text strong {
  color: var(--bg);
  font-weight: 500;
}

/* Compliance (existing) */
.compliance {
  padding: 80px 40px;
  background: var(--ink);
  color: var(--bg);
}
.compliance-inner {
  max-width: 700px;
}
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.compliance-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.compliance-body {
  font-size: 15px;
  color: #A8A39B;
  line-height: 1.75;
  font-weight: 300;
}

/* Pricing */
.pricing {
  padding: 80px 40px;
  border-top: 1px solid var(--ink-faint);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-sub {
  font-size: 15px;
  color: var(--ink-light);
  margin-bottom: 40px;
  font-weight: 300;
}
.pricing-card {
  max-width: 420px;
  border: 1.5px solid var(--ink);
  padding: 40px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
}
.price-amount {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-period {
  font-size: 16px;
  color: var(--ink-light);
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--ink-faint);
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6L5 9L10 3' stroke='%231A1A1A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-trial {
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: 0.02em;
}
.pricing-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  text-decoration: none;
  border: 1.5px solid var(--accent);
  margin-top: 20px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s, color 0.15s;
}
.pricing-cta:hover {
  background: transparent;
  color: var(--accent);
}

/* Closing */
.closing {
  padding: 80px 40px;
  border-top: 1px solid var(--ink-faint);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 640px;
}
.closing-body {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 40px;
}
.closing-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s, color 0.15s;
}
.closing-cta:hover {
  background: transparent;
  color: var(--ink);
}
.closing-note {
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 14px;
  letter-spacing: 0.01em;
}

/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid var(--ink);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--ink-light);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-compliance, .footer-reg {
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    justify-content: center;
  }
  .sketch-panel, .schematic-panel {
    width: 240px;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .nav { padding: 18px 24px; }
  .nav-tagline { display: none; }
  .nav-cta { font-size: 12px; padding: 7px 14px; }
  .social-proof { padding: 14px 24px; }
  .social-proof-inner { gap: 16px; }
  .social-proof-items { gap: 16px; flex-wrap: wrap; }
  .hero { padding: 48px 24px 40px; }
  .hero-visual {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-arrow {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
  .sketch-panel, .schematic-panel { width: 100%; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step { border-right: none; border-bottom: 1px solid var(--ink-faint); padding: 0 0 40px; }
  .step:last-child { border-bottom: none; padding-bottom: 0; }
  .howitworks, .trust, .compliance, .pricing, .closing, .footer { padding: 60px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { align-items: flex-start; }
  .trust-items { flex-direction: column; gap: 24px; }
  .pricing-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 34px; }
  .hero-cta { width: 100%; justify-content: center; }
  .closing-cta { width: 100%; justify-content: center; }
  .pricing-cta { width: 100%; justify-content: center; }
}