/* ============================================================
   SEANBRIGHTMAN.COM — design system
   Dark, premium, personality-led. Lime + coral on near-black.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --bg: #0a0a0e;
  --bg-2: #101017;
  --bg-3: #16161f;
  --ink: #f4f2ea;
  --muted: #97959f;
  --line: rgba(244, 242, 234, 0.1);
  --lime: #d9ff3f;
  --lime-dim: rgba(217, 255, 63, 0.12);
  --coral: #ff5a3c;
  --violet: #8a7cff;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Instrument Serif', serif;
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--lime); color: #0a0a0e; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a35; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

/* ---- grain overlay ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- custom cursor ---- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--lime);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(217, 255, 63, 0.5);
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              border-color 0.25s, background 0.25s;
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  background: rgba(217, 255, 63, 0.08);
  border-color: var(--lime);
}
@media (hover: none), (max-width: 860px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---- page transition veil ---- */
.veil {
  position: fixed;
  inset: 0;
  background: var(--lime);
  z-index: 10000;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}
.veil.is-in { animation: veilIn 0.5s var(--ease) forwards; }
.veil.is-out { animation: veilOut 0.6s var(--ease) forwards; transform-origin: bottom; }
@keyframes veilIn { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes veilOut { from { transform: scaleY(1); } to { transform: scaleY(0); } }

/* ---- layout ---- */
.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section--tight { padding: clamp(56px, 7vw, 90px) 0; }
.section--panel { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* dotted grid backdrop for select sections */
.dots-bg {
  background-image: radial-gradient(rgba(244,242,234,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ---- typography ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--lime);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.h-hero { font-size: clamp(2.9rem, 7.2vw, 6.2rem); }
.h-xl { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
.h-lg { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.h-md { font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.2; }

.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  letter-spacing: 0;
}
.accent--coral { color: var(--coral); }
.accent--violet { color: var(--violet); }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
}
.lede strong { color: var(--ink); font-weight: 500; }

.muted { color: var(--muted); }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
  white-space: nowrap;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--lime);
  color: #0a0a0e;
  box-shadow: 0 0 0 rgba(217, 255, 63, 0);
}
.btn--primary:hover {
  box-shadow: 0 8px 40px rgba(217, 255, 63, 0.35);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.btn--sm { padding: 12px 22px; font-size: 14.5px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--lime);
}
.link-arrow svg { transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---- header ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: transform 0.4s var(--ease), background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo-img {
  height: 55px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.logo:hover .logo-img { transform: scale(1.04); opacity: 0.92; }
.footer-grid .logo-img { height: 78px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a:not(.btn) {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).is-active { color: var(--ink); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 6px auto;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 14, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s, visibility 0.35s;
    z-index: 1000;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a:not(.btn) { font-size: 24px; font-family: var(--font-display); font-weight: 600; }
}

/* ---- hero ---- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 60px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy .lede { margin: 28px 0 38px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,255,63,0.09) 0%, rgba(138,124,255,0.06) 40%, transparent 70%);
  top: -200px; right: -250px;
  pointer-events: none;
  z-index: 0;
}

/* headline line reveal */
.line-reveal { display: block; overflow: hidden; }
.line-reveal > span {
  display: block;
  transform: translateY(110%);
  animation: lineUp 0.9s var(--ease) forwards;
}
.line-reveal:nth-child(2) > span { animation-delay: 0.12s; }
.line-reveal:nth-child(3) > span { animation-delay: 0.24s; }
@keyframes lineUp { to { transform: translateY(0); } }

.fade-up-load {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUpLoad 0.9s var(--ease) 0.45s forwards;
}
.fade-up-load.d2 { animation-delay: 0.6s; }
@keyframes fadeUpLoad { to { opacity: 1; transform: translateY(0); } }

/* cut-out image stage */
.hero-figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 520px;
}
.cutout-blob {
  position: absolute;
  inset: auto 0 0 0;
  margin: auto;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%;
  background: linear-gradient(135deg, var(--lime) 0%, #9fdd2c 55%, var(--violet) 130%);
  opacity: 0.92;
  animation: blobMorph 12s ease-in-out infinite alternate;
}
@keyframes blobMorph {
  0%   { border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%; }
  50%  { border-radius: 55% 45% 44% 56% / 45% 55% 45% 55%; }
  100% { border-radius: 48% 52% 58% 42% / 52% 46% 54% 48%; }
}
.cutout-photo-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cutout-photo {
  height: clamp(440px, 54vw, 640px);
  width: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,0.55));
}

/* floating chips around the cut-out */
.float-chip {
  position: absolute;
  z-index: 4;
  background: rgba(16, 16, 23, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  animation: floatY 5s ease-in-out infinite;
}
.float-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.float-chip.c2 .dot { background: var(--coral); }
.float-chip.c3 .dot { background: var(--violet); }
.float-chip.c1 { top: 12%; left: -6%; animation-delay: 0s; }
.float-chip.c2 { top: 34%; right: -8%; animation-delay: 1.2s; }
.float-chip.c3 { bottom: 26%; left: -10%; animation-delay: 2.4s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---- floating skills cloud ---- */
.skills-float {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.skill-chip {
  position: absolute;
  background: rgba(16, 16, 23, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 16px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
  animation: floatY 5s ease-in-out infinite;
}
.skill-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex: none; }
.skill-chip.sc-coral .dot { background: var(--coral); }
.skill-chip.sc-violet .dot { background: var(--violet); }

@media (max-width: 960px) {
  .skills-float {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }
  .skill-chip { position: static !important; animation: none; }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 44px;
  background: linear-gradient(var(--lime), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 960px) {
  .hero { padding-top: 120px; padding-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-figure { min-height: 0; order: 2; flex-direction: column; align-items: center; justify-content: flex-end; width: 100%; max-width: 480px; margin: 0 auto; }
  .cutout-photo-wrap { width: 100%; }
  .cutout-photo { height: clamp(400px, 95vw, 560px); }
  .cutout-blob { width: 88%; aspect-ratio: 0.82; }
  .float-chip.c1 { left: 0; top: 6%; }
  .float-chip.c2 { right: 0; top: 42%; }
  .float-chip.c3 { left: 2%; bottom: 6%; }
}

@media (max-width: 640px) {
  .cutout-photo { height: clamp(420px, 108vw, 560px); }
  .cutout-blob { width: 90%; aspect-ratio: 0.78; }
  .float-chip { font-size: 12px; padding: 8px 14px; }
  .float-chip.c1 { top: 4%; }
  .float-chip.c2 { top: 40%; }
  .float-chip.c3 { bottom: 4%; }
}

/* ---- marquee ---- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bg-2);
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  letter-spacing: 0.02em;
  padding: 0 28px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-track span i {
  font-style: normal;
  color: var(--lime);
  font-size: 0.8em;
}
.marquee-track span:nth-child(even) { color: var(--muted); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ---- section head ---- */
.section-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .lede { margin-top: 20px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lede { margin-inline: auto; }

/* ---- cards ---- */
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 255, 63, 0.4);
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card .card-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 44px;
  color: var(--lime);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--lime-dim);
  color: var(--lime);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---- video placeholder ---- */
.video-shell {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(138,124,255,0.18), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(217,255,63,0.12), transparent 50%),
    var(--bg-3);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.video-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244,242,234,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.play-btn {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  transition: transform 0.35s var(--ease);
  border: none;
}
.play-btn::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1.5px solid rgba(217, 255, 63, 0.4);
  animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}
.video-shell:hover .play-btn { transform: scale(1.1); }
.play-btn svg { margin-left: 5px; }
.video-note {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: rgba(10,10,14,0.7);
  border: 1px dashed rgba(244,242,234,0.3);
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
}

/* ---- ways to work / tier cards ---- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.tier:hover { transform: translateY(-8px); border-color: rgba(217,255,63,0.45); }
.tier--featured {
  background: linear-gradient(160deg, rgba(217,255,63,0.1), rgba(16,16,23,0.6) 45%), var(--bg-2);
  border-color: rgba(217, 255, 63, 0.5);
}
.tier-tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0e;
  background: var(--lime);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.tier-tag--ghost { background: transparent; color: var(--muted); border: 1px solid var(--line); }
.tier h3 { font-size: 26px; margin-bottom: 6px; }
.tier .tier-sub { color: var(--lime); font-family: var(--font-accent); font-style: italic; font-size: 19px; margin-bottom: 18px; }
.tier p { color: var(--muted); font-size: 15.5px; margin-bottom: 24px; }
.tier ul { margin-bottom: 30px; display: grid; gap: 11px; }
.tier ul li {
  font-size: 14.5px;
  color: var(--ink);
  padding-left: 26px;
  position: relative;
}
.tier ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg);
}
.tier .btn { margin-top: auto; justify-content: center; }

/* engagement scale (fractional page) */
.scale-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.scale-row:first-child { border-top: 1px solid var(--line); }
.scale-days {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--lime);
  line-height: 1.1;
}
.scale-days small { display: block; font-size: 13px; color: var(--muted); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }
.scale-row h3 { font-size: 21px; margin-bottom: 10px; display: inline-block; margin-right: 12px; }
.scale-row p { color: var(--muted); font-size: 15.5px; max-width: 640px; }
.scale-row .fit { margin-top: 12px; font-size: 13.5px; color: var(--ink); }
.scale-row .fit strong { color: var(--lime); font-weight: 600; }

.price-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid rgba(217, 255, 63, 0.3);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 14px;
  vertical-align: middle;
}
.tier-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--lime);
  margin-top: -8px;
  margin-bottom: 18px;
  display: block;
}
@media (max-width: 720px) { .scale-row { grid-template-columns: 1fr; gap: 12px; } }

/* ---- stats ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; } }
.stat {
  padding: 40px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label { color: var(--muted); font-size: 14.5px; margin-top: 12px; }

/* ---- diagram ---- */
.diagram-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(24px, 4vw, 56px);
  overflow: hidden;
}
.diagram-wrap svg { width: 100%; height: auto; }
.diag-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.is-visible .diag-line { stroke-dashoffset: 0; }
.diag-node { opacity: 0; transform: translateY(12px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.is-visible .diag-node { opacity: 1; transform: translateY(0); }
.is-visible .diag-node:nth-of-type(1) { transition-delay: 0.2s; }
.is-visible .diag-node:nth-of-type(2) { transition-delay: 0.35s; }
.is-visible .diag-node:nth-of-type(3) { transition-delay: 0.5s; }
.is-visible .diag-node:nth-of-type(4) { transition-delay: 0.65s; }
.is-visible .diag-node:nth-of-type(5) { transition-delay: 0.8s; }
.is-visible .diag-node:nth-of-type(6) { transition-delay: 0.95s; }
.diag-pulse { animation: diagPulse 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes diagPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* ---- split feature ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split .lede { margin: 20px 0 28px; }
.check-list { display: grid; gap: 16px; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
}
.check-list li .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--lime-dim);
  color: var(--lime);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.check-list li strong { display: block; font-family: var(--font-display); font-weight: 600; }
.check-list li span.desc { color: var(--muted); font-size: 14.5px; }

/* ---- quote / testimonial ---- */
.quote-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
}
.quote-card::before {
  content: '“';
  font-family: var(--font-accent);
  font-size: 90px;
  color: var(--lime);
  line-height: 0.6;
  display: block;
  margin-bottom: 18px;
}
.quote-card blockquote { font-size: 17px; line-height: 1.6; margin-bottom: 24px; color: var(--ink); }
.quote-card cite {
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}
.quote-card cite .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--lime));
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #0a0a0e;
  font-size: 15px;
}
.quote-card cite strong { color: var(--ink); display: block; font-weight: 600; }

/* ---- book section ---- */
.book-panel {
  background:
    radial-gradient(ellipse at 15% 10%, rgba(138,124,255,0.16), transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(255,90,60,0.1), transparent 50%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 900px) { .book-panel { grid-template-columns: 1fr; } }
.book-cover-img {
  display: block;
  width: min(300px, 80%);
  margin-inline: auto;
  border-radius: 6px 14px 14px 6px;
  box-shadow: -20px 30px 60px rgba(0,0,0,0.55);
  transform: rotate(-4deg);
  transition: transform 0.5s var(--ease);
}
.book-cover-img:hover { transform: rotate(0deg) scale(1.03); }

/* ---- book: discover checklist ---- */
.discover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}
@media (max-width: 720px) { .discover-grid { grid-template-columns: 1fr; } }
.discover-grid li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.discover-grid li .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--lime-dim);
  color: var(--lime);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

/* ---- book: fit panel (for you / not for you) ---- */
.fit-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 820px) { .fit-panel { grid-template-columns: 1fr; } }
.fit-col {
  border-radius: var(--radius);
  padding: 34px 32px;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.fit-col--yes { background: rgba(217,255,63,0.05); border-color: rgba(217,255,63,0.3); }
.fit-col--no { background: rgba(255,90,60,0.05); border-color: rgba(255,90,60,0.25); }
.fit-col--yes:hover { transform: translateY(-6px); border-color: rgba(217,255,63,0.65); background: rgba(217,255,63,0.08); }
.fit-col--no:hover { transform: translateY(-6px); border-color: rgba(255,90,60,0.6); background: rgba(255,90,60,0.08); }
.fit-col h3 { font-size: 21px; margin-bottom: 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; white-space: nowrap; }
.fit-col--yes h3 { color: var(--lime); }
.fit-col--no h3 { color: var(--coral); }
.fit-icon--title { width: 32px; height: 32px; border-radius: 9px; order: -1; }
.fit-col ul { display: grid; gap: 10px; }
.fit-col li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: 12px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.fit-col--yes li:hover { background: rgba(217,255,63,0.1); transform: translateX(6px); }
.fit-col--no li:hover { background: rgba(255,90,60,0.1); transform: translateX(6px); }
.fit-icon {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  transition: transform 0.3s var(--ease);
}
.fit-col--yes .fit-icon { background: var(--lime-dim); color: var(--lime); }
.fit-col--no .fit-icon { background: rgba(255,90,60,0.14); color: var(--coral); }
.fit-col li:hover .fit-icon { transform: scale(1.15) rotate(-4deg); }

/* ---- book: promise split ---- */
.promise-figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 420px;
}
@media (max-width: 900px) { .promise-figure { min-height: 360px; margin-top: 20px; } }

/* ---- book: pull quote ---- */
.pull-quote {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  line-height: 1.25;
  color: var(--ink);
}
.pull-quote em { color: var(--lime); }

/* ---- forms ---- */
.waitlist-form { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.waitlist-form input[type="email"] {
  flex: 1 1 280px;
  background: rgba(10,10,14,0.6);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  font: inherit;
  font-size: 15.5px;
  padding: 15px 26px;
  outline: none;
  transition: border-color 0.3s;
}
.waitlist-form input[type="email"]::placeholder { color: var(--muted); }
.waitlist-form input[type="email"]:focus { border-color: var(--lime); }
.form-success {
  display: none;
  margin-top: 18px;
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.form-success.is-shown { display: block; }
.form-error {
  display: none;
  margin-top: 18px;
  color: var(--coral);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.form-error.is-shown { display: block; }

.contact-form { display: grid; gap: 18px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(10,10,14,0.6);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
  font-size: 15.5px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--lime); }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ---- FAQ accordion ---- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  text-align: left;
  padding: 26px 60px 26px 0;
  position: relative;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--lime); }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 400;
  color: var(--lime);
  transition: transform 0.35s var(--ease);
}
.faq-item.is-open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a p { color: var(--muted); padding: 0 0 26px; max-width: 720px; }

/* ---- insights cards ---- */
.post-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.4s var(--ease), border-color 0.4s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); border-color: rgba(217,255,63,0.4); }
.post-thumb {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 28px;
  color: rgba(244,242,234,0.85);
  position: relative;
}
.post-thumb.t1 { background: linear-gradient(135deg, #2a3a10, #0f1408); }
.post-thumb.t2 { background: linear-gradient(135deg, #33203a, #120a16); }
.post-thumb.t3 { background: linear-gradient(135deg, #3a2410, #160d06); }
.post-thumb.t4 { background: linear-gradient(135deg, #10303a, #061014); }
.post-thumb.t5 { background: linear-gradient(135deg, #3a1020, #14060a); }
.post-thumb.t6 { background: linear-gradient(135deg, #20203a, #0a0a14); }
.post-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-meta { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); font-family: var(--font-display); font-weight: 600; }
.post-body h3 { font-size: 20px; line-height: 1.25; }
.post-body p { color: var(--muted); font-size: 14.5px; flex: 1; }

/* ---- insights: empty state ---- */
.insights-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.insights-empty h3 { font-size: 24px; margin-bottom: 14px; }
.insights-empty p { color: var(--muted); max-width: 480px; margin: 0 auto 28px; }

/* ---- single post: article prose ---- */
.post-article { max-width: 760px; margin-inline: auto; color: var(--ink); font-size: 17px; line-height: 1.75; }
.post-article > * + * { margin-top: 22px; }
.post-article h2 { font-family: var(--font-display); font-size: 30px; font-weight: 700; margin-top: 48px; }
.post-article h3 { font-family: var(--font-display); font-size: 23px; font-weight: 700; margin-top: 40px; }
.post-article p { color: var(--ink); }
.post-article a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.post-article strong { color: var(--ink); font-weight: 600; }
.post-article ul, .post-article ol { padding-left: 22px; display: grid; gap: 10px; }
.post-article ul { list-style: disc; }
.post-article ol { list-style: decimal; }
.post-article li { color: var(--ink); display: list-item; }
.post-article li::marker { color: var(--lime); }
.post-article blockquote {
  border-left: 3px solid var(--lime);
  padding: 4px 0 4px 24px;
  color: var(--muted);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 21px;
}
.post-article img { border-radius: var(--radius-sm); width: 100%; height: auto; }
.post-article figcaption { color: var(--muted); font-size: 13.5px; text-align: center; margin-top: 8px; }
.post-article hr { border: none; border-top: 1px solid var(--line); }
.post-article code { background: var(--bg-2); border: 1px solid var(--line); border-radius: 5px; padding: 2px 6px; font-size: 0.9em; }

/* ---- big CTA band ---- */
.cta-band {
  text-align: center;
  padding: clamp(90px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,255,63,0.12), transparent 65%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-band .h-xl { margin-bottom: 26px; position: relative; }
.cta-band .lede { margin: 0 auto 40px; position: relative; }
.cta-band .hero-ctas { justify-content: center; position: relative; }

/* ---- footer ---- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 40px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid ul a { color: var(--ink); font-size: 15px; transition: color 0.25s; }
.footer-grid ul a:hover { color: var(--lime); }
.footer-blurb { color: var(--muted); font-size: 15px; max-width: 300px; margin-top: 16px; }
.footer-giant {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 10rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,242,234,0.16);
  user-select: none;
  white-space: nowrap;
  margin-bottom: 40px;
  transition: -webkit-text-stroke-color 0.4s;
}
.footer-giant:hover { -webkit-text-stroke-color: rgba(217,255,63,0.5); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
}

/* ---- page hero (inner pages) ---- */
.page-hero {
  padding: 190px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero .h-hero { max-width: 1000px; }
.page-hero .lede { margin-top: 28px; }
.page-hero .hero-ctas { margin-top: 38px; }
.breadcrumb {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb .sep { color: var(--lime); }

/* ---- process steps ---- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:first-child { border-top: 1px solid var(--line); }
.step-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--lime);
  line-height: 1;
}
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--muted); max-width: 660px; }
@media (max-width: 640px) { .step { grid-template-columns: 1fr; gap: 10px; } }

/* ---- sticker/rotate badge ---- */
.spin-badge {
  position: absolute;
  width: 120px; height: 120px;
  top: -40px; right: 6%;
  z-index: 5;
  animation: spinSlow 14s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.spin-badge text {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  fill: var(--lime);
  text-transform: uppercase;
}

/* ---- utility ---- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-24 { margin-bottom: 24px; }
.two-col-text { columns: 2; column-gap: 48px; color: var(--muted); }
.two-col-text p { break-inside: avoid; margin-bottom: 18px; }
@media (max-width: 760px) { .two-col-text { columns: 1; } }

.placeholder-flag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--coral);
  border: 1px dashed var(--coral);
  border-radius: 6px;
  padding: 3px 9px;
  vertical-align: middle;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
