/* ============================================
   Dundee Website Design — Site Stylesheet
   ============================================
   Cyberpunk-boutique system: dark navy + cyan + magenta.
   One file, shared across every page.
   ============================================ */

:root {
  --bg: #070c1c;
  --bg-2: #0e1530;
  --bg-3: #152042;
  --fg: #ffffff;
  --fg-dim: #9aa3b8;
  --fg-faint: #4a546b;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.18);
  --cyan: #00e0ff;
  --cyan-soft: rgba(0,224,255,0.12);
  --magenta: #ff45f3;
  --magenta-soft: rgba(255,69,243,0.10);
  --lime: #c8ff3d;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.mono { font-family: var(--font-mono); letter-spacing: 0.04em; }

.tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
}
.tag::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--cyan);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--magenta);
}

/* =====================
   HEADER
   ===================== */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,12,28,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand .square {
  width: 18px; height: 18px;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan-soft);
  border-radius: 3px;
}
.brand b { color: var(--magenta); font-weight: 600; }
.nav ul {
  display: flex; gap: 32px;
  list-style: none; margin: 0; padding: 0;
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav ul a { color: var(--fg-dim); transition: color 0.15s; }
.nav ul a:hover { color: var(--fg); }
.nav .cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--magenta);
  color: var(--magenta);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.nav .cta:hover {
  background: var(--magenta);
  color: var(--bg);
  box-shadow: 0 0 28px rgba(255,61,240,0.4);
}
@media (max-width: 900px) {
  .nav ul { display: none; }
}

/* =====================
   HERO
   ===================== */
.hero {
  padding: clamp(64px, 12vw, 130px) 0 clamp(48px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 60%; height: 70%;
  background: radial-gradient(ellipse at center, var(--magenta-soft), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 30%; left: -15%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse at center, var(--cyan-soft), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
}
.hero h1 {
  font-size: clamp(54px, 10vw, 144px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 900;
  margin: 28px 0 0;
  text-transform: uppercase;
  max-width: 12ch;
}
.hero h1 .grad {
  background: linear-gradient(95deg, var(--cyan) 0%, var(--cyan) 35%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  display: inline-block;
  padding-right: 0.14em;
  margin-right: -0.06em;
}
.hero h1 .dot { color: var(--magenta); font-style: normal; }
.hero p.sub {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--fg-dim);
  margin: 36px 0 40px;
  max-width: 58ch;
  line-height: 1.55;
}
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-mini {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-mono);
  transition: transform 0.12s, background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--cyan);
  color: #001014;
  box-shadow: 0 0 0 1px var(--cyan), 0 0 32px rgba(0,224,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--cyan), 0 0 44px rgba(0,224,255,0.5);
}
.btn-ghost { border-color: var(--border-strong); color: var(--fg); background: transparent; }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-dark { background: var(--bg); color: var(--fg); border-color: var(--bg); }
.btn-dark:hover { background: var(--bg-2); }

/* =====================
   STATS
   ===================== */
.stats {
  margin-top: clamp(48px, 7vw, 76px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { padding: 0 28px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat .n {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--cyan);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .label {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 20px 0; padding: 28px 0; }
  .stat { padding: 0 16px; }
  .stat:nth-child(2) { border-right: none; }
}

/* =====================
   SECTIONS
   ===================== */
section { padding: clamp(80px, 12vw, 130px) 0; position: relative; }
section.tight { padding: clamp(56px, 8vw, 96px) 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 14px 0 0;
  max-width: 20ch;
}
.section-head h2 em {
  font-style: italic;
  color: var(--magenta);
  font-weight: 700;
}
.section-head .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

/* =====================
   SERVICES — 3-card strip (home)
   ===================== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.service {
  background: var(--bg-2);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  transition: background 0.2s;
}
.service:hover { background: var(--bg-3); }
.service .icon {
  color: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(0, 224, 255, 0.45));
  margin-bottom: -2px;
}
.service .icon svg { width: 30px; height: 30px; }
.service .num {
  font-family: var(--font-mono);
  color: var(--fg-faint);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.service .num b { color: var(--cyan); font-weight: 500; }
.service h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 8px 0 0;
  letter-spacing: -0.01em;
}
.service p { color: var(--fg-dim); margin: 0; font-size: 14.5px; line-height: 1.6; }
.service .arrow {
  margin-top: auto;
  width: 36px; height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-family: var(--font-mono);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.service:hover .arrow { background: var(--cyan); color: var(--bg); border-color: var(--cyan); }
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }

/* =====================
   GRID-4 — 4-card grid (grow page leaks + fixes)
   ===================== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.gcard {
  background: var(--bg-2);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  transition: background 0.2s;
}
.gcard:hover { background: var(--bg-3); }
.gcard .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -2px;
}
.gcard.leak .icon { color: var(--magenta); }
.gcard.fix .icon { color: var(--cyan); }
.gcard.leak .icon svg { filter: drop-shadow(0 0 8px rgba(255, 69, 243, 0.45)); }
.gcard.fix .icon svg { filter: drop-shadow(0 0 8px rgba(0, 224, 255, 0.45)); }
.gcard .icon svg { width: 30px; height: 30px; }
.gcard .num {
  font-family: var(--font-mono);
  color: var(--fg-faint);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.gcard .num b { color: var(--cyan); font-weight: 500; }
.gcard.leak .num b { color: var(--magenta); }
.gcard h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 8px 0 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.gcard p { color: var(--fg-dim); margin: 0; font-size: 14.5px; line-height: 1.6; }
.gcard .stat-inline {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--magenta);
  border-top: 1px solid var(--border);
}
.gcard.fix .stat-inline { color: var(--cyan); }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

/* =====================
   TICKER
   ===================== */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 22px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-dim);
  white-space: nowrap;
  background: var(--bg);
}
.ticker-track {
  display: inline-flex;
  gap: 32px;
  animation: tick 40s linear infinite;
}
.ticker-track span.plus { color: var(--lime); }
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================
   LOCATIONS STRIP
   ===================== */
.locations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.location-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.location-card:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: var(--bg-3);
}
.location-card .lc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan);
}
.location-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.location-card p { font-size: 13px; color: var(--fg-dim); margin: 0; line-height: 1.5; }
@media (max-width: 1000px) { .locations { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .locations { grid-template-columns: 1fr; } }

/* =====================
   WORK GRID
   ===================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.work-card:hover { transform: translateY(-3px); border-color: var(--cyan); }
.work-thumb {
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(135deg, rgba(0,224,255,0.10), transparent 50%),
    linear-gradient(225deg, rgba(255,61,240,0.10), transparent 50%),
    repeating-linear-gradient(45deg, var(--bg-3) 0 16px, var(--bg-2) 16px 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-faint);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-bottom: 1px solid var(--border);
}
.work-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.work-body .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.work-body h3 { margin: 0; font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.work-body p { color: var(--fg-dim); margin: 0; font-size: 14.5px; line-height: 1.55; }
.work-body .result {
  margin-top: 6px;
  font-size: 12px;
  color: var(--magenta);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr; } }

/* =====================
   PROCESS (grow page)
   ===================== */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { border-top: 1px solid var(--border-strong); padding-top: 24px; }
.step .num {
  font-family: var(--font-mono);
  color: var(--magenta);
  font-size: 12px;
  letter-spacing: 0.18em;
}
.step h4 { font-size: 22px; margin: 14px 0 8px; font-weight: 600; }
.step p { color: var(--fg-dim); margin: 0; font-size: 14.5px; line-height: 1.6; }
@media (max-width: 800px) { .process { grid-template-columns: 1fr; } }

/* =====================
   PRICING TIERS
   ===================== */
.pricing-head h2 em {
  font-style: italic;
  background: linear-gradient(95deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-right: 0.14em;
  margin-right: -0.06em;
  font-weight: 700;
}
.tiers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tier {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier.pro {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 0 32px rgba(0,224,255,0.15);
}
.tier .pop {
  position: absolute;
  top: -12px; right: 24px;
  padding: 5px 12px;
  background: var(--cyan);
  color: #001014;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.tier .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.tier h3 { font-size: 26px; margin: 10px 0 6px; letter-spacing: -0.015em; font-weight: 600; }
.tier .blurb { color: var(--fg-dim); font-size: 14px; margin: 0 0 24px; line-height: 1.5; }
.tier .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.tier .price .amount {
  font-family: var(--font-mono);
  font-size: clamp(40px, 5vw, 54px);
  color: var(--cyan);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier .price .per {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
}
.tier ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier ul li {
  color: var(--fg-dim);
  font-size: 14.5px;
  line-height: 1.5;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.tier ul li::before {
  content: '+';
  color: var(--cyan);
  font-family: var(--font-mono);
  font-weight: 500;
  flex: none;
  margin-top: 1px;
}
.tier ul li.head {
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.tier ul li.head::before { content: '//'; color: var(--magenta); }
.tier .tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, border-color 0.15s;
  border: 1px solid var(--border-strong);
  color: var(--fg);
}
.tier .tier-cta:hover { border-color: var(--cyan); color: var(--cyan); }
.tier.pro .tier-cta { background: var(--cyan); color: #001014; border-color: var(--cyan); }
.tier.pro .tier-cta:hover {
  background: transparent; color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 0 24px rgba(0,224,255,0.3);
}
.pricing-foot {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
}
@media (max-width: 800px) { .tiers { grid-template-columns: 1fr; } }

/* =====================
   TESTIMONIAL
   ===================== */
.testimonial {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: clamp(70px, 10vw, 110px) 0;
  background: radial-gradient(ellipse at center top, rgba(200,255,61,0.04), transparent 70%);
}
.testimonial .section-tag { color: var(--lime); margin-bottom: 32px; display: inline-block; }
.testimonial blockquote {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  margin: 0 auto 28px;
  max-width: 30ch;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.testimonial blockquote::before { content: '"'; color: var(--magenta); }
.testimonial blockquote::after { content: '"'; color: var(--magenta); }
.testimonial cite {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--fg-dim);
  font-style: normal;
}
.testimonial .note {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

/* =====================
   FAQ
   ===================== */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
  flex: none;
  width: 28px; height: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 14px;
  transition: transform 0.2s, background 0.15s, color 0.15s;
}
.faq-item[open] summary .icon { transform: rotate(45deg); background: var(--cyan); color: var(--bg); }
.faq-item p { color: var(--fg-dim); margin: 16px 0 0; font-size: 15px; line-height: 1.65; max-width: 70ch; }
.faq-item .qmeta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
  margin-bottom: 6px;
}

/* =====================
   CTA STRIP
   ===================== */
.cta-strip {
  background: var(--cyan);
  color: #001014;
  padding: clamp(70px, 10vw, 110px) 0;
}
.cta-strip .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-strip h2 {
  font-size: clamp(46px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
}
.cta-strip p { margin: 0 0 24px; font-size: 16px; line-height: 1.55; max-width: 38ch; color: rgba(0,16,20,0.78); }
.cta-strip .btn-dark { background: var(--bg); color: var(--cyan); border-color: var(--bg); }
.cta-strip .btn-dark:hover { background: var(--bg-2); color: var(--cyan); }
@media (max-width: 800px) { .cta-strip .inner { grid-template-columns: 1fr; gap: 30px; } }

/* =====================
   BOOK SECTION (grow page)
   ===================== */
.book-section { padding: clamp(80px, 12vw, 130px) 0; }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.book-text h2 {
  font-size: clamp(36px, 5.5vw, 62px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 16px 0 28px;
  font-weight: 800;
}
.book-text h2 em {
  font-style: italic;
  background: linear-gradient(95deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-right: 0.14em;
  margin-right: -0.06em;
}
.book-text p { color: var(--fg-dim); font-size: 16px; line-height: 1.6; margin: 0 0 24px; max-width: 48ch; }
.book-bullets { list-style: none; padding: 0; margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.book-bullets li { color: var(--fg); font-size: 15px; display: flex; gap: 12px; align-items: flex-start; }
.book-bullets li::before {
  content: '→';
  color: var(--cyan);
  font-family: var(--font-mono);
  flex: none;
  margin-top: 1px;
}
.book-meta {
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
}
.book-meta a { color: var(--cyan); }
.calendar-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.calendar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan-soft), transparent 50%);
  pointer-events: none;
}
.calendar-card .form-tag {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cyan);
  margin: 0 0 24px;
  display: block;
}
.calendar-embed {
  position: relative;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  overflow: hidden;
  min-height: 600px;
}
.calendar-embed iframe { width: 100%; min-height: 600px; border: 0; display: block; }
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; gap: 36px; } }

/* =====================
   FOOTER
   ===================== */
footer.site { border-top: 1px solid var(--border); padding: 64px 0 32px; font-size: 14px; }
.foot { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.foot h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--magenta);
  margin: 0 0 18px;
  font-weight: 500;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot ul li { margin-bottom: 10px; }
.foot ul a { color: var(--fg-dim); transition: color 0.15s; }
.foot ul a:hover { color: var(--cyan); }
.foot .brand-block { font-size: 14px; color: var(--fg-dim); max-width: 38ch; }
.foot .brand-block .brand { display: inline-flex; margin-bottom: 18px; font-size: 14px; }
.foot .nap a { color: var(--cyan); }
.footrow {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 760px) {
  .foot { grid-template-columns: 1fr 1fr; }
  .foot .brand-block { grid-column: 1 / -1; }
}
