/* =====================================================
   THE AI COURSE — sales page
   Page-specific styles. Loads AFTER styles.css and
   reuses its tokens, fonts and components.
   Brand: Sophisticated Digital Nostalgia.
   Blueprint Blue #4040FF used as accent + on deliberate
   full-blue feature bands only. Corners squared (Notion
   pass) except the glass pill nav.
   ===================================================== */

:root {
  --tac-wide: 1000px;
  --annbar-h: 38px;
  /* main brand blue for this page (overrides the inherited accent) */
  --color-accent: #173EF5;
  --color-accent-light: rgba(23, 62, 245, 0.1);
  --tac-blue-2: #1230c4;
  /* ---- type scale (standardised) ---- */
  --fs-display: clamp(2.2rem, 5.6vw, 3.5rem);  /* H1 hero headline */
  --fs-h2:      clamp(1.75rem, 4.2vw, 2.5rem); /* section heading */
  --fs-h3:      1.3rem;                          /* card / sub-heading */
  --fs-lead:    1.125rem;                        /* subtext (intro under a heading) */
  --fs-body:    1rem;                            /* body / sub-subtext */
  --fs-small:   0.85rem;                         /* caption / secondary */
  --fs-label:   0.72rem;                         /* inline mono label */
  --fs-kicker:  11px;                            /* Silkscreen kicker / tag */
  --tac-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* page can be wider than the 680 reading column in places */
.tac-wide { max-width: var(--tac-wide); margin-left: auto; margin-right: auto; padding-left: var(--space-5); padding-right: var(--space-5); }

/* squared corners everywhere on this page (brand Notion pass) */
.tac-page * { border-radius: 0; }
.tac-buybar__cta, .tac-nav__cta { border-radius: 999px; }

/* no horizontal overflow on any viewport */
html, body { overflow-x: clip; max-width: 100%; }

/* ---------- reveal animation ---------- */
.tac-reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--tac-ease), transform 600ms var(--tac-ease); }
.tac-reveal.is-in { opacity: 1; transform: none; }
.tac-reveal--d1 { transition-delay: 80ms; }
.tac-reveal--d2 { transition-delay: 160ms; }
.tac-reveal--d3 { transition-delay: 240ms; }
.tac-reveal--d4 { transition-delay: 320ms; }

/* =====================================================
   SECTION SCAFFOLDING
   ===================================================== */
.tac-section { padding: var(--space-12) 0; position: relative; }
.tac-section--tight { padding: var(--space-10) 0; }
.tac-section--grey { background: var(--color-gray-100); }
.tac-section--ink { background: #0e0e12; color: #fff; }

.tac-kicker {
  font-family: 'Silkscreen', 'Space Mono', monospace;
  font-size: var(--fs-kicker);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-block;
  margin-bottom: var(--space-4);
}
.tac-section--ink .tac-kicker { color: #9b9bff; }

.tac-h2 {
  font-family: 'PP Neue Bit', 'Space Mono', monospace;
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--color-text);
  margin: 0 0 var(--space-5);
}
.tac-section--ink .tac-h2, .tac-blue .tac-h2 { color: #fff; }
.tac-h3 {
  font-family: 'PP Neue Bit', 'Space Mono', monospace;
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.05;
  margin: 0 0 var(--space-3);
}
.tac-lead { font-size: var(--fs-lead); line-height: 1.65; color: var(--color-text-secondary); max-width: 56ch; }
.tac-lead--center { margin-left: auto; margin-right: auto; text-align: center; }
.tac-center { text-align: center; }
.tac-center .tac-lead { margin-left: auto; margin-right: auto; }

/* ASCII signature rule between sections */
.tac-asciirule {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--color-accent);
  opacity: 0.35;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  padding: var(--space-6) 0;
}

/* blue-diamond "what you get" list (brand marker) */
.tac-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-4); }
.tac-list li { position: relative; padding-left: 28px; line-height: 1.55; font-size: var(--fs-body); }
.tac-list li::before {
  content: "";
  position: absolute; left: 2px; top: 0.45em;
  width: 9px; height: 9px;
  background: var(--color-accent);
  transform: rotate(45deg);
}
.tac-list--tight li { font-size: 0.95rem; }
.tac-list strong { color: var(--color-text); }
.tac-blue .tac-list strong, .tac-section--ink .tac-list strong { color: #fff; }
.tac-blue .tac-list li::before, .tac-section--ink .tac-list li::before { background: #fff; }

/* pixel-arrow marker (scoped) — replaces the diamond on the "what it is" outcomes */
.tac-list--arrow li { padding-left: 30px; }
.tac-list--arrow li::before {
  content: "";
  left: 0; top: 0.3em;
  width: 17px; height: 15px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9' shape-rendering='crispEdges'><g fill='%23173EF5'><rect x='0' y='3' width='5' height='3'/><rect x='5' y='1' width='1' height='7'/><rect x='6' y='2' width='1' height='5'/><rect x='7' y='3' width='1' height='3'/><rect x='8' y='4' width='1' height='1'/></g></svg>") center / contain no-repeat;
  transform: none;            /* cancel the diamond's rotate(45deg) */
}
/* "what it is" — the three arrow points sit in early-2000s retro computer panels */
#what .tac-list--arrow, #reframe .tac-list--arrow { gap: var(--space-4); }
#what .tac-list--arrow li, #reframe .tac-list--arrow li {
  background: #fff;
  border-top: 2px solid #ffffff; border-left: 2px solid #ffffff;
  border-right: 2px solid #5e5e5e; border-bottom: 2px solid #5e5e5e;
  box-shadow: inset -1px -1px 0 #adadad, inset 2px 2px 0 #ffffff, 3px 3px 0 rgba(18,18,18,0.16);
  padding: 16px 18px 16px 46px; font-size: 1rem; color: var(--color-text);
}
#what .tac-list--arrow li::before, #reframe .tac-list--arrow li::before { left: 16px; top: 19px; }
#what .tac-list--arrow li strong, #reframe .tac-list--arrow li strong { color: var(--color-text); }

/* "what it is" — interactive pixel water-ripple background */
#what { overflow: hidden; }
.tac-ripple {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;       /* pointer handled on the section; canvas only paints */
  /* faint dots fill the whole section (no centre clearing behind the copy) */
}
#what > .container { position: relative; z-index: 1; }

/* =====================================================
   CTA buttons (extends .btn .btn--primary)
   ===================================================== */
.tac-cta {
  font-family: var(--font-mono);
  text-transform: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 16px 30px;
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
  box-shadow: inset -2px -2px 0 0 rgba(18,18,18,0.18);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
  line-height: 1;
}
.tac-cta:hover { background: var(--tac-blue-2); color: #fff; transform: translateY(-1px); }
.tac-cta:active { box-shadow: inset 2px 2px 0 0 rgba(18,18,18,0.22); transform: translateY(0); }
.tac-cta--lg { font-size: 1.05rem; padding: 19px 38px; }
.tac-cta--ghost { background: #fff; color: var(--color-accent); border-color: var(--color-accent); box-shadow: inset -2px -2px 0 0 var(--color-gray-300); }
.tac-cta--ghost:hover { background: var(--color-accent-light); color: var(--color-accent); }
.tac-cta__price { opacity: 0.85; font-weight: 400; }
.tac-cta__price s { opacity: 0.6; text-decoration-thickness: 1px; margin-right: 1px; }
.tac-buybar__info s { color: rgba(255,255,255,0.45); text-decoration-thickness: 1px; }
.tac-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: var(--space-6); width: 100%; }
.tac-cta-sub { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.3px; color: var(--color-text-muted); text-transform: uppercase; max-width: 100%; white-space: normal; text-align: center; }
/* extra breathing room under the final-CTA button */
.tac-final .tac-cta-wrap { gap: var(--space-5); }

/* =====================================================
   GLASS PILL NAV
   ===================================================== */
/* solid full-width block; background colour is set inline by JS to match the
   section it overlays (Notion-style), with light/dark contrast classes below */
/* ===== sticky announcement bar ===== */
.tac-annbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  display: flex; align-items: center; justify-content: center; gap: var(--space-4);
  min-height: 36px; padding: 6px var(--space-4);
  background: #0e0e12; color: #fff;
  font-family: 'Space Mono', monospace; font-size: 0.74rem; line-height: 1.3;
  text-align: center; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.tac-annbar__msg { margin: 0; }
.tac-annbar__count { color: #6bff9a; font-weight: 700; margin-left: 8px; white-space: nowrap; }
.tac-annbar__seats { color: rgba(255,255,255,0.6); white-space: nowrap; }
.tac-annbar__seats::before { content: "\2022"; margin-right: var(--space-4); color: rgba(255,255,255,0.28); }
@media (max-width: 600px) {
  .tac-annbar { font-size: 0.62rem; gap: var(--space-2); padding: 5px 10px; }
  .tac-annbar__seats { display: none; }
}

.tac-nav {
  position: fixed; top: var(--annbar-h); left: 0; right: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; gap: var(--space-4);
  padding: 13px max(20px, calc((100% - 1120px) / 2));
  background: #fff; color: var(--color-text);
  border-bottom: 1px solid rgba(18,18,18,0.08);
  transition: background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
.tac-nav--scrolled { box-shadow: 0 6px 22px rgba(0,0,0,0.10); }
.tac-nav__brand { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.tac-nav__brand img { height: 22px; width: auto; display: block; transition: filter 280ms ease; }
.tac-nav__links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: var(--space-5); }
.tac-nav__link {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.3px;
  text-transform: uppercase; color: var(--color-text-secondary); text-decoration: none;
  white-space: nowrap; transition: color var(--transition-fast);
}
.tac-nav__link:hover { color: var(--color-accent); }
.tac-nav__cta {
  margin-left: auto; flex-shrink: 0;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.2px;
  padding: 11px 18px; background: var(--color-accent); color: #fff; text-decoration: none;
  border: 1px solid var(--color-accent);
  box-shadow: inset -2px -2px 0 0 rgba(18,18,18,0.18);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}
.tac-nav__cta:hover { background: var(--tac-blue-2); color: #fff; }

/* over a dark/coloured section: JS sets the bg inline, these flip the contrast */
.tac-nav--dark { border-bottom-color: rgba(255,255,255,0.14); }
.tac-nav--dark .tac-nav__link { color: rgba(255,255,255,0.78); }
.tac-nav--dark .tac-nav__link:hover { color: #fff; }
.tac-nav--dark .tac-nav__brand img { filter: brightness(0) invert(1); }
.tac-nav--dark .tac-nav__cta { background: #fff; color: #0e0e12; border-color: #fff; box-shadow: inset -2px -2px 0 0 rgba(0,0,0,0.18); }
.tac-nav--dark .tac-nav__cta:hover { background: #e9e9ff; color: #0e0e12; }

@media (max-width: 760px) {
  .tac-nav__links { display: none; }
  .tac-nav { gap: var(--space-2); padding: 11px 16px; }
  .tac-nav__cta { margin-left: auto; }
}

/* =====================================================
   HERO (blue band, white PP Neue Bit headline, faint ASCII)
   ===================================================== */
.tac-hero {
  position: relative; overflow: hidden;
  background: var(--color-accent); color: #fff;
  padding: 150px 0 200px;
  text-align: left;
}
/* sand dunes anchored to the bottom, fading SOFTLY up into the blue — solid
   blue still sits behind the body text, but the dunes melt in (no hard edge) */
.tac-hero__ascii {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.tac-hero__ascii img {
  position: absolute; left: 50%; bottom: -100px; transform: translateX(-50%);
  width: 130%; min-width: 880px; max-width: none; height: auto;
  opacity: 0.7;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to top, #000 58%, transparent);
          mask-image: linear-gradient(to top, #000 58%, transparent);
}
.tac-hero .container { position: relative; z-index: 1; max-width: 1280px; }
.tac-hero__badge {
  display: inline-flex; align-items: center; justify-content: flex-start; gap: 8px; flex-wrap: wrap;
  font-family: 'Silkscreen', monospace; font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.92);
  max-width: 92%; margin-bottom: var(--space-5);
}
.tac-hero__badge .tac-live { width: 8px; height: 8px; border-radius: 50%; background: #6bff9a; box-shadow: 0 0 0 0 rgba(107,255,154,0.7); animation: tac-pulse 2s infinite; }
@keyframes tac-pulse { 0% { box-shadow: 0 0 0 0 rgba(107,255,154,0.6);} 70%{ box-shadow: 0 0 0 8px rgba(107,255,154,0);} 100%{ box-shadow: 0 0 0 0 rgba(107,255,154,0);} }
.tac-hero__headline {
  font-family: 'PP Neue Bit', 'Space Mono', monospace;
  font-weight: 700;
  font-size: var(--fs-display);
  line-height: 1.0; letter-spacing: 0;
  margin: 0 0 var(--space-5); max-width: 100%;
  color: #fff;
}
.tac-hero__sub { font-size: var(--fs-lead); line-height: 1.55; color: #fff; max-width: 54ch; margin: 0 0 var(--space-6); opacity: 0.96; }
.tac-hero__trust { margin: var(--space-6) 0 0; max-width: 56ch; font-size: var(--fs-small); line-height: 1.55; color: rgba(255,255,255,0.72); }
.tac-hero__trust b { color: #fff; font-weight: 700; }
.tac-hero__wordmark { height: 30px; width: auto; margin: 0 auto var(--space-6); display: block; }
.tac-hero__meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-2) var(--space-5);
  margin-top: var(--space-6);
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.2px; color: rgba(255,255,255,0.92);
}
.tac-hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.tac-hero__meta b { color: #fff; font-weight: 700; }
.tac-hero .tac-cta { background: #fff; color: var(--color-accent); border-color: #fff; box-shadow: inset -2px -2px 0 0 rgba(18,18,18,0.1); }
.tac-hero .tac-cta:hover { background: #eef0ff; color: var(--color-accent); }
.tac-hero .tac-cta-wrap { align-items: flex-start; }
.tac-hero .tac-cta-sub { color: rgba(255,255,255,0.78); text-align: left; }
.tac-hero__hl-lead { display: block; font-size: clamp(2.1rem, 6.2vw, 4.6rem); line-height: 1.02; }
.tac-hero__hl-rest { display: block; margin-top: var(--space-4); font-size: clamp(1.25rem, 2.5vw, 1.7rem); line-height: 1.25; max-width: 30ch; color: rgba(255,255,255,0.92); }
.tac-hero__row { display: flex; align-items: center; gap: 0; flex-wrap: wrap; margin: 0; }
.tac-hero__col { flex: 1 1 480px; min-width: 0; max-width: 640px; position: relative; z-index: 2; }
.tac-hero__row .tac-hero__headline { margin: 0 0 var(--space-5); }
/* CTA stacked under the headline, left-aligned (no longer pushed to the right) */
.tac-hero__col .tac-cta-wrap { width: auto; max-width: 460px; margin: 0 0 var(--space-6); margin-left: 0; }
/* spinning ASCII brain on the right */
.tac-hero__brain { flex: 0 0 auto; width: min(748px, 58vw); margin-left: -64px; align-self: center; position: relative; z-index: 1; }
.tac-hero__brain .brainfx { width: 100%; height: auto; aspect-ratio: 1 / 1; margin: 0; cursor: auto; }
/* --- spinning ASCII brain: white glyphs, transparent, low-def lens on hover --- */
@property --r { syntax: '<length>'; initial-value: 0px; inherits: true; }
.brainfx {
  --reveal-radius: 78px; --ring: rgba(255,255,255,.5);
  --x: -300px; --y: -300px; --r: 0px;
  position: relative; transition: --r .28s ease;
}
.brainfx .spin { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; }
/* low-def reveal: a true circle clipped by geometry (NOT a video mask, which can
   render as a hard square on some GPUs). the brand-blue fill hides the high-def
   beneath it inside the circle, so only the low-def shows there. */
.brainfx .reveal {
  position: absolute; inset: 0;
  background: var(--color-accent);
  -webkit-clip-path: circle(var(--r) at var(--x) var(--y));
          clip-path: circle(var(--r) at var(--x) var(--y));
}
.brainfx .lens {
  position: absolute; left: var(--x); top: var(--y);
  width: calc(var(--r) * 2); height: calc(var(--r) * 2);
  transform: translate(-50%, -50%);
  border: 1px solid var(--ring);
  border-radius: 50% !important;   /* beat the page's global border-radius:0 reset */
  pointer-events: none; opacity: 0; transition: opacity .28s ease;
}
.brainfx:hover .lens { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .brainfx .spin { animation: none; }
}
@media (max-width: 860px) {
  .tac-hero__row { flex-wrap: nowrap; gap: var(--space-3); align-items: center; }
  .tac-hero__col { max-width: none; flex: 1 1 auto; min-width: 0; }
  .tac-hero__brain { width: 40vw; max-width: 280px; margin: 0; flex: 0 0 auto; }
}

/* =====================================================
   TRUST STRIP
   ===================================================== */
.tac-trust { border-bottom: 1px solid var(--color-border); background: #fff; }
.tac-trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-5) var(--space-8); padding: var(--space-6) var(--space-5); }
.tac-trust__item { font-family: var(--font-mono); font-size: 0.8rem; color: var(--color-text-secondary); display: inline-flex; align-items: center; gap: 8px; }
.tac-trust__item b { color: var(--color-text); font-weight: 700; }
.tac-trust__faces { display: inline-flex; }
.tac-trust__faces img { width: 30px; height: 30px; border-radius: 50% !important; object-fit: cover; border: 2px solid #fff; margin-left: -8px; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.tac-trust__faces img:first-child { margin-left: 0; }

/* =====================================================
   THE GAP — problem agitation
   ===================================================== */
.tac-pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-8); }
.tac-pain { background: #fff; border: 1px solid var(--color-border); padding: var(--space-6); }
.tac-section--grey .tac-pain { background: #fff; }
.tac-pain__n { font-family: 'Silkscreen', monospace; font-size: 11px; color: var(--color-accent); display: block; margin-bottom: var(--space-3); }
.tac-pain h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin: 0 0 var(--space-2); }
.tac-pain p { font-size: var(--fs-body); color: var(--color-text-secondary); line-height: 1.55; margin: 0; }
.tac-gap__punch { font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700; font-size: clamp(1.4rem, 3.5vw, 2rem); line-height: 1.15; text-align: center; max-width: 22ch; margin: var(--space-10) auto 0; }
.tac-gap__punch .hl { color: var(--color-accent); }

/* =====================================================
   MECHANISM — the engine + the three dials (SIGNATURE)
   ===================================================== */
.tac-mech { background: #0e0e12; color: #fff; }
.tac-mech .tac-h2 { color: #fff; }
.tac-mech__quote { font-family: 'PP Neue Bit','Space Mono',monospace; font-weight: 700; font-size: clamp(1.5rem, 4vw, 2.3rem); text-align: center; color: #fff; max-width: 24ch; margin: 0 auto var(--space-8); line-height: 1.1; }
.tac-mech__quote .hl { color: #9b9bff; }

/* engine */
.tac-engine { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); max-width: 760px; margin: 0 auto var(--space-8); }
.tac-engine__card { border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.03); padding: var(--space-6); }
.tac-engine__tag { font-family: 'Silkscreen', monospace; font-size: 10px; letter-spacing: 1px; color: #9b9bff; text-transform: uppercase; }
.tac-engine__card h4 { font-family: var(--font-body); font-weight: 700; font-size: var(--fs-h3); margin: var(--space-3) 0 var(--space-2); color: #fff; }
.tac-engine__card p { font-size: var(--fs-body); color: rgba(255,255,255,0.85); line-height: 1.55; margin: 0; }
.tac-engine__note { text-align: center; font-family: var(--font-mono); font-size: 0.82rem; color: rgba(255,255,255,0.72); margin: var(--space-8) auto var(--space-10); max-width: 52ch; }

/* the loop animation */
.tac-loop { display: flex; align-items: center; justify-content: center; gap: var(--space-3); flex-wrap: wrap; margin: var(--space-6) auto var(--space-2); }
.tac-loop__node {
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.3px;
  padding: 12px 20px; border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.03);
  transition: all 300ms var(--tac-ease);
}
.tac-loop__node.is-active { border-color: #9b9bff; color: #fff; background: rgba(23,62,245,0.25); box-shadow: 0 0 22px rgba(100,100,255,0.4); }
.tac-loop__arrow { color: rgba(255,255,255,0.4); font-family: var(--font-mono); }
.tac-loop__rep { text-align: center; font-family: 'Silkscreen', monospace; font-size: 9px; letter-spacing: 1px; color: rgba(255,255,255,0.62); text-transform: uppercase; margin-top: var(--space-4); }

/* the three dials — separate 8-bit gears, each labelled in the hub */
.tac-dials { max-width: 1000px; margin: var(--space-10) auto 0; }
.tac-dialcols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.tac-gear { text-align: center; }
.tac-gear__face { position: relative; width: clamp(150px, 19vw, 200px); aspect-ratio: 1; margin: 0 auto var(--space-4); }
.tac-cog {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background: center / contain no-repeat;
  background-image: url("assets/images/gear8.svg");
  animation: tac-spin 16s linear infinite; animation-play-state: paused;
  transform-origin: 50% 50%;
}
.tac-cog--2 { animation-name: tac-spin-rev; }
.tac-dials:hover .tac-cog { animation-play-state: running; }
@keyframes tac-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes tac-spin-rev { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
/* hub label sits static in the gear centre (blue reads on the white cog + dark hole) */
.tac-gear__hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 2px; line-height: 1;
}
.tac-gear__num { font-family: 'Silkscreen', monospace; font-size: 9px; letter-spacing: 1px; color: #fff; text-shadow: 1px 1px 0 #0e0e12, -1px -1px 0 #0e0e12, 1px -1px 0 #0e0e12, -1px 1px 0 #0e0e12, 0 0 4px #0e0e12; }
.tac-gear__hub strong { font-family: 'PP Neue Bit','Space Mono',monospace; font-weight: 700; font-size: clamp(1rem, 1.5vw, 1.25rem); color: #fff; text-shadow: 1px 1px 0 #0e0e12, -1px -1px 0 #0e0e12, 1px -1px 0 #0e0e12, -1px 1px 0 #0e0e12, 0 0 5px #0e0e12; }
.tac-gear__what { display: block; font-family: var(--font-mono); font-size: var(--fs-label); text-transform: uppercase; letter-spacing: 0.4px; color: #9b9bff; margin-bottom: var(--space-3); }
.tac-gear__desc { font-size: var(--fs-body); color: rgba(255,255,255,0.84); line-height: 1.55; max-width: 30ch; margin: 0 auto; }
@media (prefers-reduced-motion: reduce) { .tac-cog { animation: none; } }
.tac-mech__hire { max-width: 60ch; margin: var(--space-10) auto 0; text-align: center; font-size: var(--fs-body); line-height: 1.65; color: rgba(255,255,255,0.82); }
.tac-mech__hire b { color: #fff; }

/* =====================================================
   BEFORE / AFTER
   ===================================================== */
/* the shift — pinned scroll swap: BEFORE slides out right, AFTER slides in from left */
.tac-shift { position: relative; }
.tac-shift__track { height: 240vh; position: relative; }
.tac-shift__stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-8);
}
.tac-shift__head { flex: 0 0 auto; }
.tac-shift__cards { position: relative; flex: 0 0 auto; width: 100%; height: clamp(300px, 46vh, 440px); }
.tac-shift__card {
  position: absolute; top: 50%; left: 50%;
  width: min(900px, 94vw);
  transform: translate(-50%, -50%) translateX(var(--shift-x, 0));
  will-change: transform, opacity;
  display: flex; align-items: stretch; gap: clamp(14px, 2.5vw, 32px);
}
.tac-shift__drake { flex: 1 1 0; min-width: 0; width: 100%; height: auto; align-self: center; object-fit: contain; display: block; }
.tac-shift__box { flex: 1 1 0; min-width: 0; border: 1px solid var(--color-border); box-shadow: 0 18px 50px rgba(18,18,18,0.14); }
.tac-shift__box.tac-ba__col--after { border-color: var(--color-accent); }
/* initial states (before JS scrubs): BEFORE centered, AFTER waiting off-screen left */
.tac-shift__card[data-shift="after"] { --shift-x: -108vw; opacity: 0; }
@media (max-width: 600px) {
  /* keep the drake beside its before/after card, same size as the box (50/50) */
  .tac-shift__card { gap: var(--space-2); width: 96vw; align-items: center; }
  .tac-shift__drake { flex: 1 1 0; width: 100%; min-width: 0; }
  .tac-shift__box { flex: 1 1 0; min-width: 0; }
  .tac-ba__tag { margin-bottom: var(--space-2); }
}
.tac-shift__hint {
  position: absolute; bottom: 4.5vh; left: 0; right: 0; text-align: center;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--color-text-muted);
}
.tac-ba__col { padding: var(--space-8) var(--space-6); }
.tac-ba__col--before { background: var(--color-gray-100); }
.tac-ba__col--after { background: var(--color-accent); color: #fff; }
.tac-ba__tag { font-family: 'Silkscreen', monospace; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: var(--space-4); }
.tac-ba__col--before .tac-ba__tag { color: var(--color-text-muted); }
.tac-ba__col--after .tac-ba__tag { color: rgba(255,255,255,0.8); }
.tac-ba__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-4); }
.tac-ba__col li { font-size: var(--fs-body); line-height: 1.5; padding-left: 22px; position: relative; }
.tac-ba__col--before li { color: var(--color-text-secondary); }
.tac-ba__col--before li::before { content: "×"; position: absolute; left: 0; color: var(--color-text-muted); font-weight: 700; }
.tac-ba__col--after li::before { content: ""; position: absolute; left: 2px; top: 0.5em; width: 8px; height: 8px; background: #fff; transform: rotate(45deg); }
@media (max-width: 680px) {
  .tac-shift__card { width: 88vw; }
  .tac-shift__cards { height: clamp(310px, 54vh, 430px); }
}
@media (prefers-reduced-motion: reduce) {
  .tac-shift__track { height: auto; }
  .tac-shift__stage { position: static; height: auto; padding: var(--space-12) 0; }
  .tac-shift__cards { position: static; height: auto; display: grid; gap: var(--space-5); justify-items: center; margin-top: var(--space-8); }
  .tac-shift__card { position: static; transform: none !important; opacity: 1 !important; }
  .tac-shift__hint { display: none; }
}

/* =====================================================
   HOW IT WORKS — shape stat tiles
   ===================================================== */
.tac-shape { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-8); }
.tac-stat { text-align: center; border: 1px solid var(--color-border); padding: var(--space-6) var(--space-4); background: #fff; transition: background var(--transition-fast), border-color var(--transition-fast); }
.tac-stat__big { font-family: 'PP Neue Bit','Space Mono',monospace; font-weight: 700; font-size: 2.4rem; line-height: 1; color: var(--color-accent); display: block; transition: color var(--transition-fast); }
.tac-stat__lab { font-size: var(--fs-small); color: var(--color-text-secondary); margin-top: 8px; display: block; line-height: 1.4; transition: color var(--transition-fast); }
.tac-stat:hover { background: var(--color-accent); border-color: var(--color-accent); }
.tac-stat:hover .tac-stat__big, .tac-stat:hover .tac-stat__lab { color: #fff; }
/* four equal-size chips */
.tac-shape__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); margin-top: var(--space-8); }
.tac-chip { font-family: var(--font-mono); font-size: 0.78rem; padding: 14px 12px; border: 1px solid var(--color-border); background: #fff; color: var(--color-text-secondary); display: grid; place-items: center; text-align: center; line-height: 1.4; transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast); }
.tac-chip b { color: var(--color-text); transition: color var(--transition-fast); }
.tac-chip:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.tac-chip:hover b { color: #fff; }
/* boxes fade in as they enter and vanish as they scroll up past the top
   (CSS scroll-driven; progressive enhancement - static + visible without support) */
@keyframes tac-vanish {
  0%   { opacity: 0; transform: translateY(26px); }
  14%, 80% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: translateY(-52px) scale(0.92); }
}
@supports (animation-timeline: view()) {
  #how .tac-stat, #how .tac-chip {
    animation: tac-vanish linear both;
    animation-timeline: view();
  }
}

/* =====================================================
   CURRICULUM — session accordion
   ===================================================== */
.tac-curric { max-width: 760px; margin: var(--space-8) auto 0; display: grid; gap: var(--space-3); }
.tac-ses { border: 1px solid var(--color-border); background: #fff; }
.tac-ses__head { width: 100%; display: flex; align-items: center; gap: var(--space-4); padding: var(--space-5) var(--space-5); background: none; border: 0; cursor: pointer; text-align: left; }
.tac-ses__mark { font-family: 'Silkscreen', monospace; font-size: 11px; color: var(--color-accent); border: 1px solid var(--color-accent); padding: 6px 8px; flex-shrink: 0; letter-spacing: 0.5px; }
.tac-ses__t { flex: 1; }
.tac-ses__t strong { display: block; font-family: 'PP Neue Bit','Space Mono',monospace; font-weight: 700; font-size: var(--fs-h3); line-height: 1.1; }
.tac-ses__t span { font-size: 0.85rem; color: var(--color-text-secondary); }
.tac-ses__plus { font-family: var(--font-mono); color: var(--color-accent); font-weight: 700; flex-shrink: 0; }
.tac-ses__body { max-height: 0; overflow: hidden; transition: max-height 400ms var(--tac-ease); }
.tac-ses.is-open .tac-ses__body { max-height: 600px; }
.tac-ses.is-open .tac-ses__plus { }
.tac-ses__inner { padding: 0 var(--space-5) var(--space-5) calc(var(--space-5) + 44px); }
.tac-ses__deliver { font-size: var(--fs-body); line-height: 1.6; color: var(--color-text); margin: 0 0 var(--space-4); }
.tac-ses__deliver b { color: var(--color-accent); }
.tac-ses__leave { font-family: var(--font-mono); font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.4px; color: var(--color-text-muted); margin-bottom: var(--space-2); }

/* =====================================================
   OUTCOMES (what you walk out with)
   ===================================================== */
.tac-outcomes { max-width: 620px; margin: var(--space-6) auto 0; }
.tac-outcomes .tac-list { gap: var(--space-5); }
.tac-outcomes .tac-list li { font-size: 1.02rem; padding-left: 36px; }
.tac-outcomes .tac-list li::before {
  content: ""; background: url('assets/gif/icons/rocket.gif') center / contain no-repeat;
  width: 24px; height: 24px; left: 0; top: -0.05em; transform: none;
}
.tac-outcomes__tail { text-align: center; font-style: italic; color: var(--color-text-secondary); margin-top: var(--space-8); font-size: 1rem; max-width: 50ch; margin-left: auto; margin-right: auto; }

/* =====================================================
   THE BUILD (S6 vote) — three cards
   ===================================================== */
.tac-build { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-5); margin-top: var(--space-8); }
.tac-buildcard { border: 1px solid var(--color-border); padding: var(--space-6); background: #fff; }
.tac-section--grey .tac-buildcard { background: #fff; }
.tac-buildcard__ic { width: 46px; height: 46px; object-fit: contain; image-rendering: pixelated; margin-bottom: var(--space-3); }
.tac-buildcard h4 { font-family: 'PP Neue Bit','Space Mono',monospace; font-weight: 700; font-size: 1.2rem; margin: 0 0 var(--space-2); }
.tac-buildcard p { font-size: 0.92rem; color: var(--color-text-secondary); line-height: 1.55; margin: 0; }
.tac-build__note { text-align: center; font-family: var(--font-mono); font-size: 0.8rem; color: var(--color-text-muted); margin-top: var(--space-6); }

/* =====================================================
   ALUMNI
   ===================================================== */
.tac-alumni__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-5); margin-top: var(--space-8); }
.tac-acard { text-align: center; }
.tac-acard img { width: 56px; height: 56px; object-fit: contain; image-rendering: pixelated; margin: 0 auto var(--space-3); display: block; }
.tac-acard h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin: 0 0 6px; }
.tac-acard p { font-size: 0.9rem; color: var(--color-text-secondary); line-height: 1.5; margin: 0; }

/* =====================================================
   WHO THIS IS FOR — two columns
   ===================================================== */
.tac-aud { display: flex; flex-direction: column; gap: var(--space-7); max-width: 980px; margin: var(--space-8) auto 0; }
.tac-aud__row { display: flex; align-items: stretch; gap: var(--space-6); }
.tac-aud__drake { flex: 1 1 0; min-width: 0; width: 100%; height: auto; max-height: 420px; object-fit: contain; align-self: center; display: block; }
.tac-aud__row .tac-aud__col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.tac-aud__drake.tac-reveal { transform: translateX(-44px); }
.tac-aud__drake.is-in { transform: none; }
.tac-aud__row .tac-aud__col.tac-reveal { transform: translateX(30px); }
.tac-aud__row .tac-aud__col.is-in { transform: none; }
@media (max-width: 680px) { .tac-aud__row { gap: var(--space-2); align-items: center; } .tac-aud__drake { max-height: 230px; } }
.tac-aud__col { padding: var(--space-8) var(--space-8); border: 1px solid var(--color-border); background: #fff; }
.tac-aud__col--for { background: var(--color-accent); border-color: var(--color-accent); }
.tac-aud__h { font-family: 'PP Neue Bit','Space Mono',monospace; font-weight: 700; font-size: 1.3rem; margin: 0 0 var(--space-6); display: flex; align-items: center; gap: 10px; }
.tac-aud__col--for .tac-aud__h { color: #fff; }
.tac-aud__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-5); }
.tac-aud__col li { font-size: 0.95rem; line-height: 1.55; padding-left: 30px; padding-right: var(--space-2); position: relative; color: var(--color-text-secondary); }
.tac-aud__col li b { color: var(--color-text); }
.tac-aud__col--for li { color: rgba(255,255,255,0.92); }
.tac-aud__col--for li b { color: #fff; }
.tac-aud__col--for li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #fff; font-weight: 700; }
.tac-aud__col--not li::before { content: "✕"; position: absolute; left: 0; top: 0; color: var(--color-text-muted); font-weight: 700; }
@media (max-width: 680px) { .tac-aud { gap: var(--space-3); } }

/* =====================================================
   FOUNDER STORY
   ===================================================== */
.tac-founder { max-width: 640px; margin: 0 auto; }
.tac-founder__body p { font-size: var(--fs-body); line-height: 1.7; margin: 0 0 var(--space-4); }
.tac-founder__body .hl { background: var(--color-accent-light); color: var(--color-accent); padding: 1px 4px; font-weight: 600; }
.tac-founder__sign { margin-top: var(--space-6); }
.tac-founder__sign img { height: 56px; width: auto; }
.tac-founder__sign span { display: block; font-family: var(--font-mono); font-size: 0.78rem; color: var(--color-text-muted); margin-top: 6px; }

/* =====================================================
   PROOF — founder result cards
   ===================================================== */
.tac-proof { margin: var(--space-8) auto 0; max-width: 952px; overflow: hidden; }
.tac-proof__track { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-5); }
.tac-pcard--dup { display: none; }
.tac-pcard { border: 1px solid var(--color-border); padding: var(--space-6); background: #fff; display: flex; flex-direction: column; gap: var(--space-4); }
.tac-pcard__q { font-size: var(--fs-body); line-height: 1.6; color: var(--color-text); margin: 0; }
.tac-pcard__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tac-pcard__by img { width: 40px; height: 40px; border-radius: 50% !important; object-fit: cover; }
.tac-pcard__by b { display: block; font-size: var(--fs-small); }
.tac-pcard__by span { font-size: var(--fs-label); color: var(--color-text-muted); font-family: var(--font-mono); }
.tac-pcard__stat { font-family: 'PP Neue Bit','Space Mono',monospace; font-weight: 700; color: var(--color-accent); font-size: 1.15rem; }

/* =====================================================
   PRICING
   ===================================================== */
.tac-pricing { background: var(--color-gray-100); }
.tac-price-card {
  max-width: 580px; margin: var(--space-8) auto 0; background: #fff;
  border: 2px solid var(--color-accent); padding: var(--space-10) var(--space-8);
  box-shadow: 8px 8px 0 rgba(23,62,245,0.12); position: relative;
}
.tac-price-card::before, .tac-price-card::after { content: ""; position: absolute; width: 8px; height: 8px; background: var(--color-accent); }
.tac-price-card::before { top: -2px; left: -2px; }
.tac-price-card::after { bottom: -2px; right: -2px; }
.tac-price-card__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--color-accent); color: #fff; font-family: 'Silkscreen', monospace; font-size: 10px; letter-spacing: 1px; padding: 6px 14px; white-space: nowrap; }
.tac-price__name { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-text-secondary); text-align: center; }
.tac-price__amount { text-align: center; margin: var(--space-3) 0; }
.tac-price__amount .was { font-family: var(--font-mono); color: var(--color-text-muted); text-decoration: line-through; font-size: 1.2rem; margin-right: 10px; }
.tac-price__amount .now { font-family: 'PP Neue Bit','Space Mono',monospace; font-weight: 700; font-size: 3.4rem; color: var(--color-text); line-height: 1; }
.tac-price__amount .cur { font-family: var(--font-mono); font-size: 1rem; color: var(--color-text-secondary); vertical-align: super; }
.tac-price__plan { text-align: center; font-size: var(--fs-body); color: var(--color-text-secondary); margin-bottom: var(--space-6); }
.tac-price__plan b { color: var(--color-text); }
.tac-price-card .tac-list { margin: var(--space-6) 0; gap: var(--space-4); }
.tac-price-card .tac-list li { font-size: 0.96rem; padding-left: 30px; }
.tac-price-card .tac-list li::before {
  content: ""; transform: none; width: 12px; height: 14px; left: 0; top: 0.28em;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='14'%20viewBox='0%200%2010%2012'%20shape-rendering='crispEdges'%3E%3Crect%20x='2'%20y='1'%20width='2'%20height='10'%20fill='%23173EF5'/%3E%3Crect%20x='4'%20y='3'%20width='2'%20height='6'%20fill='%23173EF5'/%3E%3Crect%20x='6'%20y='5'%20width='2'%20height='2'%20fill='%23173EF5'/%3E%3C/svg%3E") no-repeat center / contain;
}
.tac-price__cta { display: block; text-align: center; width: 100%; justify-content: center; }
.tac-price__badges { display: flex; align-items: center; justify-content: center; gap: var(--space-4); margin-top: var(--space-5); font-family: var(--font-mono); font-size: 0.7rem; color: var(--color-text-muted); flex-wrap: wrap; }
.tac-price__badges span { display: inline-flex; align-items: center; gap: 6px; }

/* guarantee */
.tac-guarantee { max-width: 620px; margin: var(--space-8) auto 0; border: 1px dashed var(--color-accent); background: var(--color-accent-light); padding: var(--space-8); display: flex; gap: var(--space-6); align-items: center; }
.tac-guarantee__seal { font-family: 'Silkscreen', monospace; font-size: 10px; line-height: 1.4; color: #fff; background: var(--color-accent); border: 2px solid var(--color-accent); padding: 14px 12px; text-align: center; flex-shrink: 0; width: 84px; animation: tac-seal-flash 1.2s ease-in-out infinite; }
@keyframes tac-seal-flash { 0%, 100% { color: #fff; } 50% { color: rgba(255,255,255,0.32); } }
@media (prefers-reduced-motion: reduce) { .tac-guarantee__seal { animation: none; } }
.tac-guarantee h4 { margin: 0 0 6px; font-size: 1.05rem; }
.tac-guarantee p { margin: 0; font-size: 0.92rem; color: var(--color-text-secondary); line-height: 1.55; }

/* =====================================================
   OBJECTIONS (the lies) + FAQ accordions
   ===================================================== */
.tac-acc { max-width: 680px; margin: var(--space-8) auto 0; display: grid; gap: var(--space-2); }
.tac-acc__item { border: 1px solid var(--color-border); background: #fff; }
.tac-acc__head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); padding: var(--space-5); background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--font-body); font-weight: 600; font-size: 1rem; }
.tac-acc__head .ic { font-family: var(--font-mono); color: var(--color-accent); flex-shrink: 0; }
.tac-acc__body { max-height: 0; overflow: hidden; transition: max-height 380ms var(--tac-ease); }
.tac-acc__item.is-open .tac-acc__body { max-height: 400px; }
.tac-acc__body p { padding: 0 var(--space-5) var(--space-5); margin: 0; font-size: var(--fs-body); line-height: 1.6; color: var(--color-text-secondary); }
.tac-safe { max-width: 680px; margin: var(--space-6) auto 0; border-left: 3px solid var(--color-accent); padding: var(--space-2) var(--space-5); font-size: var(--fs-body); line-height: 1.65; color: var(--color-text-secondary); }
.tac-safe b { color: var(--color-text); }

/* =====================================================
   SCARCITY — countdown + seats
   ===================================================== */
.tac-scarcity { background: var(--color-accent); color: #fff; text-align: center; }
.tac-scarcity .tac-h2, .tac-scarcity p { color: #fff; }
.tac-count { display: flex; justify-content: center; gap: var(--space-4); margin: 2.5rem 0; }
.tac-count__unit { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); padding: var(--space-4) var(--space-5); min-width: 84px; }
.tac-count__n { font-family: 'PP Neue Bit','Space Mono',monospace; font-weight: 700; font-size: 2.6rem; line-height: 1; display: block; }
.tac-count__l { font-family: 'Silkscreen', monospace; font-size: 9px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.8; margin-top: 8px; display: block; }
.tac-seats { max-width: 460px; margin: 0 auto 2.5rem; }
.tac-seats__row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.78rem; margin-bottom: 8px; opacity: 0.92; }
.tac-seats__track { height: 10px; background: rgba(255,255,255,0.18); position: relative; }
.tac-seats__fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: #fff; transition: width 1200ms var(--tac-ease); }
.tac-scarcity .tac-cta { background: #fff; color: var(--color-accent); border-color: #fff; }
.tac-scarcity .tac-cta:hover { background: #eef0ff; }
.tac-dates { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: var(--space-5); }
.tac-dates span { font-family: var(--font-mono); font-size: 0.74rem; padding: 6px 11px; border: 1px solid rgba(255,255,255,0.3); }
.tac-placeholder { outline: 1px dashed rgba(255,255,255,0.5); outline-offset: 2px; }

/* scarcity spacing + legibility (no overlapping, less faint) */
.tac-scar__note { font-family: var(--font-mono); font-size: 0.82rem; opacity: 0.95; margin: var(--space-4) auto 0; max-width: 90%; display: inline-block; }
.tac-scar__note--last { margin-top: var(--space-4); opacity: 0.88; }
.tac-scarcity .tac-count { margin: var(--space-8) 0 0; }
.tac-scarcity .tac-seats { margin: var(--space-8) auto var(--space-2); }
.tac-scarcity .tac-cta-wrap { margin-top: var(--space-8); }
.tac-scarcity .tac-dates { margin-top: var(--space-10); }
.tac-scarcity .tac-seats__row { opacity: 1; font-size: 0.82rem; }

/* =====================================================
   FINAL CTA
   ===================================================== */
.tac-final { text-align: center; background: #0e0e12; color: #fff; }
.tac-final .tac-h2 { color: #fff; }
.tac-final__big { font-family: 'PP Neue Bit','Space Mono',monospace; font-weight: 700; font-size: clamp(2rem, 5.5vw, 3.4rem); line-height: 1.02; max-width: 18ch; margin: 0 auto var(--space-6); color: #fff; }
.tac-final p { color: rgba(255,255,255,0.75); max-width: 48ch; margin: 0 auto var(--space-6); line-height: 1.6; }
.tac-final .tac-cta-sub { color: rgba(255,255,255,0.6); }

/* =====================================================
   FOOTER (lite)
   ===================================================== */
.tac-foot { position: relative; background: #0e0e12; min-height: clamp(180px, 17vw, 240px); overflow: hidden; border-top: none; display: flex; align-items: center; justify-content: center; padding: var(--space-9) var(--space-4); text-align: center; }
.tac-foot__mural { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; pointer-events: none; }
.tac-foot::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 72% 86% at 50% 50%, rgba(14,14,18,0.78) 0%, rgba(14,14,18,0.4) 56%, transparent 84%); pointer-events: none; }
.tac-foot__over { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: var(--space-3); transform: translateY(-50px); }
.tac-foot__logo { height: clamp(24px, 2.4vw, 32px); }
.tac-foot__legal { font-family: var(--font-mono); font-size: clamp(0.62rem, 1.3vw, 0.72rem); color: rgba(255,255,255,0.66); margin: 0; }

/* =====================================================
   STICKY BOTTOM BUY BAR
   ===================================================== */
.tac-buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: rgba(14,14,18,0.95); backdrop-filter: blur(8px);
  color: #fff; padding: 12px 16px;
  display: flex; align-items: center; justify-content: center; gap: var(--space-5);
  transform: translateY(110%); transition: transform 360ms var(--tac-ease);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.tac-buybar.is-show { transform: none; }
.tac-buybar__info { font-family: var(--font-mono); font-size: 0.8rem; line-height: 1.3; }
.tac-buybar__info b { color: #fff; }
.tac-buybar__info span { color: rgba(255,255,255,0.6); }
.tac-buybar__cta { font-family: var(--font-mono); font-weight: 700; font-size: 0.8rem; padding: 12px 22px; background: var(--color-accent); color: #fff; text-decoration: none; white-space: nowrap; box-shadow: inset -2px -2px 0 0 rgba(0,0,0,0.25); }
.tac-buybar__cta:hover { background: #3f5cf7; }
@media (max-width: 560px) {
  .tac-buybar { gap: var(--space-3); padding: 10px 12px; }
  .tac-buybar__info span { display: none; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 820px) {
  /* keep components side-by-side on smaller screens; just tighten the grids
     (shape stays 3-up, chips stay 4-up, gears stay 3-up, engine + doors 2-up) */
  .tac-pains, .tac-build, .tac-proof, .tac-alumni__cards { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .tac-dialcols { gap: var(--space-4); }
  .tac-shape { gap: var(--space-3); }
  .tac-shape__row { gap: var(--space-2); }
}
@media (max-width: 680px) {
  .tac-section { padding: var(--space-10) 0; }
  .tac-hero { padding-top: 128px; }
  .tac-hero__ascii img { opacity: 0.6; }
  .tac-hero__sub, .tac-hero__headline { max-width: 100%; }
  .tac-hero__meta { font-size: 0.72rem; }
  .tac-count { gap: var(--space-2); }
  .tac-count__unit { min-width: 66px; padding: var(--space-3); }
  .tac-count__n { font-size: 2rem; }
  .tac-guarantee { flex-direction: column; align-items: center; text-align: center; }
}

/* dense phone layout — keep everything side-by-side, shrink hard to fit more on screen */
@media (max-width: 560px) {
  .tac-section { padding: var(--space-8) 0; }
  .tac-h2 { font-size: clamp(1.35rem, 6.2vw, 1.8rem); }
  .tac-lead { font-size: 0.92rem; }

  /* hero — neater, compact CTA with the price on its own centred line */
  .tac-cta--lg { font-size: 0.92rem; padding: 13px 20px; }
  .tac-cta { flex-wrap: wrap; justify-content: center; gap: 4px 8px; }
  .tac-cta__price { width: 100%; text-align: center; }
  .tac-cta-sub { font-size: 0.62rem; }

  /* the gap — three boxes in one row, small text */
  .tac-pains { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .tac-pain { padding: 10px 8px; }
  .tac-pain__n { font-size: 9px; margin-bottom: 6px; }
  .tac-pain h4 { font-size: 0.74rem; margin-bottom: 4px; line-height: 1.2; }
  .tac-pain p { font-size: 0.62rem; line-height: 1.4; }
  .tac-gap__punch { font-size: 0.9rem; }

  /* what it is — the three arrow points, smaller */
  #what .tac-list--arrow li, #reframe .tac-list--arrow li { font-size: 0.74rem; line-height: 1.45; padding: 11px 12px 11px 38px; }
  #what .tac-list--arrow li::before, #reframe .tac-list--arrow li::before { left: 13px; top: 14px; }

  /* how it runs — three stats in one row */
  .tac-shape { gap: 6px; }
  .tac-stat { padding: 12px 4px; }
  .tac-stat__big { font-size: 1.35rem; }
  .tac-stat__big small { font-size: 0.7rem !important; }
  .tac-stat__lab { font-size: 0.56rem; margin-top: 5px; }

  /* how it runs — four chips in one row */
  .tac-shape__row { gap: 5px; }
  .tac-chip { padding: 8px 4px; font-size: 0.55rem; line-height: 1.3; }

  /* the three gears in one row */
  .tac-dialcols { gap: 6px; }
  .tac-gear__face { width: min(28vw, 112px); margin-bottom: var(--space-3); }
  .tac-gear__hub { gap: 1px; }
  .tac-gear__num { font-size: 7px; }
  .tac-gear__hub strong { font-size: 0.7rem; }
  .tac-gear__what { font-size: 0.55rem; margin-bottom: 6px; }
  .tac-gear__desc { font-size: 0.72rem; line-height: 1.45; max-width: none; }

  /* the shift — before/after text ~50% smaller */
  .tac-ba__col { padding: 9px 9px; }
  .tac-ba__tag { font-size: 8px; margin-bottom: 7px; }
  .tac-ba__col li { font-size: 0.52rem; line-height: 1.4; padding-left: 12px; }
  .tac-ba__col li::before { font-size: 0.6rem; }

  /* curriculum — smaller dropdown text on both cards */
  .tac-ses__head { padding: var(--space-4) var(--space-4); }
  .tac-ses__mark { font-size: 0.8rem; }
  .tac-ses__deliver { font-size: 0.78rem; line-height: 1.5; }
  .tac-ses__leave { font-size: 0.6rem; }
  #curriculum .tac-list li { font-size: 0.74rem; line-height: 1.45; }

  /* what you walk out with — smaller heading + dot points */
  .tac-out .tac-h2 { font-size: clamp(1.2rem, 5.6vw, 1.6rem); }
  .tac-out__item { font-size: var(--fs-body); padding-left: 34px; }
  .tac-out__tail { font-size: var(--fs-small); }

  /* after the course — three icon cards in one row */
  .tac-alumni__cards { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .tac-acard img { width: 34px; height: 34px; margin-bottom: 6px; }
  .tac-acard h4 { font-size: 0.7rem; margin-bottom: 4px; line-height: 1.2; }
  .tac-acard p { font-size: 0.6rem; line-height: 1.4; }

  /* who this is for / not — much smaller boxes + text */
  .tac-aud { gap: var(--space-2); }
  .tac-aud__col { padding: 11px 9px; }
  .tac-aud__h { font-size: 0.82rem; margin-bottom: 10px; gap: 6px; }
  .tac-aud__col li { font-size: 0.6rem; line-height: 1.4; padding-left: 18px; }

  /* proof — clean cards, tighter on phones (no carousel) */
  .tac-pcard { padding: var(--space-4); gap: var(--space-3); }
  .tac-pcard__q { font-size: 0.82rem; }

  /* model engine cards */
  .tac-engine__card { padding: var(--space-4); }

  /* buy bar — slim strip, not full-screen */
  .tac-buybar { gap: 8px; padding: 7px 10px; }
  .tac-buybar__info { font-size: 0.66rem; }
  .tac-buybar__cta { font-size: 0.66rem; padding: 8px 14px; }

  /* hero — smaller headline + subtext */
  .tac-hero__headline { font-size: clamp(1.5rem, 7vw, 2rem); }
  .tac-hero__sub { font-size: 0.9rem; line-height: 1.5; }

  /* what it is — smaller heading + lead (esp. "The AI Course teaches you...") */
  #what .tac-h2 { font-size: clamp(1.15rem, 5.4vw, 1.55rem); }
  #what .tac-lead { font-size: 0.78rem; line-height: 1.55; }

  /* the model — engine boxes smaller + centred; quote + hire line smaller */
  .tac-mech__quote { font-size: clamp(1.05rem, 4.2vw, 1.45rem); }
  .tac-engine__card { text-align: center; padding: var(--space-3); }
  .tac-engine__tag { font-size: 8px; }
  .tac-engine__card h4 { font-size: 0.82rem; margin: 8px 0 6px; }
  .tac-engine__card p { font-size: 0.68rem; line-height: 1.45; }
  .tac-mech__hire { font-size: 0.72rem; line-height: 1.55; margin-top: var(--space-6); }

  /* curriculum — session cards roughly half size */
  .tac-ses__head { padding: 9px 11px; gap: var(--space-2); }
  .tac-ses__mark { font-size: 0.5rem; padding: 3px 5px; }
  .tac-ses__t strong { font-size: 0.7rem; }
  .tac-ses__t span { font-size: 0.55rem; }
  .tac-ses__plus { font-size: 0.7rem; }
  .tac-ses__deliver { font-size: 0.64rem; line-height: 1.45; }
  .tac-ses__leave { font-size: 0.5rem; }
  #curriculum .tac-list li { font-size: 0.62rem; line-height: 1.4; }

  /* what you walk out with — dot points much smaller */
  .tac-out__item { font-size: 0.58rem; padding-left: 24px; }
  .tac-out__tail { font-size: 0.64rem; }

  /* the letter from remy — much smaller text + smaller signature */
  .tac-founder__body p { font-size: 0.64rem; line-height: 1.55; margin-bottom: var(--space-3); }
  .tac-founder__sign img { height: 30px; }
  .tac-founder__sign span { font-size: 0.58rem; }

  /* early-bird paywall card — off the screen edges, smaller padding + text */
  .tac-price-card { margin: var(--space-6) var(--space-5) 0; padding: var(--space-5) var(--space-4); }
  .tac-price__name { font-size: 0.64rem; }
  .tac-price__amount .now { font-size: 2.3rem; }
  .tac-price__amount .was { font-size: 0.95rem; margin-right: 7px; }
  .tac-price__plan { font-size: 0.7rem; margin-bottom: var(--space-4); }
  .tac-price__badges { font-size: 0.58rem; gap: var(--space-3); }
  #pricing .tac-list li { font-size: 0.7rem; line-height: 1.4; }

  /* the six lies + faq dropdowns — about half size, inset from the edges */
  .tac-acc { margin: var(--space-6) var(--space-5) 0; gap: 6px; }
  .tac-acc__head { font-size: 0.72rem; padding: 10px 12px; }
  .tac-acc__body p { font-size: 0.64rem; line-height: 1.5; padding: 0 12px 12px; }

  /* footer ASCII fits within the screen width (no side crop) */
  .tac-foot { height: clamp(120px, 30vw, 170px); }
  .tac-foot__mural { object-fit: contain; object-position: center bottom; }

  /* gears spin continuously (no hover on touch) */
  .tac-cog { animation-play-state: running; }

  /* more breathing room around the "treat it like a hire" line */
  .tac-mech__hire { margin: var(--space-10) auto var(--space-8); }

  /* curriculum cards off the screen edges; expanded text matches the card text */
  .tac-curric { margin-left: var(--space-5); margin-right: var(--space-5); }
  .tac-ses__deliver { font-size: 0.58rem; }
  .tac-ses__leave { font-size: 0.5rem; }
  #curriculum .tac-list li { font-size: 0.56rem; }

  /* what you walk out with — heading + dot points ~50% smaller */
  .tac-out .tac-h2 { font-size: clamp(1rem, 4.8vw, 1.35rem); }
  .tac-out__item { font-size: 0.55rem; padding-left: 22px; }
  .tac-out__tail { font-size: 0.56rem; }

  /* who this is for / not — off the edges, a touch smaller */
  .tac-aud { margin: var(--space-6) var(--space-5) 0; }
  .tac-aud__col { padding: 10px 8px; }
  .tac-aud__h { font-size: 0.76rem; }
  .tac-aud__col li { font-size: 0.56rem; }

  /* "but is it safe" ~50% smaller, off the edges */
  .tac-safe { margin: var(--space-6) var(--space-5) 0; font-size: 0.6rem; line-height: 1.5; }

  /* "don't sit on this" scarcity ~50% smaller */
  .tac-scarcity .tac-h2 { font-size: clamp(1.15rem, 5.2vw, 1.5rem); }
  .tac-scarcity .tac-lead { font-size: 0.78rem; }
  .tac-count { gap: 7px; margin: var(--space-6) 0; }
  .tac-count__unit { min-width: 0; padding: 8px 5px; flex: 1 1 0; }
  .tac-count__n { font-size: 1.4rem; }
  .tac-count__l { font-size: 7px; margin-top: 5px; }
  .tac-seats { margin: 0 var(--space-5) var(--space-6); }
  .tac-seats__row { font-size: 0.62rem; }

  /* pixel cascades: CTAs + the early-bird box run constantly on touch */
  .tac-cta::before, .tac-buybar__cta::before { opacity: 0.2; }
  .tac-price-card .tac-fxlayer { opacity: 0.16; }
}
/* pixel cascade behind the gap + engine boxes reveals as the card scrolls off */
@keyframes tac-cascade-scroll { from { opacity: 0; } to { opacity: 0.3; } }
@supports (animation-timeline: view()) {
  @media (max-width: 560px) {
    .tac-pain::before, .tac-engine__card::before {
      animation: tac-cascade-scroll linear both;
      animation-timeline: view();
    }
  }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  .tac-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .tac-hero__badge .tac-live { animation: none; }
  .tac-loop__node, .tac-dial__bar i, .tac-seats__fill, .tac-buybar, .tac-nav { transition: none !important; }
}

/* =====================================================
   HOVER CASCADE GIF REVEAL
   The brand pixel-cascade fades in behind the content on
   hover, low opacity so it never clashes with the text.
   ===================================================== */
.tac-cta, .tac-nav__cta, .tac-buybar__cta, .tac-pain,
.tac-engine__card, .tac-dial {
  position: relative; isolation: isolate; overflow: hidden;
}
.tac-cta::before, .tac-nav__cta::before, .tac-buybar__cta::before, .tac-pain::before,
.tac-engine__card::before, .tac-dial::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  opacity: 0; transition: opacity 350ms ease; pointer-events: none;
}
/* brand (lavender -> Blueprint blue) cascade on the CTAs + gap cards */
.is-loaded .tac-cta::before, .is-loaded .tac-nav__cta::before, .is-loaded .tac-buybar__cta::before, .is-loaded .tac-pain::before {
  background-image: url('assets/gif/cascade-1080.gif');
}
.tac-cta:hover::before, .tac-cta:focus-visible::before,
.tac-nav__cta:hover::before, .tac-buybar__cta:hover::before { opacity: 0.22; }
.tac-pain:hover::before { opacity: 0.20; }
/* black cascade behind the dark model boxes (engine cards + dials) */
.is-loaded .tac-engine__card::before, .is-loaded .tac-dial::before {
  background-image: url('assets/gif/cascade-black.gif');
}
.tac-engine__card:hover::before, .tac-dial:hover::before { opacity: 0.45; }

/* pricing card uses a child layer (its ::before/::after are the corner pixels) */
.tac-price-card { isolation: isolate; }
.tac-fxlayer {
  position: absolute; inset: 2px; z-index: -1; overflow: hidden; pointer-events: none;
  opacity: 0; transition: opacity 350ms ease;
  background: center / cover no-repeat;
}
.is-loaded .tac-fxlayer { background-image: url('assets/gif/cascade-1080.gif'); }
.tac-price-card:hover .tac-fxlayer { opacity: 0.18; }

@media (prefers-reduced-motion: reduce) {
  .tac-cta::before, .tac-nav__cta::before, .tac-buybar__cta::before, .tac-pain::before,
  .tac-engine__card::before, .tac-dial::before, .tac-fxlayer { transition: none; }
}

/* =====================================================
   WALL OF LOVE — depth marquee (written + video testimonials)
   Rows drift at different distances + directions; hovering a
   card pauses its row and zooms it (video also unmutes via JS).
   ===================================================== */
.tac-wol { padding: var(--space-3) 0; overflow: visible; position: relative; z-index: 5; }
.tac-wol__stage {
  margin-top: var(--space-2);
  padding: 20px 0 80px;
  display: grid; gap: clamp(14px, 1.6vw, 20px);
  overflow-x: clip; overflow-y: visible;
  /* horizontal edge fade, enlarged vertically so a hovered card can pop out of the row
     (above/below the section) instead of being clipped */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-size: 100% 560%; mask-size: 100% 560%;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.tac-wol-row { position: relative; }
.tac-wol-row:hover { z-index: 50; }
.tac-wol-track {
  display: flex; align-items: center; gap: clamp(14px, 1.8vw, 22px);
  width: max-content; will-change: transform;
  animation: 52s linear infinite;
}
.tac-wol-row--right .tac-wol-track { animation-name: tac-marq-right; }
.tac-wol-row--left  .tac-wol-track { animation-name: tac-marq-left; }
.tac-wol-track:hover { animation-play-state: paused; }
.tac-wol-row--left .tac-wol-track { gap: clamp(60px, 9vw, 180px); }
@keyframes tac-marq-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes tac-marq-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.tac-wol-card {
  position: relative; flex: 0 0 auto; cursor: pointer;
  transition: transform .4s var(--tac-ease), box-shadow .4s ease;
  background: #fff; border: 1px solid var(--color-border); box-shadow: 0 6px 18px rgba(18,18,18,0.06);
}
.tac-wol-card:hover { transform: scale(1.3); z-index: 60; box-shadow: 0 22px 52px rgba(18,18,18,0.28); }
.tac-wol-card--img img { display: block; width: 300px; height: auto; }

/* video testimonial card */
.tac-wol-card--video { width: 176px; aspect-ratio: 9 / 16; overflow: hidden; background: #0e0e12; border-color: rgba(23,62,245,0.55); }
.tac-wol-card--video:hover { transform: scale(1.18); }
.tac-wol-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; background: #0e0e12; }
.tac-wol-vidph {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center;
  background: radial-gradient(circle at 50% 36%, rgba(23,62,245,0.30), rgba(14,14,18,0.94)); color: #fff;
  transition: opacity .3s ease;
}
.tac-wol-card--video.is-playing .tac-wol-vidph { opacity: 0; pointer-events: none; }
.tac-wol-play { width: 46px; height: 46px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; font-size: 15px; padding-left: 3px; }
.tac-wol-vidlabel { font-family: 'Silkscreen', monospace; font-size: 8px; letter-spacing: 1px; text-transform: uppercase; opacity: .92; line-height: 1.5; }
.tac-wol-vidlabel i { opacity: .6; font-style: normal; }
.tac-wol-spk { position: absolute; top: 7px; right: 7px; width: 22px; height: 22px; display: grid; place-items: center; background: rgba(0,0,0,0.5); color: #fff; font-size: 10px; }
.tac-wol-spk::before { content: "\1F507"; }
.tac-wol-card--video.is-unmuted .tac-wol-spk::before { content: "\1F50A"; }
/* creator credit — clickable name in the bottom third, over the video */
.tac-wol-cred {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  height: 38%; box-sizing: border-box;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 8px 11px; text-align: center; line-height: 1.2;
  background: linear-gradient(to top, rgba(0,0,0,0.86) 20%, rgba(0,0,0,0.42) 58%, transparent);
  color: #fff; text-decoration: none;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.2px;
}
.tac-wol-cred__in { display: inline-flex; align-items: center; gap: 7px; }
.tac-wol-cred__pic { width: 22px; height: 22px; border-radius: 50% !important; object-fit: cover; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,0.9); background: #222; }
.tac-wol-cred:hover { text-decoration: underline; }

.tac-wol__hint { text-align: center; font-family: var(--font-mono); font-size: 0.74rem; color: var(--color-text-muted); margin-top: 2.5rem; }

@media (max-width: 680px) {
  .tac-wol-card--img img { width: 228px; }
  .tac-wol-card--video { width: 148px; }
}
@media (prefers-reduced-motion: reduce) {
  .tac-wol-track { animation: none !important; }
}

/* =====================================================
   AS SEEN ON — two channel cards, subtle constant shake,
   "as seen on" label fades in when hovering either image
   ===================================================== */
.tac-seenon { padding: var(--space-10) 0 var(--space-3); }
.tac-seenon__label {
  text-align: center; font-family: 'Silkscreen', monospace; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--color-accent); margin: 0 0 var(--space-6);
  opacity: 1; transition: opacity .35s ease;
}
.tac-seenon:hover .tac-seenon__label,
.tac-seenon:has(.tac-seenon__card:hover) .tac-seenon__label { opacity: 1; }
.tac-seenon__row { display: flex; justify-content: center; align-items: center; gap: clamp(16px, 3vw, 40px); flex-wrap: wrap; }
.tac-seenon__card {
  display: block; flex: 1 1 360px; max-width: 480px; line-height: 0;
  border: 1px solid var(--color-border); box-shadow: 0 8px 24px rgba(18,18,18,0.10);
  transition: transform .3s ease, box-shadow .3s ease;
}
.tac-seenon__card img {
  width: 100%; height: auto; display: block;
  animation: tac-shake 0.55s ease-in-out infinite;
}
.tac-seenon__card:nth-child(2) img { animation-duration: 0.63s; animation-delay: -0.21s; }
.tac-seenon__card:hover { transform: scale(1.03); box-shadow: 0 18px 44px rgba(18,18,18,0.22); z-index: 2; }
.tac-seenon__card:hover img { animation-play-state: paused; }
@keyframes tac-shake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(0.6px, -0.5px) rotate(-0.25deg); }
  40% { transform: translate(-0.6px, 0.4px) rotate(0.22deg); }
  60% { transform: translate(0.5px, 0.5px) rotate(-0.18deg); }
  80% { transform: translate(-0.4px, -0.4px) rotate(0.18deg); }
}
@media (prefers-reduced-motion: reduce) {
  .tac-seenon__card img { animation: none; }
}

/* =====================================================
   WHAT YOU WALK OUT WITH — pinned arrow-shoot
   ===================================================== */
.tac-out { padding: 0; }
.tac-out__track { height: 270vh; position: relative; }
.tac-out__stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-8);
  background: var(--color-gray-100);
}
.tac-out__list { list-style: none; margin: var(--space-2) 0 0; padding: 0; width: min(640px, 90vw); display: grid; gap: var(--space-5); }
.tac-out__item { position: relative; padding-left: 44px; font-size: 1.06rem; line-height: 1.5; color: var(--color-text); }
.tac-out__txt strong { color: var(--color-text); }
.tac-out__word { white-space: nowrap; }
.tac-out__ch { transition: none; }                 /* letters vanish instantly as the arrow passes */
.tac-out__arrow {
  position: absolute; left: 0; top: 0.26em; width: 24px; height: 17px; z-index: 2; will-change: transform, opacity;
  transition: opacity 0.12s linear;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='17'%20viewBox='0%200%2010%2012'%20shape-rendering='crispEdges'%3E%3Crect%20x='2'%20y='1'%20width='2'%20height='10'%20fill='%23173EF5'/%3E%3Crect%20x='4'%20y='3'%20width='2'%20height='6'%20fill='%23173EF5'/%3E%3Crect%20x='6'%20y='5'%20width='2'%20height='2'%20fill='%23173EF5'/%3E%3C/svg%3E") left center / contain no-repeat;
}
.tac-out__tail { text-align: center; font-style: italic; color: var(--color-text-secondary); max-width: 52ch; font-size: 1rem; margin: 0 auto; }
@media (prefers-reduced-motion: reduce) {
  .tac-out__track { height: auto; }
  .tac-out__stage { position: static; height: auto; padding: var(--space-12) 0; }
}

/* =====================================================
   REMY SIGNATURE — handwrite reveal on scroll into view
   ===================================================== */
.tac-sign-img {
  -webkit-clip-path: inset(0 100% 0 0); clip-path: inset(0 100% 0 0);
  transition: clip-path 1.9s var(--tac-ease), -webkit-clip-path 1.9s var(--tac-ease);
  will-change: clip-path;
}
.tac-sign-img.is-written { -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) {
  .tac-sign-img { -webkit-clip-path: none; clip-path: none; transition: none; }
}


/* ===== the problem (agitation) ===== */
.tac-problem__body { max-width: 640px; margin: var(--space-8) auto 0; text-align: left; }
.tac-problem__body p { font-size: var(--fs-body); line-height: 1.7; color: var(--color-text); margin: 0 0 var(--space-4); }
.tac-problem__body p:last-child { margin-bottom: 0; }

.tac-problem__fam { max-width: 640px; margin: var(--space-10) auto var(--space-5); text-align: center;
  font-family: 'Silkscreen', 'Space Mono', monospace; font-weight: 700; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; color: var(--color-text); }

.tac-problem__quotes { list-style: none; padding: 0; margin: 0 auto; max-width: 720px;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.tac-problem__quotes li { background: #f5f5f7; border-left: 3px solid var(--color-accent);
  padding: var(--space-4) var(--space-5); font-size: var(--fs-body); line-height: 1.55;
  color: var(--color-text); font-style: italic; }

.tac-problem__bridge { max-width: 640px; margin: var(--space-10) auto 0; text-align: left;
  background: var(--color-accent-light); border-left: 3px solid var(--color-accent);
  padding: var(--space-7); }
.tac-problem__bridge p { font-size: var(--fs-body); line-height: 1.7; color: var(--color-text); margin: 0 0 var(--space-4); }
.tac-problem__bridge p:last-child { margin-bottom: 0; }
.tac-problem__punch { font-family: 'Space Mono', monospace; font-weight: 700;
  font-size: var(--fs-h3) !important; color: var(--color-accent) !important; line-height: 1.4 !important; }

@media (max-width: 600px) {
  .tac-problem__quotes { grid-template-columns: 1fr; gap: var(--space-3); }
  .tac-problem__bridge { padding: var(--space-5); }
  .tac-problem__body p, .tac-problem__bridge p, .tac-problem__quotes li { font-size: var(--fs-small); }
  .tac-problem__fam { font-size: 1.05rem; }
}


/* ===== the reframe (what the setup is) ===== */
.tac-reframe { position: relative; overflow: hidden; }
.tac-reframe > .container { position: relative; z-index: 1; }
.tac-reframe__boxes { max-width: 600px; margin: var(--space-8) auto 0; }
.tac-reframe__body { max-width: 640px; margin: var(--space-8) auto 0; text-align: left; }
.tac-reframe__body p { font-size: var(--fs-body); line-height: 1.7; color: var(--color-text); margin: 0 0 var(--space-4); }
.tac-reframe__body p:last-child { margin-bottom: 0; }
.tac-reframe__kick { font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700;
  font-size: var(--fs-h3) !important; color: var(--color-text); line-height: 1.4 !important;
  max-width: 600px; margin: var(--space-8) auto 0 !important; text-align: center; }

.tac-reframe__handoff { max-width: 600px; margin: var(--space-9) auto 0; text-align: center;
  font-size: var(--fs-lead); line-height: 1.6; color: var(--color-text); font-weight: 600; }
.tac-reframe__handoff strong { color: var(--color-accent); }

.tac-reframe__pull { max-width: 720px; margin: var(--space-12) auto 0; padding: var(--space-7) 0 0;
  border-top: 1px solid rgba(18,18,18,0.14);
  font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.2rem); line-height: 1.2; text-align: center; color: var(--color-text); }

@media (max-width: 600px) {
  .tac-reframe__body p, .tac-reframe__handoff { font-size: var(--fs-small); }
  .tac-reframe__kick { font-size: 1.05rem !important; }
}


/* ===== introducing the AI course ===== */
.tac-intro__lead { max-width: 620px; margin: var(--space-6) auto 0; }
.tac-intro__lead p { font-size: var(--fs-lead); line-height: 1.6; color: var(--color-text); margin: 0 0 var(--space-4); }
.tac-intro__lead p:last-child { margin-bottom: 0; }

.tac-intro__dream { max-width: 760px; margin: var(--space-12) auto 0; padding: 0; background: none; border: none; text-align: center; }
.tac-intro__dream p { font-size: var(--fs-lead); line-height: 1.65; color: var(--color-text); margin: 0 0 var(--space-4); }
.tac-intro__dream p:last-child { margin-bottom: 0; }
.tac-intro__dream-open { font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700;
  font-size: clamp(1.6rem, 4.4vw, 3rem) !important; line-height: 1.05 !important; color: var(--color-text);
  text-align: center; margin-bottom: var(--space-4) !important; }
.tac-intro__dream-hl { font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem) !important; color: var(--color-accent) !important; text-align: center; margin: 0 auto var(--space-8) !important; }
/* dream is a single centred column */
.tac-final__sig { display: inline-block; height: clamp(34px, 6vw, 52px); width: auto; margin-top: 6px; }
@media (max-width: 760px) { .tac-intro__dream { margin-top: var(--space-10); } }

.tac-intro .tac-cta { margin-top: var(--space-12); }

@media (max-width: 600px) {
  .tac-intro__lead p, .tac-intro__dream p { font-size: var(--fs-small); }
  .tac-intro__dream { padding: 0; }
  .tac-intro__dream-open { font-size: clamp(1.45rem, 6vw, 2rem) !important; }
  .tac-intro__dream-hl { font-size: 1.05rem !important; }
}


/* ===== build your AI team in 4 layers ===== */
.tac-layers__intro { max-width: 620px; margin: var(--space-5) auto 0; }
.tac-layers__intro p { font-size: var(--fs-lead); line-height: 1.6; color: var(--color-text); margin: 0 0 var(--space-3); }
.tac-layers__intro p:last-child { margin-bottom: 0; }

.tac-layers { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); margin-top: var(--space-9); align-items: stretch; }
.tac-layer {
  background: #fff;
  border-top: 2px solid #ffffff; border-left: 2px solid #ffffff;
  border-right: 2px solid #5e5e5e; border-bottom: 2px solid #5e5e5e;
  box-shadow: inset -1px -1px 0 #adadad, inset 2px 2px 0 #ffffff, 3px 3px 0 rgba(18,18,18,0.16);
  padding: var(--space-5) var(--space-6); text-align: center; display: flex; flex-direction: column; align-items: center;
}
.tac-layer__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; margin-bottom: var(--space-4); color: var(--color-accent);
  background: #eef0f3;
  border-top: 2px solid #ffffff; border-left: 2px solid #ffffff;
  border-right: 2px solid #8a8a8a; border-bottom: 2px solid #8a8a8a;
}
.tac-layer__ico svg { width: 38px; height: 38px; display: block; }
.tac-layer__title { font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700; font-size: 1.25rem; line-height: 1.05; color: var(--color-text); margin: 0 0 var(--space-3); }
.tac-layer__title span { display: block; margin-top: 4px; font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.66rem; letter-spacing: 1px; text-transform: uppercase; color: var(--color-accent); }
.tac-layer__lead { font-weight: 700; font-size: 0.9rem; line-height: 1.4; color: var(--color-text); margin: 0 0 var(--space-2); }
.tac-layer__body { font-size: 0.82rem; line-height: 1.5; color: #4a4a4a; margin: 0 0 var(--space-3); }
.tac-layer__eg { font-size: 0.76rem; line-height: 1.45; color: #555; margin: auto 0 0; padding-top: var(--space-3); border-top: 1px solid rgba(18,18,18,0.1); }
.tac-layer__eg b { color: var(--color-accent); font-weight: 700; }

.tac-layers__closer { max-width: 640px; margin: var(--space-9) auto 0; text-align: center; font-size: var(--fs-lead); line-height: 1.6; color: var(--color-text); }
.tac-layers__closer b { color: var(--color-accent); font-weight: 700; }

@media (max-width: 900px) {
  .tac-layers { gap: var(--space-3); }
  .tac-layer { padding: var(--space-4) var(--space-3); }
  .tac-layer__title { font-size: 1.05rem; }
  .tac-layer__body { font-size: 0.76rem; }
  .tac-layer__eg { font-size: 0.7rem; }
}
@media (max-width: 620px) {
  .tac-layers { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .tac-layer__ico { width: 48px; height: 48px; }
  .tac-layer__ico svg { width: 30px; height: 30px; }
  .tac-layers__intro p { font-size: var(--fs-small); }
}

/* =====================================================
   HOW IT WORKS — the 6 sessions (always 2 rows of 3)
   ===================================================== */
.tac-howbuild__format {
  max-width: 720px; margin: var(--space-5) auto 0;
  font-size: var(--fs-lead); line-height: 1.6; color: var(--color-text);
}
.tac-howbuild__format b { color: var(--color-accent); font-weight: 700; }
/* locked 3-across, 2 rows — never collapses; cards shrink instead */
.tac-howbuild__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4); margin-top: var(--space-10); margin-bottom: var(--space-10); align-items: stretch;
}
.tac-hbcard {
  background: #fff; border: 1px solid var(--color-border);
  padding: var(--space-5); text-align: left;
  display: flex; flex-direction: column;
}
.tac-hbcard__head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-4); }
.tac-hbcard__num { font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; color: var(--color-accent); }
.tac-hbcard__ico { font-size: 1.5rem; line-height: 1; }
.tac-hbcard__title { font-family: 'PP Neue Bit','Space Mono',monospace; font-weight: 700; font-size: 1.18rem; line-height: 1.1; color: var(--color-text); margin: 0 0 var(--space-3); }
.tac-hbcard__tag { display: inline-block; margin-left: 6px; font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase; color: var(--color-accent); vertical-align: middle; white-space: nowrap; }
.tac-hbcard__body { font-size: 0.85rem; line-height: 1.5; color: #4a4a4a; margin: 0; }
.tac-howbuild__note { max-width: 720px; margin: var(--space-7) auto 0; text-align: center; font-family: var(--font-mono); font-size: 0.8rem; line-height: 1.55; color: var(--color-text-muted); }
.tac-howbuild__note b { color: var(--color-text); }

@media (max-width: 760px) {
  .tac-howbuild__grid { gap: var(--space-2); margin-top: var(--space-8); margin-bottom: var(--space-8); }
  .tac-hbcard { padding: var(--space-3); }
  .tac-hbcard__head { margin-bottom: var(--space-3); }
  .tac-hbcard__title { font-size: 0.92rem; }
  .tac-hbcard__body { font-size: 0.72rem; line-height: 1.45; }
  .tac-hbcard__ico { font-size: 1.15rem; }
  .tac-hbcard__num { font-size: 0.68rem; }
}
@media (max-width: 480px) {
  .tac-howbuild__grid { gap: 6px; }
  .tac-hbcard { padding: 10px 8px; }
  .tac-hbcard__head { margin-bottom: 8px; }
  .tac-hbcard__title { font-size: 0.72rem; margin-bottom: 6px; }
  .tac-hbcard__body { font-size: 0.62rem; line-height: 1.4; }
  .tac-hbcard__ico { font-size: 0.95rem; }
  .tac-hbcard__num { font-size: 0.58rem; }
  .tac-hbcard__tag { display: none; }
}


/* ===== parked sections (review only, below the footer) ===== */
.tac-parked { border-top: 6px dashed #c0392b; margin-top: var(--space-16); padding-top: var(--space-8); background: repeating-linear-gradient(45deg, #fff, #fff 12px, #fbf3f2 12px, #fbf3f2 24px); }
.tac-parked__label { max-width: var(--container-max); margin: 0 auto var(--space-8); padding: 12px 18px; font-family: 'Space Mono', monospace; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: #c0392b; background: #fff; border: 1px dashed #c0392b; text-align: center; }


/* ===================== PHASE 2 SECTIONS ===================== */

/* #8 what's included */
.tac-incl__list { list-style: none; padding: 0; margin: var(--space-8) auto 0; max-width: 920px; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5) var(--space-7); }
.tac-incl__list li { position: relative; padding-left: 30px; font-size: var(--fs-small); line-height: 1.55; color: #555; }
.tac-incl__list li::before { content: ""; position: absolute; left: 0; top: 0.3em; width: 16px; height: 14px; background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9' shape-rendering='crispEdges'><g fill='%23173EF5'><rect x='0' y='3' width='5' height='3'/><rect x='5' y='1' width='1' height='7'/><rect x='6' y='2' width='1' height='5'/><rect x='7' y='3' width='1' height='3'/><rect x='8' y='4' width='1' height='1'/></g></svg>") center / contain no-repeat; transform: none; }
.tac-incl__list li strong { color: var(--color-text); display: block; margin-bottom: 3px; font-size: var(--fs-body); }
.tac-incl__bonus { max-width: 680px; margin: var(--space-12) auto 0; padding: 0; background: none; border: none; text-align: center; }
.tac-incl__bonus p { margin: 0; font-size: var(--fs-body); line-height: 1.6; color: var(--color-text); }
.tac-incl__was { color: var(--color-text-muted); text-decoration: line-through; }
.tac-incl .tac-cta { margin-top: var(--space-8); }

/* #12 two rooms */
.tac-rooms__wrap { overflow-x: auto; margin-top: var(--space-8); }
.tac-rooms__table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 640px; }
.tac-rooms__table th { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: var(--color-accent); padding: 12px 14px; text-align: left; }
.tac-rooms__table td { padding: 14px; border: 1px solid #e3e3e9; color: #555; vertical-align: top; }
.tac-rooms__table td b { color: var(--color-text); }
.tac-rooms__table tbody tr:nth-child(even) td { background: #f7f7f9; }
.tac-rooms__table tbody tr:nth-child(odd) td { background: #ffffff; }
.tac-rooms__notes { max-width: 720px; margin: var(--space-12) auto var(--space-6); }
.tac-rooms__notes p { font-size: var(--fs-small); line-height: 1.55; color: #555; margin: 0 0 var(--space-2); text-align: center; }
.tac-rooms__hot { color: var(--color-accent) !important; font-weight: 700; }

/* #13 roi */
.tac-roi__body { max-width: none; margin: 0; text-align: left; }
.tac-roi__body p { font-size: var(--fs-lead); line-height: 1.6; color: var(--color-text); margin: 0 0 var(--space-4); }
.tac-roi__body p strong { color: var(--color-accent); }
.tac-roi__big { font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700; font-size: clamp(1.4rem, 3vw, 2rem) !important; line-height: 1.2 !important; }
.tac-roi__anchor { font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700; font-size: clamp(1.2rem, 2.4vw, 1.6rem) !important; color: var(--color-text) !important; margin-top: var(--space-6) !important; }

/* #16 guarantee */
.tac-grnt__box { max-width: 860px; margin: var(--space-8) auto 0; display: flex; align-items: center; gap: var(--space-8); padding: var(--space-8) var(--space-10); border: 2px solid var(--color-accent); background: var(--color-accent-light); text-align: left; animation: tac-grnt-glow 2.6s ease-in-out infinite; }
@keyframes tac-grnt-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(23,62,245,0); } 50% { box-shadow: 0 0 24px 3px rgba(23,62,245,0.45); } }
.tac-grnt__seal { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; color: var(--color-accent); font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700; font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1; white-space: nowrap; }
.tac-grnt__text p { margin: 0 0 var(--space-3); font-size: var(--fs-body); line-height: 1.6; color: var(--color-text); }
.tac-grnt__text p:last-child { margin-bottom: 0; }
@media (max-width: 600px) { .tac-grnt__box { flex-direction: column; text-align: center; padding: var(--space-5); } }

/* #15 pricing two tiers */
.tac-pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: stretch; max-width: 940px; margin: var(--space-6) auto 0; }
.tac-pricing__grid .tac-price-card { max-width: none; margin: 0; width: 100%; }
[data-seats] { color: var(--color-accent); font-weight: 700; }
.tac-price__name span { color: var(--color-accent); }
.tac-price__fine { text-align: center; font-size: 0.78rem; color: var(--color-text-muted); margin-top: var(--space-3); }
.tac-price__vipintro { font-size: 0.9rem; line-height: 1.5; margin: var(--space-2) 0 var(--space-4); color: var(--color-text); }
.tac-price__seats { font-size: 0.8rem; line-height: 1.5; margin: var(--space-4) 0; font-family: 'Space Mono', monospace; color: var(--color-text-secondary); }
.tac-price-card--vip { background: #0e0e12; color: #fff; }
.tac-price-card--vip .tac-price__name { color: rgba(255,255,255,0.7); }
.tac-price-card--vip .tac-price__name span { color: #6bff9a; }
.tac-price-card--vip .tac-price__amount .now { color: #fff; }
.tac-price-card--vip .tac-price__amount .was { color: rgba(255,255,255,0.4); }
.tac-price-card--vip .tac-price__plan, .tac-price-card--vip .tac-price__vipintro { color: rgba(255,255,255,0.85); }
.tac-price-card--vip .tac-price__seats { color: rgba(255,255,255,0.65); }
.tac-price-card--vip .tac-list li { color: rgba(255,255,255,0.85); }
.tac-price-card--vip .tac-list li strong { color: #fff; }

.tac-price-card__flag--vip { background: #fff; color: #0e0e12; }
@media (max-width: 760px) { .tac-pricing__grid { grid-template-columns: 1fr; max-width: 460px; } }


/* ===================== PHASE 3/4 polish ===================== */
/* #11 who note */
.tac-aud__note { max-width: 660px; margin: var(--space-8) auto 0; text-align: center; font-size: var(--fs-body); line-height: 1.6; color: #555; }

/* #14 testimonial quotes (2-up, longer quotes) */
/* testimonial carousel styles consolidated below */
.tac-proof__cta { margin-top: var(--space-12); }
/* mobile handled by the carousel below */

/* #18 final extras (dark section) */
.tac-final__dates { font-family: 'Space Mono', monospace; font-weight: 700; color: #fff; margin-top: var(--space-4) !important; }
.tac-final__sign { margin-top: var(--space-6); font-style: italic; color: rgba(255,255,255,0.7); }
.tac-final__sign strong { font-style: normal; color: #fff; font-family: 'PP Neue Bit','Space Mono',monospace; }

/* #19 footer links/contact (over the mural) */
.tac-foot__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 12px; margin: var(--space-4) 0 var(--space-2); font-family: var(--font-mono); font-size: 0.74rem; }
.tac-foot__links a { color: rgba(255,255,255,0.88); text-decoration: none; }
.tac-foot__links a:hover { color: #fff; text-decoration: underline; }
.tac-foot__links span { color: rgba(255,255,255,0.4); }
.tac-foot__contact { font-size: 0.78rem; color: rgba(255,255,255,0.82); margin: 0 0 var(--space-2); }
.tac-foot__contact a, .tac-foot__legal a { color: #fff; }


/* who-section pinned swap: centre box content + reduced-motion fallback */
.tac-who-shift .tac-shift__box { display: flex; flex-direction: column; justify-content: center; }
@media (prefers-reduced-motion: reduce) {
  .tac-shift__cards { height: auto; display: flex; flex-direction: column; gap: var(--space-6); align-items: center; }
  .tac-shift__card { position: static; top: auto; left: auto; transform: none !important; opacity: 1 !important; width: min(900px, 94vw); }
  .tac-shift__hint { display: none; }
}


/* reduce for-box + reframe hover cascade (batch) */
.tac-aud__col--for { padding-top: calc(var(--space-8) - 20px); padding-bottom: calc(var(--space-8) - 20px); }
#reframe .tac-list--arrow li { isolation: isolate; overflow: hidden; }
#reframe .tac-list--arrow li::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: center / cover no-repeat; opacity: 0; transition: opacity 350ms ease; pointer-events: none;
}
.is-loaded #reframe .tac-list--arrow li::after { background-image: url('assets/gif/cascade-1080.gif'); }
#reframe .tac-list--arrow li:hover::after { opacity: 0.18; }


/* ===== batch tweaks (moon / dna / testimonials / founder gap) ===== */
#founder { padding-bottom: var(--space-1); }
.tac-problem { position: relative; padding-top: var(--space-3); }
.tac-problem > .container { position: relative; z-index: 1; }
.tac-problem__moon { position: absolute; left: 0; right: 0; bottom: 0; z-index: 0; margin: 0; pointer-events: none; line-height: 0; }
.tac-problem__moon img { width: 100%; height: auto; display: block; opacity: 0.85; max-width: none; }
.tac-intro { position: relative; }
.tac-intro > .container { position: relative; z-index: 1; }
.tac-intro__dna { position: absolute; right: -3%; top: 50%; transform: translateY(-50%); width: clamp(200px, 24vw, 340px); opacity: 0.1; z-index: 0; pointer-events: none; }
/* testimonials = continuous left-to-right carousel: two cards in view, pause on hover */
.tac-proof__track--quotes { display: flex; flex-wrap: nowrap; align-items: stretch; gap: 0; width: max-content;
  animation: tac-marq-right 46s linear infinite; }
.tac-proof__track--quotes:hover { animation-play-state: paused; }
.tac-proof__track--quotes .tac-pcard { flex: 0 0 auto; width: min(440px, 84vw); aspect-ratio: 7 / 5; margin-right: var(--space-5);
  padding: var(--space-5); gap: var(--space-3); overflow: hidden; }
.tac-proof__track--quotes .tac-pcard__by { display: flex; align-items: center; gap: 14px; margin: 0 0 var(--space-3);
  padding-bottom: var(--space-3); border-bottom: 1px solid rgba(18,18,18,0.1); }
.tac-proof__track--quotes .tac-pcard__by b { color: #000; font-size: 0.95rem; }
.tac-proof__track--quotes .tac-pcard__by > span > span { color: var(--color-accent); }
.tac-proof__track--quotes .tac-pcard__q { font-size: 0.72rem; line-height: 1.45; font-style: italic; margin: 0; overflow: hidden; }
.tac-pcard__pic { width: 64px; height: 64px; border-radius: 50% !important; object-fit: cover; flex: 0 0 auto; border: 2px solid var(--color-accent); background: #ddd; }
@media (prefers-reduced-motion: reduce) { .tac-proof__track--quotes { animation: none; } .tac-proof { overflow-x: auto; } }


/* force-centre layer closer + how-it-works note */
.tac-layers-sec .tac-layers__closer, #sessions .tac-howbuild__note { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
.tac-incl__bonus p { text-align: center; }


/* ===== problem quotes carousel (one at a time) ===== */
.tac-problem__quotes { display: block !important; grid-template-columns: none !important; position: relative; max-width: 600px; min-height: 116px; margin: var(--space-4) auto var(--space-9); gap: 0; }
.tac-problem__quotes li { position: absolute; inset: 0; margin: 0; padding: var(--space-3) var(--space-4); background: none; border-left: none; color: var(--color-accent); font-weight: 600; display: flex; align-items: center; justify-content: center; text-align: center; opacity: 0; transform: translateX(-64px); transition: opacity 0.42s ease, transform 0.42s ease; pointer-events: none; }
.tac-problem__quotes li.is-active { opacity: 1; transform: translateX(0); }
.tac-problem__quotes li.is-leaving { opacity: 0; transform: translateX(64px); }


/* ===== what's included: arrow letter-erase ===== */
.tac-incl__list li::before { display: none !important; }
.tac-incl__txt { display: inline; }
.tac-incl__word { display: inline-block; white-space: nowrap; }
.tac-incl__arrow { position: absolute; left: 0; top: 0.28em; width: 16px; height: 14px; background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9' shape-rendering='crispEdges'><g fill='%23173EF5'><rect x='0' y='3' width='5' height='3'/><rect x='5' y='1' width='1' height='7'/><rect x='6' y='2' width='1' height='5'/><rect x='7' y='3' width='1' height='3'/><rect x='8' y='4' width='1' height='1'/></g></svg>") center / contain no-repeat; will-change: transform, opacity; transition: opacity 0.12s ease; z-index: 2; }


/* ===== what's included: pinned-scroll erase ===== */
.tac-incl__track { position: relative; height: 200vh; }
.tac-incl__stage { position: sticky; top: 0; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: var(--space-6); padding: 118px 0 var(--space-6); }
.tac-incl__after { margin-top: var(--space-6); }
@media (prefers-reduced-motion: reduce) { .tac-incl__track { height: auto; } .tac-incl__stage { position: static; min-height: 0; padding: var(--space-8) 0; } }


/* 8-bit (tabler) icons in how-it-works cards */
.tac-hbcard__ico { color: var(--color-accent); display: inline-flex; }
.tac-hbcard__ico svg { width: 30px; height: 30px; display: block; }


/* hide video speaker indicator (hover still unmutes) */
.tac-wol-spk { display: none !important; }


/* ===== ROI: two-column layout + pixel calculator ===== */
.tac-roi__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: var(--space-8); align-items: center; max-width: 1040px; margin: var(--space-8) auto 0; }
.tac-roi__calcwrap { display: flex; flex-direction: column; align-items: center; }
.tac-calc { width: 100%; max-width: 340px; background: #ffffff url("assets/images/ascii-calc.png") center / 100% 100% no-repeat;
  border: 2px solid #173EF5; padding: 18px 16px; box-shadow: 6px 6px 0 rgba(23,62,245,0.16);
  outline: none; -webkit-user-select: none; user-select: none; }
.tac-calc:focus-visible { box-shadow: inset -6px -10px 0 rgba(0,0,0,0.22), inset 4px 4px 0 rgba(255,255,255,0.14), 0 0 0 3px var(--color-accent); }
.tac-calc__screen { background: #e4e4f8; border: 4px solid #16161a; padding: 10px 12px; margin-bottom: 12px; min-height: 58px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px; overflow: hidden; cursor: pointer; }
.tac-calc__val { font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700; color: var(--color-accent);
  font-size: clamp(1.8rem, 5vw, 2.7rem); line-height: 1; letter-spacing: 1px; white-space: nowrap; }
.tac-calc__keys { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.tac-calc__key { font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700; font-size: 1.55rem; color: #16161a;
  background: #ffffff; border: 3px solid #16161a; aspect-ratio: 1 / 1; cursor: pointer; padding: 0; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset -3px -3px 0 rgba(0,0,0,0.18), inset 3px 3px 0 rgba(255,255,255,0.6); }
.tac-calc__key--op { color: var(--color-accent); }
.tac-calc__key:hover { background: #f0f1f4; }
.tac-calc__key:active, .tac-calc__key.is-press { background: #e2e4e9; transform: translate(1px, 1px);
  box-shadow: inset 3px 3px 0 rgba(0,0,0,0.22); }
.tac-calc__hint { font-family: 'Space Mono', monospace; font-size: 0.72rem; letter-spacing: 0.4px; color: var(--color-text-secondary);
  text-align: center; margin: 14px 0 0; }
@media (max-width: 860px) {
  .tac-roi__grid { grid-template-columns: 1fr; gap: var(--space-6); max-width: 560px; }
  .tac-roi__body { text-align: left; }
}


/* ===== course section: two-rod scroll that unrolls as you scroll ===== */
.tac-intro { position: relative; }
.tac-intro__dna { display: none; }
.tac-scrolltrack { position: relative; z-index: 1; }
.tac-scroll { position: relative; width: min(820px, 92vw); margin: 0 auto;
  display: flex; flex-direction: column; will-change: height; }
.tac-scroll__top, .tac-scroll__btm { width: 100%; aspect-ratio: 604 / 112; flex: 0 0 auto;
  background-repeat: no-repeat; background-position: center; background-size: 100% 100%; }
.tac-scroll__top { background-image: url("assets/images/scroll-rod-top.png"); }
.tac-scroll__btm { background-image: url("assets/images/scroll-rod-btm.png"); margin-top: -2px; }
.tac-scroll__sheet { flex: 1 1 auto; min-height: 0; overflow: hidden; position: relative; background: #ffffff url("assets/images/scroll-parch.png") top center / 100% auto repeat-y; }
.tac-scroll__content { padding: var(--space-4) clamp(48px, 6vw, 92px) var(--space-7); text-align: center; }
@media (prefers-reduced-motion: reduce) {
  .tac-scroll { position: relative; top: 0; height: auto !important; }
  .tac-scroll__sheet { overflow: visible; }
  .tac-scroll__content { transform: none !important; }
}
@media (max-width: 600px) { .tac-scroll { width: 92vw; } .tac-scroll__content { padding: var(--space-3) 26px var(--space-5); } }

/* ===== ROI calculator: quick-estimate presets + screen flash ===== */
.tac-calc__presets { display: flex; gap: 6px; width: 100%; margin: 0 0 10px; }
.tac-calc__preset { flex: 1 1 0; min-width: 0; cursor: pointer; padding: 8px 2px; white-space: nowrap;
  font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.55rem; letter-spacing: 0.2px; text-transform: uppercase;
  color: #fff; background: var(--color-accent); border: 2px solid #16161a; box-shadow: 3px 3px 0 rgba(23,62,245,0.2);
  transition: transform .08s ease, background .15s ease; }
.tac-calc__preset:hover { background: #2a4bff; }
.tac-calc__preset:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(23,62,245,0.2); }
@keyframes tac-calc-flash {
  0%   { box-shadow: 0 0 0 0 rgba(23,62,245,0); background: #e4e4f8; }
  28%  { box-shadow: 0 0 0 4px var(--color-accent), 0 0 24px rgba(23,62,245,0.65); background: #ffffff; }
  100% { box-shadow: 0 0 0 0 rgba(23,62,245,0); background: #e4e4f8; }
}
.tac-calc__screen.is-flash { animation: tac-calc-flash 0.6s ease; }


/* ===== ROI calculator: screen label, clear button ===== */
.tac-calc__label { font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700; color: var(--color-accent);
  font-size: clamp(0.72rem, 2.3vw, 0.95rem); line-height: 1.05; letter-spacing: 0.5px; text-align: left; text-transform: lowercase;
  max-width: 56%; white-space: normal; }
.tac-calc__clear { width: 100%; margin-top: 8px; padding: 9px; cursor: pointer;
  font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700; font-size: 1.05rem; letter-spacing: 3px; text-transform: uppercase;
  color: #16161a; background: #ffffff; border: 3px solid #16161a;
  box-shadow: inset -3px -3px 0 rgba(0,0,0,0.18), inset 3px 3px 0 rgba(255,255,255,0.6); }
.tac-calc__clear:hover { background: #f0f1f4; }
.tac-calc__clear:active { transform: translate(1px, 1px); box-shadow: inset 3px 3px 0 rgba(0,0,0,0.22); }

/* ===== hands ascii banner at top of the problem section ===== */
.tac-problem__hands { width: 100%; margin: 0 0 clamp(-235px, -15vw, -120px); line-height: 0; pointer-events: none; position: relative; z-index: 0; }
.tac-problem > .container { position: relative; z-index: 1; }
.tac-problem__hands img { width: 100%; height: auto; display: block; opacity: 0.8; }

/* ===== dna ascii behind the two-rooms section ===== */
.tac-rooms { position: relative; overflow: hidden; }
.tac-rooms > .container, .tac-rooms > .tac-wide { position: relative; z-index: 1; }
.tac-rooms__dna { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); z-index: 0; line-height: 0; pointer-events: none; }
.tac-rooms__dna img { width: 100%; height: auto; display: block; opacity: 0.4; }


/* cut the grey gap above the What's Included heading */
#included { padding-top: var(--space-3); }

/* VIP secondary CTA under each early-bird Enrol button */
.tac-cta--vip { display: block; width: fit-content; margin: var(--space-3) auto 0;
  font-size: 1.05rem; padding: 19px 38px; background: #0e0e12; color: #fff;
  border: 2px solid #0e0e12; box-shadow: none; }
.tac-cta--vip:hover { background: #26262e; color: #fff; box-shadow: none; }
.tac-cta--vip .tac-cta__price { opacity: 1; font-weight: 700; }
.tac-hero .tac-cta--vip { background: #0e0e12; color: #fff; border-color: #0e0e12; }
.tac-hero .tac-cta--vip:hover { background: #26262e; color: #fff; }

/* calculator "Click here" cue, to the right of the presets */
.tac-roi__calcwrap { position: relative; }
.tac-calc__cue { position: absolute; top: 108px; left: calc(50% + 184px); display: flex; align-items: center; gap: 8px;
  color: var(--color-accent); white-space: nowrap; pointer-events: none; }
.tac-calc__cue-arrow { width: 40px; height: 18px; flex: 0 0 auto; transform: scaleX(-1);
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9' shape-rendering='crispEdges'><g fill='%23173EF5'><rect x='0' y='3' width='5' height='3'/><rect x='5' y='1' width='1' height='7'/><rect x='6' y='2' width='1' height='5'/><rect x='7' y='3' width='1' height='3'/><rect x='8' y='4' width='1' height='1'/></g></svg>") left center / contain no-repeat; }
.tac-calc__cue-text { font-family: 'PP Neue Bit', 'Space Mono', monospace; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.5px; }
@media (max-width: 900px) { .tac-calc__cue { display: none; } }


/* ===== purchase CTA stack: Enrol + VIP, same size, aligned, consistent gap ===== */
.tac-ctastack { display: flex; flex-direction: column; align-items: stretch; gap: var(--space-2); width: fit-content; margin-left: auto; margin-right: auto; }
.tac-ctastack .tac-cta { width: 100%; margin: 0; box-sizing: border-box; justify-content: center; }
.tac-cta-wrap .tac-ctastack { margin: 0; }

/* ===== countdown headings + light variant for the pricing block ===== */
.tac-final__counthd { font-family: 'Silkscreen', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.82); text-align: center; margin: var(--space-6) 0 var(--space-3); }
.tac-final .tac-count { margin: 0 auto var(--space-6); }
.tac-pricing__counthd { font-family: 'Silkscreen', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--color-text-secondary); text-align: center; margin: var(--space-10) 0 var(--space-3); }
.tac-count--ink { margin: 0 auto; }
.tac-count--ink .tac-count__unit { background: var(--color-accent-light); border: 1px solid rgba(23,62,245,0.3); color: var(--color-text); }
.tac-count--ink .tac-count__n { color: var(--color-accent); }
.tac-count--ink .tac-count__l { color: var(--color-text-secondary); opacity: 1; }
