/*
Theme Name: DockPro
Theme URI: https://dockpro3d.com
Description: DockPro V1 — online 3D dock designer landing page (BlueCrane venture).
Author: BlueCrane
Version: 1.0.1
*/

/* ===== base system (dockpro-landing.css) ===== */
/* ═══════════════════════════════════════════════════════════
   DOCKPRO — LANDING SYSTEM
   Type: Barlow Condensed (display) + Libre Baskerville (body)
   Color: Marine / Tan / Ink / Paper
   BG rhythm: Light ~65% · Mid blue ~25% · Dark seldom (intimate)
═══════════════════════════════════════════════════════════ */

:root {
  --blue:       #0F69B0;
  --blue-dark:  #0B5290;
  --blue-deep:  #073A66;
  --blue-light: #DDEAF5;
  --tan:        #E0C9A2;
  --tan-light:  #F0E3CD;
  --bronze:     #8A6B38;   /* tan-on-light legible accent */
  --ink:        #11181F;
  --ink-soft:   #1B2630;
  --paper:      #FBF7F0;
  --paper-2:    #F4EEE2;
  --line:       #DED9CD;
  --muted:      #6B6B62;

  --bc: 'Barlow Condensed', sans-serif;
  --lb: 'Libre Baskerville', serif;

  --maxw: 1240px;
  --pad:  64px;
}

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

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--lb);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, image-slot { display: block; }

/* ─── shared primitives ─────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.eyebrow {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 34px; height: 2px;
  background: currentColor;
  opacity: 0.8;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

h1, h2, h3, h4 { font-family: var(--bc); font-weight: 800; letter-spacing: -0.01em; line-height: 0.95; text-transform: uppercase; }
h2.section-title { font-size: 76px; line-height: 0.92; text-wrap: balance; }
h2.section-title em, h1 em, .accent-i { font-style: italic; }

p { text-wrap: pretty; }

.lead { font-family: var(--lb); font-size: 19px; line-height: 1.7; }
.body { font-family: var(--lb); font-size: 16.5px; line-height: 1.75; }

/* buttons */
.btn {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -12px rgba(15,105,176,0.7); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 14px 30px -10px rgba(15,105,176,0.8); }
.btn-tan { background: var(--tan); color: var(--ink); }
.btn-tan:hover { background: #d3b988; }
.btn-paper { background: var(--paper); color: var(--blue-dark); }
.btn-paper:hover { background: #fff; }
.btn-ghost-dark { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px rgba(17,24,31,0.28); }
.btn-ghost-dark:hover { box-shadow: inset 0 0 0 1.5px rgba(17,24,31,0.55); }
.btn-ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.5); }
.btn-ghost-light:hover { box-shadow: inset 0 0 0 1.5px #fff; }

/* section vertical rhythm */
section { position: relative; }
.sec-pad { padding-top: 120px; padding-bottom: 120px; }
.sec-pad-sm { padding-top: 80px; padding-bottom: 80px; }

/* background variants */
.bg-light { background: var(--paper); color: var(--ink); }
.bg-light-2 { background: var(--paper-2); color: var(--ink); }
.bg-mid { background: var(--blue); color: #fff; }
.bg-mid .eyebrow { color: var(--tan); }
.bg-dark { background: var(--ink); color: #fff; }
.bg-dark .eyebrow { color: var(--tan); }

.kicker-tan { color: var(--bronze); }
.kicker-blue { color: var(--blue); }

/* ════════════════════════════════════════════════════════
   1 · STICKY NAV
═══════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,240,0.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 30px; height: 70px; }
.nav .logo { font-family: var(--bc); font-size: 25px; font-weight: 800; font-style: italic; color: var(--ink); white-space: nowrap; }
.nav .logo .pro { font-family: var(--lb); font-style: normal; font-weight: 400; color: var(--blue); }
.nav .links { display: flex; gap: 24px; margin-left: 8px; }
.nav .links a { font-family: var(--bc); font-weight: 600; font-size: 16px; letter-spacing: 0.05em; text-transform: uppercase; color: #4a4a44; text-decoration: none; white-space: nowrap; }
.nav .links a:hover { color: var(--blue); }
.nav .nav-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav .nav-right .signin { font-family: var(--bc); font-weight: 600; font-size: 16px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); text-decoration: none; white-space: nowrap; }
.nav .btn { padding: 10px 20px; font-size: 16px; }

/* ════════════════════════════════════════════════════════
   1 · HERO  (MID — blue wash over photo)
═══════════════════════════════════════════════════════════ */
.hero { background: var(--blue-deep); color: #fff; overflow: hidden; }
.hero .shot { position: absolute; inset: 0; }
.hero .shot image-slot { width: 100%; height: 100%; }
.hero .scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11,82,144,0.30) 0%, rgba(7,58,102,0.55) 55%, rgba(6,42,74,0.92) 100%),
    linear-gradient(95deg, rgba(7,42,74,0.86) 0%, rgba(7,42,74,0.35) 50%, rgba(7,42,74,0.1) 100%);
}
.hero .inner { position: relative; z-index: 2; }
.hero .wrap { padding-top: 92px; padding-bottom: 0; max-width: 1240px; }
.hero .eyebrow { color: var(--tan); margin-bottom: 22px; }
.hero h1 { font-size: 80px; line-height: 0.94; color: #fff; max-width: 15ch; margin-bottom: 26px; }
.hero h1 em { color: var(--tan); }
.hero .sub { font-family: var(--lb); font-size: 19px; line-height: 1.65; color: rgba(255,255,255,0.9); max-width: 540px; margin-bottom: 34px; }
.hero .ctas { display: flex; gap: 14px; align-items: center; margin-bottom: 56px; flex-wrap: wrap; }
.hero .ctas .note { font-family: var(--lb); font-style: italic; font-size: 14px; color: rgba(255,255,255,0.72); margin-left: 6px; }
.hero .ticker { border-top: 1px solid rgba(255,255,255,0.22); display: grid; grid-template-columns: repeat(4, 1fr); }
.hero .ticker .t { padding: 26px 0; display: flex; flex-direction: column; gap: 4px; border-right: 1px solid rgba(255,255,255,0.14); padding-right: 24px; }
.hero .ticker .t:last-child { border-right: none; }
.hero .ticker .tn { font-family: var(--bc); font-weight: 800; font-size: 46px; color: var(--tan); line-height: 1; }
.hero .ticker .tl { font-family: var(--lb); font-style: italic; font-size: 13.5px; color: rgba(255,255,255,0.78); line-height: 1.45; }

/* floating 3d-preview chip */
.hero .float-chip {
  position: absolute; right: var(--pad); top: 150px; z-index: 3;
  width: 340px; background: rgba(13,22,32,0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.7);
}
.hero .float-chip .fc-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.hero .float-chip .dot { width: 11px; height: 11px; border-radius: 50%; }
.hero .float-chip .fc-title { margin-left: 8px; font-family: var(--bc); font-weight: 600; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.hero .float-chip .fc-view { height: 210px; position: relative; }
.hero .float-chip .fc-view image-slot { width: 100%; height: 100%; }
.hero .float-chip .fc-foot { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; }
.hero .float-chip .fc-foot span { font-family: var(--bc); font-weight: 600; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--tan); }
.hero .float-chip .fc-foot .pillbtn { background: var(--tan); color: var(--ink); padding: 6px 12px; border-radius: 5px; font-size: 12px; }

/* ════════════════════════════════════════════════════════
   2 · PROBLEM AGITATION  (DARK — intimate)
═══════════════════════════════════════════════════════════ */
.problem { background: var(--ink); color: #fff; }
.problem .grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.problem .eyebrow { color: #C9745A; margin-bottom: 26px; }
.problem h2 { font-size: 72px; color: #fff; margin-bottom: 28px; }
.problem h2 .strike { color: rgba(255,255,255,0.4); text-decoration: line-through; text-decoration-color: #C9745A; }
.problem .lead { color: rgba(255,255,255,0.78); max-width: 30ch; }
.problem .pains { display: flex; flex-direction: column; gap: 0; }
.problem .pain { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 26px 0; border-top: 1px solid rgba(255,255,255,0.14); }
.problem .pain:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.problem .pain .pn { font-family: var(--bc); font-weight: 800; font-size: 30px; color: #C9745A; line-height: 1; }
.problem .pain h4 { font-size: 24px; color: #fff; text-transform: none; letter-spacing: 0; margin-bottom: 7px; font-weight: 700; }
.problem .pain p { font-family: var(--lb); font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.66); }

/* ════════════════════════════════════════════════════════
   3 · SOLUTION  (LIGHT)
═══════════════════════════════════════════════════════════ */
.solution .head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.solution .eyebrow { color: var(--blue); margin-bottom: 22px; }
.solution h2 { font-size: 80px; margin-bottom: 24px; }
.solution h2 em { color: var(--blue); }
.solution .head .lead { color: #44443d; }
.solution .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 24px 50px -36px rgba(11,40,70,0.35);
}
.feature .fimg { height: 190px; position: relative; background: var(--paper-2); }
.feature .fimg image-slot { width: 100%; height: 100%; }
.feature .fnum { position: absolute; left: 16px; top: 14px; font-family: var(--bc); font-weight: 800; font-size: 16px; letter-spacing: 0.1em; color: #fff; background: rgba(17,24,31,0.5); backdrop-filter: blur(4px); padding: 4px 10px; border-radius: 5px; }
.feature .fbody { padding: 28px 26px 30px; }
.feature h3 { font-size: 28px; margin-bottom: 12px; }
.feature p { font-family: var(--lb); font-size: 15px; line-height: 1.7; color: #4a4a43; }
.feature.wide { grid-column: span 3; flex-direction: row; }
.feature.wide .fimg { width: 46%; height: auto; }
.feature.wide .fbody { flex: 1; padding: 44px 48px; display: flex; flex-direction: column; justify-content: center; }
.feature.wide h3 { font-size: 40px; margin-bottom: 16px; }
.feature.wide p { font-size: 17px; max-width: 46ch; }
.feature.wide .pills { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.feature.wide .pills span { font-family: var(--bc); font-weight: 600; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue-dark); background: var(--blue-light); padding: 6px 13px; border-radius: 6px; }

/* ════════════════════════════════════════════════════════
   4 · TESTIMONIALS  (LIGHT)
═══════════════════════════════════════════════════════════ */
.testi { background: var(--paper-2); }
.testi .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.testi .eyebrow { color: var(--blue); margin-bottom: 18px; }
.testi h2 { font-size: 68px; max-width: 14ch; }
.testi .rating { text-align: right; flex: none; }
.testi .rating .stars { font-size: 26px; color: var(--tan); letter-spacing: 2px; }
.testi .rating .rl { font-family: var(--lb); font-style: italic; font-size: 14px; color: var(--muted); margin-top: 4px; }
.testi .grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 40px 42px; display: flex; flex-direction: column; box-shadow: 0 24px 50px -40px rgba(11,40,70,0.4); }
.tcard.feature-q { background: var(--blue); color: #fff; }
.tcard .q { font-family: var(--lb); font-size: 17px; line-height: 1.7; color: #2c2c26; margin-bottom: 28px; }
.tcard.feature-q .q { font-size: 26px; line-height: 1.55; color: #fff; font-style: italic; }
.tcard .who { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.tcard .who .av { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex: none; background: var(--paper-2); }
.tcard .who .av image-slot { width: 100%; height: 100%; }
.tcard .who .nm { font-family: var(--bc); font-weight: 700; font-size: 19px; letter-spacing: 0.01em; }
.tcard .who .rl { font-family: var(--lb); font-style: italic; font-size: 13px; color: var(--muted); }
.tcard.feature-q .who .rl { color: rgba(255,255,255,0.75); }
.testi .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 26px; }

/* ════════════════════════════════════════════════════════
   5 · LOGO WALL  (LIGHT band)
═══════════════════════════════════════════════════════════ */
.logos { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos .wrap { padding-top: 54px; padding-bottom: 54px; }
.logos .label { text-align: center; font-family: var(--bc); font-weight: 600; font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 34px; }
.logos .row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.logos .lg { display: flex; align-items: center; gap: 11px; opacity: 0.62; }
.logos .lg .gm { width: 30px; height: 30px; border-radius: 6px; background: var(--ink); display: grid; place-items: center; }
.logos .lg .gm svg { display: block; }
.logos .lg .gt { font-family: var(--bc); font-weight: 800; font-size: 22px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); }
.logos .lg .gt span { font-family: var(--lb); font-weight: 400; text-transform: none; font-size: 17px; }

/* ════════════════════════════════════════════════════════
   6 · UGC GALLERY  (LIGHT)
═══════════════════════════════════════════════════════════ */
.gallery .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.gallery .eyebrow { color: var(--blue); margin-bottom: 18px; }
.gallery h2 { font-size: 72px; max-width: 16ch; }
.gallery h2 em { color: var(--blue); }
.gallery .head p { font-family: var(--lb); font-size: 16px; line-height: 1.7; color: #4a4a43; max-width: 34ch; }
.gallery .grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 16px; }
.gcell { position: relative; border-radius: 12px; overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); }
.gcell image-slot { width: 100%; height: 100%; }
.gcell .ov { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px 16px 14px; background: linear-gradient(transparent, rgba(7,42,74,0.85)); display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; pointer-events: none; }
.gcell .ov .u { font-family: var(--bc); font-weight: 700; font-size: 16px; letter-spacing: 0.03em; color: #fff; }
.gcell .ov .u span { display: block; font-family: var(--lb); font-style: italic; font-weight: 400; font-size: 12px; color: rgba(255,255,255,0.82); letter-spacing: 0; text-transform: none; margin-top: 2px; }
.gcell .ov .likes { font-family: var(--bc); font-weight: 700; font-size: 14px; color: var(--tan); white-space: nowrap; }
.gcell .tagchip { position: absolute; left: 12px; top: 12px; z-index: 2; font-family: var(--bc); font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; background: rgba(17,24,31,0.45); backdrop-filter: blur(4px); padding: 4px 9px; border-radius: 5px; }
.gcell.tall { grid-row: span 2; }
.gcell.wide { grid-column: span 2; }
.gallery .gfoot { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.gallery .gfoot .ct { font-family: var(--lb); font-style: italic; font-size: 15px; color: var(--muted); }

/* ════════════════════════════════════════════════════════
   7 · STEPS  (MID — blue)
═══════════════════════════════════════════════════════════ */
.steps { background: var(--blue); color: #fff; overflow: hidden; }
.steps .head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.steps .eyebrow { color: var(--tan); margin-bottom: 20px; }
.steps h2 { font-size: 78px; color: #fff; }
.steps h2 em { color: var(--tan); }
.steps .row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps .step { padding: 0 30px; position: relative; }
.steps .step:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 34px; width: 1px; height: calc(100% - 34px); background: rgba(255,255,255,0.18); }
.steps .step .sn { font-family: var(--bc); font-weight: 800; font-size: 22px; width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--tan); color: var(--tan); display: grid; place-items: center; margin-bottom: 26px; }
.steps .step h3 { font-size: 30px; color: #fff; margin-bottom: 12px; }
.steps .step p { font-family: var(--lb); font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.82); }
.steps .step .meta { font-family: var(--bc); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tan); margin-top: 16px; display: inline-block; }
.steps .step-cta { text-align: center; margin-top: 70px; }

/* ════════════════════════════════════════════════════════
   8 · LIVE DEMO  (LIGHT, dark viewport)
═══════════════════════════════════════════════════════════ */
.demo .head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.demo .eyebrow { color: var(--blue); margin-bottom: 20px; }
.demo h2 { font-size: 76px; margin-bottom: 22px; }
.demo h2 em { color: var(--blue); }
.demo .head .lead { color: #44443d; }
.demo .stage {
  background: var(--ink); border-radius: 18px; overflow: hidden;
  border: 1px solid var(--ink-soft);
  box-shadow: 0 50px 100px -50px rgba(7,42,74,0.6);
}
.demo .stage-bar { display: flex; align-items: center; gap: 9px; padding: 16px 22px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.demo .stage-bar .dot { width: 12px; height: 12px; border-radius: 50%; }
.demo .stage-bar .title { margin-left: 12px; font-family: var(--bc); font-weight: 600; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.demo .stage-bar .live { margin-left: auto; display: flex; align-items: center; gap: 8px; font-family: var(--bc); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: #6FCF97; }
.demo .stage-bar .live .blip { width: 9px; height: 9px; border-radius: 50%; background: #6FCF97; box-shadow: 0 0 0 0 rgba(111,207,151,0.6); animation: blip 1.6s infinite; }
@keyframes blip { 0% { box-shadow: 0 0 0 0 rgba(111,207,151,0.55);} 70%{ box-shadow:0 0 0 9px rgba(111,207,151,0);} 100%{ box-shadow:0 0 0 0 rgba(111,207,151,0);} }
.demo .stage-body { display: grid; grid-template-columns: 250px 1fr; min-height: 540px; }
.demo .panel { border-right: 1px solid rgba(255,255,255,0.1); padding: 24px 22px; display: flex; flex-direction: column; gap: 24px; }
.demo .panel .pgroup .pglabel { font-family: var(--bc); font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.demo .panel .opt { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; margin-bottom: 7px; cursor: pointer; border: 1px solid transparent; }
.demo .panel .opt.active { background: rgba(15,105,176,0.22); border-color: rgba(46,143,216,0.5); }
.demo .panel .opt .sw { width: 22px; height: 22px; border-radius: 5px; flex: none; }
.demo .panel .opt .ot { font-family: var(--bc); font-weight: 600; font-size: 15px; letter-spacing: 0.02em; text-transform: uppercase; color: rgba(255,255,255,0.88); }
.demo .panel .slider { margin-top: 4px; }
.demo .panel .slider .sl-top { display: flex; justify-content: space-between; font-family: var(--bc); font-weight: 600; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 9px; }
.demo .panel .slider .track { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.14); position: relative; }
.demo .panel .slider .track .fill { position: absolute; left: 0; top: 0; bottom: 0; width: 62%; border-radius: 4px; background: var(--tan); }
.demo .panel .slider .track .knob { position: absolute; left: 62%; top: 50%; transform: translate(-50%,-50%); width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.4); }
.demo .viewport { position: relative; }
.demo .viewport image-slot { width: 100%; height: 100%; }
.demo .viewport .vfloat { position: absolute; z-index: 2; background: rgba(13,22,32,0.62); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.16); border-radius: 10px; padding: 13px 18px; }
.demo .viewport .vprice { right: 22px; top: 22px; text-align: right; }
.demo .viewport .vprice .pl { font-family: var(--bc); font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.demo .viewport .vprice .pn { font-family: var(--bc); font-weight: 800; font-size: 34px; color: var(--tan); line-height: 1; }
.demo .viewport .vhint { left: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; font-family: var(--bc); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.demo .viewport .vdims { right: 22px; bottom: 22px; font-family: var(--bc); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.demo .stage-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 26px; border-top: 1px solid rgba(255,255,255,0.1); }
.demo .stage-foot .hint { font-family: var(--lb); font-style: italic; font-size: 14px; color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════════════════════
   9 · OBJECTIONS  (LIGHT)
═══════════════════════════════════════════════════════════ */
.objections .grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
.objections .eyebrow { color: var(--blue); margin-bottom: 22px; }
.objections h2 { font-size: 72px; margin-bottom: 22px; }
.objections h2 em { color: var(--blue); }
.objections .aside .lead { color: #44443d; max-width: 32ch; margin-bottom: 30px; }
.objections .aside .help { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px 26px; }
.objections .aside .help .hl { font-family: var(--bc); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.objections .aside .help p { font-family: var(--lb); font-size: 14.5px; line-height: 1.6; color: #4a4a43; margin-bottom: 16px; }
.objections .qa { border-top: 1px solid var(--line); }
.objections .qa .item { border-bottom: 1px solid var(--line); padding: 26px 0; }
.objections .qa .q { display: flex; gap: 16px; align-items: baseline; }
.objections .qa .q .mk { font-family: var(--bc); font-weight: 800; font-size: 20px; color: var(--blue); flex: none; }
.objections .qa .q h4 { font-family: var(--bc); font-weight: 700; font-size: 26px; text-transform: none; letter-spacing: 0; line-height: 1.1; }
.objections .qa .a { font-family: var(--lb); font-size: 15.5px; line-height: 1.7; color: #4a4a43; padding-left: 36px; margin-top: 12px; max-width: 60ch; }

/* ════════════════════════════════════════════════════════
   10 · URGENCY  (MID — blue)
═══════════════════════════════════════════════════════════ */
.urgency { background: var(--blue); color: #fff; }
.urgency .wrap { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.urgency .eyebrow { color: var(--tan); margin-bottom: 20px; }
.urgency h2 { font-size: 64px; color: #fff; max-width: 16ch; margin-bottom: 20px; }
.urgency h2 em { color: var(--tan); }
.urgency p { font-family: var(--lb); font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.85); max-width: 44ch; }
.urgency .counter { flex: none; text-align: center; background: rgba(7,42,74,0.4); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 36px 48px; min-width: 320px; }
.urgency .counter .big { font-family: var(--bc); font-weight: 800; font-size: 96px; color: var(--tan); line-height: 0.9; }
.urgency .counter .big .of { color: rgba(255,255,255,0.55); font-size: 44px; }
.urgency .counter .cl { font-family: var(--bc); font-weight: 600; font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin: 8px 0 20px; }
.urgency .counter .bar { height: 12px; border-radius: 8px; background: rgba(255,255,255,0.18); overflow: hidden; }
.urgency .counter .bar .fill { height: 100%; width: 74%; border-radius: 8px; background: var(--tan); }
.urgency .counter .sub { font-family: var(--lb); font-style: italic; font-size: 13.5px; color: rgba(255,255,255,0.78); margin-top: 14px; }

/* ════════════════════════════════════════════════════════
   11 · FOUNDERS CTA  (DARK — intimate)
═══════════════════════════════════════════════════════════ */
.founders { background: var(--ink); color: #fff; overflow: hidden; position: relative; }
.founders::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(820px 460px at 78% 12%, rgba(15,105,176,0.32), transparent 60%),
              radial-gradient(680px 420px at 8% 88%, rgba(224,201,162,0.10), transparent 58%);
}
.founders .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 0.92fr; gap: 70px; align-items: center; }
.founders .eyebrow { color: var(--tan); margin-bottom: 24px; }
.founders h2 { font-size: 82px; color: #fff; line-height: 0.9; margin-bottom: 26px; }
.founders h2 em { color: var(--tan); }
.founders .lead { font-family: var(--lb); font-size: 19px; line-height: 1.7; color: rgba(255,255,255,0.82); max-width: 42ch; margin-bottom: 32px; }
.founders .bullets { display: flex; flex-direction: column; gap: 16px; }
.founders .bullets li { list-style: none; display: flex; gap: 14px; align-items: flex-start; font-family: var(--lb); font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.9); }
.founders .bullets .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--tan); color: var(--ink); display: grid; place-items: center; font-family: var(--bc); font-weight: 800; font-size: 15px; margin-top: 1px; }
.founders .bullets li b { font-family: var(--bc); font-weight: 700; font-size: 19px; letter-spacing: 0.01em; }

/* pricing card */
.pcard { background: var(--paper); color: var(--ink); border-radius: 20px; overflow: hidden; box-shadow: 0 60px 120px -50px rgba(0,0,0,0.7); }
.pcard .ptop { background: var(--blue); color: #fff; padding: 28px 36px; display: flex; align-items: center; justify-content: space-between; }
.pcard .ptop .pt-l { font-family: var(--bc); font-weight: 800; font-size: 24px; letter-spacing: 0.02em; }
.pcard .ptop .pt-tag { font-family: var(--bc); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); background: var(--tan); padding: 6px 12px; border-radius: 6px; }
.pcard .pbody { padding: 36px; }
.pcard .price { display: flex; align-items: flex-end; gap: 14px; margin-bottom: 8px; }
.pcard .price .now { font-family: var(--bc); font-weight: 800; font-size: 80px; line-height: 0.85; color: var(--ink); }
.pcard .price .col { display: flex; flex-direction: column; gap: 4px; padding-bottom: 8px; }
.pcard .price .was { font-family: var(--bc); font-weight: 700; font-size: 24px; color: var(--muted); text-decoration: line-through; }
.pcard .price .per { font-family: var(--lb); font-style: italic; font-size: 14px; color: var(--muted); }
.pcard .lifetime { font-family: var(--bc); font-weight: 700; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-dark); background: var(--blue-light); display: inline-block; padding: 7px 14px; border-radius: 7px; margin-bottom: 26px; }
.pcard .incl { border-top: 1px solid var(--line); padding-top: 22px; margin-bottom: 26px; display: flex; flex-direction: column; gap: 13px; }
.pcard .incl .ln { display: flex; gap: 12px; align-items: flex-start; font-family: var(--lb); font-size: 15px; line-height: 1.5; color: #3c3b35; }
.pcard .incl .ln .ck { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-family: var(--bc); font-weight: 800; font-size: 13px; margin-top: 1px; }
.pcard .pcta { display: block; width: 100%; text-align: center; justify-content: center; font-size: 21px; padding: 18px; }
.pcard .guarantee { text-align: center; font-family: var(--lb); font-style: italic; font-size: 13.5px; color: var(--muted); margin-top: 16px; }
.pcard .seats { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); font-family: var(--bc); font-weight: 600; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bronze); }
.pcard .seats .pip { display: inline-flex; gap: 3px; }
.pcard .seats .pip i { width: 7px; height: 14px; border-radius: 2px; background: var(--tan); }
.pcard .seats .pip i.off { background: var(--line); }

/* ── footer ── */
.foot { background: #0A1015; color: rgba(255,255,255,0.7); }
.foot .wrap { padding-top: 60px; padding-bottom: 40px; }
.foot .top { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot .logo { font-family: var(--bc); font-size: 24px; font-weight: 800; font-style: italic; color: #fff; }
.foot .logo .pro { font-family: var(--lb); font-style: normal; font-weight: 400; color: var(--tan); }
.foot .cols { display: flex; gap: 70px; }
.foot .col h5 { font-family: var(--bc); font-weight: 700; font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.foot .col a { display: block; font-family: var(--lb); font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 10px; }
.foot .col a:hover { color: var(--tan); }
.foot .bottom { display: flex; justify-content: space-between; padding-top: 26px; font-family: var(--lb); font-size: 13px; color: rgba(255,255,255,0.45); }

/* ── responsive guard (keep desktop comp intact, scale a touch) ── */
@media (max-width: 1340px) {
  .hero .float-chip { display: none; }
}
@media (max-width: 1300px) {
  :root { --pad: 44px; }
}


/* ===== V1 additions (was scoped <style>) ===== */
/* ── DRAFT-only additions: V1 pieces the base system doesn't ship ── */

  /* body font: replace serif with Barlow (sans sibling of the condensed title) */
  :root{--lb:'Barlow',sans-serif;}
  html{scroll-padding-top:96px}

  /* ── HEADER: fixed, transparent-at-top, hide-on-scroll-down / show-on-scroll-up ── */
  .nav{position:fixed;top:0;left:0;right:0;
    transition:transform .32s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease}
  .nav.hidden{transform:translateY(-100%)}
  /* at top of page: transparent, larger white logo, links hidden, only number + CTA float right */
  .nav.at-top{background:transparent;backdrop-filter:none;border-bottom-color:transparent;box-shadow:none}
  .nav.at-top .wrap{height:92px}
  .nav.at-top .links{display:none}
  .nav.at-top .logo img{height:64px;filter:brightness(0) invert(1)}
  .nav.at-top .signin{color:#fff}
  /* scrolled: solid bar with full nav */
  .nav.scrolled{background:rgba(251,247,240,0.92);backdrop-filter:saturate(140%) blur(12px);
    border-bottom:1px solid var(--line);box-shadow:0 6px 24px -12px rgba(11,40,70,.25)}

  /* real images fill their frames */
  .feature .fimg img{width:100%;height:100%;object-fit:cover;display:block}
  .feature.wide .fimg{min-height:340px}
  .feature.wide .fimg img{width:100%;height:100%;min-height:340px;object-fit:cover}

  /* logos */
  .nav .logo{display:inline-flex;align-items:center}
  .nav .logo img{height:46px;width:auto;display:block}
  .foot .logo img{height:88px;width:auto;display:block}

  /* ── HERO ½ split (blue copy panel | laptop image) ── */
  .hero.hero-split{background:
    radial-gradient(130% 120% at 88% 0%, #1378bf 0%, #0B5290 36%, #073A66 70%, #062138 100%);}
  .hero.hero-split .wrap{padding-top:118px;padding-bottom:0}
  .hero .hero-grid{display:grid;grid-template-columns:1fr;gap:34px;align-items:center}
  .hero .hero-copy h1{margin-bottom:22px}
  .hero .hero-media{position:relative}
  .hero .hero-media picture{display:block;border-radius:18px;overflow:hidden;
    box-shadow:0 40px 90px -34px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.08)}
  .hero .hero-media img{width:100%;height:auto;display:block}
  .hero .hero-media .tagpill{position:absolute;left:18px;bottom:18px;z-index:2;
    font-family:var(--bc);font-weight:700;font-size:13px;letter-spacing:.06em;text-transform:uppercase;
    color:var(--ink);background:var(--tan);padding:7px 13px;border-radius:6px;box-shadow:0 6px 18px rgba(0,0,0,.25)}
  .hero .ticker{margin-top:34px}

  /* desktop: asymmetric — copy on the left, image enlarged and bleeding off the right edge */
  @media(min-width:981px){
    .hero .hero-grid{grid-template-columns:minmax(420px,540px) 1fr;gap:40px;align-items:center}
    .hero .hero-copy{padding:18px 0}
    .hero .hero-media{justify-self:start;width:calc(50vw - 70px)}
    .hero .hero-media picture{border-radius:20px}
    .hero .ticker{margin-top:26px}
  }

  /* ── PRICING (3 tiers) — built on the system tokens ── */
  .pricing .head{text-align:center;max-width:720px;margin:0 auto 56px}
  .pricing .eyebrow{color:var(--blue);margin-bottom:20px}
  .pricing h2{font-size:72px}
  .pricing h2 em{color:var(--blue)}
  .pricing .promo{font-family:var(--lb);font-style:italic;font-size:16px;color:var(--bronze);margin-top:16px}
  .pricing .tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch}
  .ptier{background:#fff;border:1px solid var(--line);border-radius:16px;padding:36px 32px;display:flex;
    flex-direction:column;box-shadow:0 24px 50px -40px rgba(11,40,70,.4)}
  .ptier.featured{border:2px solid var(--tan);box-shadow:0 40px 80px -44px rgba(11,40,70,.55);position:relative}
  .ptier .tier-tag{font-family:var(--bc);font-weight:700;font-size:13px;letter-spacing:.1em;text-transform:uppercase;
    color:var(--bronze)}
  .ptier.featured .tier-tag{position:absolute;top:-13px;left:32px;background:var(--tan);color:var(--ink);
    padding:5px 13px;border-radius:6px}
  .ptier .amt{font-family:var(--bc);font-weight:800;font-size:62px;line-height:.85;color:var(--ink);margin:14px 0 2px}
  .ptier .amt small{font-family:var(--lb);font-style:italic;font-size:16px;font-weight:400;color:var(--muted)}
  .ptier .addon{font-family:var(--bc);font-weight:700;font-size:15px;letter-spacing:.03em;text-transform:uppercase;
    color:var(--blue-dark);margin:2px 0 4px}
  .ptier .tline{font-family:var(--lb);font-size:14px;color:var(--muted);min-height:42px;margin-bottom:8px}
  .ptier ul{list-style:none;border-top:1px solid var(--line);padding-top:20px;margin:8px 0 26px;
    display:flex;flex-direction:column;gap:12px}
  .ptier ul li{display:flex;gap:11px;align-items:flex-start;font-family:var(--lb);font-size:15px;line-height:1.5;color:#3c3b35}
  .ptier ul li .ck{flex:none;width:21px;height:21px;border-radius:50%;background:var(--blue);color:#fff;
    display:grid;place-items:center;font-family:var(--bc);font-weight:800;font-size:12px;margin-top:1px}
  .ptier .btn{margin-top:auto;justify-content:center;width:100%}
  .pricing .fineprint{text-align:center;font-family:var(--lb);font-style:italic;font-size:14px;color:var(--muted);margin-top:0}

  /* ── FINAL CTA band (tablets image | copy) ── */
  .finalcta{background:
    radial-gradient(120% 140% at 12% 50%, #1378bf 0%, var(--blue) 42%, var(--blue-dark) 100%);color:#fff;overflow:hidden}
  .finalcta .wrap{display:grid;grid-template-columns:1.15fr .85fr;gap:36px;align-items:center}
  .finalcta .cta-media img{width:100%;height:auto;display:block;
    transform:scale(1.18);transform-origin:left center;
    filter:drop-shadow(0 36px 60px rgba(0,0,0,.45))}
  .finalcta .eyebrow{color:var(--tan);margin-bottom:20px}
  .finalcta h2{font-size:66px;color:#fff;max-width:16ch;margin-bottom:18px}
  .finalcta h2 em{color:var(--tan)}
  .finalcta p{font-family:var(--lb);font-size:18px;line-height:1.6;color:rgba(255,255,255,.9);max-width:46ch;margin-bottom:30px}
  @media(max-width:980px){
    .finalcta .wrap{grid-template-columns:1fr;text-align:center}
    .finalcta .cta-media{max-width:440px;margin:0 auto}
    .finalcta .eyebrow{justify-content:center}
  }

  /* objections aside — make the embed note read clean */
  .objections .aside .help .cal-note{font-family:var(--lb);font-style:italic;font-size:13px;color:var(--muted);margin-top:10px}

  /* ── LIVE 3D embed inside the demo stage ── */
  .demo .stage-body.embed{display:block;min-height:0}
  .demo .stage-body.embed iframe{display:block;width:100%;height:600px;border:0;background:#fff}
  @media(max-width:760px){.demo .stage-body.embed iframe{height:440px}}
  .demo .stage-bar .fs-btn{margin-left:14px;display:inline-flex;align-items:center;gap:7px;
    font-family:var(--bc);font-weight:700;font-size:13px;letter-spacing:.06em;text-transform:uppercase;
    color:var(--ink);background:var(--tan);border:0;border-radius:6px;padding:7px 13px;cursor:pointer;
    transition:background .14s ease,transform .12s ease}
  .demo .stage-bar .fs-btn:hover{background:#d3b988;transform:translateY(-1px)}
  /* native fullscreen on the iframe: ensure it fills the screen */
  #demo3d:fullscreen{width:100vw;height:100vh}
  #demo3d:-webkit-full-screen{width:100vw;height:100vh}

  /* ── LEAD FORM MODAL (restyled to the system) ── */
  .modal-overlay{position:fixed;inset:0;background:rgba(6,33,56,.62);backdrop-filter:blur(4px);z-index:300;
    display:none;align-items:flex-start;justify-content:center;padding:48px 16px;overflow:auto}
  .modal-overlay.open{display:flex}
  .modal{background:var(--paper);border-radius:18px;max-width:520px;width:100%;overflow:hidden;
    box-shadow:0 60px 120px -50px rgba(0,0,0,.7);animation:pop .2s ease}
  @keyframes pop{from{transform:translateY(14px);opacity:0}to{transform:none;opacity:1}}
  .modal-head{background:var(--blue);color:#fff;padding:22px 28px;display:flex;justify-content:space-between;align-items:center}
  .modal-head h3{font-size:26px;color:#fff;text-transform:none;letter-spacing:0}
  .modal-close{background:none;border:0;color:#fff;font-size:1.7rem;cursor:pointer;line-height:1}
  .steps-bar{display:flex;gap:6px;padding:18px 28px 0}
  .steps-bar .s{flex:1;height:6px;border-radius:99px;background:#e6ddcb}
  .steps-bar .s.active{background:var(--tan)}
  .modal-body{padding:22px 28px 30px}
  .fstep{display:none}.fstep.active{display:block}
  .fstep h4{font-family:var(--bc);font-weight:700;font-size:24px;text-transform:none;letter-spacing:0;margin-bottom:4px}
  .fstep .hint{font-family:var(--lb);font-style:italic;font-size:14px;color:var(--muted);margin-bottom:18px}
  .choice{display:block;border:2px solid var(--line);border-radius:12px;padding:16px 18px;margin-bottom:12px;cursor:pointer;
    font-family:var(--bc);font-weight:600;font-size:18px;letter-spacing:.01em;background:#fff;transition:border-color .12s,background .12s}
  .choice:hover{border-color:#bcd6ec}
  .choice.sel{border-color:var(--blue);background:var(--blue-light)}
  .choice small{display:block;font-family:var(--lb);font-weight:400;font-style:italic;font-size:13px;color:var(--muted);margin-top:4px;text-transform:none;letter-spacing:0}
  label.fld{display:block;margin-bottom:14px;font-family:var(--bc);font-weight:600;font-size:14px;letter-spacing:.06em;text-transform:uppercase;color:#4a4a44}
  label.fld input,label.fld textarea{width:100%;margin-top:7px;padding:12px 14px;border:1.5px solid #d9d2c2;border-radius:9px;
    font-family:var(--lb);font-size:16px;background:#fff}
  label.fld input:focus,label.fld textarea:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 3px var(--blue-light)}
  .check{display:flex;gap:10px;align-items:flex-start;font-family:var(--lb);font-size:13px;color:var(--muted);margin-bottom:18px}
  .check input{margin-top:3px}
  .modal-actions{display:flex;justify-content:space-between;gap:10px;margin-top:6px}
  .cal-embed{background:var(--blue-light);border:1.5px dashed #a9cbe6;border-radius:12px;padding:22px;text-align:center;
    font-family:var(--bc);font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--blue-dark);margin-bottom:16px}
  .cal-embed small{display:block;font-family:var(--lb);font-weight:400;font-style:italic;text-transform:none;letter-spacing:0;font-size:13px;margin-top:6px}
  /* Cal.com inline scheduler on the confirmation step */
  .modal.with-cal{max-width:780px}
  .cal-inline{width:100%;height:560px;max-height:64vh;overflow:auto;background:#fff;border:1px solid var(--line);border-radius:12px;margin:6px 0 16px}

  /* light responsive */
  @media(max-width:920px){
    .pricing .tiers{grid-template-columns:1fr}
    .ptier.featured .tier-tag{left:50%;transform:translateX(-50%)}
  }
