/*﻿​‍​‍​​‍‍​‍​​‍​​‍​‍​​​‍‍‍​‍​​‍​​‍​‍​​‍‍​​​​‍‍‍​‍​​​‍‍‍​‍​​‍​​​‍‍​​‍‍​​‍​‍​‍‍‍​​‍​​‍‍‍​​‍​​‍‍​​​​‍​‍‍​‍‍‍​​​‍​​​​​​‍​​‍‍​‍​‍‍​​‍​‍​‍‍​‍​​‍​‍‍​‍​‍​​‍‍​​‍​‍​‍‍‍​​‍​​‍‍​‍​​‍​‍‍​‍‍‍​​‍‍​​‍‍‍​​‍‍‍​‍​​​‍‍‍​‍​​‍‍‍​‍‍​​​‍‍​​​‍​​‍​‍‍‍​​​‍‍​​​​﻿ ============================================
   @integrity c6d747dc36b809d0
   propose2close — v4.1
   Dark theme, neon green, slick
   ============================================ */

@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);
  --red: #FF3B4F;
  --red-dim: rgba(255, 59, 79, 0.15);
}

html {
  scroll-behavior: smooth;
}

/* Accessibility: honour reduced-motion preference — disable smooth scroll, animations, transitions. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Accessibility: skip-to-content link, visible only on keyboard focus. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.6rem 1rem;
  background: var(--neon);
  color: var(--black);
  font-weight: 600;
  border-radius: 0 0 6px 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

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 mark. The trinity lockup (viewBox 0 0 132 44) is upright — its triangle
   tilts via its own internal transform, so NO rotation here. Legacy standalone
   triangles (viewBox 0 0 32 32) also tilt via their polygon's own transform. */
.logo-triangle {
  height: 26px;
  width: auto;
  flex-shrink: 0;
}

.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:not(.nav-cta) {
  color: var(--white);
  box-shadow: 0 2px 0 0 var(--neon);
  padding-bottom: 2px;
}

nav a.nav-green {
  color: var(--neon) !important;
}

/* Nav stacked group (podcast / blog / AI + tools) */
.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;
}

/* Tools nav link — blue accent (matches the ◯ circle pillar, see BRAND-GUIDE) */
.nav-blue {
  color: var(--blue) !important;
}

/* ---- Nav dropdown (Trainings) ---- */
.nav-dd {
  position: relative;
}

.nav-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--mid);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-dd-btn:hover,
.nav-dd:focus-within .nav-dd-btn,
.nav-dd-btn[aria-expanded="true"] {
  color: var(--white);
}

.nav-dd-caret {
  font-size: 10px;
  line-height: 1;
}

.nav-dd-menu {
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  background: var(--card);
  border: 1px solid var(--border);
  z-index: 100;
}

/* Opens without JS: hover (desktop) + keyboard focus. JS adds aria-expanded toggle. */
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu,
.nav-dd-btn[aria-expanded="true"] + .nav-dd-menu {
  display: block;
}

.nav-dd-menu li {
  display: block;
}

.nav-dd-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
}

.nav-dd-menu a:hover {
  background: var(--dark);
  color: var(--white);
}


/* 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;
  min-height: 30px;
  min-width: 30px;
  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;
  }
  /* Dropdown inside the hamburger: static, tap-to-open via aria-expanded only */
  .nav-dd {
    width: 100%;
  }
  .nav-dd-btn {
    font-size: 16px;
    min-height: 44px;
  }
  .nav-dd-menu,
  .nav-dd:hover .nav-dd-menu,
  .nav-dd:focus-within .nav-dd-menu {
    display: none;
    position: static;
    min-width: 0;
    border: none;
    background: none;
    padding: 8px 0 0 16px;
  }
  .nav-dd-menu li {
    padding: 8px 0;
  }
  .nav-dd-btn[aria-expanded="true"] + .nav-dd-menu {
    display: block;
  }
}

/* ---- Typography ---- */
h1 {
  /* Design-anchor type scale: --fs-h1 */
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.15;
  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);
}

/* ---- 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;
}

/* ---- 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);
}

.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);
}

/* ---- 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;
}

/* ---- 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;
}

/* ---- Pricing ---- */
.pricing-section {
  margin-top: 60px;
  padding: 40px;
  border: 2px solid var(--neon);
  background: var(--card);
}

.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-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-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-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 ---- */
.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;
}

/* ---- 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);
}

/* ---- Story animation (method page) ---- */
.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);
}

/* (tagline now positioned inside story-stage) */

/* Color text classes for tagline */
.text-blue { color: var(--blue); }
.text-green { color: var(--neon); }
.text-red { color: var(--red); }

/* Below-fold content — hidden until tilt completes */
.below-fold {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.below-fold.show {
  opacity: 1;
  transform: translateY(0);
}

/* Colored principle cards */
.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;
}

.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);
}

.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 ---- */
.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);
}

.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;
}

.footer-tagline {
  color: var(--mid);
  font-size: 12px;
  letter-spacing: 0.3px;
  margin: 0;
}

/* ---- Links ---- */
a {
  color: var(--neon);
}

a:hover {
  color: var(--white);
}

/* Keyboard focus — visible in both themes, no layout shift */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

/* ---- 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;
}

.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;
}

/* 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 (Blog, Podcast on tools page) */
.content-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .content-sections {
    grid-template-columns: 1fr;
  }
}

/* ---- 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;
  }
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }

  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;
  }

  /* Pipeline stepper/phase mobile styles are now inline in pipeline.html */
}

/* Pipeline stepper + phase nav styles are now inline in pipeline.html */

/* ---- 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);
}

/* ---- Trust section (testimonials page) ---- */
.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;
  }
}

.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);
}

@media (max-width: 700px) {
  .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: #6B6760; /* was #7A7670 (4.22:1, failed WCAG AA) — darkened to meet ≥4.5:1 on light bg */
  --light: #3D3A36;
  --white: #0D1B3E;
  --neon: #7B1E34;
  --neon-dim: rgba(123, 30, 52, 0.10);
  --neon-glow: rgba(123, 30, 52, 0.25);
  --blue: #4EA8FF;
  --blue-dim: rgba(78, 168, 255, 0.20);
  --red: #C62D3E;
  --red-dim: rgba(198, 45, 62, 0.12);
  --green: #1E7A0E;
  --green-dim: rgba(30, 122, 14, 0.12);
}

/* Legacy standalone triangles hardcode stroke="#39FF14"; recolor in light theme.
   (Trinity lockup uses currentColor + var(--neon), so this is a no-op for it.) */
[data-theme="light"] .logo-triangle polygon {
  stroke: #7B1E34;
}

[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;
}
