/* ============================================================
   humbulls — Editorial Architecture v2 (Opus 4.7 redesign)
   Design tokens are abstract so Bulls Mode replaces all values.
   ============================================================ */

:root {
  /* Default Mode — Aged Gold */
  --accent: #BFA24B;
  --accent-deep: #A07650;
  --accent-light: #D4BC6A;
  --accent-pale: #F5EFDB;
  --accent-faint: rgba(191,162,75,0.10);
  --accent-glow: rgba(191,162,75,0.25);
  --bg: #FAFAF8;
  --bg-alt: #F2F1EE;
  --bg-card: #FFFFFF;
  --bg-dark: #0A0A0A;
  --text: #0A0A0A;
  --text-sub: #555555;
  --text-muted: #777777;
  --border: #E5E3DE;
  --border-light: #F2F1EE;
  --rule: rgba(10,10,10,0.08);
  --noise-opacity: 0.018;
  --dot: rgba(10,10,10,0.06);
  --hubspot: #FF7A59;
  /* Figure tokens — mannequin/feet/rim shadows, swap cleanly between Default and Bulls Mode */
  --figure-ink:       #1a0d05;
  --figure-ink-soft:  #2A1708;
  --figure-shade:     #3C2914;
  --figure-shade-hi:  #4A3420;
  --figure-rim:       #5B3F22;
  --core-hot:         #FFF5D6;
  --label-ink:        #FFF5D6;

  /* Spatial */
  --space-1: .25rem; --space-2: .5rem; --space-3: .75rem;
  --space-4: 1rem;   --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;   --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;  --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;  --space-40: 10rem;

  --container: 1280px;
  --gutter: 96px;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;

  --dur-fast: 160ms;
  --dur-norm: 340ms;
  --dur-slow: 680ms;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-bold: cubic-bezier(.16, 1, .3, 1);

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Noto Sans JP', 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

.bulls-mode {
  --accent: #FF6B35;
  --accent-deep: #E63946;
  --accent-light: #FF8F65;
  --accent-pale: rgba(255,107,53,0.14);
  --accent-faint: rgba(255,107,53,0.10);
  --accent-glow: rgba(255,107,53,0.45);
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --bg-card: #141414;
  --bg-dark: #000000;
  --text: #F5F5F5;
  --text-sub: rgba(255,255,255,0.62);
  --text-muted: rgba(255,255,255,0.38);
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.05);
  --rule: rgba(255,255,255,0.10);
  --noise-opacity: 0.04;
  --dot: rgba(255,107,53,0.14);
  /* Bulls-mode figure tokens — ember-tinted, higher contrast */
  --figure-ink:       #180704;
  --figure-ink-soft:  #2A0B05;
  --figure-shade:     #4A1A0D;
  --figure-shade-hi:  #6E2313;
  --figure-rim:       #8A2E18;
  --core-hot:         #FFE4D0;
  --label-ink:        #FFE4D0;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  font-feature-settings: "kern" 1;
  transition:
    background-color var(--dur-norm) var(--ease),
    color var(--dur-norm) var(--ease);
}

/* Background texture — whisper-soft noise + grid for architectural feel */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
  transition: opacity var(--dur-norm) var(--ease);
}
.bulls-mode body::before { opacity: 0.28; }

body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: var(--noise-opacity);
  mix-blend-mode: multiply;
}
.bulls-mode body::after { mix-blend-mode: overlay; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
  font-feature-settings: "palt" 1, "kern" 1;
}

::selection { background: var(--accent); color: #FAFAF8; }

/* Scroll progress bar — fine thread at the top */
.scroll-thread {
  position: fixed; top: 0; left: 0;
  height: 2px;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  z-index: 1000;
  transition: width 80ms linear;
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .wrap { padding: 0 var(--space-16); }
}

.section {
  position: relative;
  padding: var(--space-24) 0;
  z-index: 1;
}
@media (min-width: 1024px) {
  .section { padding: 9rem 0; }
}

/* Section header with hanging index number — magazine style */
.section-index {
  position: absolute;
  top: var(--space-16);
  left: var(--space-6);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.section-index::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
}
@media (max-width: 1023px) { .section-index { display: none; } }

/* Logo lockup (mark + wordmark) */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 28px;
  color: var(--text);
}
.brand-logo .mark { height: 100%; width: auto; display: block; flex-shrink: 0; }
.brand-logo .wordmark { height: 60%; width: auto; display: block; }
.footer-logo { height: 32px; }
.footer-logo .wordmark { height: 55%; }

/* Eyebrow — small label with gradient accent line */
.eye {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.eye::before {
  content: '';
  width: 32px; height: 1.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  flex-shrink: 0;
}

/* Display headings — tight, editorial */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-feature-settings: "palt" 1, "kern" 1;
}
.display .thin { font-weight: 300; letter-spacing: -0.01em; }

.h2 {
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.h3 { font-size: clamp(1.25rem, 2.2vw, 1.625rem); font-weight: 700; line-height: 1.3; }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.8;
  color: var(--text-sub);
  font-weight: 300;
  letter-spacing: 0.03em;
  max-width: 48ch;
}

.micro {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Horizontal hairline between sections */
.hairline {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  margin: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--dur-norm) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn i[data-lucide] { width: 16px; height: 16px; stroke-width: 2.25; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #FAFAF8;
  box-shadow: 0 1px 0 0 var(--accent-light) inset, 0 8px 18px -8px var(--accent-glow);
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  opacity: 0;
  transition: opacity var(--dur-norm) var(--ease);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px var(--accent-glow); }
.btn-primary:hover::after { opacity: 1; }
.bulls-mode .btn-primary { color: #0A0A0A; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border);
}
.btn-ghost:hover {
  box-shadow: inset 0 0 0 1px var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm { font-size: 12px; padding: 10px 20px; }

.text-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-norm) var(--ease);
}
.text-link::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right var(--dur-norm) var(--ease);
}
.text-link:hover::after { right: 0; }
.text-link i { width: 14px; height: 14px; stroke-width: 2.25; transition: transform var(--dur-norm) var(--ease); }
.text-link:hover i { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-norm) var(--ease), background-color var(--dur-norm) var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
@media (min-width: 1024px) {
  .nav-inner { padding: 0 var(--space-16); }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.brand-mark {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  position: relative;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand-word .dot { color: var(--accent); }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-sub);
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-norm) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transition: right var(--dur-norm) var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.mode-toggle {
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
  color: var(--text-sub);
  box-shadow: inset 0 0 0 1px var(--border);
  transition: all var(--dur-norm) var(--ease);
  position: relative;
}
.mode-toggle:hover {
  color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
  transform: rotate(20deg);
}
.mode-toggle i { width: 16px; height: 16px; stroke-width: 2.25; }
.mode-toggle .ic-bulls { display: none; }
.bulls-mode .mode-toggle .ic-default { display: none; }
.bulls-mode .mode-toggle .ic-bulls { display: inline-block; }

/* ============================================================
   HERO — editorial layout
   ============================================================ */
.hero {
  position: relative;
  padding: 180px 0 var(--space-24);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero { padding: 220px 0 var(--space-32); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: end;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 2.2fr) minmax(220px, 1fr);
    gap: var(--space-16);
  }
}

.hero-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-meta .row { display: flex; align-items: center; gap: 10px; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-faint); flex-shrink: 0; }
.hero-meta .label { color: var(--text-muted); flex-shrink: 0; min-width: 72px; }
.hero-meta .val { color: var(--text); font-weight: 500; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-8);
}
.hero-kicker::before {
  content: '';
  width: 48px; height: 1px;
  background: var(--accent);
}
.hero-kicker::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7.2vw, 6.25rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-feature-settings: "palt" 1, "kern" 1;
  color: var(--text);
  margin-bottom: var(--space-10);
}
.hero-title .block { display: block; }
.hero-title .rev {
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  padding-right: 6px;
}
.hero-title .thin {
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text-sub);
}
.hero-title .u {
  display: inline-block;
  position: relative;
}
.hero-title .u::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -0.06em;
  height: 0.08em;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  transform-origin: left;
  animation: ruleIn 1.2s var(--ease-bold) 0.4s both;
}
@keyframes ruleIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--text-sub);
  margin-bottom: var(--space-10);
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* Hero decorative elements */
.hero-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}
.hero-blob.top-right {
  top: 40px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
}
.hero-blob.bottom-left {
  bottom: -200px; left: -180px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, var(--accent-deep) 0%, transparent 60%);
  opacity: 0.2;
}
.bulls-mode .hero-blob { opacity: 0.75; }
.bulls-mode .hero-blob.bottom-left { opacity: 0.4; }

/* Vertical date strip on far right */
.hero-scale {
  display: none;
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
@media (min-width: 1440px) { .hero-scale { display: flex; } }
.hero-scale .tick { display: flex; align-items: center; gap: 10px; height: 60px; }
.hero-scale .tick::before { content: ''; width: 1px; flex-grow: 1; background: var(--border); }
.hero-scale .tick.active { color: var(--accent); }
.hero-scale .tick.active::before { background: var(--accent); }

/* Ticker below hero */
.ticker {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  margin-top: var(--space-16);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: tickerRoll 42s linear infinite;
  width: max-content;
  will-change: transform;
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ticker-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}
.ticker-item .strong { color: var(--text); font-weight: 700; }
@keyframes tickerRoll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   LOGOS — marquee with gallery treatment
   ============================================================ */
.logos {
  padding: var(--space-16) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.logos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
  gap: var(--space-6);
  flex-wrap: wrap;
}
.logos-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.logos-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}
.logos-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.18em;
}
.logos-count b { color: var(--accent); font-weight: 700; }

.logos-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.logos-track {
  display: flex;
  gap: 64px;
  animation: tickerRoll 38s linear infinite;
  width: max-content;
}
.logos-track .item {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.72;
  transition: opacity var(--dur-norm) var(--ease), color var(--dur-norm) var(--ease);
  flex-shrink: 0;
}
.logos-track .item:hover { opacity: 1; color: var(--text); }
.logos-track .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   STRENGTHS — 2x2 grid with architectural cards
   ============================================================ */
.strengths {
  background: var(--bg);
}

.section-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: var(--container);
  margin: 0 auto var(--space-16);
  text-align: center;
  padding: 0 var(--space-4);
}
.section-top .eye { justify-content: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text);
  font-feature-settings: "palt" 1;
  max-width: none;
}
.section-title .accent { color: var(--accent); }
.section-top .lead { max-width: 58ch; margin: 0 auto; }

.strength-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) { .strength-grid { grid-template-columns: repeat(2, 1fr); } }

.strength-card {
  background: var(--bg-card);
  padding: var(--space-12) var(--space-10);
  position: relative;
  transition: background var(--dur-norm) var(--ease);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.strength-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur-slow) var(--ease-bold);
}
.strength-card:hover { background: var(--bg-alt); }
.strength-card:hover::before { transform: scaleY(1); }

.strength-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.strength-num::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: var(--border);
}

.strength-icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--accent-faint);
  border-radius: var(--radius);
  margin-bottom: var(--space-6);
  position: relative;
  transition: all var(--dur-norm) var(--ease);
}
.strength-icon i { width: 24px; height: 24px; stroke-width: 2.25; }
.strength-card:hover .strength-icon { transform: rotate(-6deg) scale(1.05); }

.strength-title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: var(--space-4);
  color: var(--text);
  font-feature-settings: "palt" 1;
}

.strength-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-sub);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* ============================================================
   SERVICES — 3 plan comparison with Growth Partner featured
   ============================================================ */
.services {
  background: var(--bg-alt);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, var(--accent-faint) 0%, transparent 50%);
  pointer-events: none;
}

.plans-wrap {
  position: relative;
}

.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (min-width: 1024px) {
  .plans {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    align-items: stretch;
  }
}

.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  position: relative;
  transition: all var(--dur-norm) var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px var(--accent-glow);
  border-color: var(--accent);
}

.plan.featured {
  border: 1.5px solid var(--accent);
  border-top-width: 4px;
  padding-top: calc(var(--space-10) - 3px);
  background: var(--bg-card);
  box-shadow: 0 24px 64px -20px var(--accent-glow);
  z-index: 2;
}
@media (min-width: 1024px) {
  .plan.featured { transform: scale(1.03); }
  .plan.featured:hover { transform: scale(1.03) translateY(-4px); }
}

.plan-badge {
  position: absolute;
  top: -12px; right: 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FAFAF8;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px var(--accent-glow);
}
.bulls-mode .plan-badge { color: #0A0A0A; }

.plan-index {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-2);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}
.plan-name-ja {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  line-height: 1.4;
}
.plan-tagline {
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
  line-height: 1.7;
  min-height: 48px;
  margin-bottom: var(--space-8);
}

.plan-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: var(--space-6);
  flex-wrap: nowrap;
}
.plan.featured .plan-price {
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan-price .unit {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  -webkit-text-fill-color: var(--text-muted);
  white-space: nowrap;
}

.plan-line { border: 0; height: 1px; background: var(--border); margin: var(--space-4) 0 var(--space-6); }

.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-8);
  flex-grow: 1;
}
.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.plan-feats i {
  width: 16px; height: 16px;
  stroke-width: 2.5;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.plan-cta {
  margin-top: auto;
}
.plan-cta .btn { width: 100%; justify-content: center; }

/* AI Lesson banner */
.ai-lesson {
  margin-top: var(--space-16);
  padding: var(--space-12);
  background:
    linear-gradient(135deg, var(--accent-faint), transparent),
    var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .ai-lesson {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: center;
    padding: var(--space-16);
    gap: var(--space-16);
  }
}
.ai-lesson::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-faint), transparent 60%);
  pointer-events: none;
}
.ai-lesson-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-lesson-kicker::before {
  content: ''; width: 32px; height: 1px; background: var(--accent);
}
.ai-lesson-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--space-5);
  font-feature-settings: "palt" 1;
}
.ai-lesson-desc {
  font-size: 14.5px;
  color: var(--text-sub);
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 300;
  max-width: 52ch;
}
.ai-lesson-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: var(--space-6) 0 0;
  padding: var(--space-6) 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}
@media (min-width: 768px) {
  .ai-lesson-specs { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
}
.ai-lesson-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ai-lesson-spec-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.ai-lesson-spec-value {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.ai-lesson-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
}
.ai-lesson-price {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.015em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}
.ai-lesson-price .unit {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.ai-lesson-price .sub {
  flex-basis: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ============================================================
   CASES — 3 case studies
   ============================================================ */
.cases { background: var(--bg); }

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }

.case {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--dur-norm) var(--ease);
  position: relative;
}
.case:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(10,10,10,0.12);
  border-color: var(--accent);
}
.bulls-mode .case:hover { box-shadow: 0 20px 40px -12px var(--accent-glow); }

.case-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 180px;
  background: linear-gradient(135deg, var(--accent-pale), var(--bg-alt));
  overflow: hidden;
}
@media (min-width: 1024px) {
  .case-cover { aspect-ratio: 16 / 10; }
}
.case-cover.teal { background: linear-gradient(135deg, color-mix(in srgb, #2D7A7A 22%, var(--bg-alt)), var(--bg-alt)); }
.case-cover.navy { background: linear-gradient(135deg, color-mix(in srgb, #1E3A5F 22%, var(--bg-alt)), var(--bg-alt)); }

.case-cover-glyph {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-cover-glyph b { color: var(--text); font-weight: 700; }

.case-cover-stat {
  position: absolute;
  bottom: 20px; left: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.125rem, 2.4vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  font-feature-settings: "palt" 1;
}
.case-cover-stat b {
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}

.case-body {
  padding: var(--space-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.case-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  margin-bottom: var(--space-4);
  align-items: center;
}
.case-meta .tag {
  background: var(--accent-faint);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.case-client {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
  color: var(--text);
}
.case-lead {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-sub);
  font-weight: 300;
  letter-spacing: 0.04em;
  flex-grow: 1;
  margin-bottom: var(--space-6);
}

.cases-footer {
  display: flex;
  justify-content: flex-end;
}

/* ============================================================
   KNOWLEDGE HUB — editorial channel rack
   ============================================================ */
.knowledge { background: var(--bg-alt); }

.channel {
  padding-top: var(--space-16);
  border-top: 1px solid var(--border);
}
.channel:first-of-type { padding-top: var(--space-12); border-top: 0; }
.channel + .channel { margin-top: var(--space-20); }

.channel-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: end;
  margin-bottom: var(--space-10);
}
@media (min-width: 1024px) { .channel-head { grid-template-columns: auto 1fr auto; gap: var(--space-8); } }

.channel-no {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--accent-faint);
  border-radius: var(--radius-sm);
  width: max-content;
}
.channel-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.15;
  font-feature-settings: "palt" 1;
}
.channel-desc {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 300;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-norm) var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 36px -14px rgba(10,10,10,0.12);
}
.bulls-mode .blog-card:hover { box-shadow: 0 16px 36px -12px var(--accent-glow); }

.blog-cover {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.blog-cover-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, var(--accent-faint) 0, var(--accent-faint) 2px, transparent 2px, transparent 14px);
  opacity: 0.6;
}
.blog-cover-num {
  position: absolute;
  right: 16px; bottom: 12px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  letter-spacing: -0.04em;
}

.blog-body { padding: var(--space-6); flex-grow: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.blog-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-4);
  color: var(--text);
  font-feature-settings: "palt" 1;
  flex-grow: 1;
}
.blog-date {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-top: auto;
}

/* Webinar / YouTube mixed layout */
.webinar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
@media (min-width: 1024px) {
  .webinar-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
}

.webinar-featured {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: all var(--dur-norm) var(--ease);
}
.webinar-featured::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle at top right, var(--accent-faint), transparent 70%);
  pointer-events: none;
}
.webinar-featured:hover { border-color: var(--accent); }

.webinar-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  width: max-content;
}
.webinar-status::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.webinar-date {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
}
.webinar-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text);
  font-feature-settings: "palt" 1;
}
.webinar-desc { font-size: 14px; color: var(--text-sub); line-height: 1.7; }

.archive-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.archive-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: center;
  transition: all var(--dur-norm) var(--ease);
}
.archive-item:hover { border-color: var(--accent); transform: translateX(3px); }
.archive-thumb {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--accent-pale), var(--bg-alt));
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--accent);
}
.archive-thumb i { width: 20px; height: 20px; stroke-width: 2.25; }
.archive-info { flex-grow: 1; min-width: 0; }
.archive-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.archive-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.005em;
  font-feature-settings: "palt" 1;
}

.youtube-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) { .youtube-grid { grid-template-columns: repeat(3, 1fr); } }

.yt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--dur-norm) var(--ease);
  display: flex;
  flex-direction: column;
}
.yt-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.yt-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--accent-pale), var(--bg-alt));
  position: relative;
  display: grid;
  place-items: center;
}
.yt-play {
  width: 48px; height: 48px;
  background: var(--bg-card);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  box-shadow: 0 6px 18px rgba(10,10,10,0.12);
  transition: all var(--dur-norm) var(--ease);
}
.yt-card:hover .yt-play { transform: scale(1.1); background: var(--accent); color: #FAFAF8; }
.bulls-mode .yt-card:hover .yt-play { color: #0A0A0A; }
.yt-play i { width: 18px; height: 18px; fill: currentColor; stroke: none; margin-left: 2px; }

.yt-duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(10,10,10,0.78);
  color: #FAFAF8;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  padding: 3px 6px;
  border-radius: 3px;
  letter-spacing: 0.06em;
}

.yt-body { padding: var(--space-5); flex-grow: 1; display: flex; flex-direction: column; gap: 6px; }
.yt-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.005em;
  font-feature-settings: "palt" 1;
  flex-grow: 1;
}
.yt-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

/* Documents (resource DL) */
.doc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) { .doc-grid { grid-template-columns: repeat(3, 1fr); } }

.doc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-norm) var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.doc-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 16px 32px -16px var(--accent-glow); }

.doc-cover {
  aspect-ratio: 3 / 4;
  background: linear-gradient(150deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-deep) 100%);
  display: grid;
  place-items: center;
  position: relative;
  padding: var(--space-6);
  overflow: hidden;
  color: #FAFAF8;
}
.bulls-mode .doc-cover { color: #0A0A0A; }
.doc-cover.teal {
  background: linear-gradient(150deg, color-mix(in srgb, #2D7A7A 80%, white), #2D7A7A, color-mix(in srgb, #2D7A7A 70%, black));
  color: #FAFAF8;
}
.doc-cover.navy {
  background: linear-gradient(150deg, color-mix(in srgb, #1E3A5F 85%, white), #1E3A5F, color-mix(in srgb, #1E3A5F 70%, black));
  color: #FAFAF8;
}

.doc-cover::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid currentColor;
  opacity: 0.2;
  pointer-events: none;
  border-radius: 4px;
}
.doc-cover-meta {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.doc-cover-num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  opacity: 0.85;
}
.doc-cover-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: left;
  z-index: 1;
  font-feature-settings: "palt" 1;
}
.doc-cover-pages {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}

.doc-body { padding: var(--space-5); display: flex; flex-direction: column; gap: 10px; }
.doc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}
.doc-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--text);
  font-feature-settings: "palt" 1;
}

.channel-footer { display: flex; justify-content: flex-end; margin-top: var(--space-8); }

/* ============================================================
   DARK CTA
   ============================================================ */
.cta-dark {
  background: #0A0A0A;
  color: #F5F5F5;
  position: relative;
  overflow: hidden;
  padding: var(--space-32) 0;
}
.bulls-mode .cta-dark { background: #000000; }

.cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, var(--accent-glow) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, var(--accent-faint) 0%, transparent 50%);
  pointer-events: none;
}
.cta-dark::after {
  content: '';
  position: absolute;
  inset: 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: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 85%);
}

.cta-dark .wrap { position: relative; z-index: 1; }

.cta-dark .eye { color: var(--accent-light); }
.cta-dark .eye::before { background: linear-gradient(90deg, var(--accent-light), var(--accent)); }

.cta-dark-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-8);
  color: #F5F5F5;
  max-width: 20ch;
  font-feature-settings: "palt" 1;
}
.cta-dark-title .accent {
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-dark-desc {
  font-size: 15.5px;
  color: rgba(245,245,245,0.7);
  line-height: 1.85;
  letter-spacing: 0.04em;
  max-width: 72ch;
  margin-bottom: var(--space-16);
  font-weight: 300;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) { .cta-grid { grid-template-columns: repeat(3, 1fr); } }

.cta-card {
  padding: var(--space-10) var(--space-8);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--dur-norm) var(--ease);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.cta-card:hover {
  border-color: var(--accent);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--dur-norm) var(--ease);
}
.cta-card:hover::before { opacity: 1; }

.cta-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-light);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.cta-card-icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--accent-faint);
  border-radius: var(--radius);
  margin-bottom: var(--space-5);
  transition: all var(--dur-norm) var(--ease);
}
.cta-card-icon i { width: 22px; height: 22px; stroke-width: 2.25; }
.cta-card:hover .cta-card-icon { background: var(--accent); color: #0A0A0A; transform: rotate(-6deg); }

.cta-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-3);
  color: #F5F5F5;
  font-feature-settings: "palt" 1;
}
.cta-card-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(245,245,245,0.6);
  letter-spacing: 0.04em;
  font-weight: 300;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}
.cta-card-more {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.cta-card-more i { width: 14px; height: 14px; stroke-width: 2.25; transition: transform var(--dur-norm) var(--ease); }
.cta-card:hover .cta-card-more i { transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--space-20) 0 var(--space-8);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: minmax(0, 1.2fr) repeat(3, 1fr); gap: var(--space-16); }
}

.footer-brand .brand-word { font-size: 24px; }
.footer-mission {
  margin-top: var(--space-5);
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text-sub);
  max-width: 34ch;
  letter-spacing: 0.04em;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col h4::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--accent);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 13.5px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
  transition: color var(--dur-norm) var(--ease);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-legal {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-partner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-sub);
}
.footer-partner::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FF7A59;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-bold), transform 800ms var(--ease-bold);
  transition-delay: var(--d, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE TUNING
   ============================================================ */
@media (max-width: 767px) {
  .hero-title { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .section { padding: var(--space-16) 0; }
  .hero { padding: 120px 0 var(--space-16); }
  .ticker { margin-top: var(--space-10); }
  .wrap { padding: 0 20px; }
}

/* ============================================================
   PAGE HERO — for sub-pages
   ============================================================ */
.page-hero {
  position: relative;
  padding: 160px 0 var(--space-20);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-hero { padding: 200px 0 var(--space-24); }
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 100%, var(--accent-faint), transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (min-width: 1024px) {
  .page-hero-inner { padding: 0 var(--space-16); }
}
.crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-6);
}
.crumb a { color: inherit; transition: color var(--dur-norm) var(--ease); }
.crumb a:hover { color: var(--accent); }
.crumb .sep { opacity: 0.5; }
.crumb .current { color: var(--accent); }
.page-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-feature-settings: "palt" 1;
  color: var(--text);
  margin: 0 auto var(--space-8);
}
.page-title .accent {
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--text-sub);
  max-width: 56ch;
  margin: 0 auto;
}

/* Page kicker (above page title) */
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-8);
}
.page-kicker::before {
  content: '';
  width: 48px; height: 1px;
  background: var(--accent);
}
.page-kicker::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* Form input styles — for contact/download pages */
.form { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-sub);
  display: flex; align-items: center; gap: 6px;
}
.form-label .required { color: var(--accent); font-size: 13px; }
.form-input, .form-textarea, .form-select {
  font: inherit;
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: all var(--dur-norm) var(--ease);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-faint);
}
.form-textarea { min-height: 160px; resize: vertical; line-height: 1.7; }
.form-actions { display: flex; justify-content: flex-end; margin-top: var(--space-4); }
.form-actions .btn { width: 100%; justify-content: center; padding: 16px; }
@media (min-width: 768px) { .form-actions .btn { width: auto; } }

/* Timeline — for about page history */
.timeline { position: relative; display: flex; flex-direction: column; gap: var(--space-10); max-width: 720px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 80px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), var(--border) 50%, transparent);
}
@media (max-width: 767px) { .timeline::before { left: 10px; } }
.timeline-item { display: grid; grid-template-columns: 80px 1fr; gap: var(--space-8); position: relative; }
@media (max-width: 767px) { .timeline-item { grid-template-columns: 40px 1fr; gap: var(--space-4); } }
.timeline-year {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 2px;
}
.timeline-dot {
  position: absolute;
  left: 76px; top: 6px;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg);
  z-index: 1;
}
@media (max-width: 767px) { .timeline-dot { left: 6px; } }
.timeline-content h4 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.005em; }
.timeline-content p { font-size: 14px; color: var(--text-sub); line-height: 1.75; font-weight: 300; letter-spacing: 0.04em; }

/* Article / blog-post typography */
.article { max-width: 720px; margin: 0 auto; font-size: 16px; line-height: 1.85; color: var(--text); }
.article h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; margin: var(--space-12) 0 var(--space-6); letter-spacing: -0.015em; line-height: 1.3; font-feature-settings: "palt" 1; }
.article h3 { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; margin: var(--space-10) 0 var(--space-5); letter-spacing: -0.01em; line-height: 1.4; font-feature-settings: "palt" 1; }
.article p { margin-bottom: var(--space-6); letter-spacing: 0.04em; font-weight: 300; }
.article ul, .article ol { margin: 0 0 var(--space-6) 1.5rem; font-weight: 300; }
.article li { margin-bottom: var(--space-3); letter-spacing: 0.04em; line-height: 1.85; }
.article ul li { list-style: disc; }
.article ol li { list-style: decimal; }
.article blockquote { border-left: 3px solid var(--accent); padding: var(--space-3) var(--space-6); margin: var(--space-8) 0; color: var(--text-sub); font-style: italic; background: var(--accent-faint); border-radius: 0 var(--radius) var(--radius) 0; }
.article code { font-family: var(--font-mono); font-size: 0.92em; background: var(--bg-alt); padding: 2px 6px; border-radius: 4px; color: var(--accent-deep); }
.article a { color: var(--accent); border-bottom: 1px solid var(--accent-faint); transition: border-color var(--dur-norm) var(--ease); }
.article a:hover { border-bottom-color: var(--accent); }

/* ============================================================
   FOOTER MISSION — refined labeled layout
   ============================================================ */
.footer-mission,
.footer-tagline {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: baseline;
  margin: 0 0 var(--space-3);
  max-width: 42ch;
}
.footer-mission { margin-top: var(--space-6); }
.footer-tagline { margin-bottom: 0; }
.footer-mission .fm-label,
.footer-tagline .fm-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 2px;
}
.footer-mission .fm-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--text);
  font-feature-settings: "palt" 1;
}
.footer-tagline .fm-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--text-sub);
  font-feature-settings: "palt" 1;
}
@media (max-width: 767px) {
  .footer-mission,
  .footer-tagline {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* ============================================================
   Gray building palette (other companies in hero-d scene)
   ============================================================ */
:root {
  --bldg-body: #B3AEA6;
  --bldg-shade: #7D7974;
  --bldg-dark: #4E4B47;
  --bldg-win: #C9C5BD;
  --bldg-win-dim: #94908A;
  --bldg-roof: #6A6761;
}
.bulls-mode {
  --bldg-body: #3A3734;
  --bldg-shade: #1F1D1A;
  --bldg-dark: #0A0908;
  --bldg-win: #54514E;
  --bldg-win-dim: #2E2C29;
  --bldg-roof: #1A1815;
}
