/* ============================================================
   Wild Rover — Tempo template emulation
   Lorem ipsum + picsum placeholders. Layout/typography only.
   ============================================================ */

:root {
  /* Colors — Wild Rover palette */
  --color-ink: #16325c;            /* navy — primary text, dark surfaces */
  --color-ink-deep: #00244c;       /* deep navy — final CTA band, max contrast */
  --color-ink-soft: #4a5b78;       /* secondary text (desaturated navy) */
  --color-muted: #7a8aa0;          /* tertiary text, labels */
  --color-line: #e8e3d6;           /* hairline borders (cream-tinted) */
  --color-canvas: #ffffff;         /* page background */
  --color-surface: #f2debb;        /* cream — alt section bg */
  --color-surface-soft: #fbf6e8;   /* lighter cream — gentler alt */
  --color-accent: #f0ab2f;         /* gold — primary CTA accent / metric */
  --color-accent-soft: rgba(240, 171, 47, 0.15);

  /* Typography — PT Serif everywhere */
  --font-sans: 'PT Serif', Georgia, 'Times New Roman', serif;
  --font-mono: 'PT Serif', Georgia, 'Times New Roman', serif;

  /* Layout */
  --gutter: clamp(20px, 4vw, 56px);
  --max-content: 1200px;
  --section-y: clamp(48px, 5.5vw, 80px);
  --radius-card: 18px;
  --radius-btn: 10px;
  --shadow-card: 0 1px 2px rgba(22, 50, 92, 0.04), 0 8px 24px rgba(22, 50, 92, 0.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--color-canvas);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  border: 0; padding: 0; white-space: nowrap;
  clip-path: inset(100%); clip: rect(0 0 0 0); overflow: hidden;
}

/* ============ SHARED SECTION TOKENS ============ */
.t-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.t-section__header--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.t-eyebrow {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--color-accent);
  margin: 0 0 16px;
}
.t-pricing .t-eyebrow {
  color: var(--color-ink);
}
.t-section__title {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0 0 20px;
}
.t-section__title--balanced {
  max-width: none;
}
.t-section__lede {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-ink-soft);
  margin: 0;
  letter-spacing: -0.005em;
}

/* ============ BUTTONS ============ */
.btn-t {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.005em;
  padding: 13px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-t--primary {
  background: var(--color-ink);
  color: var(--color-canvas);
  border-color: var(--color-ink);
}
.btn-t--primary:hover {
  background: #0f2547;
  border-color: #0f2547;
  transform: translateY(-1px);
}
.btn-t--outline {
  background: var(--color-canvas);
  color: var(--color-ink);
  border-color: var(--color-line);
}
.btn-t--outline:hover {
  border-color: var(--color-ink);
}
.btn-t--ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: transparent;
}
.btn-t--ghost:hover {
  color: var(--color-accent);
}
.btn-t--accent {
  background: var(--color-accent);
  color: var(--color-canvas);
  border-color: var(--color-accent);
  font-weight: 700;
}
.btn-t--accent:hover {
  background: #d99422;
  border-color: #d99422;
  color: var(--color-canvas);
  transform: translateY(-1px);
}
.btn-t--lg {
  padding: 16px 28px;
  font-size: 16px;
}
.btn-t--block {
  width: 100%;
}

/* ============ NAV (logo left, links center, CTAs right, sticky) ============ */
.t-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: top 260ms cubic-bezier(.2,.7,.2,1);
}
.t-nav__inner {
  transition: max-width 280ms cubic-bezier(.2,.7,.2,1), padding 280ms cubic-bezier(.2,.7,.2,1), background 220ms ease, border-radius 280ms cubic-bezier(.2,.7,.2,1), border-color 220ms ease, box-shadow 220ms ease;
}
.t-nav__logo img {
  transition: height 280ms cubic-bezier(.2,.7,.2,1);
}

/* ============ NAV — FLOATING PILL STATE (after scroll) ============ */
.t-nav--floating {
  top: 14px;
}
.t-nav--floating .t-nav__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 8px 22px;
  background: #ffffff;
  border-radius: 9999px;
  border: 1px solid rgba(232, 227, 214, 0.6);
  box-shadow: 0 14px 44px rgba(22, 50, 92, 0.14);
}
.t-nav--floating .t-nav__logo img {
  height: 34px;
}
.t-nav--floating .t-nav__link {
  color: var(--color-ink);
  text-shadow: none;
}
.t-nav--floating .t-nav__link:hover {
  background: rgba(22, 50, 92, 0.08);
  color: var(--color-ink);
}
.t-nav.t-nav--floating .btn-t--primary {
  background: var(--color-ink);
  color: var(--color-canvas);
  border-color: var(--color-ink);
  padding: 10px 18px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(22, 50, 92, 0.20);
}
.t-nav.t-nav--floating .btn-t--primary:hover {
  background: var(--color-ink-deep);
  border-color: var(--color-ink-deep);
  color: var(--color-canvas);
}

/* Logo light/dark variants — keep all-white logo in both states, tint navy when floating */
.t-nav__logo img.t-nav__logo-dark { display: none !important; }
.t-nav__logo img.t-nav__logo-light {
  transition: filter 280ms cubic-bezier(.2,.7,.2,1);
}
.t-nav--floating .t-nav__logo img.t-nav__logo-light {
  filter: brightness(0) saturate(100%) invert(13%) sepia(74%) saturate(1844%) hue-rotate(202deg) brightness(94%) contrast(98%);
}
.t-nav__link,
.t-nav__textlink {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.30);
}
.t-nav__link:hover,
.t-nav__textlink:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-canvas);
}
.t-nav .btn-t--primary {
  background: var(--color-canvas);
  color: var(--color-ink);
  border-color: var(--color-canvas);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}
.t-nav .btn-t--primary:hover {
  background: var(--color-surface);
  border-color: var(--color-surface);
  color: var(--color-ink);
}
.t-nav__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.t-nav__logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  line-height: 0;
}
.t-nav__logo img {
  height: 96px;
  width: auto;
  display: block;
}
.t-nav__menu {
  display: flex;
  gap: 8px;
  justify-self: center;
}
.t-nav__link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.30);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 180ms ease, color 180ms ease;
}
.t-nav__link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-canvas);
}
.t-nav__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-self: end;
}
.t-nav__textlink {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-ink);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 180ms ease;
}
.t-nav__textlink:hover { background: var(--color-surface); }

/* ============ HERO (centered, light bg, stacked CTAs) ============ */
.t-hero {
  position: relative;
  margin-top: calc(-1 * (96px + 32px + 1px)); /* pull under sticky nav (logo 96 + padding 32 + border 1) */
  min-height: calc(100vh + 96px + 32px + 1px); /* visible height = exactly 100vh */
  padding: clamp(140px, 14vw, 180px) var(--gutter) clamp(40px, 5vw, 72px);
  background: var(--color-canvas);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--color-ink-deep);
}
.t-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: t-hero-zoom 40s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes t-hero-zoom {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.12); }
}
.t-hero__veil {
  display: none;
}
.t-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.t-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 20px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.30);
}
.t-hero__title {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-canvas);
  margin: 0 0 20px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}
.t-hero__actions .btn-t {
  box-shadow: 0 6px 18px rgba(22, 50, 92, 0.16), 0 2px 4px rgba(22, 50, 92, 0.10);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.t-hero__actions .btn-t:hover {
  box-shadow: 0 10px 26px rgba(22, 50, 92, 0.22), 0 3px 6px rgba(22, 50, 92, 0.12);
  transform: translateY(-2px);
}
.t-hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 24px;
  max-width: 560px;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.30);
}
.t-hero__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.t-hero__note {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.30);
}
.t-hero__note a {
  color: var(--color-canvas);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* ============ HERO SEARCH BAR (typewriter) ============ */
.t-hero__search {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  padding: 14px 26px;
  margin: 0 auto 22px;
  max-width: min(580px, 92vw);
  width: 100%;
  box-shadow: 0 12px 32px rgba(22, 50, 92, 0.22), 0 4px 8px rgba(22, 50, 92, 0.10);
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--color-ink);
  text-align: left;
  letter-spacing: -0.005em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.t-hero__search-icon {
  color: var(--color-muted);
  display: inline-flex;
  flex-shrink: 0;
}
.t-hero__search-icon svg { width: 20px; height: 20px; }
.t-hero__search-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.t-hero__search-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--color-accent);
  border-radius: 1px;
  vertical-align: text-bottom;
  animation: t-hero-blink 1s steps(2) infinite;
  flex-shrink: 0;
  margin-left: 2px;
}
@keyframes t-hero-blink {
  to { opacity: 0; }
}

/* ============ SOCIAL PROOF (logo grid) ============ */
.t-logos {
  padding: var(--section-y) var(--gutter);
  background: var(--color-canvas);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.t-logos__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  text-align: center;
}
.t-logos__label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-accent);
  margin: 0 0 28px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.t-logos__viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.t-logos__track {
  display: flex;
  width: max-content;
  animation: t-logos-scroll 32s linear infinite;
  will-change: transform;
}
.t-logos:hover .t-logos__track {
  animation-play-state: paused;
}
.t-logos__grid {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.t-logos__grid li {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.01em;
  color: var(--color-canvas);
  opacity: 1;
  white-space: nowrap;
}
@keyframes t-logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .t-logos__track { animation: none; }
}

/* ============ PROBLEM STATEMENT ============ */
.t-problem {
  padding: var(--section-y) var(--gutter);
  background: var(--color-canvas);
}
.t-problem__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}
.t-pain {
  display: grid;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.t-pain__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: var(--color-surface-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
}
.t-pain__num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-muted);
  letter-spacing: -0.005em;
}
.t-pain__body { display: flex; flex-direction: column; gap: 6px; }
.t-pain__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  margin: 0;
}
.t-pain__text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-ink-soft);
  line-height: 1.5;
  margin: 0;
}
.t-pain__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-canvas);
  color: var(--color-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
}
.t-pain__icon svg { width: 22px; height: 22px; }

/* ============ BOTTLENECK MODULE (marquees + struck headline + cards + solves) ============ */
.t-bottleneck {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--color-ink-deep);
  color: var(--color-canvas);
  overflow: hidden;
  isolation: isolate;
}
.t-bottleneck__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center center;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 45%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 45%, #000 30%, transparent 80%);
  pointer-events: none;
}

/* Marquees */
.t-bottleneck__marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.t-bottleneck__marquee--top { margin-bottom: clamp(56px, 7vw, 96px); }
.t-bottleneck__marquee--bottom { margin: clamp(56px, 7vw, 96px) 0 clamp(72px, 10vw, 120px); }
.t-bottleneck__marquee-track {
  display: flex;
  width: max-content;
  animation: t-bottleneck-scroll 42s linear infinite;
}
.t-bottleneck__marquee-track--reverse {
  animation: t-bottleneck-scroll-reverse 38s linear infinite;
}
@keyframes t-bottleneck-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes t-bottleneck-scroll-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .t-bottleneck__marquee-track,
  .t-bottleneck__marquee-track--reverse { animation: none; }
}
.t-bottleneck__marquee-list {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  list-style: none;
  margin: 0;
  padding-left: 0;
  flex-shrink: 0;
}
.t-bottleneck__marquee-list li {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}
.t-bottleneck__dot {
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: var(--color-accent);
  flex-shrink: 0;
  padding: 0 !important;
}

/* Heading */
.t-bottleneck__heading {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
  padding: 0 var(--gutter);
}
.t-bottleneck__eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 28px;
}
.t-bottleneck__title {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--color-canvas);
}
.t-bottleneck__title-strike {
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.62);
}
.t-bottleneck__title-accent {
  display: block;
  color: var(--color-accent);
  margin-top: 6px;
}
.t-bottleneck__title-accent em {
  font-style: italic;
}

/* Cards */
.t-bottleneck__cards {
  position: relative;
  z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.t-bottleneck__card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
  padding: 28px;
  min-height: 200px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.t-bottleneck__card:hover {
  border-color: rgba(240, 171, 47, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(240, 171, 47, 0.04) 100%);
  transform: translateY(-3px);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(240, 171, 47, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}
.t-bottleneck__card-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.t-bottleneck__card-icon svg { width: 22px; height: 22px; }
.t-bottleneck__card-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}
.t-bottleneck__card-text {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: auto 0 0;
  padding-top: 56px;
}
.t-bottleneck__hl {
  color: var(--color-accent);
}

/* Solves block */
.t-bottleneck__solves {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.t-bottleneck__solves-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 28px;
}
.t-bottleneck__solves-title {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-canvas);
  margin: 0 0 28px;
  white-space: nowrap;
}
.t-bottleneck__solves-title em {
  font-style: italic;
  font-weight: 400;
}
.t-bottleneck__solves-body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
  max-width: 560px;
}

@media (max-width: 960px) {
  .t-bottleneck__cards { grid-template-columns: 1fr; }
}

/* ============ THREE-COLUMN FEATURE BLOCK ============ */
.t-three {
  padding: var(--section-y) var(--gutter);
  background: var(--color-canvas);
}
.t-three__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}
.t-three__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-three__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px;
  background: var(--color-surface-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
}
.t-three__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-canvas);
  color: var(--color-ink);
  border: 1px solid var(--color-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.t-three__icon svg { width: 24px; height: 24px; }
.t-three__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0;
}
.t-three__text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-ink-soft);
  margin: 0;
}

/* ============ STANDALONE MID-PAGE CTA ============ */
.t-cta-mid {
  padding: clamp(40px, 6vw, 72px) var(--gutter);
  background: var(--color-canvas);
  text-align: center;
}
.t-cta-mid__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

/* ============ SOLUTION (role tags + metric + CTA) ============ */
.t-solution {
  padding: var(--section-y) var(--gutter);
  background: var(--color-surface);
  text-align: center;
}
.t-solution__inner {
  max-width: 880px;
  margin: 0 auto;
}
.t-solution__roles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin: 0 0 40px;
}
.t-solution__roles li {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink-soft);
  background: var(--color-canvas);
  border: 1px solid var(--color-line);
  border-radius: 9999px;
  padding: 8px 16px;
  letter-spacing: -0.005em;
}
.t-solution__lockup {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0 0 56px;
  text-transform: none;
}
.t-solution__metric {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 44px 56px;
  background: var(--color-canvas);
  border: 1px solid var(--color-line);
  border-radius: 24px;
  margin: 0 0 40px;
  box-shadow: var(--shadow-card);
  min-width: 360px;
}
.t-solution__metric-num {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(72px, 9vw, 112px);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--color-accent);
}
.t-solution__metric-text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-ink-soft);
  margin: 0;
  max-width: 360px;
  line-height: 1.5;
}
.t-solution__body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-ink-soft);
  margin: 0 auto 32px;
  max-width: 580px;
  letter-spacing: -0.005em;
}

/* ============ HOW IT WORKS (vertical timeline) ============ */
.t-how {
  padding: var(--section-y) var(--gutter);
  background: var(--color-canvas);
}
.t-how__inner {
  max-width: 880px;
  margin: 0 auto;
}
.t-steps {
  display: grid;
  gap: 28px;
}
.t-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 32px;
  background: var(--color-surface-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
}
.t-step__num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--color-canvas);
  background: var(--color-ink);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.t-step__body { display: flex; flex-direction: column; gap: 10px; }
.t-step__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0;
}
.t-step__text {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-ink-soft);
  margin: 0;
}
.t-step__bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}
.t-step__bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--color-ink-soft);
  line-height: 1.5;
}
.t-step__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 999px;
}

/* ============ FEATURE SHOWCASE (3 numbered image cards) ============ */
.t-showcase {
  padding: var(--section-y) var(--gutter);
  background: var(--color-surface);
}
.t-showcase__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}
.t-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-showcase__card {
  background: var(--color-canvas);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.t-showcase__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-surface);
  margin-bottom: 8px;
  position: relative;
}
.t-showcase__media img,
.t-showcase__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.t-showcase__video {
  background: var(--color-surface);
}
.t-showcase__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
  letter-spacing: 0.04em;
}
.t-showcase__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0;
}
.t-showcase__text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* ============ STATS BAND (gold accent strip) ============ */
.t-stats {
  position: relative;
  background: var(--color-accent);
  padding: var(--section-y) var(--gutter);
  overflow: hidden;
  isolation: isolate;
}
.t-stats::before,
.t-stats::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 0;
  pointer-events: none;
}
.t-stats::before {
  top: 0;
  background: linear-gradient(180deg, var(--color-ink-deep) 0%, transparent 100%);
}
.t-stats::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--color-ink-deep) 0%, transparent 100%);
}
.t-stats__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}
.t-stats__item {
  text-align: center;
}
.t-stats__num {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-canvas);
  margin: 0 0 10px;
}
.t-stats__label {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  letter-spacing: -0.005em;
}
.t-stats__divider {
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.30);
}

/* ============ PROCESS — 4 horizontal step cards ============ */
.t-process {
  background: var(--color-ink-deep);
  padding: var(--section-y) var(--gutter);
  color: var(--color-canvas);
}
.t-process__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}
.t-process__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.t-process__eyebrow {
  font-size: 13px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--color-accent) !important;
  margin: 0 0 28px !important;
}
.t-process__title {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--color-canvas);
  margin: 0 0 20px;
}
.t-process__lede {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
  max-width: 640px;
}

/* Step cards row */
.t-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
.t-process__connector {
  position: absolute;
  top: 64px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.18) 0,
    rgba(255, 255, 255, 0.18) 4px,
    transparent 4px,
    transparent 10px
  );
  z-index: 0;
}
.t-process__step {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.t-process__step--active {
  border-color: var(--color-accent);
  box-shadow:
    0 0 0 1px var(--color-accent),
    0 0 40px rgba(240, 171, 47, 0.30),
    inset 0 0 40px rgba(240, 171, 47, 0.04);
  background: rgba(0, 0, 0, 0.40);
}
.t-process__num {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--color-ink-deep);
  margin-top: -56px;
}
.t-process__step--active .t-process__num {
  background: var(--color-accent);
  color: var(--color-canvas);
  border-color: var(--color-accent);
  box-shadow: 0 0 24px rgba(240, 171, 47, 0.55);
}
.t-process__step-title {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-canvas);
  margin: 0;
}
.t-process__step-body {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}
.t-process__step--active .t-process__step-body {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 960px) {
  .t-process__steps { grid-template-columns: repeat(2, 1fr); }
  .t-process__connector { display: none; }
}
@media (max-width: 560px) {
  .t-process__steps { grid-template-columns: 1fr; }
  .t-stats__inner { grid-template-columns: 1fr; gap: 32px; }
  .t-stats__divider { display: none; }
}

/* ============ TRANSPARENT AI: copy left + flow diagram right ============ */
.t-transparent {
  padding: var(--section-y) var(--gutter);
  background: var(--color-ink-deep);
  color: var(--color-canvas);
}
.t-transparent__grid {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.t-transparent__copy {
  max-width: 480px;
}
.t-transparent__eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 24px;
}
.t-transparent__title {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-canvas);
  margin: 0 0 24px;
  white-space: nowrap;
}
.t-transparent__lede {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 40px;
}
.t-transparent__points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.t-transparent__point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.t-transparent__point-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(240, 171, 47, 0.15);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.t-transparent__point-icon svg { width: 18px; height: 18px; }
.t-transparent__point p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.t-transparent__point p strong {
  color: var(--color-canvas);
  font-weight: 700;
}

/* Diagram card */
.t-transparent__diagram {
  position: relative;
  background: linear-gradient(180deg, #0a1428 0%, #050c1c 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: clamp(24px, 3vw, 40px);
  overflow: hidden;
  min-height: 540px;
}
.t-transparent__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.t-transparent__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(240, 171, 47, 0.18) 0%, rgba(240, 171, 47, 0.06) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.t-transparent__diagram-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 12px 24px;
  align-items: center;
  min-height: 100%;
}
.t-transparent__col-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  margin: 0 0 8px;
  text-align: left;
}
.t-transparent__col-label--center { text-align: center; }
.t-transparent__col-label--right { text-align: right; }

/* Left column pills */
.t-transparent__pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-self: stretch;
  justify-content: space-around;
}
.t-transparent__pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-canvas);
  font-weight: 600;
}
.t-transparent__pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-transparent__pill-icon svg { width: 16px; height: 16px; }

/* Center strategy card */
.t-transparent__strategy {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(240, 171, 47, 0.32);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 40px rgba(240, 171, 47, 0.12), 0 8px 24px rgba(0, 0, 0, 0.4);
}
.t-transparent__strategy-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.t-transparent__strategy-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.t-transparent__strategy-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.t-transparent__strategy-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
  animation: t-strategy-pulse 1.6s ease-in-out infinite;
}
@keyframes t-strategy-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.t-transparent__strategy-quote {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--color-canvas);
  margin: 0;
  line-height: 1.2;
}
.t-transparent__strategy-sub {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Right column outputs */
.t-transparent__outputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-self: stretch;
  justify-content: space-around;
}
.t-transparent__output {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.t-transparent__output-media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1f;
}
.t-transparent__output-media img,
.t-transparent__output-media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.t-transparent__output-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(20, 95, 50, 0.85);
  color: #b9f5cf;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.t-transparent__output-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-canvas);
  margin: 4px 0 0;
}
.t-transparent__output-meta {
  font-family: var(--font-sans);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 960px) {
  .t-transparent__grid { grid-template-columns: 1fr; }
  .t-transparent__diagram { min-height: 480px; }
}

/* ============ TESTIMONIAL + FANNED CARDS ============ */
.t-quote {
  padding: var(--section-y) var(--gutter);
  background: var(--color-canvas);
}
.t-quote__grid {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.t-quote__copy {
  max-width: 520px;
}
.t-quote__brand {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 24px;
}
.t-quote__divider {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 999px;
  margin: 0 0 28px;
}
.t-quote__text {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--color-canvas);
  margin: 0 0 28px;
  quotes: none;
  padding-left: 26px;
  border-left: 3px solid rgba(255, 255, 255, 0.18);
}
.t-quote__attribution {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.70);
  margin: 0 0 32px;
  letter-spacing: -0.005em;
}
.t-quote__attribution strong {
  color: var(--color-canvas);
  font-weight: 700;
}
.t-quote .btn-t--primary {
  background: var(--color-accent);
  color: var(--color-canvas);
  border-color: var(--color-accent);
}
.t-quote .btn-t--primary:hover {
  background: #d99422;
  border-color: #d99422;
  color: var(--color-canvas);
}

/* Fanned image stack */
.t-quote__stack {
  position: relative;
  height: clamp(380px, 42vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-quote__card {
  position: absolute;
  width: clamp(140px, 16vw, 200px);
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 4px 10px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--color-canvas);
  transform-origin: center center;
}
.t-quote__card--1 {
  transform: translateX(-44%) translateY(2%) rotate(-12deg);
  z-index: 1;
}
.t-quote__card--2 {
  transform: translateX(-14%) translateY(-2%) rotate(-4deg);
  z-index: 2;
}
.t-quote__card--3 {
  transform: translateX(16%) translateY(0%) rotate(5deg);
  z-index: 3;
}
.t-quote__card--4 {
  transform: translateX(46%) translateY(3%) rotate(13deg);
  z-index: 2;
}

/* ============ PRICING BASE (foundation box above pricing) ============ */
.t-pricebase {
  padding: var(--section-y) var(--gutter) 0;
  background: var(--color-surface);
}
.t-pricebase__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}
.t-pricebase__box {
  background: var(--color-ink-deep);
  color: var(--color-canvas);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 36, 76, 0.18);
}
.t-pricebase__eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 20px;
}
.t-pricebase__title {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-canvas);
  margin: 0 0 36px;
}
.t-pricebase__title em {
  font-style: italic;
  color: var(--color-accent);
}
.t-pricebase__pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.t-pricebase__pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  padding: 18px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  letter-spacing: -0.005em;
}
@media (max-width: 720px) {
  .t-pricebase__pills { grid-template-columns: 1fr; }
}

/* ============ PRICING (3-column table) ============ */
.t-pricing {
  padding: var(--section-y) var(--gutter);
  background: var(--color-surface);
}
.t-pricing__inner {
  max-width: var(--max-content);
  margin: 0 auto;
}
.t-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.t-pricing__grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.t-plan__tier {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.t-pricing__footnote {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-muted);
  margin: 32px auto 0;
  text-align: center;
  max-width: 720px;
  line-height: 1.55;
}
.t-pricing__anchor {
  margin: 48px auto 0;
  max-width: 760px;
  background: var(--color-ink-deep);
  color: var(--color-canvas);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  text-align: center;
}
.t-pricing__anchor-line {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  margin: 0;
  color: var(--color-canvas);
}
.t-pricing__anchor-line strong {
  color: var(--color-accent);
  font-weight: 700;
}
.t-plan {
  position: relative;
  background: var(--color-ink-deep);
  color: var(--color-canvas);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 36, 76, 0.18);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, padding 220ms ease;
}
.t-plan > .t-plan__cta { margin-top: auto; }
.t-plan:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}
.t-plan:hover:not(.t-plan--popular) {
  border-color: rgba(240, 171, 47, 0.45);
  box-shadow: 0 20px 44px rgba(0, 36, 76, 0.30);
}
.t-plan--popular {
  border: 2px solid var(--color-accent);
  box-shadow:
    0 0 0 1px var(--color-accent),
    0 24px 50px rgba(0, 36, 76, 0.32),
    inset 0 0 40px rgba(240, 171, 47, 0.05);
  transform: translateY(-12px);
  padding-top: 44px;
}
.t-plan__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  display: none;
  box-shadow: 0 6px 18px rgba(240, 171, 47, 0.35);
}
.t-plan--popular[data-plan="growth"] .t-plan__badge { display: inline-block; }

/* CTA — cream pill by default, gold pill when card is the popular one */
.t-plan__cta {
  background: var(--color-canvas);
  color: var(--color-ink);
  border: 1px solid var(--color-canvas);
}
.t-plan__cta:hover {
  background: var(--color-surface);
  border-color: var(--color-surface);
  color: var(--color-ink);
}
.t-plan--popular .t-plan__cta {
  background: var(--color-accent);
  color: var(--color-ink);
  border-color: var(--color-accent);
}
.t-plan--popular .t-plan__cta:hover {
  background: #ffba49;
  border-color: #ffba49;
  color: var(--color-ink);
}
.t-plan__name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  color: var(--color-canvas);
  margin: 0;
  line-height: 1.05;
}
.t-plan__lede {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.55;
}
.t-plan__term {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-canvas);
  margin: 0;
}
.t-plan__term em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}
.t-plan__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4px;
  list-style: none;
  padding: 0;
}
.t-plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.t-plan__list li::before {
  content: "—";
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  line-height: 1.45;
}

/* ============ FAQ ============ */
.t-faq {
  padding: var(--section-y) var(--gutter);
  background: var(--color-canvas);
}
.t-faq__inner {
  max-width: 760px;
  margin: 0 auto;
}
.t-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.t-faq__item {
  background: var(--color-surface-soft);
  border: 1px solid var(--color-line);
  border-radius: 14px;
  overflow: hidden;
  transition: background 180ms ease;
}
.t-faq__item:hover { background: #f5ecd2; }
.t-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  position: relative;
}
.t-faq__q::-webkit-details-marker { display: none; }
.t-faq__q::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1;
}
.t-faq__item[open] .t-faq__q::after { content: "\2013"; }
.t-faq__a { padding: 0 24px 22px; }
.t-faq__a p {
  margin: 0;
  font-size: 15px;
  color: var(--color-ink-soft);
  line-height: 1.55;
}
.t-faq__contact {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
}
.t-faq__contact a {
  color: var(--color-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.t-faq__cta {
  text-align: center;
  margin-top: 8px;
}

/* ============ FINAL CTA ============ */
.t-finalcta {
  padding: var(--section-y) var(--gutter);
  background: var(--color-ink-deep);
  color: var(--color-canvas);
  text-align: center;
}
.t-finalcta__inner {
  max-width: 720px;
  margin: 0 auto;
}
.t-finalcta__title {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--color-canvas);
  margin: 0 auto 24px;
  max-width: 26ch;
  text-wrap: balance;
}
.t-finalcta__sub {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0 auto 36px;
}
.t-finalcta__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.t-finalcta .btn-t--primary {
  background: var(--color-canvas);
  color: var(--color-ink);
  border-color: var(--color-canvas);
}
.t-finalcta .btn-t--primary:hover {
  background: var(--color-surface);
  border-color: var(--color-surface);
}
.t-finalcta .btn-t--ghost {
  color: var(--color-canvas);
  border-color: rgba(255, 255, 255, 0.25);
}
.t-finalcta .btn-t--ghost:hover {
  color: var(--color-canvas);
  background: rgba(255, 255, 255, 0.1);
}

/* ============ FOOTER (Tempo-style: bg image, logo top-left, CTA top-right, cols bottom) ============ */
.t-footer {
  position: relative;
  padding: clamp(36px, 4.5vw, 56px) var(--gutter);
  overflow: hidden;
  isolation: isolate;
  min-height: 280px;
}
.t-footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.t-footer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-footer__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 36, 76, 0.55) 0%, rgba(0, 36, 76, 0.72) 100%);
}
.t-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 88px);
}
.t-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.t-footer__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  margin: 0;
}
.t-footer__logo img {
  height: clamp(100px, 13vw, 180px);
  width: auto;
  display: block;
}
.t-footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.t-footer__copyright {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.55;
  max-width: 26ch;
  padding-top: 4px;
  flex: 0 1 auto;
}
.t-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, auto));
  gap: clamp(40px, 5vw, 80px);
  flex: 0 1 auto;
}
.t-footer__col {
  display: flex;
  flex-direction: column;
}
.t-footer__heading {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-canvas);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.t-footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.t-footer__list li,
.t-footer__list a {
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  transition: color 180ms ease;
}
.t-footer__list a:hover { color: var(--color-canvas); }

/* White pill with navy text (footer CTA on navy background) */
.btn-t--outline-light {
  background: var(--color-canvas);
  color: var(--color-ink);
  border: 1px solid var(--color-canvas);
  border-radius: 9999px;
  padding: 18px 80px;
  min-width: 320px;
  font-weight: 700;
  font-size: 16px;
}
.btn-t--outline-light:hover {
  background: var(--color-surface);
  border-color: var(--color-surface);
  color: var(--color-ink);
  transform: translateY(-1px);
}

/* Outline-light variant for finalcta secondary CTA (transparent w/ white border) */
.t-finalcta .btn-t--outline-light {
  background: transparent;
  color: var(--color-canvas);
  border: 1px solid rgba(255, 255, 255, 0.35);
  min-width: 0;
  padding: 18px 36px;
}
.t-finalcta .btn-t--outline-light:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--color-canvas);
}

/* ============ DARK THEME OVERRIDE (all sections except hero + pricing) ============ */
.t-logos,
.t-problem,
.t-three,
.t-solution,
.t-how,
.t-showcase,
.t-quote,
.t-cta-mid,
.t-faq,
.t-footer {
  background: var(--color-ink-deep);
  color: var(--color-canvas);
}

/* Section headers on navy */
.t-logos .t-section__title,
.t-problem .t-section__title,
.t-three .t-section__title,
.t-solution .t-section__title,
.t-how .t-section__title,
.t-showcase .t-section__title,
.t-quote .t-section__title,
.t-cta-mid .t-section__title,
.t-faq .t-section__title {
  color: var(--color-canvas);
}
.t-logos .t-section__lede,
.t-problem .t-section__lede,
.t-three .t-section__lede,
.t-solution .t-section__lede,
.t-how .t-section__lede,
.t-showcase .t-section__lede,
.t-quote .t-section__lede,
.t-cta-mid .t-section__lede,
.t-faq .t-section__lede {
  color: rgba(255, 255, 255, 0.72);
}
.t-logos .t-eyebrow,
.t-problem .t-eyebrow,
.t-three .t-eyebrow,
.t-solution .t-eyebrow,
.t-how .t-eyebrow,
.t-showcase .t-eyebrow,
.t-quote .t-eyebrow,
.t-cta-mid .t-eyebrow,
.t-faq .t-eyebrow {
  color: var(--color-accent);
}

/* Logo strip on navy */
.t-logos {
  border-top: none;
  border-bottom: none;
}
.t-logos__label {
  color: var(--color-accent);
}
.t-logos__grid li {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

/* Solution lockup on navy */
.t-solution__lockup {
  color: var(--color-canvas);
}
.t-solution__roles li {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

/* Single quote on navy */
.t-quote__text {
  color: var(--color-canvas);
}
.t-quote__name {
  color: var(--color-canvas);
}
.t-quote__role {
  color: rgba(255, 255, 255, 0.65);
}

/* FAQ contact line on navy */
.t-faq__contact {
  color: rgba(255, 255, 255, 0.65);
}
.t-faq__contact a {
  color: var(--color-canvas);
}
.t-faq__contact a:hover {
  color: var(--color-accent);
}

/* CTAs on dark sections — invert to white bg + navy text */
.t-solution .btn-t--primary,
.t-quote .btn-t--primary,
.t-cta-mid .btn-t--primary,
.t-faq .btn-t--primary {
  background: var(--color-canvas);
  color: var(--color-ink);
  border-color: var(--color-canvas);
}
.t-solution .btn-t--primary:hover,
.t-quote .btn-t--primary:hover,
.t-cta-mid .btn-t--primary:hover,
.t-faq .btn-t--primary:hover {
  background: var(--color-surface);
  border-color: var(--color-surface);
  color: var(--color-ink);
}

/* Footer on navy */
.t-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.t-footer__inner {
  border-bottom-color: rgba(255, 255, 255, 0.10);
}
.t-footer__tagline {
  color: rgba(255, 255, 255, 0.65);
}
.t-footer__heading {
  color: var(--color-canvas);
}
.t-footer__list li,
.t-footer__list a {
  color: rgba(255, 255, 255, 0.65);
}
.t-footer__list a:hover {
  color: var(--color-canvas);
}
.t-footer__bottom p {
  color: rgba(255, 255, 255, 0.45);
}

/* ============ LEGAL PAGE LAYOUT ============ */
.t-legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter) clamp(72px, 9vw, 120px);
}
.t-legal__head {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-line);
}
.t-legal__back {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-muted);
  margin: 0 0 24px;
}
.t-legal__back a {
  color: var(--color-muted);
  transition: color 180ms ease;
}
.t-legal__back a:hover { color: var(--color-ink); }
.t-legal__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  margin: 0 0 16px;
}
.t-legal__date {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
  letter-spacing: -0.005em;
}
.t-legal__body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-ink-soft);
}
.t-legal__body h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  margin: 48px 0 16px;
}
.t-legal__body h2:first-of-type {
  margin-top: 0;
}
.t-legal__body p {
  margin: 0 0 16px;
}
.t-legal__body p:last-child {
  margin-bottom: 0;
}
.t-legal__body strong {
  color: var(--color-ink);
  font-weight: 700;
}
.t-legal__body a {
  color: var(--color-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}
.t-legal__body a:hover { color: var(--color-accent); }
.t-legal__body code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--color-surface-soft);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--color-ink);
}
.t-legal__ol,
.t-legal__ul {
  margin: 0 0 16px;
  padding: 0 0 0 24px;
  list-style-position: outside;
}
.t-legal__ol { list-style: decimal; }
.t-legal__ul { list-style: disc; }
.t-legal__ol li,
.t-legal__ul li {
  margin: 0 0 8px;
  padding-left: 4px;
}
.t-legal__caps {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--color-ink);
  background: var(--color-surface-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin: 24px 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .t-pricing__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .t-showcase__grid { grid-template-columns: 1fr; }
  .t-three__grid { grid-template-columns: 1fr; }
  .t-pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .t-plan--popular { transform: none; }
  .t-footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .t-footer__cols { grid-template-columns: repeat(2, 1fr); }
  /* Testimonial: stack copy above fanned cards */
  .t-quote__grid { grid-template-columns: 1fr; gap: 32px; }
  .t-quote__stack { height: clamp(280px, 56vw, 380px); }
  .t-quote__card { width: clamp(110px, 22vw, 160px); }
  /* Transparent AI: scale the diagram down so it fits a narrow column */
  .t-transparent__diagram { min-height: 460px; padding: 20px; }
  .t-transparent__diagram-grid { gap: 8px 12px; }
  .t-transparent__title { white-space: normal; }
}
@media (max-width: 768px) {
  .t-nav__menu { display: none; }
  .t-nav__inner { grid-template-columns: auto 1fr auto; }
  .t-pain__item { grid-template-columns: auto 1fr; }
  .t-pain__icon { grid-column: 2; grid-row: 1; justify-self: end; }
  .t-pain__body { grid-column: 1 / -1; }
  .t-step { grid-template-columns: 1fr; gap: 16px; }
  .t-footer__cols { grid-template-columns: 1fr; }
  .t-footer__bottom-row { flex-direction: column; }
  .t-footer__copyright { order: 2; padding-top: 16px; }
  .t-footer__cols { order: 1; }
  /* Stack logo above the CTA, left-aligned, on mobile */
  .t-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .t-footer__logo img { height: clamp(72px, 22vw, 110px); }
  .t-footer .btn-t--outline-light {
    min-width: 0;
    padding: 14px 36px;
    width: auto;
  }
  .t-pricing__grid--4 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  /* Transparent AI: stack the diagram vertically instead of 3 columns */
  .t-transparent__diagram { min-height: 0; padding: 20px; }
  .t-transparent__lines { display: none; }
  .t-transparent__glow { width: 220px; height: 220px; opacity: 0.6; }
  .t-transparent__diagram-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }
  .t-transparent__col-label,
  .t-transparent__col-label--center,
  .t-transparent__col-label--right {
    text-align: left;
    margin-top: 12px;
    margin-bottom: 4px;
  }
  /* Pair each label with its content via flex/grid order */
  .t-transparent__diagram-grid > .t-transparent__col-label:nth-of-type(1) { order: 1; margin-top: 0; }
  .t-transparent__pills { order: 2; gap: 10px; }
  .t-transparent__diagram-grid > .t-transparent__col-label:nth-of-type(2) { order: 3; }
  .t-transparent__strategy { order: 4; width: 100%; align-self: stretch; }
  .t-transparent__diagram-grid > .t-transparent__col-label:nth-of-type(3) { order: 5; }
  .t-transparent__outputs {
    order: 6;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .t-transparent__output-label { font-size: 11px; }
  .t-transparent__output-meta { font-size: 9px; }
  /* Quote stack — drop to 3 visible cards on small screens, tighten the fan */
  .t-quote__card--4 { display: none; }
  .t-quote__card--1 { transform: translateX(-32%) translateY(2%) rotate(-9deg); }
  .t-quote__card--2 { transform: translateX(-10%) translateY(-2%) rotate(-3deg); }
  .t-quote__card--3 { transform: translateX(22%) translateY(0%) rotate(8deg); }
}
@media (max-width: 480px) {
  .t-nav__textlink { display: none; }
  .t-hero__actions { flex-direction: column; align-items: stretch; }
  .t-hero__actions .btn-t { width: 100%; }
  .t-finalcta__actions { flex-direction: column; align-items: stretch; }
  /* Hero: avoid the eyebrow + H1 + sub overflowing tiny screens */
  .t-hero__eyebrow { font-size: 11px; letter-spacing: 0.18em; }
  .t-hero__title { font-size: 26px; line-height: 1.15; }
  .t-hero__sub { font-size: 15px; }
  /* Final CTA title — let it wrap freely on tiny screens */
  .t-finalcta__title { font-size: 32px; }
}
