/* ================================================================
   TOGGLE-IT — COMING SOON
   Complete Design System + Component Styles
   ================================================================ */

/* ---- DESIGN TOKENS -------------------------------------------- */
:root {
  /* Brand palette (extracted from official logo) */
  --mint:        #5DE8C8;
  --mint-dim:    #3DC9A8;
  --teal:        #2A8C8C;
  --teal-dark:   #1E6666;
  --sky:         #6BAAED;
  --blue:        #4B7BCC;
  --blue-dark:   #3A5FA0;

  /* Backgrounds */
  --bg-void:     #060C18;   /* deepest dark */
  --bg-dark:     #0A1220;
  --bg-navy:     #0D1829;
  --bg-navy-2:   #111D35;
  --bg-light:    #F2F7FA;
  --bg-white:    #FFFFFF;

  /* Text */
  --txt-white:   #FFFFFF;
  --txt-faint:   #EBF2FA;
  --txt-muted:   #7A8EA8;
  --txt-subtle:  #445568;
  --txt-dark:    #080E19;

  /* Gradients */
  --grad-brand:  linear-gradient(135deg, #5DE8C8 0%, #6BAAED 50%, #4B7BCC 100%);
  --grad-horiz:  linear-gradient(90deg,  #5DE8C8 0%, #6BAAED 50%, #4B7BCC 100%);
  --grad-mint:   linear-gradient(135deg, #5DE8C8, #2A8C8C);
  --grad-blue:   linear-gradient(135deg, #6BAAED, #4B7BCC);
  --grad-text:   linear-gradient(135deg, #5DE8C8, #6BAAED, #4B7BCC);

  /* Typography */
  --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,.14);
  --shadow-md:   0 8px 32px rgba(0,0,0,.22);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.34);
  --glow-mint:   0 0 40px rgba(93,232,200,.28);
  --glow-blue:   0 0 40px rgba(107,170,237,.28);
  --glow-brand:  0 8px 32px rgba(93,232,200,.18), 0 4px 16px rgba(75,123,204,.18);

  /* Easing */
  --ease-smooth: cubic-bezier(.25,.46,.45,.94);
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-inout:  cubic-bezier(.4,0,.2,1);

  /* Timing */
  --t-fast:   200ms;
  --t-base:   360ms;
  --t-slow:   600ms;
  --t-slower: 900ms;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis overrides this */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--txt-faint);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-loading { overflow: hidden; }

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

/* Ensure [hidden] always wins over any component-level display rules */
[hidden] { display: none !important; }

/* ---- LAYOUT HELPERS ------------------------------------------ */
.section-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 6vw, 4rem);
}

/* ---- GRADIENT TEXT ------------------------------------------- */
.gradient-text,
.hero-line--gradient,
.pillar-section__word[data-col="mint"],
.pillar-section__word[data-col="blue"],
.promise-word--accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   LOADER
   ================================================================ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-void);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Loader toggle switch */
.loader-track {
  width: 88px;
  height: 48px;
  border-radius: var(--r-full);
  background: #1A2640;
  border: 2px solid rgba(93,232,200,.12);
  position: relative;
  overflow: hidden;
}

.loader-thumb {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--txt-white);
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}

.loader-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  opacity: 0; /* GSAP reveals this */
}

.loader-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.625rem;
  color: var(--txt-white);
}

.loader-tag {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--txt-muted);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding-block: 1.125rem;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  transition:
    background  var(--t-slow) var(--ease-smooth),
    box-shadow  var(--t-slow) var(--ease-smooth);
}

#nav.is-scrolled {
  background: rgba(6,12,24,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 34px;
  width: auto;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--r-full);
  padding: .875rem 2rem;
  font-size: .9375rem;
  cursor: pointer;
  transition:
    transform  var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    background var(--t-base) var(--ease-smooth),
    opacity    var(--t-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

/* Ripple overlay on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::after  { opacity: 1; }
.btn:active        { transform: translateY(1px) scale(.98); }

/* Primary */
.btn--primary {
  background: var(--grad-horiz);
  color: var(--bg-void);
  box-shadow: var(--glow-brand);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(93,232,200,.35),
    0 6px 20px rgba(75,123,204,.25);
}

/* Small variant */
.btn--sm {
  padding: .625rem 1.375rem;
  font-size: .875rem;
}

/* Ghost */
.btn--ghost {
  color: var(--txt-muted);
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
}

.btn--ghost:hover {
  color: var(--txt-white);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}

/* Full width */
.btn--full {
  width: 100%;
  padding-block: 1rem;
  font-size: 1rem;
}

/* Loading spinner inside button */
.btn-spinner {
  display: none;
  animation: spinBtn .8s linear infinite;
}
@keyframes spinBtn { to { transform: rotate(360deg); } }

.btn--loading .btn-text    { display: none; }
.btn--loading .btn-spinner { display: flex; }
.btn--loading { opacity: .75; pointer-events: none; }

/* Text link */
.btn-link {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t-fast);
}
.btn-link:hover { color: var(--sky); }

/* ================================================================
   EYEBROW / SECTION LABELS
   ================================================================ */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.1rem;
}

/* ================================================================
   HERO
   ================================================================ */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 11rem) clamp(1.5rem, 6vw, 4rem) clamp(5rem, 8vw, 7rem);
  background: var(--bg-void);
}

/* Animated gradient orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
  animation: orbDrift 9s ease-in-out infinite;
}

.orb--1 {
  width: clamp(280px, 48vw, 640px);
  height: clamp(280px, 48vw, 640px);
  background: radial-gradient(circle, rgba(93,232,200,.5) 0%, transparent 65%);
  top: -18%;
  left: -12%;
  animation-delay: 0s;
}

.orb--2 {
  width: clamp(240px, 38vw, 520px);
  height: clamp(240px, 38vw, 520px);
  background: radial-gradient(circle, rgba(75,123,204,.55) 0%, transparent 65%);
  top: 15%;
  right: -10%;
  animation-delay: -3.5s;
}

.orb--3 {
  width: clamp(180px, 28vw, 420px);
  height: clamp(180px, 28vw, 420px);
  background: radial-gradient(circle, rgba(107,170,237,.45) 0%, transparent 65%);
  bottom: 5%;
  left: 28%;
  animation-delay: -6s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(28px, -18px) scale(1.04); }
  66%       { transform: translate(-18px, 14px) scale(.96); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}

/* Status badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(93,232,200,.28);
  background: rgba(93,232,200,.06);
  margin-bottom: 2rem;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: dotPulse 2.2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(93,232,200,.5); opacity: 1; }
  50%       { box-shadow: 0 0 0 6px rgba(93,232,200,0); opacity: .8; }
}

.badge__text {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  color: var(--mint);
}

/* Headlines */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 7.5rem);
  line-height: 1.04;
  color: var(--txt-white);
  margin-bottom: 1.5rem;
}

.hero-line { display: block; }

.hero-sub {
  font-size: clamp(1.0625rem, 2.2vw, 1.3125rem);
  color: var(--txt-muted);
  max-width: 520px;
  margin: 0 auto 2.75rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Decorative toggle (bg element) */
.hero-toggle-deco {
  position: absolute;
  bottom: 10%;
  right: clamp(2rem, 8vw, 7rem);
  z-index: 0;
  opacity: .1;
  pointer-events: none;
  transform: rotate(-10deg);
}

.hero-deco-track {
  width: 130px;
  height: 70px;
  border-radius: var(--r-full);
  background: var(--grad-horiz);
  position: relative;
}

.hero-deco-thumb {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--txt-white);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.scroll-hint__label {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--txt-subtle);
  text-transform: uppercase;
}

.scroll-hint__line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--txt-subtle), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollDrop {
  0%  { transform: scaleY(0); opacity: 0; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  100%{ transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ================================================================
   TOGGLE MOMENT — Pinned scroll section
   ================================================================ */
#toggle-moment {
  position: relative;
  background: var(--bg-void);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem clamp(1.5rem, 6vw, 4rem);
  /* Ensure the browser allows ScrollTrigger to own the scroll direction
     during the pinned animation on touch devices                    */
  touch-action: pan-y;
}

.tm-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-void);
  transition: background .15s;
}

/* Toggle stage (side words + big toggle) */
.tm-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  width: 100%;
  max-width: 1100px;
  flex-wrap: wrap;
}

/* Word columns */
.tm-words {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  min-width: 120px;
}

.tm-words--off { text-align: right; align-items: flex-end; }
.tm-words--on  { text-align: left;  align-items: flex-start; }

.tm-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(.9rem, 2.2vw, 1.375rem);
  will-change: opacity, transform;
}

.tm-words--off .tm-word { color: var(--txt-subtle); }
.tm-words--on  .tm-word { color: var(--mint); opacity: 0; transform: translateX(16px); }

/* The big toggle */
.tm-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.tm-state-label {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .2em;
  font-weight: 400;
  min-width: 2.5rem;
}

.tm-state--off { color: var(--txt-subtle); text-align: right; }
.tm-state--on  { color: var(--mint); opacity: 0; }

.tm-toggle__track {
  width: clamp(130px, 18vw, 210px);
  height: clamp(68px, 9vw, 108px);
  border-radius: var(--r-full);
  background: #1A2640;
  border: 2px solid rgba(255,255,255,.06);
  position: relative;
  box-shadow: inset 0 2px 14px rgba(0,0,0,.35);
}

.tm-toggle__thumb {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: clamp(52px, 7.5vw, 84px);
  height: clamp(52px, 7.5vw, 84px);
  border-radius: 50%;
  background: var(--txt-white);
  box-shadow: 0 4px 20px rgba(0,0,0,.42);
  will-change: left;
}

/* Caption below toggle */
.tm-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

.tm-caption__label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .22em;
  color: var(--txt-subtle);
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.tm-caption__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4.5vw, 3.75rem);
  position: relative;
  height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-caption__word {
  position: absolute;
  white-space: nowrap;
}

.tm-caption__word--off { color: var(--txt-subtle); }
.tm-caption__word--on  {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
}

/* ================================================================
   ABOUT
   ================================================================ */
#about {
  background: var(--bg-light);
  padding-block: clamp(5rem, 10vw, 10rem);
  color: var(--txt-dark);
}

#about .section-eyebrow { color: var(--teal); }

.section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.875rem);
  line-height: 1.1;
  color: var(--bg-void);
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.section-headline em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-body {
  font-size: clamp(.9375rem, 1.5vw, 1.0625rem);
  color: var(--txt-subtle);
  max-width: 580px;
  margin-bottom: 3.75rem;
  line-height: 1.8;
}

/* Pillar cards */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.375rem;
}

.pillar-card {
  background: var(--bg-white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-lg);
  padding: 1.875rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition:
    transform   var(--t-base) var(--ease-out),
    box-shadow  var(--t-base) var(--ease-out);
}

.pillar-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
}

.pillar-card[data-pillar="build"] .pillar-card__icon { background: rgba(93,232,200,.1); color: var(--teal); }
.pillar-card[data-pillar="fix"]   .pillar-card__icon { background: rgba(75,123,204,.1); color: var(--blue); }
.pillar-card[data-pillar="grow"]  .pillar-card__icon { background: rgba(107,170,237,.1); color: var(--sky); }

.pillar-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--bg-void);
  margin-bottom: .5rem;
}

.pillar-card__desc {
  font-size: .9rem;
  color: var(--txt-subtle);
  line-height: 1.7;
}

/* ================================================================
   PILLAR SECTIONS — BUILD / FIX / GROW
   ================================================================ */
.pillar-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  padding-block: clamp(5rem, 10vw, 10rem);
  padding-inline: clamp(1.5rem, 6vw, 4rem);
}

/* Vertical accent line */
.pillar-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
}

#build::before { background: var(--grad-mint); }
#fix::before   { background: var(--grad-blue); }
#grow::before  { display: none; }

.pillar-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pillar-section--right .pillar-section__inner { align-items: flex-end; text-align: right; }
.pillar-section__inner--center { align-items: center; text-align: center; }

.pillar-section__num {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .25em;
  color: var(--txt-subtle);
  margin-bottom: .75rem;
}

.pillar-section__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: .92;
  margin-bottom: 1.375rem;
  will-change: transform;
}

.pillar-section__word[data-col="white"] { color: var(--txt-white); -webkit-text-fill-color: var(--txt-white); }

.pillar-section__desc {
  font-size: clamp(1.0625rem, 1.8vw, 1.4375rem);
  color: var(--txt-muted);
  margin-bottom: 1.875rem;
  max-width: 480px;
}

.pillar-section__desc--light { color: rgba(255,255,255,.82); }

/* Tags */
.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  max-width: 560px;
}

.pillar-section--right .pillar-tags { justify-content: flex-end; }
.pillar-section__inner--center .pillar-tags { justify-content: center; }

.pillar-tags li {
  padding: .375rem .9375rem;
  border-radius: var(--r-full);
  font-size: .84rem;
  transition: background var(--t-fast);
}

#build .pillar-tags li {
  border: 1px solid rgba(93,232,200,.22);
  color: var(--mint);
  background: rgba(93,232,200,.05);
}

#fix .pillar-tags li {
  border: 1px solid rgba(107,170,237,.22);
  color: var(--sky);
  background: rgba(107,170,237,.05);
}

/* GROW gradient background */
.pillar-section--gradient { background: var(--grad-brand); }

.pillar-tags--light li {
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.12);
}

/* ================================================================
   BRAND PROMISE
   ================================================================ */
#promise {
  background: var(--bg-void);
  padding-block: clamp(6rem, 12vw, 14rem);
  padding-inline: clamp(1.5rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}

/* Ambient glow behind quote */
#promise::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  background: radial-gradient(circle, rgba(93,232,200,.045) 0%, transparent 68%);
  pointer-events: none;
}

.promise-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.promise-rule {
  width: 36px;
  height: 2px;
  background: var(--grad-horiz);
  margin: 0 auto 2.75rem;
}

.promise-quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.875rem, 4.8vw, 4.25rem);
  line-height: 1.18;
  color: var(--txt-white);
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  gap: .28em;
  justify-content: center;
}

.promise-word { display: inline-block; }

.promise-attr {
  margin-top: 2.25rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--txt-subtle);
}

/* ================================================================
   NOTIFY SECTION
   ================================================================ */
#notify {
  background: var(--bg-navy);
  padding-block: clamp(5rem, 10vw, 10rem);
  position: relative;
}

.notify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.notify-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.04;
  color: var(--txt-white);
  margin-bottom: .875rem;
}

.notify-sub {
  font-size: clamp(.9375rem, 1.4vw, 1.1rem);
  color: var(--txt-muted);
  line-height: 1.75;
  max-width: 360px;
}

/* Form */
.notify-form-wrap {
  display: grid;
}

/* All direct children (form + state panels) share the same grid cell */
.notify-form-wrap > * {
  grid-area: 1 / 1;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.field { display: flex; flex-direction: column; gap: .45rem; }

.field__label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--txt-faint);
}

.field__optional { color: var(--txt-subtle); font-weight: 400; font-size: .82rem; }
.field__required { color: var(--mint); margin-left: .125rem; }

.field__input {
  width: 100%;
  padding: .875rem 1.125rem;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  color: var(--txt-white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition:
    border-color  var(--t-base) var(--ease-smooth),
    background    var(--t-base) var(--ease-smooth),
    box-shadow    var(--t-base) var(--ease-smooth);
  -webkit-appearance: none;
  appearance: none;
}

.field__input::placeholder { color: var(--txt-subtle); }

.field__input:focus {
  border-color: rgba(93,232,200,.5);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(93,232,200,.12);
}

.field__input.is-error {
  border-color: rgba(255,100,100,.55);
  box-shadow: 0 0 0 3px rgba(255,100,100,.1);
}

.field__error {
  font-size: .8rem;
  color: #FF8A8A;
  min-height: 1.2em;
}

/* State panels (already submitted / success) */
.notify-state {
  text-align: center;
  padding: 2.75rem 2rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Primary Brand Mark in Notify State (turned ON) */
.notify-state__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.notify-state__logo-svg {
  filter: drop-shadow(0 4px 18px rgba(93,232,200,.4));
  margin-bottom: .875rem;
}

.notify-state__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: .35rem;
}

.notify-brand-toggle { color: #5DE8C8; }
.notify-brand-sep    { color: #5DE8C8; }
.notify-brand-it     { color: #6BAAED; }

.notify-state__brand-tag {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--txt-subtle);
  text-transform: lowercase;
}

.notify-state__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--txt-white);
  margin-bottom: .5rem;
}

.notify-state__sub {
  font-size: .9375rem;
  color: var(--txt-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* Social strip */
.social-strip {
  text-align: center;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255,255,255,.06);
}

.social-strip__label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--txt-subtle);
  margin-bottom: .875rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .75rem 1.5rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--txt-faint);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  transition:
    transform    var(--t-base) var(--ease-out),
    box-shadow   var(--t-base) var(--ease-out),
    border-color var(--t-fast),
    background   var(--t-fast);
}

.instagram-link__icon { display: flex; align-items: center; }
.instagram-link__ext  { font-size: .72rem; opacity: .55; }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--bg-void);
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 6vw, 4rem);
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo { height: 30px; width: auto; margin-bottom: .375rem; }

.footer-tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  color: var(--txt-subtle);
}

.footer-promise {
  font-family: var(--font-display);
  font-size: clamp(.875rem, 1.4vw, 1rem);
  font-weight: 500;
  color: var(--txt-subtle);
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .875rem;
  color: var(--txt-muted);
  transition: color var(--t-fast);
}
.footer-ig:hover { color: var(--mint); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 1.125rem clamp(1.5rem, 6vw, 4rem);
  text-align: center;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--txt-subtle);
}

/* ================================================================
   REVEAL ANIMATIONS — initial hidden state
   ================================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(38px);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .notify-grid { grid-template-columns: 1fr; }
  .notify-sub  { max-width: 100%; }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin-inline: auto;
  }

  .hero-toggle-deco { display: none; }

  /* Toggle moment — stack vertically */
  .tm-stage {
    flex-direction: column;
    gap: 1.75rem;
  }

  .tm-words {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tm-words--off,
  .tm-words--on {
    text-align: center;
    align-items: center;
  }

  /* Pillar right-align reverts on mobile */
  .pillar-section--right .pillar-section__inner { align-items: flex-start; text-align: left; }
  .pillar-section--right .pillar-tags           { justify-content: flex-start; }

  /* Footer stack */
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand { align-items: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.375rem, 13vw, 3.5rem); }

  .tm-toggle__track {
    width: 120px;
    height: 62px;
  }
  .tm-toggle__thumb {
    width: 48px;
    height: 48px;
    left: 6px;
  }

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

/* ================================================================
   HOVER-CAPABLE DEVICES ONLY
   (disables hover effects on touch to avoid sticky states)
   ================================================================ */
@media (hover: hover) {
  .pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(0,0,0,.12);
  }

  .instagram-link:hover {
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
  }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .orb             { animation: none; }
  .badge__dot      { animation: none; }
  .scroll-hint__line { animation: none; }

  /* Reveal elements are immediately visible */
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
  #loader, #nav, .scroll-hint, .hero-bg { display: none; }
  body { background: white; color: black; }
}

/* ================================================================
   NAV — SVG Brand Mark  (no white-bg PNG)
   ================================================================ */
.nav-brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
}

.nav-brand-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(93,232,200,.35));
}

.nav-brand-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -.01em;
}

.nav-brand-toggle { color: #2A8C8C; }
.nav-brand-sep    { color: #2A8C8C; }
.nav-brand-it     { color: #4B7BCC; }

/* ================================================================
   FOOTER — Primary Logo Brand Mark (Clean Transparent Image)
   ================================================================ */
.footer-primary-link {
  display: block;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease-out), filter var(--t-fast);
}

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

.footer-primary-logo {
  display: block;
  width: clamp(130px, 14vw, 165px);
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(93,232,200,.25));
}

/* ================================================================
   PILLAR SECTIONS — Two-column redesign (BUILD / FIX)
   ================================================================ */

/* Oversized watermark number */
.ps-watermark {
  position: absolute;
  top: 50%;
  right: -.05em;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 1;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -.04em;
}

.ps-watermark--right {
  right: auto;
  left: -.05em;
}

.ps-watermark--light {
  color: rgba(255,255,255,.06);
}

/* Two-column grid */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 6vw, 4rem);
  position: relative;
  z-index: 1;
}

/* Reversed grid for FIX (visual on left, content on right) */
.ps-grid--reverse {
  direction: rtl; /* flips column order */
}

.ps-grid--reverse > * {
  direction: ltr; /* restore text direction for children */
}

/* Content column */
.ps-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ps-content--right {
  /* already aligned left by default, fine for both orientations */
}

/* Visual column */
.ps-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  aspect-ratio: 380 / 320;
}

.ps-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- Stat bars (decorative progress bars) ---- */
.ps-stat-row {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 340px;
}

.ps-stat {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.ps-stat__line {
  display: block;
  height: 3px;
  width: var(--w, 80%);
  border-radius: var(--r-full);
  background: linear-gradient(90deg, #5DE8C8, #6BAAED);
  position: relative;
  overflow: hidden;
}

/* Shimmer on stat lines */
.ps-stat__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.4) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: statShimmer 2.5s ease-in-out infinite;
}

@keyframes statShimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(200%); }
  100% { transform: translateX(200%); }
}

.ps-stat__line--blue {
  background: linear-gradient(90deg, #6BAAED, #4B7BCC);
}

.ps-stat__label {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--txt-subtle);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---- Grow bars (rising bar chart) ---- */
.grow-bars {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  height: 80px;
  margin-block: 2rem;
}

.grow-bar {
  flex: 1;
  height: var(--h, 60%);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  background: rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
  transition: height var(--t-slow) var(--ease-out);
}

/* Shine on last bar */
.grow-bar:last-child {
  background: rgba(255,255,255,.35);
}

.grow-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, transparent 0%, rgba(255,255,255,.15) 100%);
}

/* ================================================================
   RESPONSIVE — new elements
   ================================================================ */
@media (max-width: 900px) {
  .ps-grid,
  .ps-grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .ps-visual {
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .ps-watermark {
    font-size: clamp(6rem, 30vw, 14rem);
    opacity: .5; /* slightly more visible at smaller sizes */
  }
}

@media (max-width: 768px) {
  .ps-stat-row { max-width: 100%; }
  .grow-bars   { height: 60px; }

  /* Stack nav brand on very small screens */
  .nav-brand-wordmark { font-size: 1rem; }
}

@media (hover: hover) {
  /* Hover glow on pillar tags */
  #build .pillar-tags li:hover {
    background: rgba(93,232,200,.12);
    border-color: rgba(93,232,200,.4);
  }

  #fix .pillar-tags li:hover {
    background: rgba(107,170,237,.12);
    border-color: rgba(107,170,237,.4);
  }

  .pillar-tags--light li:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.4);
  }
}

