/* /*
=========================================================
   FORGROWTH ACADEMY — Design system v4
   Premium digital marketing academy — editorial, technology-driven.

   PALETTE SOURCE OF TRUTH: assets/logo.png (sampled, not invented)
     Rust orange  #D9400B  — exact brand orange from the logo mark
     Deep ink     #1C1C1E  — exact dark from the logo wordmark
   v3 used a brighter pink-orange, plus a teal accent
   described as "from the logo" — there is no teal anywhere in the logo.
   Teal has been removed entirely; rust is the single controlled accent.

   Balance target: 60% warm ivory / 25% deep charcoal / 15% rust.
   ========================================================= */

:root {
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --off-white-2: #F1EDE4;
  --black: #121214;
  --ink: #1C1C1E;
  --charcoal: #1C1C1E;
  --charcoal-2: #26262A;
  --grey: #6B6B6E;
  --grey-light: #9A9A9D;
  --line: #E2DED3;
  --line-dark: #313135;

  --accent: #D9400B;
  --accent-deep: #A83008;
  --accent-bright: #F0561F;
  --accent-dim: rgba(217,64,11,0.10);
  --accent-dim-2: rgba(217,64,11,0.05);
  --success: #1FA97A;
  --error: #C4361A;

  --font-display: "Space Grotesk", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --container: 1280px;
  --radius: 3px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);

  --fab-size: 50px;
  --shadow-soft: 0 1px 2px rgba(28,28,30,.05), 0 14px 34px -20px rgba(28,28,30,.38);
  --shadow-lift: 0 18px 40px -22px rgba(168,48,8,.6);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; font-weight: 600; }
p { margin: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .container { padding: 0 22px; } }

::selection { background: var(--accent); color: var(--white); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.text-accent { color: var(--accent); }
.mono-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mono-tag::before { content: ""; width: 20px; height: 1px; background: var(--accent); }
.section-dark .mono-tag { color: var(--accent); }
.section-dark .mono-tag::before { background: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #E14A28; }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-arrow { transition: transform 0.3s var(--ease); display: inline-flex; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 11px 20px; font-size: 12.5px; }
.btn-magnetic { will-change: transform; }

/* =========================================================
   BACKGROUND VISUAL SYSTEM (abstract, low-opacity SVG)
   ========================================================= */
.bg-system {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bg-system svg { position: absolute; opacity: 0.16; }
.section-dark .bg-system svg { opacity: 0.14; }
.bg-node { animation: nodeDrift 14s ease-in-out infinite; }
@keyframes nodeDrift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(14px, -10px); } }
.bg-node-slow { animation-duration: 20s; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.4s var(--ease);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(247,246,243,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

/* FORGROWTH ACADEMY LOGO */
.logo-glyph {
  width: 160px;
  height: auto;
  max-width: 160px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo-word span {
  color: var(--accent);
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
  width: 100%;
}

.nav-links a.active-link {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-cta .btn {
  display: none;
}

@media (min-width: 980px) {
  .nav-cta .btn {
    display: inline-flex;
  }
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  width: 17px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 979px) {
  .nav-links {
    display: none;
  }
}

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 850;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s ease, visibility 0s linear 0.5s;
}

.mobile-nav.active {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.5s var(--ease), opacity 0.4s ease, visibility 0s linear 0s;
}

/* TABLET */
@media (max-width: 900px) {
  .site-header {
    padding: 14px 0;
  }

  .site-header.scrolled {
    padding: 10px 0;
  }

  .logo-glyph {
    width: 145px;
    max-width: 145px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .site-header {
    padding: 12px 0;
  }

  .site-header.scrolled {
    padding: 9px 0;
  }

  .logo-glyph {
    width: 135px;
    max-width: 135px;
  }
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  font-family: var(--font-display); font-size: clamp(24px, 7vw, 32px); font-weight: 600;
  color: var(--white); padding: 11px 0; border-bottom: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a span { font-family: var(--font-mono); font-size: 11px; color: var(--accent); }
.mobile-nav .mobile-cta { margin-top: 26px; }
.mobile-nav-contact { margin-top: auto; padding-top: 26px; color: var(--grey-light); font-family: var(--font-mono); font-size: 12px; }
.mobile-nav-contact a { color: var(--white); }

/* =========================================================
   HERO
   ========================================================= */ 
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  background: var(--off-white);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow {
  opacity: 0; transform: translateY(14px);
  animation: upIn 0.8s var(--ease-soft) 0.15s forwards;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(52px, 10vw, 128px);
  line-height: 0.94;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 34px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: block;
  opacity: 0; transform: translateY(100%);
  animation: lineUp 0.9s var(--ease-soft) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.3s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.42s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.54s; color: var(--accent); }
@keyframes lineUp { to { opacity: 1; transform: translateY(0); } }
@keyframes upIn { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--charcoal);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.55;
  opacity: 0; transform: translateY(14px);
  animation: upIn 0.9s var(--ease-soft) 0.72s forwards;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 70px;
  opacity: 0; transform: translateY(14px);
  animation: upIn 0.9s var(--ease-soft) 0.85s forwards;
}

.hero-elements {
  position: relative;
  height: 60px;
  opacity: 0;
  animation: upIn 0.9s var(--ease-soft) 1s forwards;
}
.hero-chip {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  color: var(--grey);
  opacity: 0;
  animation: chipSettle 0.7s var(--ease-soft) forwards;
}
.hero-chip:nth-child(1) { left: 0%; top: 0; animation-delay: 1.1s; }
.hero-chip:nth-child(2) { left: 13%; top: 30px; animation-delay: 1.2s; }
.hero-chip:nth-child(3) { left: 27%; top: 4px; animation-delay: 1.3s; }
.hero-chip:nth-child(4) { left: 41%; top: 34px; animation-delay: 1.4s; }
.hero-chip:nth-child(5) { left: 55%; top: 0; animation-delay: 1.5s; }
.hero-chip:nth-child(6) { left: 69%; top: 30px; animation-delay: 1.6s; }
.hero-chip:nth-child(7) { left: 83%; top: 6px; animation-delay: 1.7s; }
@media (max-width: 900px) { .hero-elements { display: none; } }
@keyframes chipSettle { from { opacity: 0; transform: translateY(16px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* =========================================================
   SECTION SCAFFOLDING
   ========================================================= */
.section { padding: 150px 0; position: relative; }
.section-dark { background: var(--black); color: var(--white); }
.section-tight { padding: 110px 0; }
.section-head { margin-bottom: 80px; }
.section-head h2 { font-size: clamp(34px, 5vw, 58px); line-height: 1.03; max-width: 780px; margin-top: 16px; }
.section-head-note { max-width: 420px; font-size: 15.5px; color: var(--grey); margin-top: 20px; }
.section-dark .section-head-note { color: var(--grey-light); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }

.stagger-parent .stagger-child { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.stagger-parent.in-view .stagger-child { opacity: 1; transform: translateY(0); }
.stagger-parent.in-view .stagger-child:nth-child(1) { transition-delay: 0.03s; }
.stagger-parent.in-view .stagger-child:nth-child(2) { transition-delay: 0.09s; }
.stagger-parent.in-view .stagger-child:nth-child(3) { transition-delay: 0.15s; }
.stagger-parent.in-view .stagger-child:nth-child(4) { transition-delay: 0.21s; }
.stagger-parent.in-view .stagger-child:nth-child(5) { transition-delay: 0.27s; }
.stagger-parent.in-view .stagger-child:nth-child(6) { transition-delay: 0.33s; }
.stagger-parent.in-view .stagger-child:nth-child(7) { transition-delay: 0.39s; }
.stagger-parent.in-view .stagger-child:nth-child(8) { transition-delay: 0.45s; }
.stagger-parent.in-view .stagger-child:nth-child(9) { transition-delay: 0.51s; }

/* =========================================================
   WHY FORGROWTH — editorial + flow
   ========================================================= */
.why-statement {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.28;
  font-weight: 500;
  max-width: 900px;
  margin-bottom: 90px;
}
.why-statement em { font-style: normal; color: var(--accent); }

.flow-chain { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.flow-node { display: flex; flex-direction: column; align-items: center; gap: 14px; flex: 1; min-width: 100px; }
.flow-node-dot {
  width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--black);
  background: var(--off-white); transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}
.flow-node.in-view .flow-node-dot { background: var(--accent); border-color: var(--accent); transform: scale(1.15); }
.flow-node-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); }
.flow-node.in-view .flow-node-label { color: var(--black); }
.flow-line { flex: 0 0 auto; width: 60px; height: 1px; background: var(--line); position: relative; top: -22px; }
.flow-line-fill { display: block; height: 100%; width: 0; background: var(--accent); transition: width 0.6s var(--ease) 0.15s; }
.flow-node.in-view + .flow-line .flow-line-fill { width: 100%; }
@media (max-width: 760px) {
  .flow-chain { flex-direction: column; align-items: flex-start; }
  .flow-line { display: none; }
}

/* =========================================================
   THE FORGROWTH SYSTEM — scroll-spy module journey
   ========================================================= */
.system-journey { display: grid; grid-template-columns: 320px 1fr; gap: 70px; }
@media (max-width: 900px) { .system-journey { grid-template-columns: 1fr; gap: 40px; } }

.system-sticky { position: sticky; top: 130px; align-self: start; height: fit-content; }
@media (max-width: 900px) { .system-sticky { position: static; margin-bottom: 20px; } }
.system-sticky-code {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 10px;
}
.system-sticky-num {
  font-family: var(--font-display); font-size: clamp(64px, 8vw, 100px); font-weight: 700;
  color: var(--white); line-height: 0.9; margin-bottom: 14px;
  transition: opacity 0.3s ease;
}
.system-sticky-title {
  font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--white);
  margin-bottom: 30px; min-height: 64px; transition: opacity 0.3s ease;
}
.system-ticks { display: flex; flex-direction: column; gap: 10px; }
.system-tick { display: flex; align-items: center; gap: 12px; }
.system-tick-bar { width: 26px; height: 2px; background: var(--line-dark); transition: background 0.35s ease, width 0.35s ease; }
.system-tick.active .system-tick-bar { background: var(--accent); width: 40px; }
.system-tick-label { font-family: var(--font-mono); font-size: 10.5px; color: var(--grey-light); transition: color 0.35s ease; }
.system-tick.active .system-tick-label { color: var(--white); }

.system-track { display: flex; flex-direction: column; gap: 130px; padding: 10px 0 60px; }
.system-step { opacity: 0.35; transition: opacity 0.5s ease; }
.system-step.active { opacity: 1; }
.system-step-num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); margin-bottom: 14px; }
.system-step-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 600; color: var(--white); margin-bottom: 16px; }
.system-step-desc { font-size: 15.5px; color: var(--grey-light); max-width: 560px; margin-bottom: 22px; line-height: 1.7; }
.system-step-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.system-step-tags span {
  font-family: var(--font-mono); font-size: 11px; padding: 6px 12px;
  border: 1px solid var(--line-dark); border-radius: 20px; color: var(--grey-light);
}

/* =========================================================
   COMMAND CENTER — demo dashboard
   ========================================================= */
.dashboard-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 40px; display: flex; align-items: center; gap: 8px;
}
.dashboard-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.dashboard-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(140px, auto); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 900px) { .dashboard-grid { grid-template-columns: repeat(2, 1fr); } }
.dash-card { background: var(--white); padding: 26px; display: flex; flex-direction: column; justify-content: space-between; }
.dash-card.span-2 { grid-column: span 2; }
@media (max-width: 900px) { .dash-card.span-2 { grid-column: span 2; } }
.dash-card-label { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey); margin-bottom: 14px; }
.dash-card-value { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.dash-chart-line { width: 100%; height: 60px; }
.dash-chart-line path { stroke-dasharray: 300; stroke-dashoffset: 300; transition: stroke-dashoffset 1.4s var(--ease-soft); }
.dash-card.in-view .dash-chart-line path { stroke-dashoffset: 0; }
.dash-ring { position: relative; width: 84px; height: 84px; margin: 0 auto; }
.dash-ring circle.bg { stroke: var(--off-white-2); }
.dash-ring circle.fg { stroke: var(--accent); stroke-dasharray: 220; stroke-dashoffset: 220; transition: stroke-dashoffset 1.3s var(--ease-soft); }
.dash-card.in-view .dash-ring circle.fg { stroke-dashoffset: var(--ring-offset, 60); }
.dash-ring-value { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 15px; font-weight: 600; }
.dash-rows { display: flex; flex-direction: column; gap: 12px; }
.dash-row { display: flex; align-items: center; gap: 12px; }
.dash-row-name { font-size: 12.5px; flex: 0 0 90px; color: var(--charcoal); }
.dash-row-bar { flex: 1; height: 4px; background: var(--off-white-2); border-radius: 2px; overflow: hidden; }
.dash-row-bar i { display: block; height: 100%; width: 0%; background: var(--accent); transition: width 1.1s var(--ease-soft); }
.dash-card.in-view .dash-row-bar i { width: var(--bar-width, 50%); }
.dash-funnel { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.dash-funnel-bar { height: 20px; background: var(--accent-dim); border: 1px solid var(--accent); border-radius: 2px; transition: width 1s var(--ease-soft); }
.dash-card.in-view .dash-funnel-bar { width: var(--fw, 60%) !important; }

/* =========================================================
   WHAT STUDENTS BUILD — vertical flow
   ========================================================= */
.build-flow { max-width: 480px; margin: 0 auto; position: relative; }
.build-flow-line-wrap { position: absolute; left: 27px; top: 30px; bottom: 30px; width: 2px; background: var(--line-dark); }
.build-flow-line-fill { width: 100%; height: 0%; background: var(--accent); transition: height 1.6s var(--ease-soft); }
.build-flow.in-view .build-flow-line-fill { height: 100%; }
.build-flow-item { display: flex; align-items: center; gap: 26px; padding: 22px 0; position: relative; z-index: 1; opacity: 0.3; transition: opacity 0.5s ease; }
.build-flow-item.active { opacity: 1; }
.build-flow-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--charcoal); border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 13px; color: var(--grey-light);
  flex-shrink: 0; transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.build-flow-item.active .build-flow-num { background: var(--accent); color: var(--white); border-color: var(--accent); }
.build-flow-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--white); }
.build-flow-item:last-child .build-flow-name { color: var(--accent); }
.build-cta-note { text-align: center; margin-top: 60px; font-size: 14.5px; color: var(--grey-light); }

/* =========================================================
   LEARNING APPROACH — editorial
   ========================================================= */
.approach-list { display: flex; flex-direction: column; }
.approach-row {
  display: grid; grid-template-columns: 100px 1fr; gap: 30px; align-items: baseline;
  padding: 30px 0; border-top: 1px solid var(--line); position: relative;
}
.approach-row:last-child { border-bottom: 1px solid var(--line); }
.approach-ghost-num {
  font-family: var(--font-display); font-size: 46px; font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px var(--accent-deep); line-height: 1;
}
.approach-name { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); font-weight: 600; transition: color 0.3s ease, transform 0.3s ease; }
.approach-row:hover .approach-name { color: var(--accent); transform: translateX(6px); }
@media (max-width: 600px) { .approach-row { grid-template-columns: 60px 1fr; } .approach-ghost-num { font-size: 30px; } }

/* =========================================================
   CAREER DIRECTIONS
   ========================================================= */
.career-wrap { display: flex; flex-wrap: wrap; gap: 14px; }
.career-pill {
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  padding: 16px 24px; border: 1px solid var(--line); border-radius: 40px;
  display: inline-flex; align-items: center; gap: 10px; color: var(--black);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.career-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.career-pill:hover { background: var(--black); color: var(--white); border-color: var(--black); transform: translateY(-2px); }

/* =========================================================
   PLACEMENT
   ========================================================= */
.placement-wrap { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 70px; align-items: start; }
@media (max-width: 900px) { .placement-wrap { grid-template-columns: 1fr; gap: 40px; } }
.placement-list { display: flex; flex-direction: column; }
.placement-row { display: flex; gap: 18px; align-items: flex-start; padding: 24px 0; border-top: 1px solid var(--line-dark); }
.placement-row:last-child { border-bottom: 1px solid var(--line-dark); }
.placement-check { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.placement-text { font-size: 16px; color: var(--white); font-weight: 500; }

/* =========================================================
   ENQUIRY — 5-step
   ========================================================= */
.enquiry-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 0; border: 1px solid var(--line); background: var(--white); }
@media (max-width: 900px) { .enquiry-wrap { grid-template-columns: 1fr; } }
.enquiry-side { background: var(--black); color: var(--white); padding: 60px 46px; }
.enquiry-side h2 { font-size: 30px; margin-bottom: 18px; }
.enquiry-side p { color: var(--grey-light); font-size: 14.5px; margin-bottom: 34px; }
.enquiry-steps-list { display: flex; flex-direction: column; gap: 20px; }
.enquiry-steps-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 13.5px; color: var(--grey-light); transition: color 0.3s ease; }
.enquiry-steps-list .num { font-family: var(--font-mono); color: var(--accent); flex-shrink: 0; }
.enquiry-steps-list li.active { color: var(--white); }

.enquiry-form-area { padding: 60px 50px; }
@media (max-width: 560px) { .enquiry-form-area, .enquiry-side { padding: 38px 26px; } }
.progress-track { display: flex; gap: 6px; margin-bottom: 40px; }
.progress-seg { height: 3px; flex: 1; background: var(--line); overflow: hidden; }
.progress-seg i { display: block; height: 100%; width: 0%; background: var(--accent); transition: width 0.45s var(--ease); }
.progress-seg.done i, .progress-seg.active i { width: 100%; }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }
.form-step-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 22px; }

.field { margin-bottom: 22px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14.5px; background: var(--off-white); color: var(--black);
  transition: border-color 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field textarea { resize: vertical; min-height: 100px; }
.field-error { font-size: 12.5px; color: var(--error); margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select { border-color: var(--error); }
.field.invalid .field-error { display: block; }

.step-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 34px; gap: 14px; }
.step-back { font-size: 13px; color: var(--grey); font-weight: 600; display: flex; align-items: center; gap: 6px; background: none; border: none; }
.step-back:hover { color: var(--black); }

.form-state { text-align: center; padding: 30px 0; }
.form-state.hidden { display: none; }
.spinner { width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid var(--line); border-top-color: var(--accent); margin: 0 auto 20px; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--success); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.form-state h3 { font-size: 21px; margin-bottom: 10px; }
.form-state p { color: var(--grey); font-size: 14.5px; }
.form-disclaimer { font-size: 12px; color: var(--grey-light); margin-top: 20px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { border-top: 1px solid var(--line); max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 28px 4px; background: none; border: none; text-align: left;
  font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--black);
}
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--black); transition: transform 0.3s var(--ease); }
.faq-q .plus::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item.open .plus::before { background: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 4px 28px; font-size: 15.5px; color: var(--grey); max-width: 640px; line-height: 1.7; }

/* =========================================================
   CONTACT / LOCATION
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-card { border: 1px solid var(--line); padding: 40px; display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--off-white-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey); margin-bottom: 3px; }
.contact-value { font-size: 16px; font-weight: 600; line-height: 1.5; }
.map-embed { border: 1px solid var(--line); overflow: hidden; min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--black); color: var(--white); padding: 100px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 0.6fr 1fr; gap: 50px; margin-bottom: 80px; }
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; } }
.footer-brand p { color: var(--grey-light); font-size: 14.5px; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-light); margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14.5px; color: var(--white); opacity: 0.85; }
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--line-dark); flex-wrap: wrap; gap: 14px; }
.footer-bottom span { font-size: 12.5px; color: var(--grey-light); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color 0.25s ease, background 0.25s ease; }
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); }

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.sticky-mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: var(--black); padding: 14px 18px; display: none; gap: 10px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
@media (max-width: 720px) { .sticky-mobile-cta { display: flex; } }
.sticky-mobile-cta a { flex: 1; }
.sticky-mobile-cta .btn { width: 100%; }
@media (max-width: 720px) { body { padding-bottom: 76px; } }

body.pre-load .reveal, body.pre-load .hero * { transition: none !important; animation: none !important; }

/* =========================================================
   v4 ADDITIONS
   ========================================================= */

/* ---------- Brand lockup (uses the real logo asset) ---------- */
.logo-lockup{display:inline-flex;align-items:center;gap:12px;line-height:0}
.site-header.scrolled .logo-lockup img {
    width: 2000px;
    max-width: 2000px;
}

.site-header.scrolled .logo-lockup .logo-rule,
.site-header.scrolled .logo-lockup .logo-sub {
    opacity: 0;
}

@media(max-width:900px) {
    .logo-lockup .logo-rule,
    .logo-lockup .logo-sub {
        display: none;
    }

    .logo-lockup img {
        width: 145px;
        max-width: 145px;
    }

    .site-header.scrolled .logo-lockup img {
        width: 145px;
        max-width: 145px;
    }
}
.site-header.scrolled .logo-lockup img {
  width: 160px;
  max-width: 160px;
}
.site-header.scrolled .logo-lockup .logo-rule,
.site-header.scrolled .logo-lockup .logo-sub{opacity:0}
@media(max-width:900px) {
  .logo-lockup .logo-rule,
  .logo-lockup .logo-sub {
    display: none;
  }

  .logo-lockup img {
    width: 145px;
    max-width: 145px;
  }

  .site-header.scrolled .logo-lockup img {
    width: 145px;
    max-width: 145px;
  }
}
.footer-logo img{height:46px;width:auto}
@media(max-width:640px){.footer-logo img{height:38px}}

/* Section brand watermark — restrained brand moment, never decorative noise */
.brand-watermark{
  position:absolute;right:-40px;bottom:-30px;width:340px;opacity:0;
  pointer-events:none;filter:grayscale(1);
  transform:translateY(24px);
  transition:opacity 1.2s var(--ease),transform 1.2s var(--ease);
}
.brand-watermark.in{opacity:.045;transform:translateY(0)}
@media(max-width:900px){.brand-watermark{display:none}}

/* ---------- Program: 8-module interactive system ---------- */
.mod-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.15fr);gap:56px;align-items:start}
.mod-rail{display:flex;flex-direction:column;border-top:1px solid var(--line-dark)}
.mod-btn{
  display:grid;grid-template-columns:44px 1fr auto;align-items:center;gap:14px;
  width:100%;text-align:left;background:none;border:0;border-bottom:1px solid var(--line-dark);
  padding:15px 4px;color:var(--grey-light);font-family:var(--font-body);
  transition:color .35s var(--ease),padding-left .35s var(--ease);position:relative;
}
.mod-btn::before{
  content:"";position:absolute;left:0;top:0;bottom:0;width:2px;background:var(--accent);
  transform:scaleY(0);transform-origin:top;transition:transform .4s var(--ease);
}
.mod-btn:hover{color:var(--white);padding-left:12px}
.mod-btn[aria-selected="true"]{color:var(--white);padding-left:12px}
.mod-btn[aria-selected="true"]::before{transform:scaleY(1)}
.mod-btn-num{font-family:var(--font-mono);font-size:13px;letter-spacing:.06em;transition:color .35s var(--ease)}
.mod-btn[aria-selected="true"] .mod-btn-num,.mod-btn:hover .mod-btn-num{color:var(--accent)}
.mod-btn-name{font-size:15.5px;font-weight:600;letter-spacing:-.01em}
.mod-btn-arrow{opacity:0;transform:translateX(-6px);transition:opacity .35s var(--ease),transform .35s var(--ease);color:var(--accent);font-size:14px}
.mod-btn[aria-selected="true"] .mod-btn-arrow{opacity:1;transform:translateX(0)}

.mod-panel{
  border:1px solid var(--line-dark);background:rgba(255,255,255,.025);
  padding:34px;min-height:400px;position:relative;overflow:hidden;
}
.mod-panel::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:2px;background:var(--line-dark);
}
.mod-progress{position:absolute;left:0;bottom:0;height:2px;background:var(--accent);z-index:1;transition:width .55s var(--ease)}
.mod-panel-body{animation:modIn .45s var(--ease) both}
@keyframes modIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
.mod-ghost{
  position:absolute;top:8px;right:22px;font-family:var(--font-display);font-weight:700;
  font-size:150px;line-height:1;color:rgba(255,255,255,.04);pointer-events:none;user-select:none;
}
.mod-kicker{font-family:var(--font-mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);margin-bottom:14px}
.mod-title{font-family:var(--font-display);font-size:clamp(24px,3vw,32px);font-weight:700;color:var(--white);letter-spacing:-.02em;line-height:1.15;margin:0 0 14px;max-width:20ch}
.mod-desc{color:var(--grey-light);font-size:15.5px;line-height:1.65;margin:0 0 26px;max-width:52ch}
.mod-sub{font-family:var(--font-mono);font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--grey);margin:0 0 12px}
.mod-tools{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 24px;padding:0;list-style:none}
.mod-tools li{
  border:1px solid var(--line-dark);padding:6px 12px;font-family:var(--font-mono);
  font-size:11.5px;color:var(--grey-light);transition:border-color .3s,color .3s,transform .3s var(--ease);
}
.mod-tools li:hover{border-color:var(--accent);color:var(--white);transform:translateY(-2px)}
.mod-outcome{display:flex;gap:11px;align-items:flex-start;color:var(--grey-light);font-size:14.5px;line-height:1.55;margin-bottom:9px}
.mod-outcome svg{flex:none;margin-top:4px;color:var(--accent)}
@media(max-width:900px){
  .mod-layout{grid-template-columns:1fr;gap:28px}
  .mod-panel{padding:26px;min-height:0}
  .mod-ghost{font-size:96px;right:14px}
}

/* Modules that run alongside — preserves confirmed curriculum content */
.mod-alongside{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:26px}
.mod-alongside article{border:1px solid var(--line-dark);padding:22px;transition:border-color .4s var(--ease)}
.mod-alongside article:hover{border-color:var(--accent)}
.mod-alongside h4{font-family:var(--font-display);font-size:16px;color:var(--white);margin:8px 0 8px;font-weight:600}
.mod-alongside p{color:var(--grey-light);font-size:13.8px;line-height:1.55;margin:0 0 12px}
@media(max-width:700px){.mod-alongside{grid-template-columns:1fr}}

/* ---------- Batches ---------- */
.batch-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.batch-card{
  border:1px solid var(--line);background:var(--white);padding:34px;position:relative;
  display:flex;flex-direction:column;overflow:hidden;
  transition:transform .5s var(--ease),border-color .5s var(--ease),box-shadow .5s var(--ease);
}
.batch-card::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;background:var(--accent);
  transform:scaleX(0);transform-origin:left;transition:transform .55s var(--ease);
}
.batch-card:hover{transform:translateY(-5px);border-color:var(--accent);box-shadow:var(--shadow-soft)}
.batch-card:hover::before{transform:scaleX(1)}
.batch-tag{font-family:var(--font-mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);margin-bottom:16px}
.batch-card h3{font-family:var(--font-display);font-size:26px;font-weight:700;letter-spacing:-.02em;margin:0 0 10px}
.batch-card>p{color:var(--grey);font-size:15px;line-height:1.6;margin:0 0 24px;max-width:34ch}
.batch-meta{list-style:none;margin:0 0 26px;padding:0;border-top:1px solid var(--line)}
.batch-meta li{display:flex;justify-content:space-between;gap:16px;padding:11px 0;border-bottom:1px solid var(--line);font-size:14px}
.batch-meta dt,.batch-meta .bm-k{color:var(--grey);font-family:var(--font-mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase}
.batch-meta .bm-v{font-weight:600;text-align:right}
.batch-card .btn{margin-top:auto;align-self:flex-start}
.batch-note{font-family:var(--font-mono);font-size:11.5px;color:var(--grey);letter-spacing:.04em;margin-top:12px}
@media(max-width:820px){.batch-grid{grid-template-columns:1fr}.batch-card{padding:26px}}

/* ---------- Toolkit ecosystem ---------- */
.toolkit{position:relative;display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line)}
.tk-cell{
  background:var(--white);padding:26px 22px;position:relative;min-height:150px;
  display:flex;flex-direction:column;transition:background .45s var(--ease);
}
.tk-cell::after{
  content:"";position:absolute;inset:0;border:1px solid transparent;
  transition:border-color .45s var(--ease);pointer-events:none;
}
.tk-cell:hover{background:var(--off-white-2)}
.tk-cell:hover::after{border-color:var(--accent)}
.tk-node{
  width:10px;height:10px;border-radius:50%;border:2px solid var(--accent);
  background:var(--white);margin-bottom:18px;position:relative;
  transition:background .4s var(--ease),transform .4s var(--ease);
}
.tk-cell:hover .tk-node{background:var(--accent);transform:scale(1.25)}
.tk-cell h3{font-family:var(--font-display);font-size:17px;font-weight:600;letter-spacing:-.01em;margin:0 0 8px}
.tk-cell p{font-size:13.6px;line-height:1.55;color:var(--grey);margin:0}
.tk-idx{position:absolute;top:20px;right:20px;font-family:var(--font-mono);font-size:11px;color:var(--grey-light);transition:color .4s}
.tk-cell:hover .tk-idx{color:var(--accent)}
@media(max-width:900px){.toolkit{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.toolkit{grid-template-columns:1fr}.tk-cell{min-height:0;padding:22px}}

/* ---------- Projects ---------- */
#projects{
  isolation:isolate;overflow:hidden;
  background:
    radial-gradient(circle at 90% 12%,rgba(240,86,31,.12),transparent 22rem),
    linear-gradient(135deg,var(--off-white-2),#ebe6dc 100%) !important;
}
#projects::before{
  content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;opacity:.42;
  background-image:linear-gradient(rgba(28,28,30,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(28,28,30,.055) 1px,transparent 1px);
  background-size:34px 34px;mask-image:linear-gradient(90deg,transparent,black 20%,black 80%,transparent);
}
#projects .section-head{position:relative;max-width:780px}
#projects .section-head::after{
  content:"07 REAL-WORLD BUILDS";display:block;margin-top:25px;color:var(--grey-light);
  font-family:var(--font-mono);font-size:10px;letter-spacing:.16em;
}
.proj-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.proj-card{
  position:relative;isolation:isolate;min-height:100%;border:1px solid rgba(28,28,30,.13);
  background:rgba(255,255,255,.91);overflow:hidden;display:flex;flex-direction:column;
  box-shadow:0 18px 45px -34px rgba(28,28,30,.5);
  transition:transform .55s var(--ease),box-shadow .55s var(--ease),border-color .55s var(--ease),background .55s var(--ease);
}
.proj-card::before{
  content:"";position:absolute;inset:0;z-index:3;pointer-events:none;opacity:0;
  background:linear-gradient(120deg,transparent 28%,rgba(255,255,255,.72) 47%,transparent 63%);
  transform:translateX(-115%);transition:transform .8s var(--ease),opacity .3s ease;
}
.proj-card::after{
  content:"";position:absolute;top:0;left:0;width:100%;height:3px;background:var(--accent);
  transform:scaleX(0);transform-origin:left;transition:transform .55s var(--ease);z-index:4;
}
.proj-card:hover{transform:translateY(-9px);background:var(--white);box-shadow:0 28px 55px -30px rgba(28,28,30,.38);border-color:rgba(240,86,31,.58)}
.proj-card:hover::before{opacity:1;transform:translateX(115%)}
.proj-card:hover::after{transform:scaleX(1)}
.proj-visual{
  height:174px;position:relative;overflow:hidden;border-bottom:1px solid rgba(28,28,30,.1);
  background:linear-gradient(135deg,#f8f5ee,#e8e0d3);
}
.proj-visual::before{
  content:"LIVE PROJECT";position:absolute;top:15px;right:16px;z-index:2;padding:5px 8px;
  border:1px solid rgba(28,28,30,.12);background:rgba(255,255,255,.72);backdrop-filter:blur(7px);
  font-family:var(--font-mono);font-size:8px;font-weight:500;letter-spacing:.12em;color:var(--accent);
}
.proj-visual::after{
  content:"";position:absolute;width:170px;height:170px;right:-74px;bottom:-104px;border-radius:50%;
  background:radial-gradient(circle,rgba(240,86,31,.28),transparent 68%);filter:blur(3px);transition:transform .7s var(--ease);
}
.proj-visual svg{position:absolute;inset:0;width:100%;height:100%;transform:scale(1.04);transition:transform .8s var(--ease),filter .8s var(--ease)}
.proj-card:hover .proj-visual svg{transform:scale(1.1) translateY(-4px);filter:contrast(1.04)}
.proj-card:hover .proj-visual::after{transform:scale(1.35) translate(-18px,-16px)}
.proj-body{position:relative;padding:23px 21px 20px;display:flex;flex-direction:column;flex:1}
.proj-kicker{font-family:var(--font-mono);font-size:10px;letter-spacing:.15em;text-transform:uppercase;color:var(--accent);margin-bottom:10px}
.proj-card h3{font-family:var(--font-display);font-size:clamp(18px,1.6vw,21px);font-weight:600;margin:0 0 10px;letter-spacing:-.02em;line-height:1.15}
.proj-card p{font-size:13.8px;line-height:1.62;color:var(--grey);margin:0 0 18px}
.proj-skills{margin:auto 0 0;padding:13px 24px 0 0;border-top:1px solid var(--line);font-family:var(--font-mono);font-size:10.5px;line-height:1.55;color:var(--grey-light);letter-spacing:.04em}

@media(prefers-reduced-motion:no-preference){
  #projects .proj-card.reveal{
    transition:
      opacity .65s var(--ease),
      transform .65s var(--ease),
      box-shadow .55s var(--ease),
      border-color .55s var(--ease),
      background .55s var(--ease);
  }
  #projects .proj-card.reveal.in-view{animation:projectCardIn .65s var(--ease) backwards;animation-delay:var(--d,0ms)}
  #projects .proj-card.in-view .proj-visual svg{animation:projectPreviewIn .85s var(--ease) both;animation-delay:calc(var(--d,0ms) + 120ms)}
  #projects .proj-card:nth-child(2n) .proj-visual svg{animation-name:projectPreviewInAlt}
  #projects .proj-card:hover .proj-visual svg{animation:none}
}
@keyframes projectCardIn{from{opacity:0;transform:translateY(30px) scale(.975)}to{opacity:1;transform:translateY(0) scale(1)}}
@keyframes projectPreviewIn{from{opacity:0;transform:scale(.92) translateX(-12px)}to{opacity:1;transform:scale(1.04) translateX(0)}}
@keyframes projectPreviewInAlt{from{opacity:0;transform:scale(.92) translateX(12px)}to{opacity:1;transform:scale(1.04) translateX(0)}}
@media(max-width:900px){.proj-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.proj-visual{height:164px}}
@media(max-width:600px){.proj-grid{grid-template-columns:1fr;gap:16px}.proj-visual{height:180px}.proj-card:hover{transform:translateY(-4px)}}

/* ---------- Testimonials placeholder (honest, not fake) ---------- */
.testi-empty{
  border:1px dashed var(--line);background:var(--white);padding:44px 32px;text-align:center;
}
.testi-empty .mono-tag{justify-content:center;display:inline-flex}
.testi-empty h3{font-family:var(--font-display);font-size:22px;font-weight:600;margin:14px 0 10px;letter-spacing:-.01em}
.testi-empty p{color:var(--grey);font-size:15px;max-width:52ch;margin:0 auto}

/* ---------- Floating action stack ---------- */
.fab-stack{
  position:fixed;right:18px;bottom:18px;z-index:80;
  display:flex;flex-direction:column-reverse;align-items:flex-end;gap:11px;
}
.fab{
  width:var(--fab-size);height:var(--fab-size);border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid rgba(28,28,30,.08);box-shadow:var(--shadow-soft);
  background:var(--white);color:var(--ink);
  opacity:0;transform:translateY(14px) scale(.9);pointer-events:none;
  transition:opacity .45s var(--ease),transform .45s var(--ease),background .3s,color .3s;
}
.fab.show{opacity:1;transform:none;pointer-events:auto}
.fab:hover{transform:translateY(-3px)}
.fab svg{width:23px;height:23px}
.fab-wa{background:#25D366;color:#fff;border-color:transparent}
.fab-call{background:var(--white);color:var(--ink)}
.fab-call:hover{background:var(--accent);color:#fff}
.fab-bot{background:var(--ink);color:var(--off-white);border-color:transparent;width:calc(var(--fab-size) + 4px);height:calc(var(--fab-size) + 4px)}
.fab-bot .fab-dot{
  position:absolute;top:9px;right:9px;width:8px;height:8px;border-radius:50%;
  background:var(--accent);border:2px solid var(--ink);
}
.fab-bot{position:relative}
@media(prefers-reduced-motion:no-preference){
  .fab-bot .fab-dot{animation:fabPulse 2.4s ease-in-out infinite}
}
@keyframes fabPulse{0%,100%{opacity:1}50%{opacity:.4}}
@media(max-width:640px){
  :root{--fab-size:46px}
  .fab-stack{right:14px;bottom:14px;gap:9px}
}

/* ---------- Chatbot ---------- */
.bot{
  position:fixed;right:18px;bottom:18px;z-index:90;
  width:min(370px,calc(100vw - 28px));height:min(546px,calc(100vh - 36px));
  background:var(--white);border:1px solid var(--line);box-shadow:var(--shadow-soft);
  display:none;flex-direction:column;overflow:visible;
}
.bot.open{display:flex;animation:botIn .38s var(--ease) both}
@keyframes botIn{from{opacity:0;transform:translateY(16px) scale(.98)}to{opacity:1;transform:none}}
.bot-head{
  display:flex;align-items:center;gap:12px;padding:14px 16px;
  background:var(--ink);color:var(--off-white);flex:none;
}
.bot-head img{height:22px;width:auto}
.bot-head .bot-meta{flex:1;min-width:0}
.bot-head .bot-title{font-family:var(--font-display);font-size:14px;font-weight:600;letter-spacing:-.01em}
.bot-head .bot-status{font-family:var(--font-mono);font-size:9.5px;letter-spacing:.12em;text-transform:uppercase;color:var(--grey-light);display:flex;align-items:center;gap:6px;margin-top:2px}
.bot-head .bot-status i{width:6px;height:6px;border-radius:50%;background:var(--accent);display:block}
.bot-close{
  position:absolute;
  left:-18px;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  font-size:25px;
  font-weight:400;
  line-height:1;
  padding:0;
  cursor:pointer;
  z-index:10;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
  transition:transform .25s ease,box-shadow .25s ease;
}

.bot-close:hover{
  background:var(--accent);
  color:#fff;
  transform:translateY(-50%) scale(1.08);
  box-shadow:0 8px 22px rgba(0,0,0,.24);
}
.bot-log{flex:1;overflow-y:auto;padding:18px 16px;display:flex;flex-direction:column;gap:12px;background:var(--off-white)}
.bot-msg{max-width:86%;padding:11px 14px;font-size:14.2px;line-height:1.55;border:1px solid var(--line);background:var(--white)}
.bot-msg.from-bot{align-self:flex-start;border-bottom-left-radius:0}
.bot-msg.from-me{align-self:flex-end;background:var(--accent);color:#fff;border-color:var(--accent);border-bottom-right-radius:0}
.bot-typing{align-self:flex-start;display:flex;gap:4px;padding:12px 14px;background:var(--white);border:1px solid var(--line)}
.bot-typing span{width:6px;height:6px;border-radius:50%;background:var(--grey-light);animation:botDot 1.1s infinite}
.bot-typing span:nth-child(2){animation-delay:.15s}
.bot-typing span:nth-child(3){animation-delay:.3s}
@keyframes botDot{0%,60%,100%{opacity:.3;transform:translateY(0)}30%{opacity:1;transform:translateY(-3px)}}
.bot-quick{display:flex;flex-wrap:wrap;gap:7px;padding:0 16px 14px;background:var(--off-white)}
.bot-quick button{
  border:1px solid var(--accent);background:var(--white);color:var(--accent);
  font-size:13px;font-weight:500;padding:8px 13px;border-radius:999px;
  transition:background .28s var(--ease),color .28s var(--ease),transform .28s var(--ease);
}
.bot-quick button:hover{background:var(--accent);color:#fff;transform:translateY(-2px)}
.bot-input{display:flex;gap:8px;padding:11px;border-top:1px solid var(--line);background:var(--white);flex:none}
.bot-input input{
  flex:1;min-width:0;border:1px solid var(--line);padding:11px 13px;font-family:inherit;font-size:15px;
  border-radius:2px;transition:border-color .25s,box-shadow .25s;
}
.bot-input input:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-dim)}
.bot-input button{
  border:0;background:var(--accent);color:#fff;padding:0 16px;font-weight:600;font-size:14px;border-radius:2px;
  transition:background .25s;flex:none;
}
.bot-input button:hover{background:var(--accent-deep)}
.bot-input button:disabled{opacity:.45;cursor:not-allowed}
.bot-foot{font-family:var(--font-mono);font-size:9.5px;color:var(--grey-light);text-align:center;padding:0 12px 10px;background:var(--white);letter-spacing:.06em}
@media(max-width:480px){
  .bot{right:0;bottom:0;width:100vw;height:100dvh;border:0}
}

/* ---------- v4: accessibility + footer utilities ---------- */
.sr-only{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:1100;
  background:var(--accent);color:#fff;padding:12px 20px;font-weight:600;
}
.skip-link:focus{left:12px;top:12px}

.footer-note{color:var(--grey-light);font-size:14px;line-height:1.6;max-width:34ch;margin:16px 0 0}
.footer-address{color:var(--grey-light);line-height:1.6}
.footer-bottom-cta{
  font-family:var(--font-mono);font-size:12px;letter-spacing:.08em;text-transform:uppercase;
  color:var(--accent);transition:opacity .3s;
}
.footer-bottom-cta:hover{opacity:.75}

/* Visible focus for every interactive element */
a:focus-visible,button:focus-visible,input:focus-visible,
select:focus-visible,textarea:focus-visible,[tabindex]:focus-visible{
  outline:2px solid var(--accent);outline-offset:3px;border-radius:2px;
}

/* =========================================================
   v5 — BRAND CURTAIN, ENQUIRE CTA, ENQUIRY POPUP
   ========================================================= */

/* ---------- Brand curtain -------------------------------------------------
   At the very top of the page the logo is shown large and centred over the
   hero. Scrolling cross-fades it out and the hero content in. The link is to
   SCROLL POSITION, not a timer, so scrolling back up brings the logo back.
   Values are driven from JS via --curtain (1 = fully shown, 0 = gone).
-------------------------------------------------------------------------- */
html:not(.js) .curtain{display:none}
html:not(.js) .hero-veiled{opacity:1;transform:none}
html:not(.js) .curtain-inner{opacity:1}

.curtain{
  position:fixed;inset:0;z-index:45;display:grid;place-items:center;
  background:var(--off-white);pointer-events:none;
  opacity:var(--curtain-plate,1);
  transition:visibility .2s linear;
}
.curtain[hidden]{display:none}
.curtain.gone{visibility:hidden;opacity:0}

/* Keep only one ForGrowth logo on screen at a time: the compact header
   lockup stays hidden while the big curtain logo is still showing, and
   fades in once the curtain has cleared — otherwise the two very
   different-sized logos are visible together on load. */
html.js .curtain:not(.gone) ~ .site-header{
  opacity:0;pointer-events:none;
}
html.js .curtain.gone ~ .site-header{
  opacity:1;transition-delay:.15s;
}

.curtain-inner{
  display:flex;flex-direction:column;align-items:center;gap:22px;
  padding:0 24px;text-align:center;
  /* --curtain-logo is driven separately from --curtain so the logo can finish
     leaving before the hero starts arriving. */
  opacity:var(--curtain-logo,1);
  transform:scale(calc(.9 + (var(--curtain-logo,1) * .1)))
            translateY(calc((1 - var(--curtain-logo,1)) * -34px));
}
.curtain-logo{
  width:min(540px,72vw);height:auto;display:block;
  /* Reveal on load: wipe the wordmark in from the left, like a drawn line */
  clip-path:inset(0 100% 0 0);
  opacity:0;
}
.curtain.ready .curtain-logo{
  animation:curtainWipe 1.15s cubic-bezier(.16,1,.3,1) .12s forwards;
}
@keyframes curtainWipe{
  0%{clip-path:inset(0 100% 0 0);opacity:0}
  12%{opacity:1}
  100%{clip-path:inset(0 0 0 0);opacity:1}
}

.curtain-rule{
  width:0;height:2px;background:var(--accent);
}
.curtain.ready .curtain-rule{
  animation:curtainRule .85s cubic-bezier(.16,1,.3,1) .85s forwards;
}
@keyframes curtainRule{to{width:min(300px,44vw)}}

.curtain-tag{
  font-family:var(--font-mono);font-size:11.5px;letter-spacing:.28em;
  text-transform:uppercase;color:var(--grey);opacity:0;
}
.curtain.ready .curtain-tag{
  animation:curtainFade .7s ease 1.05s forwards;
}
.curtain-hint{
  position:absolute;bottom:44px;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:9px;opacity:0;
  font-family:var(--font-mono);font-size:10px;letter-spacing:.2em;
  text-transform:uppercase;color:var(--grey-light);
}
.curtain.ready .curtain-hint{animation:curtainFade .7s ease 1.5s forwards}
.curtain-hint i{
  display:block;width:1px;height:34px;
  background:linear-gradient(to bottom,var(--accent),transparent);
}
@media(prefers-reduced-motion:no-preference){
  .curtain.ready .curtain-hint i{animation:hintPulse 2s ease-in-out 2s infinite}
}
@keyframes hintPulse{0%,100%{opacity:.3}50%{opacity:1}}
@keyframes curtainFade{to{opacity:1}}

/* Hero content sits under the curtain and fades up as it clears */
.hero-veiled{
  opacity:var(--hero-in,0);
  transform:translateY(calc((1 - var(--hero-in,0)) * 26px));
}

@media(prefers-reduced-motion:reduce){
  .curtain-logo{clip-path:none;opacity:1;animation:none!important}
  .curtain-rule{width:min(300px,44vw);animation:none!important}
  .curtain-tag,.curtain-hint{opacity:1;animation:none!important}
  .curtain-inner{transform:none}
  .hero-veiled{opacity:1;transform:none}
  .curtain-inner{opacity:1;transform:none}
}
@media(max-width:600px){
  .curtain-inner{gap:16px}
  .curtain-hint{bottom:30px}
}

/* ---------- Enquire Now floating CTA ---------- */
.fab-enquire{
  display:inline-flex;align-items:center;gap:9px;
  width:auto;height:var(--fab-size);padding:0 20px;border-radius:999px;
  background:var(--accent);color:#fff;border-color:transparent;
  font-family:var(--font-body);font-size:14px;font-weight:600;letter-spacing:-.01em;
  white-space:nowrap;
}
.fab-enquire:hover{background:var(--accent-deep);color:#fff}
.fab-enquire svg{width:17px;height:17px}
.fab-enquire .fab-enquire-label{display:inline}
@media(max-width:640px){
  /* Collapse to a circle on small screens so the stack never crowds content */
  .fab-enquire{width:var(--fab-size);padding:0;justify-content:center}
  .fab-enquire .fab-enquire-label{display:none}
}

/* ---------- Enquiry popup ---------- */
.pop-backdrop{
  position:fixed;inset:0;z-index:1000;background:rgba(18,18,20,.62);
  backdrop-filter:blur(3px);
  display:flex;align-items:center;justify-content:center;padding:20px;
  opacity:0;visibility:hidden;transition:opacity .35s var(--ease),visibility .35s;
}
.pop-backdrop.open{opacity:1;visibility:visible}

.pop{
  position:relative;width:min(760px,100%);max-height:calc(100dvh - 40px);
  overflow:auto;background:var(--white);border:1px solid var(--line);
  display:grid;grid-template-columns:0.82fr 1.18fr;
  transform:translateY(18px) scale(.985);
  transition:transform .4s var(--ease);
  box-shadow:0 30px 80px -30px rgba(18,18,20,.6);
}
.pop-backdrop.open .pop{transform:none}

.pop-aside{
  background:var(--ink);color:var(--off-white);padding:32px 26px;
  display:flex;flex-direction:column;justify-content:center;position:relative;overflow:hidden;
}
.pop-aside img{height:34px;width:auto;margin-bottom:20px}
.pop-aside h2{
  font-family:var(--font-display);font-size:24px;font-weight:700;
  letter-spacing:-.02em;line-height:1.18;color:var(--white);margin:0 0 12px;
}
.pop-aside p{color:var(--grey-light);font-size:14.5px;line-height:1.6;margin:0}
.pop-aside ul{list-style:none;margin:20px 0 0;padding:0}
.pop-aside li{
  display:flex;gap:10px;align-items:flex-start;font-size:13.5px;
  color:var(--grey-light);margin-bottom:9px;line-height:1.5;
}
.pop-aside li svg{flex:none;margin-top:3px;color:var(--accent)}
.pop-aside-bg{position:absolute;right:-40px;bottom:-30px;width:200px;opacity:.06;pointer-events:none}

.pop-body{padding:32px 30px}
.pop-body h3{
  font-family:var(--font-display);font-size:19px;font-weight:600;
  letter-spacing:-.01em;margin:0 0 6px;
}
.pop-body>p{color:var(--grey);font-size:14px;margin:0 0 20px;line-height:1.55}
.pop-field{margin-bottom:14px}
.pop-field label{
  display:block;font-family:var(--font-mono);font-size:10.5px;letter-spacing:.11em;
  text-transform:uppercase;color:var(--grey);margin-bottom:7px;
}
.pop-field input,.pop-field select{
  width:100%;font:inherit;font-size:15.5px;padding:12px 14px;color:var(--black);
  background:var(--off-white);border:1px solid var(--line);border-radius:2px;
  transition:border-color .25s,box-shadow .25s;
}
.pop-field input:focus,.pop-field select:focus{
  outline:none;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-dim);
}
.pop-field.invalid input{border-color:var(--error)}
.pop-err{color:var(--error);font-size:12.5px;margin:6px 0 0;display:none}
.pop-field.invalid .pop-err{display:block}
.pop-two{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.pop-note{font-size:12px;color:var(--grey-light);margin:14px 0 0;line-height:1.5}
.pop-alt{
  margin:16px 0 0;padding-top:16px;border-top:1px solid var(--line);
  font-size:13px;color:var(--grey);display:flex;flex-wrap:wrap;gap:6px 14px;align-items:center;
}
.pop-alt a{color:var(--accent);font-weight:600;transition:opacity .25s}
.pop-alt a:hover{opacity:.75}

.pop-close{
  position:absolute;top:10px;right:10px;z-index:2;
  width:36px;height:36px;border-radius:50%;border:1px solid var(--line);
  background:var(--white);color:var(--grey);font-size:19px;line-height:1;
  display:inline-flex;align-items:center;justify-content:center;
  transition:background .25s,color .25s,border-color .25s,transform .25s var(--ease);
}
.pop-close:hover{background:var(--accent);border-color:var(--accent);color:#fff;transform:rotate(90deg)}

.pop-success{padding:44px 30px;text-align:center;grid-column:1/-1}
.pop-success h3{font-family:var(--font-display);font-size:22px;font-weight:700;margin:0 0 10px}
.pop-success p{color:var(--grey);font-size:15px;margin:0 auto;max-width:40ch;line-height:1.6}
.pop-success-mark{
  width:52px;height:52px;border-radius:50%;background:var(--accent-dim);
  display:inline-flex;align-items:center;justify-content:center;color:var(--accent);margin-bottom:18px;
}

@media(max-width:720px){
  .pop{grid-template-columns:1fr}
  .pop-aside{padding:26px 22px}
  .pop-aside ul{display:none}
  .pop-aside img{height:28px;margin-bottom:14px}
  .pop-aside h2{font-size:20px}
  .pop-body{padding:24px 22px}
  .pop-two{grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){
  .pop,.pop-backdrop{transition:none}
  .pop-close:hover{transform:none}
}

/* =========================================================
   v6 — MODULE TIMELINE, HERO PILLS, CURTAIN HANDOFF
   ========================================================= */

/* ---------- Module timeline (connected nodes, one open at a time) ---------- */
.timeline{list-style:none;margin:0;padding:0;position:relative;max-width:920px}
.timeline::before{
  content:"";position:absolute;left:23px;top:24px;bottom:24px;width:2px;
  background:linear-gradient(to bottom,var(--accent) 0%,rgba(217,64,11,.35) 60%,rgba(217,64,11,.12) 100%);
  transform:scaleY(0);transform-origin:top;transition:transform 1.4s var(--ease);
}
.timeline.drawn::before{transform:scaleY(1)}
@media(max-width:640px){.timeline::before{left:18px}}

.tl-item{position:relative;padding-left:0}
.tl-head{
  display:grid;grid-template-columns:48px 1fr 20px;align-items:center;gap:16px;
  width:100%;text-align:left;background:none;border:0;padding:11px 0;
  font-family:var(--font-body);color:var(--grey-light);cursor:pointer;
  transition:color .35s var(--ease);
}
.tl-head:hover{color:var(--white)}
.tl-item.is-open .tl-head{color:var(--white)}

.tl-node{
  position:relative;z-index:1;width:46px;height:46px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;flex:none;
  background:var(--charcoal);border:2px solid rgba(217,64,11,.4);
  transition:background .4s var(--ease),border-color .4s var(--ease),transform .4s var(--ease);
}
.tl-node-num{
  font-family:var(--font-mono);font-size:13px;font-weight:500;color:var(--accent);
  transition:color .4s var(--ease);
}
.tl-head:hover .tl-node{border-color:var(--accent);transform:scale(1.06)}
.tl-item.is-open .tl-node{background:var(--accent);border-color:var(--accent);transform:scale(1.06)}
.tl-item.is-open .tl-node-num{color:#fff}
@media(max-width:640px){
  .tl-head{grid-template-columns:38px 1fr 18px;gap:12px}
  .tl-node{width:36px;height:36px}
  .tl-node-num{font-size:11px}
}

.tl-title{
  font-family:var(--font-display);font-size:clamp(16px,2vw,20px);font-weight:600;
  letter-spacing:-.015em;line-height:1.25;
}
.tl-chev{
  position:relative;width:12px;height:12px;flex:none;color:var(--accent);opacity:.6;
  transition:opacity .3s,transform .4s var(--ease);
}
.tl-chev::before,.tl-chev::after{content:"";position:absolute;background:currentColor}
.tl-chev::before{left:0;top:50%;width:100%;height:1.5px;transform:translateY(-50%)}
.tl-chev::after{top:0;left:50%;height:100%;width:1.5px;transform:translateX(-50%);transition:transform .4s var(--ease),opacity .3s}
.tl-item.is-open .tl-chev{opacity:1}
.tl-item.is-open .tl-chev::after{transform:translateX(-50%) rotate(90deg);opacity:0}

/* Collapse via grid-template-rows so height animates without a fixed value */
.tl-body{display:grid;grid-template-rows:0fr;transition:grid-template-rows .5s var(--ease)}
.tl-item.is-open .tl-body{grid-template-rows:1fr}
.tl-body>.tl-body-inner{overflow:hidden;min-height:0}
.tl-body-inner{
  margin-left:64px;padding:0 0 4px;
  opacity:0;transform:translateY(-6px);
  transition:opacity .45s var(--ease) .06s,transform .45s var(--ease) .06s;
}
.tl-item.is-open .tl-body-inner{opacity:1;transform:none;padding-bottom:26px}
@media(max-width:640px){.tl-body-inner{margin-left:50px}}

.tl-body-inner p{
  margin:0 0 7px;color:var(--grey-light);font-size:15px;line-height:1.6;max-width:60ch;
  position:relative;padding-left:16px;
}
.tl-body-inner p::before{
  content:"";position:absolute;left:0;top:.68em;width:6px;height:1.5px;background:var(--accent);opacity:.75;
}
.tl-tools{display:flex;flex-wrap:wrap;gap:7px;margin:16px 0 0;padding:0;list-style:none}
.tl-tools li{
  border:1px solid var(--line-dark);padding:5px 11px;font-family:var(--font-mono);
  font-size:11px;color:var(--grey-light);letter-spacing:.03em;
  transition:border-color .3s,color .3s,transform .3s var(--ease);
}
.tl-tools li:hover{border-color:var(--accent);color:var(--white);transform:translateY(-2px)}

/* ---------- "Plus" strip ---------- */
.plus-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:44px}
.plus-strip article{
  border:1px solid var(--line-dark);padding:22px;position:relative;overflow:hidden;
  transition:border-color .4s var(--ease),transform .4s var(--ease);
}
.plus-strip article:hover{border-color:var(--accent);transform:translateY(-3px)}
.plus-k{
  font-family:var(--font-mono);font-size:10px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--accent);display:block;margin-bottom:12px;
}
.plus-strip h4{font-family:var(--font-display);font-size:16.5px;font-weight:600;color:var(--white);margin:0 0 8px;letter-spacing:-.01em}
.plus-strip p{color:var(--grey-light);font-size:13.8px;line-height:1.55;margin:0}
@media(max-width:820px){.plus-strip{grid-template-columns:1fr}}

/* ---------- Hero keyword pills: connected system + drift ----------
   The chips are absolutely positioned by the base rule above. These additions
   layer on a drawn connector line, a continuous drift and a hover state,
   turning a static row of labels into a small connected system.
------------------------------------------------------------------- */
.hero-elements{height:78px}
.hero-elements::before{
  content:"";position:absolute;left:4%;right:4%;top:26px;height:1px;
  background:linear-gradient(90deg,transparent,rgba(217,64,11,.35) 18%,rgba(217,64,11,.35) 82%,transparent);
  transform:scaleX(0);transform-origin:left;
  animation:chipLine 1.4s cubic-bezier(.16,1,.3,1) 1s forwards;
}
@keyframes chipLine{to{transform:scaleX(1)}}

.hero-chip{
  z-index:1;
  transition:transform .4s var(--ease),border-color .4s var(--ease),
             color .4s var(--ease),box-shadow .4s var(--ease);
}
/* A small rust dot ties each chip to the connector line */
.hero-chip::before{
  content:"";position:absolute;left:50%;top:-9px;width:5px;height:5px;border-radius:50%;
  background:var(--accent);transform:translateX(-50%) scale(0);
  animation:chipDot .4s var(--ease) forwards;
}
.hero-chip:nth-child(1)::before{animation-delay:1.5s}
.hero-chip:nth-child(2)::before{animation-delay:1.6s}
.hero-chip:nth-child(3)::before{animation-delay:1.7s}
.hero-chip:nth-child(4)::before{animation-delay:1.8s}
.hero-chip:nth-child(5)::before{animation-delay:1.9s}
.hero-chip:nth-child(6)::before{animation-delay:2.0s}
.hero-chip:nth-child(7)::before{animation-delay:2.1s}
@keyframes chipDot{to{transform:translateX(-50%) scale(1)}}

.hero-chip:hover{
  transform:translateY(-5px) scale(1.05);
  border-color:var(--accent);color:var(--accent);
  background:var(--white);
  box-shadow:0 12px 24px -12px rgba(217,64,11,.55);
  z-index:2;
}

/* Continuous drift, applied after the settle animation finishes */
@media(prefers-reduced-motion:no-preference){
  .hero-elements.settled .hero-chip{animation:chipDrift 7s ease-in-out infinite}
  .hero-elements.settled .hero-chip:nth-child(even){animation-duration:8.6s}
  .hero-elements.settled .hero-chip:nth-child(3n){animation-duration:6.1s}
  .hero-elements.settled .hero-chip:hover{animation-play-state:paused}
}
@keyframes chipDrift{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}
@media(max-width:900px){.hero-elements::before{display:none}}

/* Compact variant: the build-flow timeline sits inside a dark section and
   needs slightly tighter rhythm than the module list. */
.timeline-compact .tl-title{font-size:clamp(15px,1.8vw,18px)}
.timeline-compact .tl-head{padding:9px 0}
.timeline-compact .tl-body-inner p{font-size:14.5px}

/* =========================================================
   FORGROWTH ACADEMY — LOGO SIZE OVERRIDE
   ========================================================= */

/* HEADER / NAVBAR LOGO */
.logo-lockup img {
  width: 180px !important;
  max-width: 180px !important;
  height: auto !important;
  display: block !important;
  flex-shrink: 0 !important;
}

/* Keep logo the same size when scrolling */
.site-header.scrolled .logo-lockup img {
  width: 180px !important;
  max-width: 180px !important;
}

/* TABLET */
@media (max-width: 900px) {
  .logo-lockup img {
    width: 155px !important;
    max-width: 155px !important;
  }

  .site-header.scrolled .logo-lockup img {
    width: 155px !important;
    max-width: 155px !important;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .logo-lockup img {
    width: 140px !important;
    max-width: 140px !important;
  }

  .site-header.scrolled .logo-lockup img {
    width: 140px !important;
    max-width: 140px !important;
  }
}


/* =========================================================
   FOOTER LOGO
   ========================================================= */

.footer-logo img {
  width: 260px !important;
  max-width: 260px !important;
  height: auto !important;
  display: block !important;
  flex-shrink: 0 !important;
}

@media (max-width: 640px) {
  .footer-logo img {
    width: 210px !important;
    max-width: 210px !important;
  }
}


/* =========================================================
   CENTER / OPENING LOGO
   ========================================================= */

.curtain-logo {
  width: min(650px, 78vw) !important;
  max-width: 650px !important;
  height: auto !important;
  display: block !important;
}

@media (max-width: 900px) {
  .curtain-logo {
    width: min(500px, 80vw) !important;
    max-width: 500px !important;
  }
}

@media (max-width: 640px) {
  .curtain-logo {
    width: min(340px, 85vw) !important;
    max-width: 340px !important; */
  }
}
