/* ============================================
   propose2close v2 — Complete Stylesheet
   Dark theme, neon shapes: triangle / square / circle
   ============================================ */

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/inter-700.woff2') format('woff2'); }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #161616;
  --border: #222222;
  --mid: #888888;
  --light: #cccccc;
  --white: #ffffff;
  --neon: #39FF14;
  --neon-dim: rgba(57, 255, 20, 0.15);
  --neon-glow: rgba(57, 255, 20, 0.4);
  --green: #39FF14;
  --green-dim: rgba(57, 255, 20, 0.15);
  --blue: #4EA8FF;
  --blue-dim: rgba(78, 168, 255, 0.15);
  --blue-glow: rgba(78, 168, 255, 0.4);
  --red: #FF3B4F;
  --red-dim: rgba(255, 59, 79, 0.15);
  --red-glow: rgba(255, 59, 79, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 40px;
}

/* ============================================
   Header
   ============================================ */
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 12px;
}

/* ============================================
   Logo
   ============================================ */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  flex: 1;
}

.logo-triangle {
  width: 30px;
  height: 30px;
  transform: rotate(-12deg);
  filter: drop-shadow(0 0 6px var(--neon-glow));
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
}

/* ============================================
   Navigation
   ============================================ */
nav {
  flex-basis: 100%;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 30px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 8px 24px;
  align-items: center;
  flex-wrap: nowrap;
}

nav a {
  color: var(--mid);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  white-space: nowrap;
}

nav a:hover {
  color: var(--white);
}

nav a.active {
  color: var(--white);
}

/* Nav color classes */
nav a.nav-green {
  color: var(--neon) !important;
}

nav a.nav-red {
  color: var(--red) !important;
}

nav a.nav-blue {
  color: var(--blue) !important;
}

nav a.nav-green:hover {
  color: var(--white) !important;
}

nav a.nav-red:hover {
  color: var(--white) !important;
}

nav a.nav-blue:hover {
  color: var(--white) !important;
}

/* Nav stacked group */
.nav-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.2;
}

.nav-stack a {
  font-size: 13px;
}

/* Nav CTA */
.nav-cta-item {
  margin-left: auto;
}

.nav-cta {
  background: var(--neon);
  color: var(--black) !important;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
}

.nav-cta:hover {
  box-shadow: 0 0 20px var(--neon-glow);
  color: var(--black) !important;
}

/* Hamburger menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

/* Header controls (language + theme) */
.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 1.5px;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  transition: color 0.2s, border-color 0.2s;
}

.theme-toggle:hover {
  color: var(--white);
  border-color: var(--white);
}

@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }
  nav {
    border-bottom: none;
    padding: 0;
    margin-bottom: 16px;
  }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
  }
  nav ul.open {
    display: flex;
  }
  nav a {
    font-size: 16px;
  }
  .nav-cta-item {
    margin-left: 0;
  }
  .nav-cta {
    display: block;
    text-align: center;
  }
  .nav-stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .nav-stack a {
    font-size: 16px;
  }
}

/* ============================================
   Typography
   ============================================ */
h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--white);
}

h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 60px;
  color: var(--white);
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

p {
  margin-bottom: 16px;
  color: var(--light);
}

.intro {
  font-size: 20px;
  color: var(--mid);
  margin-bottom: 50px;
  max-width: 640px;
  line-height: 1.6;
}

.neon-text {
  color: var(--neon);
}

/* Color text classes */
.text-blue { color: var(--blue); }
.text-green { color: var(--neon); }
.text-red { color: var(--red); }

/* ============================================
   About Section (Landing page)
   ============================================ */
.about-section {
  padding: 40px 0 60px;
}

.about-section h1 {
  margin-bottom: 24px;
}

.about-section .intro {
  max-width: 720px;
}

.about-placeholder {
  background: var(--card);
  border: 1px dashed var(--border);
  padding: 40px 32px;
  color: var(--mid);
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  max-width: 720px;
}

.about-placeholder p {
  color: var(--mid);
  margin-bottom: 12px;
}

.about-placeholder p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Three-Pillar Grid (Landing page)
   ============================================ */
.pillar-section {
  padding: 60px 0 40px;
}

.pillar-section h2 {
  margin-top: 0;
  margin-bottom: 40px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 700px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  padding: 32px 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar-card:hover {
  border-color: var(--border);
}

/* Green pillar — Triangle Sales */
.pillar-card.pillar-green {
  border-left-color: var(--green);
}

.pillar-card.pillar-green:hover {
  border-left-color: var(--green);
  box-shadow: -4px 0 24px var(--green-dim);
}

/* Red pillar — Leadership */
.pillar-card.pillar-red {
  border-left-color: var(--red);
}

.pillar-card.pillar-red:hover {
  border-left-color: var(--red);
  box-shadow: -4px 0 24px var(--red-dim);
}

/* Blue pillar — AI Support */
.pillar-card.pillar-blue {
  border-left-color: var(--blue);
}

.pillar-card.pillar-blue:hover {
  border-left-color: var(--blue);
  box-shadow: -4px 0 24px var(--blue-dim);
}

/* Pillar shape icon */
.pillar-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
  transition: filter 0.3s;
}

.pillar-card:hover .pillar-icon svg {
  filter: drop-shadow(0 0 8px currentColor);
}

.pillar-card.pillar-green:hover .pillar-icon svg {
  filter: drop-shadow(0 0 10px var(--neon-glow));
}

.pillar-card.pillar-red:hover .pillar-icon svg {
  filter: drop-shadow(0 0 10px var(--red-glow));
}

.pillar-card.pillar-blue:hover .pillar-icon svg {
  filter: drop-shadow(0 0 10px var(--blue-glow));
}

.pillar-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

.pillar-card.pillar-green .pillar-name { color: var(--green); }
.pillar-card.pillar-red .pillar-name { color: var(--red); }
.pillar-card.pillar-blue .pillar-name { color: var(--blue); }

.pillar-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--light);
  margin-bottom: 0;
}

.pillar-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
}

.pillar-card.pillar-green .pillar-link { color: var(--green); }
.pillar-card.pillar-red .pillar-link { color: var(--red); }
.pillar-card.pillar-blue .pillar-link { color: var(--blue); }

.pillar-link:hover {
  color: var(--white);
}

/* ============================================
   Shape Hero (shared across shape pages)
   ============================================ */
.shape-hero {
  width: 100%;
  padding: 60px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.shape-hero h1 {
  margin-top: 24px;
}

.shape-hero .intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================
   Triangle Animation (Sales page — existing v1)
   ============================================ */
.story {
  min-height: calc(100vh - 220px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 0;
}

.story-stage {
  position: relative;
  height: 400px;
  max-width: 900px;
  margin: 0 auto;
}

.story-tri {
  position: absolute;
  width: 320px;
  height: 290px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.story-tri.at-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.story-tri.at-left {
  transform: translate(calc(-50% - 240px), -50%) scale(0.7);
  opacity: 0.7;
}

.story-tri.at-right {
  transform: translate(calc(-50% + 240px), -50%) scale(0.7);
  opacity: 0.7;
}

.story-tri.merged {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 0.85;
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-tri.fade-out {
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Logo triangle — hidden, appears on merge */
.story-logo {
  position: absolute;
  width: 320px;
  height: 290px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 0;
  transition: opacity 0.6s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.story-logo.show {
  opacity: 1;
}

.story-logo.tilted {
  transform: translate(-50%, -50%) scale(1.15) rotate(-12deg);
}

/* Tagline — appears next to logo */
.story-tagline-side {
  position: absolute;
  top: 50%;
  left: calc(50% + 190px);
  transform: translateY(-55%);
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.story-tagline-side.show {
  opacity: 1;
}

.tagline-line {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  margin-left: 0;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tagline-line.show {
  opacity: 1;
  transform: translateX(0);
}

.tagline-line:nth-child(2) { margin-left: 28px; }
.tagline-line:nth-child(3) { margin-left: 56px; }

.tagline-green {
  color: var(--neon);
}

/* Edge + label highlighting */
.edge { transition: opacity 0.5s; }
.edge.dim { opacity: 0; }
.edge.lit { opacity: 1; }

.tri-label { transition: opacity 0.5s; }
.tri-label.dim { opacity: 0; }
.tri-label.lit { opacity: 1; }

/* YOU text inside triangles */
.tri-you { transition: opacity 0.6s ease; pointer-events: none; }
.tri-you.dim { opacity: 0; }
.tri-you.lit { opacity: 1; }

/* Narrative text */
.story-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--light);
  min-height: 28px;
  margin: 20px auto 0;
  max-width: 600px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}

.story-text.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Square Animation (Leadership page)
   ============================================ */
.square-animation {
  width: 200px;
  height: 200px;
  position: relative;
  margin: 0 auto;
}

.square-animation svg {
  width: 100%;
  height: 100%;
  transform: rotate(-12deg);
}

/* Animated sides lighting up sequentially */
.square-animation .sq-side {
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: sq-draw 3s ease forwards;
}

.square-animation .sq-side:nth-child(1) { animation-delay: 0s; }
.square-animation .sq-side:nth-child(2) { animation-delay: 0.6s; }
.square-animation .sq-side:nth-child(3) { animation-delay: 1.2s; }
.square-animation .sq-side:nth-child(4) { animation-delay: 1.8s; }

@keyframes sq-draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Glow pulse on the full square once drawn */
.square-animation .sq-glow {
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
  opacity: 0;
  filter: drop-shadow(0 0 8px var(--red-glow));
  animation: sq-glow-pulse 2s ease 2.6s infinite;
}

@keyframes sq-glow-pulse {
  0%, 100% { opacity: 0.3; filter: drop-shadow(0 0 6px var(--red-glow)); }
  50% { opacity: 0.7; filter: drop-shadow(0 0 14px var(--red-glow)); }
}

/* Static square shape (decorative, for cards/sections) */
.square-shape {
  width: 28px;
  height: 28px;
  border: 2px solid var(--red);
  transform: rotate(-12deg);
  flex-shrink: 0;
}

.square-shape-lg {
  width: 48px;
  height: 48px;
  border: 2px solid var(--red);
  transform: rotate(-12deg);
  flex-shrink: 0;
}

/* ============================================
   Circle Animation (AI page)
   ============================================ */
.circle-animation {
  width: 200px;
  height: 200px;
  position: relative;
  margin: 0 auto;
}

.circle-animation svg {
  width: 100%;
  height: 100%;
}

/* Animated circle drawing */
.circle-animation .circ-ring {
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 565;
  stroke-dashoffset: 565;
  animation: circ-draw 2s ease forwards;
}

@keyframes circ-draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Glow pulse on drawn circle */
.circle-animation .circ-glow {
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
  opacity: 0;
  filter: drop-shadow(0 0 8px var(--blue-glow));
  animation: circ-glow-pulse 2.5s ease 2.2s infinite;
}

@keyframes circ-glow-pulse {
  0%, 100% { opacity: 0.3; filter: drop-shadow(0 0 6px var(--blue-glow)); }
  50% { opacity: 0.7; filter: drop-shadow(0 0 14px var(--blue-glow)); }
}

/* Static circle shape (decorative) */
.circle-shape {
  width: 28px;
  height: 28px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.circle-shape-lg {
  width: 48px;
  height: 48px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   Leadership Page — Cycle Grid
   ============================================ */
.cycle-section {
  padding: 40px 0;
}

.cycle-section h2 {
  margin-top: 0;
}

.cycle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

@media (max-width: 900px) {
  .cycle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 500px) {
  .cycle-grid {
    grid-template-columns: 1fr;
  }
}

.cycle-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.3s;
}

.cycle-card:hover {
  border-color: var(--red-dim);
}

.cycle-number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  background: var(--red);
}

.cycle-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
  padding-right: 40px;
}

.cycle-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--light);
  margin-bottom: 0;
}

/* Arrows between cycle cards (desktop) */
.cycle-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  z-index: 2;
}

/* Horizontal arrows between columns */
.cycle-arrows {
  display: none;
}

@media (min-width: 901px) {
  .cycle-arrows {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -12px;
    margin-bottom: -12px;
  }

  .cycle-arrow-item {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cycle-arrow-item svg {
    width: 24px;
    height: 24px;
    color: var(--red);
  }
}

/* Cycle flow indicator (below grid) */
.cycle-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--mid);
  font-size: 14px;
  font-weight: 500;
}

.cycle-flow-arrow {
  color: var(--red);
  font-weight: 700;
}

.cycle-flow-step {
  color: var(--light);
}

.cycle-flow-step.active {
  color: var(--red);
  font-weight: 600;
}

/* ============================================
   AI Page
   ============================================ */
.ai-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.ai-hero h1 {
  margin-top: 24px;
}

.ai-hero .intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ai-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

@media (max-width: 700px) {
  .ai-features {
    grid-template-columns: 1fr;
  }
}

.ai-feature {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  transition: border-color 0.3s;
}

.ai-feature:hover {
  border-color: var(--blue-dim);
}

.ai-feature h3 {
  color: var(--blue);
  margin-bottom: 8px;
}

.ai-feature p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--light);
  margin-bottom: 0;
}

.ai-feature .circle-shape {
  margin-bottom: 16px;
}

/* ============================================
   Three Streams (Sales page)
   ============================================ */
.streams-section {
  padding: 40px 0;
}

.streams-section h2 {
  margin-top: 0;
}

.streams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 700px) {
  .streams-grid {
    grid-template-columns: 1fr;
  }
}

.stream-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  transition: border-color 0.3s;
}

.stream-card:hover {
  border-color: var(--neon-dim);
}

.stream-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stream-icon svg {
  width: 100%;
  height: 100%;
}

.stream-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 8px;
}

.stream-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--light);
  margin-bottom: 0;
}

/* ============================================
   Results Section (Sales page)
   ============================================ */
.results-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.results-section h2 {
  margin-top: 0;
}

.results-intro {
  color: var(--mid);
  margin-bottom: 24px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 700px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--neon);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.result-card:hover {
  border-color: var(--neon-dim);
  border-top-color: var(--neon);
  box-shadow: 0 4px 20px var(--neon-dim);
}

.result-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.result-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 8px;
}

.result-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--light);
  margin-bottom: 0;
}

/* ============================================
   Day Sections
   ============================================ */
.day {
  margin-bottom: 50px;
}

.day-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon);
  margin-bottom: 20px;
}

/* Red day label for leadership */
.day-label-red {
  color: var(--red);
}

/* Blue day label for AI */
.day-label-blue {
  color: var(--blue);
}

/* ============================================
   Module Grid
   ============================================ */
.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .modules {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  transition: border-color 0.2s;
}

.card:hover {
  border-color: var(--neon-dim);
}

/* Red card variant (Leadership) */
.card-red:hover {
  border-color: var(--red-dim);
}

/* Blue card variant (AI) */
.card-blue:hover {
  border-color: var(--blue-dim);
}

.card-header {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.card p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--light);
}

.card .behavior {
  color: var(--mid);
  font-size: 13px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

.card .behavior span {
  font-weight: 600;
  color: var(--neon);
}

.card-red .behavior span {
  color: var(--red);
}

.card-blue .behavior span {
  color: var(--blue);
}

/* Transformation */
.card .transformation {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.4;
}

.card .transformation .state {
  flex: 1;
}

.card .transformation .state-label {
  font-weight: 600;
  color: var(--mid);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.card .transformation .state p {
  font-size: 13px;
  margin-bottom: 0;
}

.card .transformation .arrow {
  flex-shrink: 0;
  color: var(--neon);
  font-size: 18px;
}

.card-red .transformation .arrow {
  color: var(--red);
}

.card-blue .transformation .arrow {
  color: var(--blue);
}

/* ============================================
   Format List
   ============================================ */
.format-list {
  list-style: none;
  margin: 20px 0;
}

.format-list li {
  font-size: 16px;
  color: var(--light);
  padding: 8px 0 8px 24px;
  position: relative;
}

.format-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--neon);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* Red variant */
.format-list-red li::before {
  border-left-color: var(--red);
}

/* Blue variant */
.format-list-blue li::before {
  border-left-color: var(--blue);
}

/* ============================================
   Pricing
   ============================================ */
.pricing-section {
  margin-top: 60px;
  padding: 40px;
  border: 2px solid var(--neon);
  background: var(--card);
}

/* Red pricing (Leadership) */
.pricing-section-red {
  border-color: var(--red);
}

/* Blue pricing (AI) */
.pricing-section-blue {
  border-color: var(--blue);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}

.pricing-header h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.pricing-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: -0.5px;
}

.pricing-section-red .pricing-amount {
  color: var(--red);
}

.pricing-section-blue .pricing-amount {
  color: var(--blue);
}

.pricing-unit {
  font-size: 16px;
  font-weight: 400;
  color: var(--mid);
}

.pricing-includes {
  list-style: none;
  margin: 0 0 24px 0;
}

.pricing-includes li {
  font-size: 16px;
  color: var(--light);
  padding: 6px 0 6px 24px;
  position: relative;
}

.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 12px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--neon);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.pricing-section-red .pricing-includes li::before {
  border-left-color: var(--red);
}

.pricing-section-blue .pricing-includes li::before {
  border-left-color: var(--blue);
}

.pricing-note {
  font-size: 14px;
  color: var(--mid);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial {
  border-left: 3px solid var(--border);
  padding-left: 28px;
  margin-bottom: 40px;
}

.testimonial-green { border-left-color: var(--green-dim); }
.testimonial-red { border-left-color: var(--red-dim); }
.testimonial-blue { border-left-color: var(--blue-dim); }

.testimonial-text {
  font-style: italic;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--white);
}

.testimonial-author {
  color: var(--mid);
  font-size: 14px;
}

/* ============================================
   Trainers (Team page)
   ============================================ */
.trainers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

@media (max-width: 700px) {
  .trainers {
    grid-template-columns: 1fr;
  }
}

.trainer {
  text-align: center;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.trainer:hover {
  border-color: var(--neon-dim);
}

.trainer-portrait {
  width: 120px;
  height: 130px;
  margin: 0 auto 20px;
}

.trainer-portrait svg {
  width: 100%;
  height: 100%;
}

.trainer-name {
  font-size: 17px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.trainer-role {
  font-size: 14px;
  color: var(--neon);
  margin-bottom: 8px;
}

.trainer-specialty {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
  margin-bottom: 14px;
}

.trainer-link {
  font-size: 13px;
  color: var(--mid);
  text-decoration: none;
  font-weight: 500;
}

.trainer-link:hover {
  color: var(--neon);
}

/* ============================================
   Tools
   ============================================ */
.tool {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.tool:last-child {
  border-bottom: none;
}

.tool-name {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 600;
}

.tool-desc {
  color: var(--mid);
  font-size: 15px;
}

/* Tools upcoming list */
.tool-upcoming {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
}

.tool-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--neon);
  min-width: 140px;
  flex-shrink: 0;
}

.tool-tba {
  font-size: 15px;
  color: var(--mid);
  font-style: italic;
}

/* Content sections */
.content-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .content-sections {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Method Page
   ============================================ */
.method-hero {
  text-align: center;
  padding: 0;
  margin-bottom: -20px;
}

.method-hero h1 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--mid);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.method-hero .method-subtitle {
  font-size: 14px;
  color: var(--neon);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.method-hero .intro {
  margin: 0 auto;
  text-align: center;
}

.method-tagline {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin: 30px 0 10px;
  letter-spacing: -0.5px;
}

.method-tagline .neon-text {
  color: var(--neon);
}

/* ============================================
   Below-fold Content
   ============================================ */
.below-fold {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.below-fold.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Principle Cards (Colored)
   ============================================ */
.principle-blue h3 { color: var(--blue); }
.principle-blue { border-color: var(--blue-dim); }
.principle-blue:hover { border-color: var(--blue); }

.principle-green h3 { color: var(--neon); }
.principle-green:hover { border-color: var(--neon); }

.principle-red h3 { color: var(--red); }
.principle-red { border-color: var(--red-dim); }
.principle-red:hover { border-color: var(--red); }

.triangle-diagram {
  display: flex;
  justify-content: center;
  margin: 50px 0 20px;
}

.triangle-diagram svg {
  max-width: 480px;
  width: 100%;
  height: auto;
}

/* ============================================
   Phases
   ============================================ */
.phase {
  margin-bottom: 60px;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.phase-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  background: var(--neon);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transform: rotate(-12deg);
}

/* Red phase number (square shape) */
.phase-number-red {
  background: var(--red);
  clip-path: none;
  transform: rotate(-12deg);
}

/* Blue phase number (circle shape) */
.phase-number-blue {
  background: var(--blue);
  clip-path: none;
  border-radius: 50%;
  transform: none;
}

.phase-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}

.phase > p {
  font-size: 16px;
  max-width: 640px;
}

.principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}

@media (max-width: 700px) {
  .principle-grid {
    grid-template-columns: 1fr;
  }
}

.principle {
  text-align: left;
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.principle-tri {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.principle h3 {
  margin-bottom: 6px;
  color: var(--neon);
}

.principle p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--light);
  margin-bottom: 0;
}

.principle-subtitle {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 12px;
}

.principle-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.principle-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--light);
  padding-left: 16px;
  position: relative;
}

.principle-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
}

/* ============================================
   Booking Page
   ============================================ */
.book-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 700px) {
  .book-page {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.book-info h1 {
  margin-bottom: 16px;
}

.book-info .intro {
  margin-bottom: 32px;
}

.book-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.book-detail h3 {
  margin-bottom: 4px;
}

.book-detail .format-list {
  margin-top: 8px;
}

.book-detail .format-list li {
  font-size: 15px;
  padding: 5px 0 5px 24px;
}

.book-form-wrap {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.form-group .optional {
  font-weight: 400;
  color: var(--mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--black);
  color: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.book-submit {
  cursor: pointer;
  width: 100%;
  text-align: center;
  border: 2px solid var(--neon);
  background: var(--neon);
  color: var(--black) !important;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  margin-top: 8px;
  transition: all 0.2s;
}

.book-submit:hover {
  box-shadow: 0 0 20px var(--neon-glow);
}

.book-confirmation {
  text-align: center;
  padding: 40px 20px;
}

.book-confirmation h2 {
  margin-top: 24px;
}

/* ============================================
   Next Step CTA
   ============================================ */
.next-step-cta {
  text-align: center;
  margin-top: 80px;
}

.next-step-cta h2 {
  margin-top: 0;
  margin-bottom: 20px;
}

/* ============================================
   Discover Arrow
   ============================================ */
.discover-cta {
  text-align: center;
  margin-top: 50px;
}

.discover-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--neon);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  cursor: pointer;
}

.discover-link:hover {
  color: var(--white);
}

.discover-arrow {
  width: 24px;
  height: 24px;
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================
   CTA Buttons
   ============================================ */
.cta {
  display: inline-block;
  border: 2px solid var(--neon);
  padding: 14px 32px;
  margin-top: 30px;
  text-decoration: none;
  color: var(--neon);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}

.cta:hover {
  background: var(--neon);
  color: var(--black);
  box-shadow: 0 0 20px var(--neon-glow);
}

/* Red CTA (Leadership) */
.cta-red {
  border-color: var(--red);
  color: var(--red);
}

.cta-red:hover {
  background: var(--red);
  color: var(--black);
  box-shadow: 0 0 20px var(--red-glow);
}

/* Blue CTA (AI) */
.cta-blue {
  border-color: var(--blue);
  color: var(--blue);
}

.cta-blue:hover {
  background: var(--blue);
  color: var(--black);
  box-shadow: 0 0 20px var(--blue-glow);
}

.cta-center {
  text-align: center;
  margin-top: 50px;
}

/* ============================================
   Footer
   ============================================ */
footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--mid);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer a {
  color: var(--mid);
  text-decoration: none;
}

footer a:hover {
  color: var(--neon);
}

.footer-nav {
  display: flex;
  gap: 20px;
}

/* ============================================
   Links
   ============================================ */
a {
  color: var(--neon);
}

a:hover {
  color: var(--white);
}

/* ============================================
   Pipeline Page
   ============================================ */
.pipe-phase {
  margin-bottom: 50px;
  display: none;
}

.pipe-phase.active {
  display: block;
}

.pipe-phase-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon);
  margin-bottom: 20px;
}

.pipe-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 640px;
}

/* ============================================
   Sales Process Pipeline (horizontal arrows)
   ============================================ */
.process-section {
  margin-top: 80px;
  text-align: center;
}

.process-section h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.process-intro {
  color: var(--mid);
  font-size: 15px;
  margin-bottom: 40px;
}

.pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  max-width: 960px;
  overflow-x: auto;
  padding: 8px 0;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 100px;
  padding: 20px 12px;
  flex-shrink: 0;
}

.pipeline-number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  background: var(--neon);
  border-radius: 50%;
  flex-shrink: 0;
}

.pipeline-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

.pipeline-desc {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.4;
  max-width: 120px;
}

.pipeline-arrow {
  width: 28px;
  height: 2px;
  background: var(--neon);
  position: relative;
  flex-shrink: 0;
}

.pipeline-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid var(--neon);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

@media (max-width: 700px) {
  .pipeline {
    flex-direction: column;
    gap: 0;
  }

  .pipeline-arrow {
    width: 2px;
    height: 20px;
    background: var(--neon);
  }

  .pipeline-arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid var(--neon);
    border-bottom: none;
  }

  .pipeline-step {
    min-width: unset;
    padding: 12px;
  }
}

/* ============================================
   Problem Page
   ============================================ */
.problem-hero {
  text-align: center;
  padding: 40px 0 0;
}

.excuse-cloud {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 420px;
  margin: 32px auto 48px;
  overflow: hidden;
}

.excuse {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.excuse.show {
  opacity: 1;
}

.excuse.dimmed {
  opacity: 0.15;
  transition: opacity 1s ease;
}

.goal {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 20px;
  font-weight: 600;
  color: var(--neon);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.goal.show {
  opacity: 1;
}

.excuse-grid {
  max-width: 800px;
  margin: 0 auto 60px;
}

.excuse-grid-header {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--border);
}

.excuse-grid-header span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mid);
}

.excuse-grid-header span:last-child {
  text-align: right;
}

.excuse-pair {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.ep-excuse {
  font-size: 17px;
  font-style: italic;
  color: var(--light);
}

.ep-arrow {
  color: var(--neon);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.ep-goal {
  font-size: 17px;
  font-weight: 600;
  color: var(--neon);
  text-align: right;
}

.problem-bridge {
  text-align: center;
  margin: 20px 0 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.problem-bridge.show {
  opacity: 1;
  transform: translateY(0);
}

.bridge-question {
  font-size: 18px;
  color: var(--mid);
  margin-bottom: 12px;
}

.problem-bridge h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.problem-bridge p {
  font-size: 18px;
  color: var(--light);
  line-height: 1.6;
}

.problem-answer {
  margin: 80px 0 60px;
  max-width: 640px;
}

.problem-answer h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.problem-answer p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--light);
  margin-bottom: 14px;
}

.problem-answer strong {
  color: var(--white);
}

.problem-fix {
  margin: 0 0 60px;
}

.problem-fix h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 28px;
}

.fix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.fix-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.fix-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.fix-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--light);
}

.fix-summary {
  font-size: 19px;
  line-height: 1.6;
  color: var(--light);
  margin-top: 16px;
}

.fix-summary strong {
  color: var(--white);
}

/* ============================================
   Trust Section
   ============================================ */
.trust-section {
  margin: 80px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.trust-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.trust-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--light);
}

.trust-placeholder {
  color: var(--mid) !important;
  font-style: italic;
}

@media (max-width: 700px) {
  .trust-section {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Privacy Page
   ============================================ */
.privacy-page {
  max-width: 720px;
}

.privacy-page h1 {
  margin-bottom: 32px;
}

.privacy-page h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.privacy-page h3 {
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.privacy-page p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--light);
}

.privacy-page ul {
  list-style: none;
  margin: 12px 0;
  padding: 0;
}

.privacy-page ul li {
  font-size: 15px;
  color: var(--light);
  padding: 4px 0 4px 20px;
  position: relative;
}

.privacy-page ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  background: var(--mid);
  border-radius: 50%;
}

/* ============================================
   Responsive — Global
   ============================================ */
@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 20px;
    margin-top: 40px;
  }

  .intro {
    font-size: 18px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .story-stage {
    height: 320px;
  }

  .story-tri {
    width: 220px;
    height: 200px;
  }

  .story-tri.at-left {
    transform: translate(calc(-50% - 90px), -50%) scale(0.6);
  }

  .story-tri.at-right {
    transform: translate(calc(-50% + 90px), -50%) scale(0.6);
  }

  .story-logo {
    width: 160px;
    height: 145px;
    left: 50%;
  }

  .story-logo.tilted {
    transform: translate(-50%, -50%) scale(0.9) rotate(-12deg);
  }

  .story-tagline-side {
    left: 50%;
    top: calc(50% + 100px);
    transform: translateX(-50%);
    text-align: center;
    align-items: center;
  }

  .tagline-line {
    font-size: 16px;
    line-height: 1.2;
  }

  .story-text {
    font-size: 15px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 24px;
  }

  .pricing-header {
    flex-direction: column;
    gap: 8px;
  }

  footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .square-animation,
  .circle-animation {
    width: 150px;
    height: 150px;
  }

  .excuse-pair {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .excuse-grid-header {
    display: none;
  }
  .ep-excuse {
    font-size: 15px;
  }
  .ep-arrow {
    display: none;
  }
  .ep-goal {
    text-align: left;
    font-size: 15px;
  }
  .ep-goal::before {
    content: '\2192  ';
    color: var(--neon);
  }
  .excuse-cloud {
    height: 380px;
  }
  .excuse {
    font-size: 14px;
  }
  .goal {
    font-size: 14px;
  }
  .fix-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Light Theme
   ============================================ */
[data-theme="light"] {
  --black: #FAF7F2;
  --dark: #F0ECE6;
  --card: #FFFFFF;
  --border: #D6D0C8;
  --mid: #7A7670;
  --light: #3D3A36;
  --white: #0D1B3E;
  --neon: #7B1E34;
  --neon-dim: rgba(123, 30, 52, 0.10);
  --neon-glow: rgba(123, 30, 52, 0.25);
  --green: #1E7A0E;
  --green-dim: rgba(30, 122, 14, 0.12);
  --blue: #2B7ACC;
  --blue-dim: rgba(43, 122, 204, 0.15);
  --blue-glow: rgba(43, 122, 204, 0.25);
  --red: #C62D3E;
  --red-dim: rgba(198, 45, 62, 0.12);
  --red-glow: rgba(198, 45, 62, 0.25);
}

[data-theme="light"] .logo-triangle polygon {
  stroke: #7B1E34;
}

[data-theme="light"] .logo-triangle {
  filter: drop-shadow(0 0 6px rgba(123, 30, 52, 0.25));
}

[data-theme="light"] #triLogo polygon {
  stroke: #7B1E34;
}

[data-theme="light"] .tri-you {
  fill: #0D1B3E;
}

[data-theme="light"] .book-confirmation svg {
  stroke: #7B1E34;
}

[data-theme="light"] .favicon-override {
  stroke: #7B1E34;
}

/* Light theme shape overrides */
[data-theme="light"] .square-animation .sq-side,
[data-theme="light"] .square-animation .sq-glow {
  stroke: var(--red);
}

[data-theme="light"] .square-shape,
[data-theme="light"] .square-shape-lg {
  border-color: var(--red);
}

[data-theme="light"] .circle-animation .circ-ring,
[data-theme="light"] .circle-animation .circ-glow {
  stroke: var(--blue);
}

[data-theme="light"] .circle-shape,
[data-theme="light"] .circle-shape-lg {
  border-color: var(--blue);
}

/* Light theme nav colored links */
[data-theme="light"] nav a.nav-green {
  color: var(--green) !important;
}

[data-theme="light"] nav a.nav-red {
  color: var(--red) !important;
}

[data-theme="light"] nav a.nav-blue {
  color: var(--blue) !important;
}

/* Light theme pillar cards */
[data-theme="light"] .pillar-card.pillar-green {
  border-left-color: var(--green);
}

[data-theme="light"] .pillar-card.pillar-green .pillar-name,
[data-theme="light"] .pillar-card.pillar-green .pillar-link {
  color: var(--green);
}

[data-theme="light"] .pillar-card.pillar-red {
  border-left-color: var(--red);
}

[data-theme="light"] .pillar-card.pillar-red .pillar-name,
[data-theme="light"] .pillar-card.pillar-red .pillar-link {
  color: var(--red);
}

[data-theme="light"] .pillar-card.pillar-blue {
  border-left-color: var(--blue);
}

[data-theme="light"] .pillar-card.pillar-blue .pillar-name,
[data-theme="light"] .pillar-card.pillar-blue .pillar-link {
  color: var(--blue);
}

/* Light theme cycle cards */
[data-theme="light"] .cycle-card h3 {
  color: var(--red);
}

[data-theme="light"] .cycle-number {
  background: var(--red);
  color: #fff;
}

/* Light theme AI features */
[data-theme="light"] .ai-feature h3 {
  color: var(--blue);
}

/* Light theme stream cards */
[data-theme="light"] .stream-card h3 {
  color: var(--green);
}

/* Light theme result cards */
[data-theme="light"] .result-card {
  border-top-color: var(--neon);
}

[data-theme="light"] .result-card h3 {
  color: var(--neon);
}

/* Light theme CTA variants */
[data-theme="light"] .cta-red {
  border-color: var(--red);
  color: var(--red);
}

[data-theme="light"] .cta-red:hover {
  background: var(--red);
  color: #fff;
}

[data-theme="light"] .cta-blue {
  border-color: var(--blue);
  color: var(--blue);
}

[data-theme="light"] .cta-blue:hover {
  background: var(--blue);
  color: #fff;
}

/* Light theme day labels */
[data-theme="light"] .day-label-red {
  color: var(--red);
}

[data-theme="light"] .day-label-blue {
  color: var(--blue);
}
