/* ============================================
   Worbee — v6.0 · Elevated Motion
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --color-bg: #0a0a0c;
  --color-surface: #111114;
  --color-surface-hover: #18181c;
  --color-border: #222228;
  --color-border-subtle: #1a1a1e;

  --color-text: #f4f4f5;
  --color-text-secondary: #a1a1aa;
  --color-text-muted: #52525b;

  /* Refined Teal */
  --color-accent: #2dd4bf;
  --color-accent-soft: #5eead4;
  --color-accent-dim: #115e59;
  --color-accent-glow: rgba(45, 212, 191, 0.15);

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --w: 1180px;
  --w-narrow: 720px;

  --r: 4px;
  --r-lg: 8px;
  --r-pill: 100px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-secondary);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* --- Dot Grid Background --- */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* --- Ambient Glow --- */
body::after {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(45, 212, 191, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(45, 212, 191, 0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
  animation: ambientDrift 30s ease-in-out infinite alternate;
}

@keyframes ambientDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, 2%) scale(1.05); }
}

img, video { display: block; max-width: 100%; height: auto; }

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s var(--ease-out-expo);
}
a:hover { color: var(--color-accent); }

ul, ol { list-style: none; }

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-accent);
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 0 0 4px 4px;
  z-index: 10000;
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.75rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }

p + p { margin-top: var(--space-lg); }

/* Accent text styling */
.text-accent {
  color: var(--color-accent);
}

.text-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: var(--space-3xl) 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
  transform-origin: left;
}

.section-label.is-visible::before {
  animation: lineReveal 0.8s var(--ease-out-expo) 0.2s forwards;
}

@keyframes lineReveal {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ============================================
   Reveal Animations — Orchestrated
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out-expo),
              transform 1s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* Scale variant */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s var(--ease-out-expo),
              transform 1s var(--ease-out-expo);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s var(--ease-out-expo),
              transform 1s var(--ease-out-expo);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .clear-item__letter,
  .clear-item__content {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .belief__number {
    opacity: 0.4;
    transform: none;
    transition: none;
  }
}

/* ============================================
   Buttons — Refined Motion
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--r);
  transition: all 0.4s var(--ease-out-expo);
  min-height: 52px;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-accent);
  color: #0a0a0c;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset;
}

.btn--primary:hover {
  background: #fff;
  color: #0a0a0c;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05) inset;
}

.btn--primary:active {
  background: #e4e4e7;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset;
  transition-duration: 0.1s;
}

.btn--primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--ease-out-expo);
}
.btn--primary:hover svg { transform: translateX(4px); }

/* --- Focus --- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* ============================================
   Header — Refined
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background 0.3s, border-color 0.3s;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 72px;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
  border-radius: var(--r);
  transition: background-color 0.2s, transform 0.3s var(--ease-out-expo);
}
.nav-toggle:hover {
  background: rgba(255,255,255,0.08);
}
.nav-toggle:active {
  transform: scale(0.95);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-hamburger { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.site-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 12, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}
.site-nav.is-open { display: block; animation: navSlide 0.3s var(--ease-out-expo); }

@keyframes navSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-nav__list { display: flex; flex-direction: column; }

.site-nav__link {
  display: flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  color: var(--color-text-secondary);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  min-height: 48px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.site-nav__link:hover, .site-nav__link--active {
  color: var(--color-text);
  background: rgba(255,255,255,0.03);
}
.site-nav__link--cta { color: var(--color-accent); }

/* ============================================
   Hero — Dynamic & Memorable
   ============================================ */
.hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  gap: var(--space-3xl);
  position: relative;
}

/* Floating accent line */
.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 5%;
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  opacity: 0.3;
  animation: floatLine 8s ease-in-out infinite;
}

@keyframes floatLine {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.3; }
  50% { transform: translateY(20px) scaleY(1.1); opacity: 0.5; }
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: var(--space-xl);
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(45, 212, 191, 0.08);
  border-radius: var(--r-pill);
  border: 1px solid rgba(45, 212, 191, 0.15);
  letter-spacing: 0.02em;
}

.hero__headline {
  margin-bottom: var(--space-lg);
  max-width: 700px;
  line-height: 1.05;
  color: var(--color-text);
  position: relative;
}

/* Headline word styling */
.hero__headline .word-chaos {
  display: inline-block;
  position: relative;
}

.hero__headline .word-chaos::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 2px;
  background: var(--color-text-muted);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out-expo);
}

.hero__headline.is-visible .word-chaos::after {
  transform: scaleX(1);
  transform-origin: left;
  transition-delay: 0.8s;
}

.hero__headline .word-clear {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.hero__subhead {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.01em;
}

.hero__body {
  max-width: 540px;
}

.hero__body p {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.hero__cta {
  margin-top: var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.hero__note {
  margin-top: var(--space-lg);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__note::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--color-text-muted);
  border-radius: 50%;
}

.hero__image-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__image-col .hero__eyebrow {
  margin-bottom: var(--space-lg);
}

.hero__image-wrap {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.hero__image {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}

.hero__image:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.4);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.hero__image:hover img {
  transform: scale(1.05);
}

/* Corner accents */
.hero__image::before,
.hero__image::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: rgba(45, 212, 191, 0.4);
  border-style: solid;
  border-width: 0;
  transition: all 0.4s var(--ease-out-expo);
  z-index: 2;
}

.hero__image::before {
  top: -1px;
  right: -1px;
  border-top-width: 1px;
  border-right-width: 1px;
}

.hero__image::after {
  bottom: -1px;
  left: -1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.hero__image:hover::before,
.hero__image:hover::after {
  width: 48px;
  height: 48px;
  border-color: var(--color-accent);
}

.hero__image-accent {
  position: absolute;
  top: 32px;
  left: 32px;
  right: -32px;
  bottom: -32px;
  border: 1px solid var(--color-accent);
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
  transition: all 0.6s var(--ease-out-expo);
}

.hero__image-wrap:hover .hero__image-accent {
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  opacity: 0.35;
}

/* ============================================
   Trust Bullets — Centered Grid
   ============================================ */
.trust-bullets {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  background: var(--color-surface);
  position: relative;
}

.trust-bullets__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.trust-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-top: 0;
}

.trust-bullet::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1.5px solid var(--color-accent);
  border-radius: 2px;
}

@media (min-width: 640px) {
  .trust-bullets__grid {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
  }
}

/* ============================================
   Content Sections — Refined
   ============================================ */
.content-section { padding: var(--space-4xl) 0; }
.content-section .container { max-width: var(--w-narrow); }

.section-headline {
  position: relative;
  display: inline-block;
}

.content-section__body { margin-top: var(--space-xl); }
.content-section__body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text-secondary);
}
.content-section__body h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.content-section__body p:first-child {
  font-size: 1.125rem;
  color: var(--color-text);
  line-height: 1.75;
}

/* Strong text styling */
.content-section__body strong {
  color: var(--color-text);
  font-weight: 500;
}

.callout {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: rgba(45, 212, 191, 0.03);
  border: 1px solid var(--color-border);
  border-left: 2px solid var(--color-accent);
  border-radius: var(--r);
  transition: all 0.3s var(--ease-out-expo);
}

.callout:hover {
  background: rgba(45, 212, 191, 0.05);
  border-left-width: 3px;
  transform: translateX(4px);
}

.callout p { font-size: 1rem; color: var(--color-text); }

/* ============================================
   CLEAR Framework — Visual Drama
   ============================================ */
.included-section {
  padding: var(--space-5xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
  position: relative;
}

.included-header {
  margin-bottom: var(--space-3xl);
  max-width: 560px;
}

.included-header .section-intro {
  margin-top: var(--space-md);
  color: var(--color-text-secondary);
  font-size: 1.125rem;
}

.included-grid {
  display: grid;
  gap: 1px;
  background: var(--color-border);
  padding: 1px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.included-item {
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-surface);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.included-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out-expo);
}

.included-item:hover {
  background: var(--color-surface-hover);
}

.included-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.included-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.625rem;
  transition: color 0.3s;
}

.included-item:hover strong {
  color: var(--color-accent);
}

.included-item p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================================
   CLEAR Framework — Distinctive Stack Design
   ============================================ */
.clear-section {
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.clear-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.clear-header {
  margin-bottom: var(--space-4xl);
  max-width: 560px;
}

.clear-intro {
  margin-top: var(--space-md);
  color: var(--color-text-secondary);
  font-size: 1.125rem;
}

.clear-stack {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Vertical connecting line */
.clear-stack::before {
  content: '';
  position: absolute;
  left: calc(var(--space-lg) + 2rem);
  top: 4rem;
  bottom: 4rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-border) 10%,
    var(--color-border) 90%,
    transparent
  );
}

.clear-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  position: relative;
  align-items: start;
  border-radius: var(--r-lg);
  margin: 0 calc(var(--space-lg) * -1);
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  transition: background 0.4s var(--ease-out-expo);
}

.clear-item:hover {
  background: rgba(45, 212, 191, 0.03);
}

.clear-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-border-subtle);
  opacity: 0.5;
}

.clear-item:last-child::after {
  display: none;
}

.clear-item__letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: var(--color-accent);
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease-out-expo);
  text-align: center;
  opacity: 0;
  transform: scale(0.5) rotate(-10deg);
}

.clear-item.is-visible .clear-item__letter {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition: all 0.8s var(--ease-out-back);
}

/* Glow effect behind letter */
.clear-item__letter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  background: var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.5s var(--ease-out-expo);
  z-index: -1;
}

.clear-item:hover .clear-item__letter {
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(45, 212, 191, 0.4);
}

.clear-item:hover .clear-item__letter::before {
  opacity: 0.3;
}

.clear-item__content {
  padding-top: 0.25rem;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.8s var(--ease-out-expo);
  transition-delay: 0.15s;
}

.clear-item.is-visible .clear-item__content {
  opacity: 1;
  transform: translateX(0);
}

.clear-item__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  transition: color 0.3s var(--ease-out-expo);
}

.clear-item:hover .clear-item__title {
  color: var(--color-accent);
}

.clear-item__desc {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
}

/* Desktop: Horizontal layout with larger letters */
@media (min-width: 768px) {
  .clear-stack::before {
    left: calc(var(--space-lg) + 3.5rem);
  }

  .clear-item {
    grid-template-columns: 7rem 1fr;
    gap: var(--space-2xl);
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

  .clear-item__letter {
    font-size: 5rem;
  }

  .clear-item__title {
    font-size: 1.5rem;
  }

  .clear-item__desc {
    font-size: 1.0625rem;
  }
}

/* Large screens: Even more dramatic */
@media (min-width: 1024px) {
  .clear-stack::before {
    left: calc(var(--space-lg) + 4.5rem);
  }

  .clear-item {
    grid-template-columns: 9rem 1fr;
    gap: var(--space-3xl);
  }

  .clear-item__letter {
    font-size: 6rem;
  }

  .clear-item__letter::before {
    width: 4rem;
    height: 4rem;
  }
}


/* ============================================
   Fit Section — Two Column Drama
   ============================================ */
.fit-section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.fit-section .section-headline {
  margin-bottom: var(--space-3xl);
}

.fit-grid {
  display: grid;
  gap: var(--space-lg);
}

.fit-column {
  padding: var(--space-2xl);
  border-radius: var(--r-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.fit-column:hover {
  transform: translateY(-4px);
}

.fit-column h3 {
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
  font-weight: 600;
}

.fit-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.fit-column li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.fit-column li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
}

.fit-column--yes {
  border-color: var(--color-accent);
  background: rgba(45, 212, 191, 0.03);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.1) inset;
}

.fit-column--yes:hover {
  background: rgba(45, 212, 191, 0.05);
  box-shadow: 0 16px 48px -12px rgba(45, 212, 191, 0.15),
              0 0 0 1px rgba(45, 212, 191, 0.2) inset;
}

.fit-column--yes h3 { color: var(--color-text); }

.fit-column--yes li::before {
  background: var(--color-accent);
}

.fit-column--no {
  opacity: 0.85;
}

.fit-column--no:hover {
  opacity: 1;
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.3);
}

.fit-column--no h3 { color: var(--color-text-secondary); }

.fit-column--no li::before {
  width: 8px;
  height: 1px;
  top: 0.85em;
  background: var(--color-text-muted);
  border-radius: 0;
}

/* ============================================
   Testimonials — High Impact
   ============================================ */
.testimonials-section {
  padding: var(--space-5xl) 0;
  background: #000;
  border-top: 1px solid var(--color-border);
  position: relative;
}

.testimonials-section .section-label {
  color: var(--color-text-secondary);
}

.testimonials-section .section-label::before {
  background: var(--color-text-muted);
}

.testimonial-featured {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.01);
  transition: all 0.5s var(--ease-out-expo);
}

.testimonial-featured:hover {
  background: rgba(255,255,255,0.02);
  border-color: var(--color-text-muted);
}

.testimonial-featured__video {
  border-radius: var(--r);
  overflow: hidden;
  max-width: 240px;
  width: 100%;
  border: 1px solid var(--color-border);
  transition: transform 0.5s var(--ease-out-expo);
}

.testimonial-featured:hover .testimonial-featured__video {
  transform: scale(1.02);
}

.testimonial-featured__video video {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-featured blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--color-text);
}

.testimonial-featured__attribution {
  margin-top: var(--space-lg);
  font-size: 0.875rem;
  font-family: var(--font-heading);
  color: var(--color-text-muted);
  font-weight: 500;
  font-style: normal;
}

.testimonials-text-grid {
  display: grid;
  gap: var(--space-lg);
}

.testimonial-text {
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  background: var(--color-surface);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-text:hover {
  transform: translateY(-4px);
  border-color: var(--color-text-muted);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.4);
}

.testimonial-text blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-text__attribution {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   Steps — Timeline Flow
   ============================================ */
.steps-section {
  padding: var(--space-5xl) 0;
}

.steps-section .section-headline {
  margin-bottom: var(--space-3xl);
}

.steps-grid {
  display: grid;
  gap: var(--space-2xl);
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: start;
  position: relative;
  z-index: 1;
}

.step__number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  color: var(--color-accent);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-out-expo);
}

.step:hover .step__number {
  background: var(--color-accent);
  color: #0a0a0c;
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.step__content {
  padding-top: 0.25rem;
}

.step__content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  transition: color 0.3s;
}

.step:hover .step__content strong {
  color: var(--color-accent);
}

.step__content p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* Connection line between steps on mobile */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(2.5rem - 0.5px);
  top: 100%;
  width: 1px;
  height: var(--space-2xl);
  background: linear-gradient(to bottom, var(--color-border), transparent);
}

/* ============================================
   FAQ — Smooth Accordion
   ============================================ */
.faq-section {
  padding: var(--space-5xl) 0;
  border-top: 1px solid var(--color-border);
}

.faq-section .container { max-width: var(--w-narrow); }

.faq-list {
  margin-top: var(--space-2xl);
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-xl) 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text);
  gap: var(--space-lg);
  transition: color 0.3s var(--ease-out-expo);
}

.faq-question:hover { color: var(--color-accent); }

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform 0.4s var(--ease-out-expo), color 0.3s;
}

.faq-question:hover svg { color: var(--color-accent); }

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out-expo);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  overflow: hidden;
}

.faq-answer__inner p {
  padding-bottom: var(--space-xl);
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   Contact Form — Premium Feel
   ============================================ */
.final-cta {
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  text-align: center;
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta h2 {
  color: var(--color-text);
  margin-bottom: var(--space-md);
  position: relative;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.final-cta__body {
  color: var(--color-text-secondary);
  max-width: 480px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
  position: relative;
}

/* Contact Form */
.contact-form {
  max-width: 480px;
  margin: var(--space-3xl) auto 0;
  text-align: left;
  position: relative;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.01em;
}

.form-group__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  transition: all 0.3s var(--ease-out-expo);
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a1a1aa' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  width: 100%;
  margin-top: var(--space-md);
}

.form-group--turnstile .cf-turnstile {
  display: inline-block;
}

.form-status {
  margin-top: var(--space-md);
  min-height: 1.5em;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.form-status.is-error {
  color: #f87171;
}

.contact-form .btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.final-cta__note {
  margin-top: var(--space-xl);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  position: relative;
}

.final-cta .btn {
  margin-top: var(--space-xl);
}

/* ============================================
   Footer — Clean & Minimal
   ============================================ */
.site-footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border-subtle);
  background: var(--color-bg);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  justify-content: center;
}

.footer-nav a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  transition: color 0.3s var(--ease-out-expo);
}

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

.footer-copy {
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

/* ============================================
   About & Other Pages
   ============================================ */
.page-hero {
  padding: var(--space-4xl) 0 var(--space-5xl);
  position: relative;
}

.page-hero .container { max-width: var(--w-narrow); }
.page-hero h1 { margin-bottom: var(--space-xl); color: var(--color-text); }
.page-hero > .container > p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

.intake-questions {
  margin-top: var(--space-3xl);
  display: grid;
  gap: var(--space-md);
}

.intake-question {
  padding: var(--space-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  transition: all 0.3s var(--ease-out-expo);
}

.intake-question:hover {
  border-color: var(--color-accent);
  transform: translateX(4px);
}

.intake-question strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.intake-question span {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.intake-note {
  margin-top: var(--space-xl);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.calendly-placeholder {
  margin-top: var(--space-3xl);
  padding: var(--space-5xl) var(--space-xl);
  background: rgba(255,255,255,0.02);
  border: 1px dashed var(--color-text-muted);
  border-radius: var(--r-lg);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ============================================
   Beliefs Page — Editorial Layout
   ============================================ */
.beliefs-hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
}

.beliefs-hero .container {
  max-width: var(--w-narrow);
}

.beliefs-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-lg);
}

.beliefs-hero__intro {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.beliefs-section {
  padding: var(--space-2xl) 0 var(--space-5xl);
}

.belief {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-3xl) 0;
  position: relative;
}

.belief + .belief {
  border-top: 1px solid var(--color-border-subtle);
}

.belief__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.4;
  transition: all 0.5s var(--ease-out-expo);
}

.belief:hover .belief__number {
  opacity: 1;
  transform: scale(1.05);
}

.belief__content {
  max-width: 640px;
}

.belief__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.belief__headline .text-serif {
  color: var(--color-accent);
}

.belief__body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text-secondary);
}

.belief__body p + p {
  margin-top: var(--space-lg);
}

.belief__body p:first-child {
  font-size: 1.125rem;
  color: var(--color-text);
}

/* Desktop: Two-column with number on side */
@media (min-width: 768px) {
  .beliefs-section .container {
    max-width: var(--w);
  }

  .belief {
    grid-template-columns: 8rem 1fr;
    gap: var(--space-3xl);
    align-items: start;
  }

  .belief__number {
    font-size: 6rem;
    position: sticky;
    top: 120px;
  }

  .belief__content {
    max-width: 600px;
  }

  /* Alternating layout */
  .belief--alt {
    direction: rtl;
  }

  .belief--alt > * {
    direction: ltr;
  }

  .belief--alt .belief__content {
    margin-left: auto;
  }

  .belief--alt .belief__number {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .belief {
    grid-template-columns: 10rem 1fr;
    gap: var(--space-4xl);
    padding: var(--space-4xl) 0;
  }

  .belief__number {
    font-size: 8rem;
  }

  .belief__headline {
    font-size: 2.5rem;
  }
}

/* ============================================
   About Page
   ============================================ */
.about-content { margin-top: var(--space-xl); }

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text-secondary);
}

.about-cta { margin-top: var(--space-2xl); }

/* ============================================
   Media Queries
   ============================================ */
@media (min-width: 480px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-text-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
  section { padding: var(--space-5xl) 0; }

  .hero {
    padding: var(--space-5xl) 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
  }

  .hero .container {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: var(--space-4xl);
  }

  .hero__headline { font-size: 4.5rem; }
  .hero__image-wrap { max-width: 100%; }

  .fit-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .testimonial-featured {
    grid-template-columns: auto 1fr;
    padding: var(--space-3xl);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .step {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  /* Horizontal connection on desktop */
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 4rem;
    right: 4rem;
    height: 1px;
    background: linear-gradient(to right, var(--color-border), var(--color-border) 45%, transparent 50%, var(--color-border) 55%, var(--color-border));
  }

  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .site-nav {
    display: block;
    position: static;
    border-bottom: none;
    padding: 0;
    background: none;
    backdrop-filter: none;
  }

  .site-nav__list {
    flex-direction: row;
    gap: var(--space-xs);
  }

  .site-nav__link {
    padding: 0.625rem var(--space-lg);
    font-size: 0.875rem;
    border-radius: var(--r);
  }

  .site-nav__link:hover {
    background: rgba(255,255,255,0.06);
  }

  .site-nav__link--active {
    background: rgba(255,255,255,0.04);
  }

  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-featured__video { max-width: 280px; }
}

@media (min-width: 1280px) {
  .included-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .included-item:first-child {
    grid-column: span 2;
  }

  .included-item:nth-child(2) {
    grid-column: span 2;
  }
}

/* Two-column variant for investment section - must come after base media queries */
.included-grid.included-grid--two-col {
  grid-template-columns: repeat(2, 1fr);
}

.included-grid--two-col .included-item:first-child,
.included-grid--two-col .included-item:nth-child(2) {
  grid-column: span 1;
}
