html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: oklch(0.98 0.004 250);
  font-family: 'Inter', sans-serif;
  color: oklch(0.22 0.02 250);
}

a {
  color: oklch(0.5 0.12 200);
  text-decoration: none;
}

a:hover {
  color: oklch(0.4 0.1 200);
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(0.5 0.12 200);
  font-weight: 500;
  margin-bottom: 16px;
}

.accent-teal { color: oklch(0.5 0.12 200); }
.accent-mint { color: oklch(0.68 0.1 195); }

.section-title {
  font-family: 'Spectral', Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 48px;
}

.section-title.on-dark { color: oklch(0.98 0.004 250); }

/* Buttons */
.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 4px;
  transition: background 0.15s ease;
}

.btn-dark {
  font-size: 14px;
  color: oklch(0.98 0.004 250);
  background: oklch(0.25 0.04 250);
  padding: 10px 20px;
}
.btn-dark:hover { background: oklch(0.32 0.05 250); color: oklch(0.98 0.004 250); }

.btn-teal {
  color: oklch(0.98 0.004 250);
  background: oklch(0.5 0.12 200);
}
.btn-teal:hover { background: oklch(0.44 0.12 200); color: oklch(0.98 0.004 250); }

.btn-mint {
  color: oklch(0.22 0.03 250);
  background: oklch(0.68 0.1 195);
}
.btn-mint:hover { background: oklch(0.75 0.1 195); color: oklch(0.22 0.03 250); }

.text-link {
  font-size: 15px;
  font-weight: 500;
  color: oklch(0.4 0.02 250);
}
.text-link:hover { color: oklch(0.4 0.02 250); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: oklch(0.98 0.004 250 / 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid oklch(0.9 0.006 250);
}

.header-inner {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: oklch(0.22 0.03 250);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: oklch(0.35 0.02 250);
}
.nav-link:hover { color: oklch(0.35 0.02 250); }

/* HERO */
.hero {
  padding: 96px 40px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  font-family: 'Spectral', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 55px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 24px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: oklch(0.4 0.02 250);
  margin: 0 0 36px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.statement-card {
  background: oklch(0.22 0.03 250);
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 24px 60px -20px oklch(0.22 0.03 250 / 0.4);
}

.statement-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.statement-brand-name {
  font-size: 15px;
  font-weight: 800;
  color: oklch(0.98 0.004 250);
}

.label-on-dark {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: oklch(0.65 0.01 250);
}

.statement-amount {
  font-size: 36px;
  font-weight: 500;
  color: oklch(0.98 0.004 250);
  margin-top: 10px;
}

.statement-meta {
  font-size: 13px;
  color: oklch(0.65 0.01 250);
  margin-top: 8px;
}

.statement-rows {
  border-top: 1px solid oklch(0.35 0.02 250);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.statement-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: oklch(0.75 0.01 250);
}

/* SECTIONS */
.section {
  padding: 80px 40px;
}

.section-border {
  border-top: 1px solid oklch(0.9 0.006 250);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
  font-size: 14px;
  color: oklch(0.4 0.02 250);
}

.step-num {
  font-size: 13px;
  color: oklch(0.6 0.02 250);
  margin-bottom: 12px;
}

.card-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card-copy {
  font-size: 15px;
  line-height: 1.6;
  color: oklch(0.45 0.02 250);
  margin: 0;
}

/* SERVICES */
.service-card {
  background: oklch(0.995 0.002 250);
  border: 1px solid oklch(0.9 0.006 250);
  border-radius: 8px;
  padding: 32px;
}

.service-kicker {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.5 0.12 200);
  font-weight: 600;
  margin-bottom: 16px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-list {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 14.5px;
  line-height: 1.9;
  color: oklch(0.4 0.02 250);
}

/* HOW IT WORKS (dark) */
.section-dark {
  background: oklch(0.22 0.03 250);
  padding: 80px 0;
}

.step {
  border-top: 2px solid oklch(0.4 0.02 250);
  padding-top: 20px;
}

.step-active {
  border-top: 2px solid oklch(0.68 0.1 195);
}

.step-num-dark {
  font-size: 13px;
  color: oklch(0.65 0.01 250);
  margin-bottom: 12px;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: oklch(0.98 0.004 250);
  margin-bottom: 8px;
}

.step-copy {
  font-size: 14px;
  line-height: 1.6;
  color: oklch(0.65 0.01 250);
  margin: 0;
}

/* WHY VAULT */
.why-grid {
  margin-bottom: 64px;
}

.why-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.about-card {
  background: oklch(0.995 0.002 250);
  border: 1px solid oklch(0.9 0.006 250);
  border-radius: 8px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}

.about-logo {
  flex-shrink: 0;
}

.about-kicker {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.5 0.02 250);
  font-weight: 600;
  margin-bottom: 10px;
}

.about-copy {
  font-size: 15.5px;
  line-height: 1.7;
  color: oklch(0.3 0.02 250);
  margin: 0;
}

/* OUT OF SCOPE */
.out-of-scope {
  padding-top: 0;
  padding-bottom: 80px;
}

.out-of-scope-inner {
  border-top: 1px solid oklch(0.9 0.006 250);
  padding-top: 40px;
}

.out-kicker {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.5 0.02 250);
  font-weight: 600;
  margin-bottom: 16px;
}

.out-copy {
  font-size: 14.5px;
  line-height: 1.6;
  color: oklch(0.45 0.02 250);
  margin: 0 0 20px;
  max-width: 60ch;
}

/* PRICING */
.pricing-section {
  padding-top: 0;
  padding-bottom: 96px;
}

.pricing-card {
  background: oklch(0.22 0.03 250);
  border-radius: 10px;
  padding: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.price-main {
  font-size: 48px;
  font-weight: 600;
  color: oklch(0.98 0.004 250);
  white-space: nowrap;
}

.price-unit {
  font-size: 18px;
  color: oklch(0.65 0.01 250);
}

.price-note {
  font-size: 13px;
  color: oklch(0.65 0.01 250);
  margin-top: 8px;
}

.pricing-divider {
  border-left: 1px solid oklch(0.35 0.02 250);
  padding-left: 40px;
}

.price-secondary {
  font-size: 22px;
  font-weight: 600;
  color: oklch(0.98 0.004 250);
}

.pricing-cta {
  text-align: right;
}

/* FINAL CTA */
.final-cta {
  padding: 96px 0;
}

.final-cta-inner {
  text-align: center;
}

.final-cta-title {
  font-family: 'Spectral', Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  color: oklch(0.98 0.004 250);
  margin: 0 0 20px;
}

.final-cta-sub {
  font-size: 17px;
  color: oklch(0.7 0.01 250);
  margin: 0 0 40px;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.final-cta-email {
  font-size: 15px;
  font-weight: 500;
  color: oklch(0.75 0.01 250);
}
.final-cta-email:hover { color: oklch(0.75 0.01 250); }

/* FOOTER */
.site-footer {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-text {
  font-size: 13px;
  color: oklch(0.5 0.02 250);
}

.footer-disclaimer {
  font-size: 12.5px;
  color: oklch(0.6 0.02 250);
  max-width: 48ch;
  text-align: right;
}

/* RESPONSIVE — collapse the fixed grids on smaller viewports */
@media (max-width: 900px) {
  .header-nav { gap: 18px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 56px 24px 64px;
    gap: 40px;
  }
  .wrap { padding-left: 24px; padding-right: 24px; }
  .section, .pricing-section { padding-left: 24px; padding-right: 24px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .pricing-card { grid-template-columns: 1fr; text-align: left; padding: 40px 28px; }
  .pricing-divider { border-left: none; padding-left: 0; border-top: 1px solid oklch(0.35 0.02 250); padding-top: 24px; }
  .pricing-cta { text-align: left; }
  .about-card { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-disclaimer { text-align: left; }
}

@media (max-width: 640px) {
  .header-nav { gap: 12px; }
  .nav-link:not(.btn) { display: none; }
}

/* ─── Wordmark logo (Spectral "Vault" + IBM Plex Mono "PMTA") ─── */
.logo {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  white-space: nowrap;
}
.logo .lv {
  font-family: 'Spectral', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}
.logo .lp {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 0.34em;
  letter-spacing: 0.2em;
  margin-left: 0.34em;
}
.logo--ink   .lv { color: oklch(0.22 0.03 250); }
.logo--ink   .lp { color: oklch(0.5 0.12 200); }
.logo--light .lv { color: oklch(0.98 0.004 250); }
.logo--light .lp { color: oklch(0.68 0.1 195); }
.logo--muted .lv { color: oklch(0.42 0.02 250); }
.logo--muted .lp { color: oklch(0.5 0.1 200); }

.brand .logo          { font-size: 23px; }
.statement-brand .logo { font-size: 16px; }
.site-footer .logo    { font-size: 16px; }

/* Single-letter serif monogram (about card) */
.monogram-v {
  font-family: 'Spectral', Georgia, serif;
  font-weight: 600;
  line-height: 1;
  color: oklch(0.22 0.03 250);
}
.about-monogram { font-size: 54px; }
