/* ==========================================================================
   DESIGN TOKENS — "Blueprint Precision"
   ========================================================================== */
:root {
  --bg-paper: #F3F5F9;
  --bg-white: #FFFFFF;
  --ink: #12172B;
  --ink-soft: #4A5268;
  --ink-faint: #8A93AB;
  --blueprint: #1E3A8A;
  --blueprint-light: #3654B8;
  --signal: #FF5A36;
  --signal-soft: #FFE7E0;
  --line: #D7DCE6;
  --line-strong: #B9C1D4;
  --surface-dark: #0F1424;
  --surface-dark-alt: #171D33;
  --on-dark: #E8ECF1;
  --on-dark-soft: #9AA3BD;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1200px;
  --nav-h: 84px;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  background: var(--bg-paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--signal); color: #fff; }

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--blueprint);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--signal);
  display: inline-block;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark p { color: var(--on-dark); }

.h-xl { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 600; }
.h-lg { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
.h-md { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 600; }
.h-sm { font-size: 1.15rem; font-weight: 600; }

.body-lg { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); line-height: 1.6; }
.body-md { font-size: 1rem; color: var(--ink-soft); line-height: 1.65; }
.mono-num { font-family: var(--font-mono); }

/* Word-by-word reveal target */
.reveal-words span {
  display: inline-block;
  overflow: hidden;
}
.reveal-words span > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease-out);
}
.reveal-words.is-in span > span { transform: translateY(0); }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 128px 0; position: relative; }
.section--tight { padding: 88px 0; }
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section--tight { padding: 56px 0; }
  .container { padding: 0 20px; }
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
}

.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Blueprint grid backdrop */
.blueprint-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 40%, transparent 90%);
  pointer-events: none;
}
.on-dark .blueprint-grid { background-image:
    linear-gradient(rgba(232,236,241,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,236,241,0.08) 1px, transparent 1px); }

/* ==========================================================================
   CURSOR
   ========================================================================== */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 10px; height: 10px;
  background: var(--signal); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s;
  mix-blend-mode: normal;
}
.cursor-dot.is-hovering { width: 44px; height: 44px; background: rgba(255,90,54,0.14); border: 1.5px solid var(--signal); }
@media (hover: none), (max-width: 900px) { .cursor-dot { display: none; } }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), backdrop-filter 0.35s;
}
.nav.is-scrolled {
  background: rgba(243,245,249,0.82);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; }
.logo .dot { width: 8px; height: 8px; background: var(--signal); border-radius: 50%; display: inline-block; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; position: relative; padding: 4px 0; color: var(--ink);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--signal);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--blueprint); }

.nav-cta { display: flex; align-items: center; gap: 24px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; z-index: 1100; }
.nav-toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bg-white);
    flex-direction: column; align-items: flex-start; gap: 0; border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all 0.3s var(--ease-out); }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 18px 20px; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-cta .btn-text { display: none; }
  .nav-toggle { display: flex; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--ink); color: #fff;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.btn-primary:hover { box-shadow: 0 10px 24px -8px rgba(18,23,43,0.45); }
.btn-primary .fill {
  position: absolute; inset: 0; background: var(--signal); transform: translateX(-101%);
  transition: transform 0.35s var(--ease-out); z-index: 0;
}
.btn-primary:hover .fill { transform: translateX(0); }
.btn-primary span.label { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; }

.btn-secondary {
  border: 1px solid var(--line-strong); color: var(--ink);
  transition: border-color 0.25s, background 0.25s;
}
.btn-secondary:hover { border-color: var(--blueprint); background: rgba(30,58,138,0.04); }

.btn-text { font-weight: 600; font-size: 0.92rem; position: relative; }
.btn-text::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--ink); transform: scaleX(1); transform-origin: right; transition: transform 0.3s var(--ease-out); }
.btn-text:hover::after { transform: scaleX(0); }

.magnetic { display: inline-block; }

.on-dark .btn-secondary { border-color: rgba(232,236,241,0.3); color: var(--on-dark); }
.on-dark .btn-primary { background: var(--on-dark); color: var(--surface-dark); }
.on-dark .btn-primary .fill { background: var(--signal); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 92vh; display: flex; align-items: center; position: relative;
  padding-top: var(--nav-h);
}
.hero-content { max-width: 800px; }
.hero h1 { margin-bottom: 24px; }
.hero .body-lg { max-width: 540px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

.hero-line-wrap { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); width: 38%; max-width: 480px; opacity: 0.9; }
.hero-line-wrap svg path { fill: none; stroke: var(--blueprint); stroke-width: 1.5; }
.hero-line-wrap svg circle { fill: var(--signal); }
@media (max-width: 1100px) { .hero-line-wrap { display: none; } }

.hero-scroll-cue {
  position: absolute; bottom: 40px; left: 32px; display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-faint);
}
.hero-scroll-cue .bar { width: 1px; height: 32px; background: var(--line-strong); position: relative; overflow: hidden; }
.hero-scroll-cue .bar::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 40%; background: var(--signal); animation: scrollcue 1.8s var(--ease-in-out) infinite; }
@keyframes scrollcue { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-in { transition-delay: 0.08s; }
.reveal-delay-2.is-in { transition-delay: 0.16s; }
.reveal-delay-3.is-in { transition-delay: 0.24s; }

/* ==========================================================================
   CARDS — value props / services
   ========================================================================== */
.feature-card {
  background: var(--bg-white); border: 1px solid var(--line); border-radius: 14px;
  padding: 36px 32px; transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--blueprint); box-shadow: 0 20px 40px -24px rgba(18,23,43,0.25); }
.feature-card .icon-mark { width: 40px; height: 40px; border: 1.5px solid var(--blueprint); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background 0.3s, border-color 0.3s; }
.feature-card:hover .icon-mark { background: var(--blueprint); }
.feature-card .icon-mark svg { stroke: var(--blueprint); transition: stroke 0.3s; }
.feature-card:hover .icon-mark svg { stroke: #fff; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 0.96rem; }

.service-card {
  background: var(--bg-white); border: 1px solid var(--line); border-radius: 14px;
  padding: 30px; position: relative; overflow: hidden; cursor: pointer;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.service-card:hover { border-color: var(--blueprint); transform: translateY(-4px); }
.service-card .num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-faint); }
.service-card h3 { margin: 14px 0 8px; font-size: 1.2rem; }
.service-card p { font-size: 0.94rem; color: var(--ink-soft); }
.service-card .arrow { position: absolute; right: 24px; bottom: 24px; opacity: 0; transform: translate(-8px, 8px); transition: all 0.3s var(--ease-out); }
.service-card:hover .arrow { opacity: 1; transform: translate(0,0); }

/* Services grid (home page — "what I create") */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* Insight list (home page — "why it matters") */
.insight-list { display: flex; flex-direction: column; }
.insight-item { display: flex; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); }
.insight-item:last-child { border-bottom: 1px solid var(--line); }
.insight-item .mono-num { font-family: var(--font-mono); color: var(--blueprint); font-size: 0.85rem; padding-top: 3px; }
.insight-item h4 { margin-bottom: 6px; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-track { position: relative; }
.process-line { position: absolute; top: 20px; left: 0; right: 0; height: 1px; background: var(--line); }
.process-line-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--signal); transition: width 1.4s var(--ease-in-out); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-step { padding-top: 52px; position: relative; }
.process-step::before {
  content: ''; position: absolute; top: 12px; left: 0; width: 17px; height: 17px; border-radius: 50%;
  background: var(--bg-paper); border: 2px solid var(--line-strong); transition: border-color 0.4s, background 0.4s;
}
.process-step.is-active::before { border-color: var(--signal); background: var(--signal); }
.process-step .num { font-family: var(--font-mono); color: var(--blueprint); font-size: 0.85rem; margin-bottom: 8px; display: block; }
.process-step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-line { left: 8px; top: 0; bottom: 0; right: auto; width: 1px; height: 100%; }
  .process-line-fill { width: 100%; height: 0%; transition: height 1.4s var(--ease-in-out); }
  .process-step { padding-top: 0; padding-left: 40px; }
  .process-step::before { top: 4px; left: 0; }
}

/* ==========================================================================
   BILLING TOGGLE (monthly / one-time)
   ========================================================================== */
.billing-toggle-wrap { display: flex; flex-direction: column; align-items: center; margin-bottom: 56px; }
.billing-toggle {
  display: inline-flex; background: var(--bg-white); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px; gap: 4px;
}
.toggle-option {
  padding: 11px 26px; border-radius: 999px; font-size: 0.9rem; font-weight: 600;
  color: var(--ink-soft); transition: background 0.3s var(--ease-out), color 0.3s;
}
.toggle-option.is-active { background: var(--ink); color: #fff; }
.billing-note { margin-top: 14px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-faint); text-align: center; }

/* price blocks toggle by parent [data-billing] attribute */
.pricing-grid[data-billing="monthly"] .price-block[data-plan="onetime"] { display: none; }
.pricing-grid[data-billing="onetime"] .price-block[data-plan="monthly"] { display: none; }
.price-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: -18px; margin-bottom: 24px; display: block; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--bg-white); border: 1px solid var(--line); border-radius: 16px;
  padding: 40px 32px; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -28px rgba(18,23,43,0.28); }
.price-card.is-featured { border-color: var(--signal); position: relative; background: var(--bg-white); }
.price-card.is-featured::before {
  content: 'MOST CHOSEN'; position: absolute; top: -13px; left: 32px; background: var(--signal); color: #fff;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; padding: 5px 12px; border-radius: 20px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .price-tagline { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 24px; }
.price-card .price { font-family: var(--font-mono); font-size: 2.4rem; font-weight: 500; margin-bottom: 4px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.price-card .price-plus { font-size: 1rem; color: var(--ink-faint); font-weight: 400; }
.price-card .price-unit { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 28px; display: block; }
.price-card .price-features { flex: 1; margin-bottom: 28px; }
.price-card .price-features li { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; font-size: 0.93rem; color: var(--ink-soft); border-bottom: 1px solid var(--bg-paper); }
.price-card .price-features li svg { flex-shrink: 0; margin-top: 2px; stroke: var(--blueprint); }

.compare-toggle { text-align: center; margin: 56px 0 24px; }
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; max-height: 0; opacity: 0; transition: max-height 0.5s var(--ease-in-out), opacity 0.4s; }
.compare-table-wrap.is-open { max-height: 1400px; opacity: 1; }
table.compare-table { width: 100%; border-collapse: collapse; background: var(--bg-white); min-width: 640px; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--line); }
.compare-table th { font-family: var(--font-mono); font-weight: 500; font-size: 0.78rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.compare-table td:not(:first-child), .compare-table th:not(:first-child) { text-align: center; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 24px 4px; text-align: left; width: 100%; font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; }
.faq-q .plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; margin-left: 20px; }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--ink); transition: transform 0.3s var(--ease-out); }
.faq-q .plus::before { width: 100%; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .plus::after { width: 1.5px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.is-open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-in-out); }
.faq-a p { padding: 0 4px 24px; color: var(--ink-soft); font-size: 0.95rem; max-width: 680px; }
.faq-item.is-open .faq-a { max-height: 240px; }

/* ==========================================================================
   CTA BAND (dark)
   ========================================================================== */
.cta-band { background: var(--surface-dark); color: var(--on-dark); position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: var(--on-dark); margin-bottom: 20px; }
.cta-band p { color: var(--on-dark-soft); max-width: 480px; margin: 0 auto 36px; }
.cta-band .hero-ctas { justify-content: center; }

/* ==========================================================================
   FORM (contact page)
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 22px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; }
.field .hint { font-size: 0.8rem; color: var(--ink-faint); font-weight: 400; margin-left: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 8px;
  background: var(--bg-white); transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blueprint); box-shadow: 0 0 0 3px rgba(30,58,138,0.12); outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--signal); }
.field .error-msg { display: none; color: var(--signal); font-size: 0.82rem; margin-top: 6px; }
.field.has-error .error-msg { display: block; }

.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 10px 18px; border: 1px solid var(--line-strong); border-radius: 24px; font-size: 0.88rem; transition: all 0.25s; }
.chip.is-selected { background: var(--ink); color: #fff; border-color: var(--ink); }

.form-status { margin-top: 20px; padding: 16px 18px; border-radius: 8px; font-size: 0.92rem; display: none; }
.form-status.is-visible { display: block; }
.form-status.success { background: #EAF6EE; color: #1E6B39; }
.form-status.error { background: var(--signal-soft); color: #B23A1E; }

.booking-panel { background: var(--bg-white); border: 1px solid var(--line); border-radius: 16px; padding: 32px; }
.booking-panel h3 { font-size: 1.1rem; margin-bottom: 14px; }
.contact-alt { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.contact-alt a { font-size: 0.94rem; display: flex; align-items: center; gap: 10px; }
.contact-alt a:hover { color: var(--blueprint); }

.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
@media (max-width: 900px) { .next-steps { grid-template-columns: 1fr; } }
.next-step { font-family: var(--font-mono); font-size: 0.8rem; color: var(--blueprint); margin-bottom: 8px; display: block; }

/* ==========================================================================
   ABOUT PAGE specifics
   ========================================================================== */
.principle-card { padding: 28px 0; border-top: 1px solid var(--line); }
.principle-card:last-child { border-bottom: 1px solid var(--line); }
.principle-card .row { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.principle-card .num { font-family: var(--font-mono); color: var(--ink-faint); font-size: 0.85rem; }
.principle-card h4 { font-size: 1.2rem; margin: 6px 0 8px; }
.principle-card p { color: var(--ink-soft); max-width: 480px; }

.compare-strip { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.compare-strip .col { padding: 32px; }
.compare-strip .col:first-child { background: var(--bg-white); border-right: 1px solid var(--line); }
.compare-strip .col:last-child { background: var(--ink); color: var(--on-dark); }
.compare-strip h4 { font-size: 0.85rem; font-family: var(--font-mono); font-weight: 500; margin-bottom: 20px; opacity: 0.7; }
.compare-strip .col:last-child h4 { color: var(--on-dark); }
.compare-strip ul li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.compare-strip .col:last-child ul li { border-bottom-color: rgba(232,236,241,0.12); }
@media (max-width: 700px) { .compare-strip { grid-template-columns: 1fr; } .compare-strip .col:first-child { border-right: none; border-bottom: 1px solid var(--line); } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--line); }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 48px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-col a { display: block; font-size: 0.92rem; padding: 6px 0; color: var(--ink-soft); transition: color 0.2s; }
.footer-col a:hover { color: var(--blueprint); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--ink-faint); flex-wrap: wrap; gap: 12px; }

/* ==========================================================================
   PAGE HEADER (About / Pricing / Contact)
   ========================================================================== */
.page-header { padding: calc(var(--nav-h) + 88px) 0 40px; }
.page-header .h-lg { max-width: 680px; }

/* utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0 !important; }
