/* ---------------------------------------------------------
     DESIGN TOKENS
  --------------------------------------------------------- */
:root {
  /* Warm editorial palette */
  --cream: #fdf6ed;
  --cream-deep: #f6ecdc;
  --ink: #12110f;
  --ink-soft: #2a2520;
  --muted: #6b6259;
  --line: rgba(18, 17, 15, 0.12);

  /* Brand gradient (from logo) */
  --violet: #7c3aed;
  --violet-deep: #5b21b6;
  --coral: #ff6b6b;
  --coral-deep: #e94f4f;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #ff6b6b 100%);
  --gradient-soft: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.08) 0%,
    rgba(255, 107, 107, 0.08) 100%
  );

  /* Accents */
  --gold: #d4a574;
  --green: #2e7d5f;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --marquee-duration: 40s;

  /* Layout */
  --max: 1240px;
  --radius: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:
    "Geist",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Grain overlay - adds texture, avoids flat AI look */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  mix-blend-mode: multiply;
  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 values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------
     TYPOGRAPHY
  --------------------------------------------------------- */
.display {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 50,
    "wght" 500;
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.display-italic {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100,
    "wght" 400;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
}

h2,
h3,
h4 {
  margin: 0 0 0.5em;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rotating-word {
  display: inline-block;
  min-width: 10ch;
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease);
  will-change: opacity, transform;
}

.rotating-word.is-changing {
  opacity: 0;
  transform: translateY(12px) rotate(2deg);
}

/* ---------------------------------------------------------
     LAYOUT
  --------------------------------------------------------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

/* ---------------------------------------------------------
     NAV
  --------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(253, 246, 237, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 72,
    "wght" 600,
    "SOFT" 30;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 32px;
  height: 32px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform 0.2s var(--ease),
    background 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--violet-deep);
}

.nav-cta::after {
  content: "→";
  transition: transform 0.2s;
}

.nav-cta:hover::after {
  transform: translateX(3px);
}

/* ---------------------------------------------------------
     HERO
  --------------------------------------------------------- */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.hero-inner > * {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(18, 17, 15, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero h1 .line {
  display: block;
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
}

.hero-form input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  font: inherit;
  font-size: 16px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  color: var(--ink);
}

.hero-form input[type="email"]::placeholder {
  color: var(--muted);
}

.hero-form input[type="email"]:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 26px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 14px;
  font: inherit;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease);
  white-space: nowrap;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.avatars {
  display: flex;
}

.avatars > * {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 12px;
}

.avatars > *:first-child {
  margin-left: 0;
}

/* Hero visual - layered stacked cards */
.hero-visual {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1.1;
  margin-left: auto;
}

.card-stack {
  position: absolute;
  inset: 0;
}

.card {
  position: absolute;
  border-radius: 24px;
  padding: 24px;
  box-shadow:
    0 20px 60px -20px rgba(18, 17, 15, 0.2),
    0 4px 20px -5px rgba(18, 17, 15, 0.08);
  transition: transform 0.5s var(--ease);
}

.card-1 {
  top: 8%;
  left: 0;
  width: 64%;
  min-width: 240px;
  background: white;
  transform: rotate(-4deg);
  animation: float1 8s var(--ease) infinite;
}

.card-2 {
  min-width: 200px;
  top: 4%;
  right: 0;
  width: 56%;
  background: var(--ink);
  color: var(--cream);
  transform: rotate(3deg);
  animation: float2 9s var(--ease) infinite;
}

.card-3 {
  bottom: 8%;
  left: 12%;
  width: 76%;
  background: white;
  transform: rotate(-1deg);
  animation: float3 7s var(--ease) infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }

  50% {
    transform: rotate(-3deg) translateY(-10px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }

  50% {
    transform: rotate(4deg) translateY(8px);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: rotate(-1deg) translateY(0);
  }

  50% {
    transform: rotate(0deg) translateY(-6px);
  }
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.card-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.pill-violet {
  background: rgba(124, 58, 237, 0.1);
  color: var(--violet-deep);
}

.pill-coral {
  background: rgba(255, 107, 107, 0.12);
  color: var(--coral-deep);
}

.pill-dark {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.quiz-q {
  font-family: "Fraunces", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
}

.quiz-a {
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.card-2 .quiz-a {
  border-color: rgba(255, 255, 255, 0.15);
}

.quiz-a.correct {
  border-color: var(--green);
  background: rgba(46, 125, 95, 0.08);
}

.quiz-a.correct::after {
  content: " ✓";
  color: var(--green);
  font-weight: 600;
}

.synergy-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--gradient-soft);
  border-radius: 12px;
}

.synergy-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 72,
    "wght" 600;
}

.synergy-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}

.synergy-name {
  font-weight: 600;
  font-size: 15px;
}

/* Ambient gradient blob */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.12),
    transparent 60%
  );
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.1),
    transparent 60%
  );
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

/* ---------------------------------------------------------
    MARQUEE - social proof / community seed
  --------------------------------------------------------- */
.marquee {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  background: var(--cream-deep);
}

.marquee-inner {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: scroll var(--marquee-duration) linear infinite;
  white-space: nowrap;
  will-change: transform;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 72,
    "wght" 400;
  font-style: italic;
  font-size: 28px;
  color: var(--ink-soft);
}

.marquee-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gradient);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
     SECTION: PROBLEM
  --------------------------------------------------------- */
.section-pad {
  padding: 120px 0;
}

.section-head {
  width: 100%;
  margin-bottom: 72px;
}

.section-head h2 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  margin: 16px 0 24px;
}

.section-head h2 em {
  font-style: italic;
  font-variation-settings:
    "opsz" 144,
    "wght" 300,
    "SOFT" 100;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 620px;
}

.problems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.problem {
  background: var(--cream);
  padding: 48px 40px;
  position: relative;
}

.problem-num {
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 144,
    "wght" 300,
    "SOFT" 100;
  font-style: italic;
  font-size: 64px;
  color: var(--coral-deep);
  line-height: 1;
  margin-bottom: 16px;
}

.problem h3 {
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 72,
    "wght" 500,
    "SOFT" 30;
  font-size: 26px;
  margin-bottom: 12px;
}

.problem p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

/* ---------------------------------------------------------
     SECTION: THESIS (dark block)
  --------------------------------------------------------- */
.thesis {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 100px 60px;
  margin: 80px auto;
  max-width: var(--max);
  position: relative;
  overflow: hidden;
}

.thesis::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.thesis::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.3),
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.thesis-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.thesis .eyebrow {
  color: rgba(253, 246, 237, 0.6);
}

.thesis h2 {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  margin: 20px 0 0;
}

.thesis h2 em {
  font-style: italic;
  font-variation-settings:
    "opsz" 144,
    "wght" 300,
    "SOFT" 100;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------------------------------------------------------
     SECTION: HOW IT WORKS
  --------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.step {
  position: relative;
}

.step-num {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--cream);
  border: 1.5px solid var(--line);
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 36,
    "wght" 500;
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.step-num::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: -1;
}

@media (hover: hover) {
  .step:hover .step-num {
    color: white;
    border-color: transparent;
    transform: rotate(-8deg);
  }

  .step:hover .step-num::before {
    opacity: 1;
  }
}

.step h4 {
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 72,
    "wght" 500,
    "SOFT" 30;
  font-size: 24px;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.step-line {
  position: absolute;
  top: 22px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 1.5px;
  background: var(--line);
  z-index: -1;
}

.step:last-child .step-line {
  display: none;
}

/* ---------------------------------------------------------
     SECTION: FEATURES GRID (bento-style)
  --------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}

.bento-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(18, 17, 15, 0.15);
}

.bento-item h4 {
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 72,
    "wght" 500,
    "SOFT" 30;
  font-size: 24px;
  margin-bottom: 10px;
  max-width: 80%;
}

.bento-item p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  max-width: 90%;
}

.bento-a {
  grid-column: span 4;
  grid-row: span 2;
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  max-height: 400px;
}

.bento-a p {
  color: rgba(253, 246, 237, 0.7);
}

.bento-b {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--gradient);
  color: white;
  border: none;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  max-height: 400px;
}

.bento-b::before {
  content: "";
  position: absolute;
  inset: auto -18% -24% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.bento-b::after {
  content: "";
  position: absolute;
  inset: 18px auto auto -48px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0) 72%
  );
  pointer-events: none;
  z-index: 0;
}

.bento-b p {
  color: rgba(255, 255, 255, 0.85);
}

.bento-b h4 {
  max-width: 100%;
}

.bento-b h4,
.bento-b p,
.bento-b .synergy-viz {
  position: relative;
  z-index: 1;
}

.bento-c {
  grid-column: span 3;
}

.bento-d {
  grid-column: span 3;
}

.bento-e {
  grid-column: span 2;
  background: var(--cream-deep);
}

.bento-f {
  grid-column: span 4;
}

/* Feature visuals */
.levels-viz {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  align-items: flex-end;
  height: 80px;
}

.level-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
  position: relative;
}

.level-bar.active {
  background: var(--gradient);
}

.level-bar.filled {
  background: rgba(253, 246, 237, 0.4);
}

.level-bar span {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: rgba(253, 246, 237, 0.5);
}

.level-bar.active span {
  color: var(--cream);
  font-weight: 600;
}

.community-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.community-tag {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  background: white;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.community-tag.verified {
  background: var(--gradient);
  color: white;
  border: none;
}

.community-tag.verified::before {
  content: "✓ ";
}

.synergy-viz {
  margin-top: auto;
  padding-top: 26px;
}

.synergy-panel {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 24px 40px -28px rgba(48, 16, 102, 0.55);
  overflow: hidden;
}

.synergy-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.synergy-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.synergy-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.synergy-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.synergy-score-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 126px;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.synergy-percent {
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 72,
    "wght" 600,
    "SOFT" 30;
  font-size: clamp(42px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.synergy-caption {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  max-width: 16ch;
}

.synergy-orbit {
  position: relative;
  width: 126px;
  height: 126px;
  margin-left: auto;
}

.synergy-breakdown {
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.synergy-breakdown-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.synergy-breakdown-head span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.synergy-breakdown-head strong {
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-align: right;
}

.synergy-bars {
  display: grid;
  gap: 10px;
}

.synergy-bar {
  --bar-value: 50%;
}

.synergy-bar-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 12px;
}

.synergy-bar-label span {
  color: rgba(255, 255, 255, 0.82);
}

.synergy-bar-label strong {
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.synergy-bar-track {
  position: relative;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.synergy-bar-track::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-value);
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.96)
  );
}

.circle-overlap {
  position: absolute;
  top: 13px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.circle-a {
  left: 14px;
}

.circle-b {
  right: 14px;
}

.overlap-badge {
  position: absolute;
  left: 50%;
  top: calc(50% - 8px);
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 8px 14px;
  border-radius: 999px;
  background: white;
  color: var(--violet-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px -18px rgba(40, 12, 90, 0.7);
}

.synergy-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.synergy-dot-a {
  top: 0;
  left: 28px;
}

.synergy-dot-b {
  right: 18px;
  bottom: 18px;
}

.synergy-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.synergy-metric {
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.synergy-metric span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 6px;
}

.synergy-metric strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

@media (max-width: 1180px) {
  .synergy-score-row {
    grid-template-columns: 1fr;
  }

  .synergy-caption {
    max-width: none;
  }

  .synergy-orbit {
    margin: 6px auto 0;
  }
}

/* ---------------------------------------------------------
     SECTION: PITCH (split)
  --------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-visual {
  aspect-ratio: 4/5;
  background: var(--gradient);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(124, 58, 237, 0.5);
}

.split-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.2),
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 255, 255, 0.15),
      transparent 40%
    );
}

.game-ui {
  position: absolute;
  inset: 24px;
  display: flex;
  flex-direction: column;
}

.game-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
}

.game-streak {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.game-lives {
  display: flex;
  gap: 4px;
}

.life {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  clip-path: path(
    "M10 18 C 10 14, 2 10, 2 5 C 2 2, 5 0, 7 2 C 8 3, 10 5, 10 5 C 10 5, 12 3, 13 2 C 15 0, 18 2, 18 5 C 18 10, 10 14, 10 18 Z"
  );
}

.game-center {
  color: white;
  text-align: center;
  padding: 20px 0;
}

.game-center .q-label {
  font-size: 13px;
  opacity: 0.8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.game-center .q-text {
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 144,
    "wght" 400;
  font-size: 28px;
  line-height: 1.2;
}

.game-options {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.game-option {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
  cursor: pointer;
}

.game-option:hover {
  background: rgba(255, 255, 255, 0.25);
}

.game-option.correct {
  background: white;
  color: var(--violet-deep);
  font-weight: 600;
}

.split-content h2 {
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
}

.split-content p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.check-list li::before {
  content: "✓";
  color: var(--violet);
  font-weight: 700;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ---------------------------------------------------------
     SECTION: USE CASES (tabs-ish)
  --------------------------------------------------------- */
.use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.use-case {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.use-case::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: translateY(-4px);
  transition: transform 0.3s;
}

.use-case:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(18, 17, 15, 0.2);
}

.use-case:hover::before {
  transform: translateY(0);
}

.use-case-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.use-case h3 {
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 72,
    "wght" 500,
    "SOFT" 30;
  font-size: 28px;
  margin-bottom: 12px;
}

.use-case p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 20px;
}

.use-case-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--cream-deep);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------
     SECTION: STORIES (scenarios)
  --------------------------------------------------------- */
.stories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.story {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.story-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 36,
    "wght" 500;
}

.story-name {
  font-weight: 600;
  font-size: 15px;
}

.story-loc {
  font-size: 13px;
  color: var(--muted);
}

.story-body {
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 72,
    "wght" 400,
    "SOFT" 50;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}

.story-tags {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.story-tag {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--cream-deep);
  border-radius: 999px;
  font-weight: 500;
}

/* ---------------------------------------------------------
     SECTION: PRINCIPLES
  --------------------------------------------------------- */
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.principle {
  background: var(--cream);
  padding: 40px;
}

.principle-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-variation-settings:
    "opsz" 144,
    "wght" 300,
    "SOFT" 100;
  font-size: 40px;
  color: var(--violet);
  line-height: 1;
  margin-bottom: 16px;
}

.principle h4 {
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 72,
    "wght" 500,
    "SOFT" 30;
  font-size: 22px;
  margin-bottom: 8px;
}

.principle p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* ---------------------------------------------------------
     SECTION: FAQ
  --------------------------------------------------------- */
.faq {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  padding: 28px 0;
  background: none;
  border: none;
  text-align: left;
  font: inherit;
  font-family: "Fraunces", serif;
  font-variation-settings:
    "opsz" 72,
    "wght" 500,
    "SOFT" 30;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--violet);
}

.faq-q::after {
  content: "+";
  font-family: "Geist", sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 0 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 760px;
}

.faq-a p {
  margin: 0 0 12px;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------------------------
     SECTION: FINAL CTA
  --------------------------------------------------------- */
.cta-final {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.08),
    transparent 60%
  );
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
}

.cta-final p {
  font-size: 20px;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

.cta-final-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto 20px;
}

.cta-final-form input[type="email"] {
  flex: 1;
  padding: 18px 22px;
  font: inherit;
  font-size: 16px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition: all 0.2s;
}

.cta-final-form input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.cta-fineprint {
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
}

/* ---------------------------------------------------------
     SUCCESS STATE
  --------------------------------------------------------- */
.form-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.success-msg {
  display: none;
  padding: 20px 24px;
  background: rgba(46, 125, 95, 0.08);
  border: 1.5px solid rgba(46, 125, 95, 0.3);
  border-radius: 14px;
  color: var(--green);
  font-weight: 500;
  text-align: left;
}

.success-msg strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 18px;
  margin-bottom: 4px;
}

.form-wrapper.submitted .hero-form,
.form-wrapper.submitted .cta-final-form {
  display: none;
}

.form-wrapper.submitted .success-msg {
  display: block;
}

/* ---------------------------------------------------------
     FOOTER
  --------------------------------------------------------- */
footer {
  padding: 40px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--cream-deep);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--ink);
}

/* ---------------------------------------------------------
     RESPONSIVE
  --------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .problems {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-line {
    display: none;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .bento-a,
  .bento-b,
  .bento-c,
  .bento-d,
  .bento-e,
  .bento-f {
    grid-column: span 2;
    grid-row: auto;
    min-height: 240px;
    max-height: none;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .use-cases {
    grid-template-columns: 1fr;
  }

  .stories {
    grid-template-columns: 1fr;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .thesis {
    padding: 40px 16px;
    margin: 40px 16px;
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding: 80px 0;
  }

  .hero {
    padding: 50px 0 40px;
  }

  .hero-form,
  .cta-final-form {
    flex-direction: column;
  }

  .hero-form .btn-primary,
  .cta-final-form .btn-primary {
    width: 100%;
  }

  .problem,
  .principle {
    padding: 32px 24px;
  }

  .bento-item {
    padding: 24px;
  }

  .synergy-panel {
    padding: 18px;
  }

  .synergy-topline,
  .synergy-breakdown-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .synergy-breakdown-head strong {
    text-align: left;
  }

  .synergy-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .synergy-metric:last-child {
    grid-column: span 2;
  }

  .story {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .marquee-item {
    font-size: 22px;
  }
}

@media (max-width: 420px) {
  :root {
    --marquee-duration: 24s;
  }

  .marquee {
    padding: 32px 0;
  }

  .marquee-inner {
    gap: 28px;
  }

  .marquee-item {
    gap: 10px;
    font-size: 20px;
  }
}

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

/* Subtle reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.form-honeypot {
  display: none;
}

.card-meta {
  font-size: 13px;
  color: var(--muted);
}

.quiz-q-light {
  color: white;
}

.pill-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.section-pad-tight {
  padding-top: 40px;
}

.section-pad-loose {
  padding-top: 80px;
}

.section-cream-deep {
  background: var(--cream-deep);
}

.feature-title {
  margin-top: 16px;
}

.heading-top {
  margin-top: 16px;
}

.heading-top-lg {
  margin-top: 20px;
}

.section-head-center {
  text-align: center;
  margin: 0 auto 60px;
}

.tag-row {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.life.is-dim {
  opacity: 0.3;
}

.level-bar-20 {
  height: 20%;
}

.level-bar-30 {
  height: 30%;
}

.level-bar-40 {
  height: 40%;
}

.level-bar-50 {
  height: 50%;
}

.level-bar-65 {
  height: 65%;
}

.level-bar-75 {
  height: 75%;
}

.level-bar-80 {
  height: 80%;
}

.level-bar-88 {
  height: 88%;
}

.level-bar-95 {
  height: 95%;
}

.level-bar-100 {
  height: 100%;
}

.synergy-bar-96 {
  --bar-value: 96%;
}

.synergy-bar-91 {
  --bar-value: 91%;
}

.synergy-bar-88 {
  --bar-value: 88%;
}

.success-msg-compact {
  max-width: 500px;
  margin: 0 auto;
}

.footer-logo-mark {
  width: 28px;
  height: 28px;
}

/* ---------------------------------------------------------
     SECTION: ONE APP. EVERY TRIBE.
  --------------------------------------------------------- */
.tribes-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.tribes-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 20px 60px -20px rgba(18, 17, 15, 0.12);
}

.tribes-tags {
  margin-top: 24px;
}

.tribes-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.tribes-card-footer strong {
  color: var(--violet);
}

.tribes-comparison {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--cream-deep);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.tribes-comparison-col {
  flex: 1;
}

.tribes-comparison-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.tribes-comparison-label-sinergy {
  color: var(--violet);
}

.tribes-comparison-vs {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .tribes-visual {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ---------------------------------------------------------
     THESIS SUBTITLE
  --------------------------------------------------------- */
.thesis-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(253, 246, 237, 0.65);
  max-width: 680px;
  margin-top: 28px;
  line-height: 1.55;
}
