/* === Genzpro Marketing — V2 Terminal ================================ */

:root {
  --serif: "Instrument Serif", "GT Sectra", Georgia, serif;
  --sans:  "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "JetBrains Mono", "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --paper:           oklch(0.975 0.004 240);
  --paper-2:         oklch(0.955 0.005 240);
  --paper-3:         oklch(0.930 0.006 240);
  --ink:             oklch(0.18 0.02 252);
  --ink-2:           oklch(0.28 0.02 252);
  --slate:           oklch(0.48 0.02 250);
  --slate-2:         oklch(0.62 0.015 250);
  --hairline:        oklch(0.88 0.01 250);
  --hairline-strong: oklch(0.80 0.012 250);
  --electric:        oklch(0.58 0.22 255);
  --electric-2:      oklch(0.50 0.22 255);
  --electric-bg:     oklch(0.94 0.05 255);
  --up:              oklch(0.62 0.18 145);
  --down:            oklch(0.60 0.22 25);
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Container ---- */
.gp-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Type helpers ---- */
.serif  { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.mono   { font-family: var(--mono); }
.tnum   { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.muted  { color: var(--slate); }

/* ---- Keyframes ---- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---- Pulse dot ---- */
.dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--electric);
  animation: pulse 2s ease-in-out infinite;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary  { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--electric); }
.btn-ghost    { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-electric { background: var(--electric); color: #fff; }
.btn-electric:hover { background: var(--electric-2); }

/* ---- Card ---- */
.card {
  border: 1px solid var(--hairline); border-radius: 16px;
  background: var(--paper);
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--hairline-strong); }

/* ---- Tag ---- */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--hairline-strong); background: var(--paper);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--slate);
}
.tag-electric {
  background: var(--electric-bg); border-color: transparent; color: var(--electric-2);
}

/* ---- Mono table ---- */
.mono-table { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 13px; }
.mono-table th, .mono-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--hairline); }
.mono-table th { font-weight: 500; color: var(--slate); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.mono-table tr:hover td { background: var(--paper-2); }

/* ---- Delta badges ---- */
.delta-up   { font-family: var(--mono); font-size: 12px; color: var(--up); display: inline-flex; align-items: center; gap: 4px; }
.delta-down { font-family: var(--mono); font-size: 12px; color: var(--down); }

/* ---- Placeholder image ---- */
.placeholder-img {
  background: repeating-linear-gradient(135deg, var(--paper-2) 0 8px, var(--paper-3) 8px 16px);
  border: 1px solid var(--hairline); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate); font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ---- Grid background (V2 terminal) ---- */
.grid-bg {
  background-image:
    linear-gradient(to right,  var(--hairline) 1px, transparent 1px),
    linear-gradient(to bottom, var(--hairline) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ======================================================
   V2 TOP BAR
   ====================================================== */
.v2-topbar {
  background: var(--ink);
  border-bottom: 1px solid color-mix(in oklab, var(--paper), transparent 88%);
  overflow: hidden; height: 32px;
  display: flex; align-items: center;
  position: relative;
}
.v2-topbar-live {
  background: var(--electric); color: #fff;
  padding: 0 14px; height: 100%;
  display: flex; align-items: center; flex-shrink: 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; font-weight: 600;
}
.v2-topbar-scroll {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(to right, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, black 95%, transparent);
}
.v2-ticker-track {
  display: flex; gap: 36px; width: max-content;
  animation: ticker-scroll 90s linear infinite;
}
.v2-ticker-item {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  display: inline-flex; gap: 10px; flex-shrink: 0; color: var(--paper);
}
.v2-ticker-item .kw { color: color-mix(in oklab, var(--paper), transparent 50%); }
.v2-ticker-item .up { color: var(--up); }
.v2-ticker-item .sep { color: color-mix(in oklab, var(--paper), transparent 60%); }

/* ======================================================
   V2 NAV
   ====================================================== */
.v2-nav {
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
  position: sticky; top: 0; z-index: 50;
}
.v2-nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.v2-nav-logo img { height: 30px; width: auto; display: block; }
.v2-nav-links { display: flex; gap: 0; font-family: var(--mono); }
.v2-nav-links a {
  padding: 0 16px; color: var(--ink); text-decoration: none;
  font-size: 11px; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 6px;
  border-right: 1px solid var(--hairline); height: 64px;
  transition: color 0.15s;
}
.v2-nav-links a:first-child { border-left: 1px solid var(--hairline); }
.v2-nav-links a:hover { color: var(--electric-2); }
.v2-nav-links a .fkey { color: var(--slate-2); }
.v2-nav-right { display: flex; align-items: center; gap: 16px; }
#live-clock { font-family: var(--mono); font-size: 11px; color: var(--slate); letter-spacing: 0.04em; }
.v2-nav-cta { border-radius: 4px !important; padding: 10px 16px !important; font-size: 12px !important; }

/* ======================================================
   V2 HERO
   ====================================================== */
.v2-hero {
  position: relative; padding: 72px 0 80px;
  border-bottom: 1px solid var(--hairline);
}
.v2-hero-bg {
  position: absolute; inset: 0; opacity: 0.35; pointer-events: none;
  mask-image: radial-gradient(ellipse at 60% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 30%, black 0%, transparent 70%);
}
.v2-hero-eyebrow {
  display: flex; gap: 24px; align-items: center;
  margin-bottom: 28px; flex-wrap: wrap;
}
.v2-hero-eyebrow-tag { border-radius: 4px !important; }
.v2-hero-eyebrow-meta {
  font-family: var(--mono); font-size: 11px; color: var(--slate); letter-spacing: 0.06em;
}
.v2-hero-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end;
}
.v2-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 108px);
  line-height: 0.95; letter-spacing: -0.035em;
  margin: 0; max-width: 16ch; font-weight: 400;
}
.v2-hero h1 em { font-style: italic; color: var(--electric-2); }
.v2-hero-sub {
  font-size: 19px; line-height: 1.5; color: var(--ink-2);
  max-width: 58ch; margin-top: 32px;
}
.v2-hero-ctas {
  display: flex; gap: 12px; margin-top: 36px;
  align-items: center; flex-wrap: wrap;
}
.v2-hero-cta-note {
  font-family: var(--mono); font-size: 11px; color: var(--slate); letter-spacing: 0.06em;
}
.v2-hero-cta-note { margin-left: 4px; }

/* Hero quote box */
.v2-quote-box { border-radius: 6px; overflow: hidden; }
.v2-quote-box-header {
  padding: 10px 16px;
  display: flex; justify-content: space-between;
  background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
}
.v2-quote-box-header .live { color: var(--up); }
.v2-quote-box-body { padding: 24px; }
.v2-quote-box-roi {
  display: flex; align-items: baseline; gap: 14px;
}
#hero-roi-val {
  font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: 56px; color: var(--ink); letter-spacing: -0.04em; font-weight: 600;
}
.v2-quote-box-delta { font-family: var(--mono); font-size: 14px; color: var(--up); }
.v2-quote-box-label {
  font-family: var(--mono); font-size: 10px; color: var(--slate); letter-spacing: 0.08em; margin-top: 6px;
}
.v2-quote-box-stats { margin-top: 24px; padding: 20px 0; border-top: 1px solid var(--hairline); }
.v2-quote-box-stats table { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 12px; }
.v2-quote-box-stats td { padding: 5px 0; }
.v2-quote-box-stats td:last-child { text-align: right; color: var(--ink); }
.v2-quote-box-stats td:first-child { color: var(--slate); }

/* ======================================================
   SECTION HEADS
   ====================================================== */
.v2-sec-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 40px;
}
.v2-sec-head-left {}
.v2-sec-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--electric-2); margin-bottom: 16px;
  display: flex; gap: 16px; align-items: center;
}
.v2-sec-eyebrow .sec-n { color: var(--slate); }
.v2-sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.0; letter-spacing: -0.025em; margin: 0; font-weight: 400;
}
.v2-sec-head h2 em { font-style: italic; color: var(--electric-2); }
.v2-sec-action {
  font-family: var(--mono); font-size: 11px; color: var(--slate); letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.v2-sec-action .dot { background: var(--up); }

/* ======================================================
   REALITY TABLE (Section 01)
   ====================================================== */
.v2-reality { padding: 100px 0; border-bottom: 1px solid var(--hairline); background: var(--paper-2); }
.v2-reality-table { width: 100%; border-collapse: collapse; }
.v2-reality-table thead tr {
  background: var(--paper-2); border-bottom: 1px solid var(--hairline);
}
.v2-reality-table th {
  padding: 12px 20px; text-align: left;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--slate); font-weight: 500;
}
.v2-reality-table td { padding: 20px; border-bottom: 1px solid var(--hairline); }
.v2-reality-table td.row-n { font-family: var(--mono); font-size: 12px; color: var(--slate-2); width: 60px; }
.v2-reality-table td.row-say { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--ink-2); }
.v2-reality-table td.row-means { font-size: 15px; color: var(--ink); }
.v2-reality-table td.row-status { width: 140px; }
.v2-reality-table .status-badge {
  font-family: var(--mono); font-size: 10px; padding: 4px 10px; border-radius: 3px;
  background: color-mix(in oklab, var(--down), white 80%);
  color: var(--down); letter-spacing: 0.08em;
}

/* ======================================================
   DASHBOARD (Section 02)
   ====================================================== */
.v2-dashboard { padding: 100px 0; border-bottom: 1px solid var(--hairline); }
.v2-dashboard-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.v2-dashboard-table-wrap { border-radius: 6px; overflow: hidden; background: var(--paper); border: 1px solid var(--hairline); }
.v2-dashboard-table-head {
  padding: 12px 20px; background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
}
.v2-stat-cards { display: grid; gap: 24px; }
.v2-stat-card { padding: 20px; border-radius: 6px; }
.v2-stat-card-label { font-family: var(--mono); font-size: 10px; color: var(--slate); letter-spacing: 0.1em; }
.v2-stat-card-val {
  font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: 32px; color: var(--ink); letter-spacing: -0.02em;
  margin-top: 8px; font-weight: 600;
}
.v2-stat-card-delta { font-family: var(--mono); font-size: 11px; color: var(--up); margin-top: 4px; }

/* ======================================================
   METRICS (Section 03)
   ====================================================== */
.v2-metrics { padding: 100px 0; border-bottom: 1px solid var(--hairline); background: var(--paper-2); }
.v2-metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.v2-metric-card { padding: 28px; border-radius: 6px; background: var(--paper); height: 100%; }
.v2-metric-kpi { font-family: var(--mono); font-size: 10px; color: var(--slate); letter-spacing: 0.1em; }
.v2-metric-val {
  font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-size: 48px; color: var(--ink); letter-spacing: -0.04em;
  margin: 16px 0 12px; font-weight: 600; line-height: 1;
}
.v2-metric-label { margin-top: 16px; font-size: 14px; color: var(--ink-2); line-height: 1.4; }
.v2-metric-sub { margin-top: 6px; font-family: var(--mono); font-size: 10px; color: var(--slate); letter-spacing: 0.06em; }

/* ======================================================
   SERVICES (Section 04)
   ====================================================== */
.v2-services { padding: 100px 0; border-bottom: 1px solid var(--hairline); }
.v2-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.v2-service-card { padding: 32px; border-radius: 6px; height: 100%; }
.v2-service-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.v2-service-eng { font-family: var(--mono); font-size: 11px; color: var(--electric-2); letter-spacing: 0.1em; }
.v2-service-sla {
  font-family: var(--mono); font-size: 10px; color: var(--slate); letter-spacing: 0.06em;
  background: var(--paper-2); padding: 3px 8px; border-radius: 3px;
}
.v2-service-card h3 {
  font-family: var(--serif); font-size: 28px; margin: 0 0 12px;
  letter-spacing: -0.02em; font-style: italic; color: var(--ink); font-weight: 400;
}
.v2-service-bullets {
  margin: 24px 0 0; padding: 0; list-style: none;
  display: grid; gap: 10px; border-top: 1px solid var(--hairline); padding-top: 20px;
}
.v2-service-bullets li { font-size: 13px; color: var(--ink-2); display: flex; gap: 14px; }
.v2-service-bullets li .bullet-n { font-family: var(--mono); color: var(--electric-2); font-size: 11px; margin-top: 2px; flex-shrink: 0; }

/* ======================================================
   CASES (Section 05)
   ====================================================== */
.v2-cases { padding: 100px 0; border-bottom: 1px solid var(--hairline); background: var(--paper-2); }
.v2-cases-list { display: grid; gap: 24px; }
.v2-case-card { border-radius: 6px; background: var(--paper); overflow: hidden; }
.v2-case-bar {
  padding: 14px 24px; background: var(--ink); color: var(--paper);
  display: flex; justify-content: space-between; align-items: center;
}
.v2-case-bar-id { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; display: flex; gap: 16px; }
.v2-case-bar-id .sep { opacity: 0.5; }
.v2-case-bar-id .industry { opacity: 0.7; }
.v2-case-bar-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  background: var(--up); color: #fff; padding: 3px 10px; border-radius: 3px;
}
.v2-case-body { display: grid; grid-template-columns: 1.2fr 2fr; }
.v2-case-left { padding: 32px; border-right: 1px solid var(--hairline); }
.v2-case-left h3 { font-family: var(--serif); font-size: 32px; margin: 0; letter-spacing: -0.025em; font-weight: 400; }
.v2-case-quote {
  margin: 28px 0 12px; font-family: var(--serif);
  font-size: 22px; line-height: 1.35; font-style: italic; letter-spacing: -0.01em; font-weight: 400;
}
.v2-case-author { font-family: var(--mono); font-size: 11px; color: var(--slate); letter-spacing: 0.06em; }
.v2-case-kws { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 6px; }
.v2-case-kw {
  font-family: var(--mono); font-size: 10px; padding: 4px 8px;
  background: var(--paper-2); color: var(--slate); border-radius: 3px; letter-spacing: 0.04em;
}
.v2-case-right { padding: 0; }

/* ======================================================
   PROCESS / GANTT (Section 06)
   ====================================================== */
.v2-process { padding: 100px 0; border-bottom: 1px solid var(--hairline); }
.v2-gantt { padding: 32px; border-radius: 6px; background: var(--paper); }
.v2-gantt-head {
  display: grid; grid-template-columns: 240px 1fr 1.6fr; gap: 24px;
  margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--hairline);
  align-items: end;
}
.v2-gantt-col-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--slate); }
.v2-gantt-months { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2px; }
.v2-gantt-months span { font-family: var(--mono); font-size: 10px; color: var(--slate); letter-spacing: 0.06em; text-align: center; }
.v2-gantt-row {
  display: grid; grid-template-columns: 240px 1fr 1.6fr; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--hairline); align-items: center;
}
.v2-gantt-row:last-child { border-bottom: none; }
.v2-gantt-phase-n { font-family: var(--mono); font-size: 10px; color: var(--electric-2); letter-spacing: 0.1em; }
.v2-gantt-phase-name { font-family: var(--serif); font-size: 22px; letter-spacing: -0.02em; margin-top: 4px; font-weight: 400; }
.v2-gantt-bar-track { position: relative; height: 28px; }
.v2-gantt-bar {
  position: absolute; top: 0; height: 28px; border-radius: 3px;
  display: flex; align-items: center; padding-left: 10px;
}
.v2-gantt-bar span { font-family: var(--mono); font-size: 10px; color: #fff; letter-spacing: 0.06em; }
.v2-gantt-desc { font-size: 13px; color: var(--ink-2); }

/* ======================================================
   PRICING (Section 07)
   ====================================================== */
.v2-pricing { padding: 100px 0; border-bottom: 1px solid var(--hairline); background: var(--paper-2); }
.v2-pricing-table { border-radius: 6px; overflow: hidden; background: var(--paper); border: 1px solid var(--hairline); }
.v2-pricing-cols { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; }
.v2-pricing-label-cell {
  padding: 32px 28px; background: var(--paper-2); border-right: 1px solid var(--hairline);
}
.v2-pricing-label-cell .label {
  font-family: var(--mono); font-size: 10px; color: var(--slate); letter-spacing: 0.1em;
}
.v2-pricing-tier {
  padding: 32px 28px; border-right: 1px solid var(--hairline); position: relative;
}
.v2-pricing-tier:last-child { border-right: none; }
.v2-pricing-tier.featured { background: var(--ink); color: var(--paper); }
.v2-pricing-house-pick {
  position: absolute; top: 12px; right: 16px;
  background: var(--electric); color: #fff;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em;
  padding: 3px 8px; border-radius: 3px;
}
.v2-pricing-tier-name {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
}
.v2-pricing-price {
  font-family: var(--serif); font-size: 36px; margin: 12px 0 6px;
  letter-spacing: -0.02em; line-height: 1; font-weight: 400;
}
.v2-pricing-cadence { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; }
.v2-pricing-desc { margin: 16px 0 20px; font-size: 13px; line-height: 1.5; }
.v2-pricing-cta-btn {
  border-radius: 4px !important; font-size: 12px !important;
  padding: 10px 14px !important; width: 100%; justify-content: center;
}
.v2-pricing-feature-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
  border-top: 1px solid var(--hairline);
}
.v2-pricing-feature-label {
  padding: 16px 28px; border-right: 1px solid var(--hairline);
  font-size: 14px; color: var(--ink); background: var(--paper-2);
}
.v2-pricing-feature-val {
  padding: 16px 28px; font-family: var(--mono); font-size: 13px;
  border-right: 1px solid var(--hairline);
}
.v2-pricing-feature-val:last-child { border-right: none; }
.v2-pricing-feature-val.check  { color: var(--up); }
.v2-pricing-feature-val.dash   { color: var(--slate-2); }
.v2-pricing-feature-val.active { background: color-mix(in oklab, var(--ink), transparent 96%); }

/* ======================================================
   TESTIMONIALS (Section 08)
   ====================================================== */
.v2-testimonials { padding: 100px 0; border-bottom: 1px solid var(--hairline); }
.v2-testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.v2-testimonial-card { border-radius: 6px; overflow: hidden; }
.v2-testimonial-card-head {
  padding: 10px 20px; background: var(--paper-2); border-bottom: 1px solid var(--hairline);
  display: flex; justify-content: space-between;
}
.v2-testimonial-card-head .note-id { font-family: var(--mono); font-size: 10px; color: var(--slate); letter-spacing: 0.1em; }
.v2-testimonial-card-head .verified { font-family: var(--mono); font-size: 10px; color: var(--electric-2); letter-spacing: 0.08em; }
.v2-testimonial-body { padding: 32px; }
.v2-testimonial-quote {
  font-family: var(--serif); font-size: 24px; line-height: 1.4; margin: 0;
  letter-spacing: -0.01em; font-style: italic; font-weight: 400;
}
.v2-testimonial-attr { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--hairline); }
.v2-testimonial-name { font-weight: 500; font-size: 14px; }
.v2-testimonial-role { font-family: var(--mono); font-size: 10px; color: var(--slate); letter-spacing: 0.08em; margin-top: 2px; }

/* ======================================================
   FOUNDER (Section 09)
   ====================================================== */
.v2-founder { padding: 100px 0; border-bottom: 1px solid var(--hairline); background: var(--paper-2); }
.v2-founder-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; }
.v2-founder-card { border-radius: 6px; overflow: hidden; background: var(--paper); }
.v2-founder-portrait {
  aspect-ratio: 1 / 1; width: 100%; border-radius: 0; border: none;
}
.v2-founder-card-info { padding: 24px; }
.v2-founder-bio-id { font-family: var(--mono); font-size: 10px; color: var(--slate); letter-spacing: 0.1em; }
.v2-founder-name { font-family: var(--serif); font-size: 24px; margin-top: 8px; letter-spacing: -0.02em; font-weight: 400; }
.v2-founder-role { font-family: var(--mono); font-size: 11px; color: var(--electric-2); letter-spacing: 0.06em; margin-top: 4px; }
.v2-founder-bio p { margin: 0 0 24px; line-height: 1.5; }
.v2-founder-bio p:first-child { font-size: 22px; color: var(--ink); font-weight: 500; }
.v2-founder-bio p { font-size: 17px; color: var(--ink-2); }
.v2-founder-stats { border-radius: 6px; background: var(--paper); border: 1px solid var(--hairline); margin-top: 32px; }
.v2-founder-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.v2-founder-stat { padding: 24px; border-right: 1px solid var(--hairline); }
.v2-founder-stat:last-child { border-right: none; }
.v2-founder-stat-val { font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 40px; letter-spacing: -0.03em; color: var(--ink); font-weight: 600; }
.v2-founder-stat-label { font-family: var(--mono); font-size: 10px; color: var(--slate); letter-spacing: 0.1em; margin-top: 6px; }

/* ======================================================
   FAQ (Section 10)
   ====================================================== */
.v2-faq { padding: 100px 0; border-bottom: 1px solid var(--hairline); }
.v2-faq-list { border-radius: 6px; overflow: hidden; border: 1px solid var(--hairline); }
.faq-item + .faq-item { border-top: 1px solid var(--hairline); }
.faq-item button {
  width: 100%; padding: 22px 28px;
  display: grid; grid-template-columns: 60px 1fr 30px; gap: 16px;
  background: none; border: none; cursor: pointer; text-align: left;
  align-items: center; transition: background 0.15s;
}
.faq-item button:hover { background: var(--paper-2); }
.faq-q-n { font-family: var(--mono); font-size: 11px; color: var(--electric-2); letter-spacing: 0.08em; }
.faq-q-text { font-family: var(--sans); font-size: 17px; color: var(--ink); font-weight: 500; }
.faq-icon { font-family: var(--mono); font-size: 16px; color: var(--electric-2); text-align: right; }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-body-inner { padding: 0 28px 24px 104px; }
.faq-body-inner p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--slate); max-width: 62ch; }

/* ======================================================
   CTA (Section 11)
   ====================================================== */
.v2-cta { padding: 120px 0; background: var(--ink); color: var(--paper); }
.v2-cta-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--electric); margin-bottom: 24px;
  display: flex; gap: 12px; align-items: center;
}
.v2-cta h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 6.6vw, 116px); line-height: 0.94;
  letter-spacing: -0.035em; margin: 0 0 40px; max-width: 16ch; font-weight: 400;
}
.v2-cta h2 em { font-style: italic; color: var(--electric); }
.v2-cta-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: end; }
.v2-cta-sub {
  font-size: 20px; line-height: 1.45;
  color: color-mix(in oklab, var(--paper), transparent 15%);
  max-width: 50ch; margin: 0 0 32px;
}
.v2-cta-sub strong { color: var(--paper); }
.v2-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.v2-cta-btn-primary { border-radius: 4px !important; padding: 16px 24px !important; font-size: 14px !important; }
.v2-cta-btn-email {
  display: inline-flex; align-items: center;
  border-radius: 4px; padding: 16px 24px; font-size: 14px;
  background: transparent; color: var(--paper);
  border: 1px solid color-mix(in oklab, var(--paper), transparent 70%);
  text-decoration: none; cursor: pointer;
  transition: border-color 0.2s;
}
.v2-cta-btn-email:hover { border-color: var(--paper); }
.v2-cta-stats {
  font-family: var(--mono); font-size: 11px;
  color: color-mix(in oklab, var(--paper), transparent 50%);
  letter-spacing: 0.06em; text-align: right; line-height: 1.8;
}

/* ======================================================
   FOOTER
   ====================================================== */
.v2-footer {
  background: var(--ink); color: color-mix(in oklab, var(--paper), transparent 30%);
  border-top: 1px solid color-mix(in oklab, var(--paper), transparent 88%);
}
.v2-footer-inner {
  padding: 32px 40px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.v2-footer .mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; display: flex; gap: 24px; align-items: center; }
.v2-footer .mono .sep { opacity: 0.5; }
.v2-footer a { color: inherit; text-decoration: none; transition: color 0.15s; }
.v2-footer a:hover { color: var(--paper); }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .v2-hero-grid       { grid-template-columns: 1fr; gap: 40px; }
  .v2-dashboard-grid  { grid-template-columns: 1fr; }
  .v2-metrics-grid    { grid-template-columns: repeat(2, 1fr); }
  .v2-pricing-cols    { grid-template-columns: 1fr 1fr; }
  .v2-pricing-feature-row { grid-template-columns: 1fr 1fr; }
  .v2-founder-grid    { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .gp-container       { padding: 0 20px; }
  .v2-nav-links       { display: none; }
  .v2-hero h1         { font-size: clamp(36px, 8vw, 60px); }
  .v2-metrics-grid    { grid-template-columns: 1fr; }
  .v2-services-grid   { grid-template-columns: 1fr; }
  .v2-testimonials-grid { grid-template-columns: 1fr; }
  .v2-case-body       { grid-template-columns: 1fr; }
  .v2-gantt-head, .v2-gantt-row { grid-template-columns: 180px 1fr; }
  .v2-gantt-head > :last-child, .v2-gantt-row > :last-child { display: none; }
  .v2-pricing-cols    { grid-template-columns: 1fr; }
  .v2-pricing-feature-row { grid-template-columns: 1fr; }
  .v2-cta-grid        { grid-template-columns: 1fr; }
}

/* Selection */
::selection { background: var(--electric); color: white; }
