:root {
  --bg:              #ffffff;
  --bg-soft:         #f5f5f7;
  --bg-tinted:       #fbfbfd;
  --surface-1:       #ffffff;
  --surface-2:       #f5f5f7;
  --surface-3:       #ececef;
  --surface-elev:    rgba(255,255,255,0.72);
  --border:          rgba(0,0,0,0.08);
  --border-mid:      rgba(0,0,0,0.12);
  --border-strong:   rgba(0,0,0,0.18);
  --border-blue:     rgba(0,0,0,0.10);

  --blue:            #1d1d1f;
  --blue-light:      #515154;
  --blue-dark:       #000;
  --blue-soft:       rgba(0,0,0,0.06);
  --blue-glow:       rgba(0,0,0,0.04);
  --blue-glow-mid:   rgba(0,0,0,0.08);

  --green:           #cca958;
  --orange:          #ff9f0a;
  --red:             #ff453a;
  --gold:            #e8d8a8;
  --gold-soft:       rgba(232,216,168,0.18);
  --gold-line:       rgba(232,216,168,0.46);
  --gold-deep:       #cca958;

  --text-primary:    #1d1d1f;
  --text-secondary:  #515154;
  --text-tertiary:   #86868b;
  --text-muted:      #a1a1a6;
  --white:           #ffffff;

  --grad-blue:       linear-gradient(135deg, #1d1d1f 0%, #3a3a3d 100%);
  --grad-blue-deep:  linear-gradient(135deg, #000 0%, #2c2c30 100%);
  --grad-blue-pop:   linear-gradient(135deg, #3a3a3d 0%, #1d1d1f 100%);
  --grad-blue-soft:  linear-gradient(135deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.02) 100%);
  --grad-hero:       radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.03) 0%, transparent 60%);
  --grad-mesh:       linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  --grad-grey-soft:  linear-gradient(135deg, #f5f5f7 0%, #e8eaef 100%);
  --grad-grey-deep:  linear-gradient(135deg, #2a2a2e 0%, #515154 100%);

  --blue-purple:     #3a3a3d;

  --shadow-xs:       0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:       0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md:       0 8px 24px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:       0 24px 48px rgba(0,0,0,0.08), 0 6px 16px rgba(0,0,0,0.04);
  --shadow-xl:       0 40px 80px rgba(0,0,0,0.10), 0 8px 24px rgba(0,0,0,0.05);
  --shadow-blue:     0 12px 36px rgba(0,0,0,0.09), 0 4px 12px rgba(0,0,0,0.05);

  --transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-bounce:all 0.5s cubic-bezier(0.34,1.56,0.64,1);
  --ease-apple:      cubic-bezier(0.16,1,0.3,1);

  --radius-xs:       6px;
  --radius-sm:       10px;
  --radius-md:       16px;
  --radius-lg:       22px;
  --radius-xl:       32px;

  --nav-h:           52px;
  --section-py:      120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::selection { background-color: var(--gold); color: #1d1d1f; }
::-moz-selection { background-color: var(--gold); color: #1d1d1f; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.47;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  letter-spacing: -0.005em;
}
h1,h2,h3,h4,h5 {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.08;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}
p { color: var(--text-secondary); line-height: 1.55; }
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.22); }
::selection { background-color: var(--gold); color: #1d1d1f; }
::-moz-selection { background-color: var(--gold); color: #1d1d1f; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-py { padding: var(--section-py) 0; }
.section-py-sm { padding: 80px 0; }

main, footer { position: relative; z-index: 1; }

.scroll-progress { display: none !important; }

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient::before {
  content: '';
  position: absolute;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 800px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.025) 0%, transparent 60%);
  filter: blur(50px);
}
.ambient::after {
  content: '';
  position: absolute;
  bottom: -400px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,0,0,0.025) 0%, transparent 65%);
  filter: blur(60px);
}

.ambient .noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(0,0,0,0.6) 0.5px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(0,0,0,0.4) 0.5px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  background-position: 0 0, 2px 3px;
}

.page-intro .ambient-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 50% 60% at 50% 35%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 50% 60% at 50% 35%, #000 0%, transparent 65%);
}

.navbar {
  --nav-ease: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-dur: 0.55s;
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  height: 64px;
  width: auto;
  max-width: calc(100% - 32px);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 8px 28px rgba(0,0,0,0.06);
  padding: 6px 2.5rem 6px 2.5rem;
  will-change: top, height, padding, background, box-shadow;
  transition:
    top var(--nav-dur) var(--nav-ease),
    height var(--nav-dur) var(--nav-ease),
    padding var(--nav-dur) var(--nav-ease),
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.navbar.scrolled {
  top: 12px;
  height: 58px;
  padding: 5px 2.5rem 5px 2.5rem;
  background: rgba(255,255,255,0.92);
  border-color: rgba(0,0,0,0.08);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.06),
    0 12px 36px rgba(0,0,0,0.10);
}
.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: auto;
  max-width: none;
  padding: 0;
  margin: 0;
  transition: gap var(--nav-dur) var(--nav-ease);
}
.navbar.scrolled > .container {
  gap: 12px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.18rem; font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  padding: 4px 4px 4px 0;
  transition: opacity 0.2s ease, font-size var(--nav-dur, 0.7s) var(--nav-ease, ease), gap var(--nav-dur, 0.7s) var(--nav-ease, ease);
  flex-shrink: 0;
}
.navbar.scrolled .nav-logo { font-size: 1.02rem; gap: 9px; }
.nav-logo:hover { opacity: 0.78; }
.brand-mark {
  position: relative;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: #1d1d1f;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.18),
    0 4px 12px rgba(0,0,0,0.16);
  transition: width var(--nav-dur, 0.7s) var(--nav-ease, ease), height var(--nav-dur, 0.7s) var(--nav-ease, ease),
    border-radius var(--nav-dur, 0.7s) var(--nav-ease, ease), transform 0.5s var(--ease-apple);
  flex-shrink: 0;
  overflow: hidden;
}
.brand-mark .rocket {
  position: relative;
  width: 78%; height: 78%;
  z-index: 1;
  filter: drop-shadow(0 1px 1.5px rgba(0,0,0,0.30));
  transform: rotate(28deg);
  transition: transform 0.6s var(--ease-apple);
}
.brand-mark .rocket .body { fill: #ffffff; }
.brand-mark .rocket .body-shade { fill: rgba(0,0,0,0.18); }
.brand-mark .rocket .fin { fill: rgba(255,255,255,0.86); }
.brand-mark .rocket .window-ring { fill: rgba(0,0,0,0.22); }
.brand-mark .rocket .window { fill: #1d1d1f; }
.brand-mark .rocket .window-shine { fill: rgba(255,255,255,0.55); }
.brand-mark .rocket .flame { fill: #ffd166; opacity: 0.95; animation: flame-flicker 1.2s ease-in-out infinite; transform-origin: 50% 80%; }
.nav-logo:hover .brand-mark .rocket { transform: rotate(34deg) translate(1px, -1px); }
.navbar.scrolled .brand-mark { width: 30px; height: 30px; border-radius: 9px; }
@keyframes flame-flicker {
  0%,100% { opacity: 0.92; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.20); }
}
.logo-wordmark {
  display: inline-flex; align-items: baseline;
  line-height: 1;
}
.quik-grad {
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.startup-text {
  font-weight: 500;
  color: var(--text-tertiary);
  margin-left: 4px;
}

.nav-divider {
  width: 1px; height: 22px;
  background: rgba(0,0,0,0.08);
  margin: 0 8px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.navbar.scrolled .nav-divider { opacity: 1; }
.nav-links {
  display: flex; align-items: center;
  gap: 6px;
  list-style: none;
  position: relative;
  padding: 0 8px;
  transition: gap var(--nav-dur, 0.7s) var(--nav-ease, ease), padding var(--nav-dur, 0.7s) var(--nav-ease, ease);
}
.navbar.scrolled .nav-links { gap: 2px; padding: 0 4px; }
.nav-links a {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem; font-weight: 500;
  padding: 11px 20px;
  border-radius: 999px;
  transition: color 0.3s ease, padding var(--nav-dur, 0.7s) var(--nav-ease, ease), font-size var(--nav-dur, 0.7s) var(--nav-ease, ease);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.navbar.scrolled .nav-links a {
  font-size: 0.86rem;
  padding: 8px 14px;
}
.nav-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  transform: scale(0.85);
  opacity: 0;
  transition:
    transform 0.4s var(--ease-apple),
    opacity 0.3s ease,
    background 0.3s ease;
  z-index: -1;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::before { transform: scale(1); opacity: 1; }
.nav-links a.active {
  color: var(--blue-dark);
}
.nav-links a.active::before {
  background: var(--blue-soft);
  transform: scale(1);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  outline: none;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 14px;
}
.nav-dropdown-btn {
  cursor: pointer;
  user-select: none;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 11px 18px 11px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, padding var(--nav-dur, 0.7s) var(--nav-ease, ease), font-size var(--nav-dur, 0.7s) var(--nav-ease, ease), background 0.3s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.navbar.scrolled .nav-dropdown-btn { font-size: 0.86rem; padding: 8px 12px 8px 14px; }
.nav-dropdown-btn i {
  font-size: 0.62rem;
  transition: transform 0.4s var(--ease-apple);
  opacity: 0.6;
}
.nav-dropdown:hover .nav-dropdown-btn,
.nav-dropdown:focus-within .nav-dropdown-btn {
  color: var(--text-primary);
  background: rgba(0,0,0,0.05);
}
.nav-dropdown:hover .nav-dropdown-btn i,
.nav-dropdown:focus-within .nav-dropdown-btn i {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown.has-active .nav-dropdown-btn { color: var(--blue-dark); background: var(--blue-soft); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 280px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 8px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 18px 48px rgba(0,0,0,0.14),
    0 6px 16px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transform-origin: top right;
  transition:
    opacity 0.32s ease,
    transform 0.4s var(--ease-apple),
    visibility 0.32s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px !important;
  border-radius: 12px;
  font-size: 0.9rem !important;
  color: var(--text-primary) !important;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.4s var(--ease-apple);
  white-space: normal;
}
.nav-dropdown-menu a::before { display: none !important; }
.nav-dropdown-menu a:hover {
  background: rgba(0,0,0,0.05);
  transform: translateX(2px);
}
.nav-dropdown-menu a.active {
  background: rgba(0,0,0,0.05);
  color: var(--text-primary) !important;
}
.nav-dropdown-menu .menu-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.4s var(--ease-apple);
}
.nav-dropdown-menu a:hover .menu-icon {
  background: var(--text-primary);
  color: white;
  transform: rotate(-8deg) scale(1.05);
}
.nav-dropdown-menu .menu-stack {
  display: flex; flex-direction: column;
  flex: 1; min-width: 0;
  line-height: 1.2;
}
.nav-dropdown-menu .menu-stack strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.nav-dropdown-menu .menu-stack span {
  font-size: 0.76rem;
  color: var(--text-tertiary);
  margin-top: 2px;
  font-weight: 400;
}
.nav-dropdown-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 6px 8px;
}
.nav-dropdown-foot {
  padding: 8px 12px 4px;
  font-size: 0.7rem;
  color: var(--text-tertiary);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.lang-switch {
  display: inline-flex;
  background: rgba(0,0,0,0.04);
  border-radius: 999px;
  padding: 3px;
  gap: 0;
}
.lang-btn {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  padding: 6px 11px;
  border-radius: 999px;
  transition: var(--transition);
}
.lang-btn:hover { color: var(--text-primary); }
.lang-btn.active {
  background: var(--text-primary);
  color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.mobile-lang {
  display: flex;
  gap: 0;
  margin-top: 22px;
  padding: 4px;
  background: rgba(0,0,0,0.04);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.42s;
}
.mobile-nav.open .mobile-lang { opacity: 1; transform: translateY(0); }
.mobile-lang .lang-btn { padding: 8px 16px; font-size: 0.78rem; }
.footer-lang {
  display: inline-flex;
  margin-top: 18px;
  background: rgba(0,0,0,0.04);
  border-radius: 999px;
  padding: 3px;
}
.footer-lang .lang-btn { padding: 6px 12px; font-size: 0.76rem; }

.btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--text-primary);
  color: white;
  font-size: 0.92rem; font-weight: 500;
  padding: 12px 24px;
  border-radius: 999px;
  border: none; cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease, padding var(--nav-dur, 0.7s) var(--nav-ease, ease), font-size var(--nav-dur, 0.7s) var(--nav-ease, ease);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-nav:hover {
  background: #000;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.navbar.scrolled .btn-nav { padding: 9px 18px; font-size: 0.85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  min-width: 40px; min-height: 40px;
  justify-content: center; align-items: center;
}
.hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  position: fixed; inset: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 88px 24px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-apple), visibility 0.35s;
}
.mobile-nav.open { opacity: 1; visibility: visible; pointer-events: all; }
.mobile-nav > a {
  font-size: 1.32rem; font-weight: 600;
  color: var(--text-primary);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.4s var(--ease-apple);
  width: 100%;
  text-align: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.mobile-nav > a:last-of-type { border-bottom: 0; }
.mobile-nav.open > a { opacity: 1; transform: translateY(0); }
.mobile-nav.open > a:nth-child(1)  { transition-delay: 0.04s; }
.mobile-nav.open > a:nth-child(2)  { transition-delay: 0.08s; }
.mobile-nav.open > a:nth-child(3)  { transition-delay: 0.12s; }
.mobile-nav.open > a:nth-child(4)  { transition-delay: 0.16s; }
.mobile-nav.open > a:nth-child(5)  { transition-delay: 0.20s; }
.mobile-nav.open > a:nth-child(6)  { transition-delay: 0.24s; }
.mobile-nav.open > a:nth-child(7)  { transition-delay: 0.28s; }
.mobile-nav.open > a:nth-child(8)  { transition-delay: 0.32s; }
.mobile-nav.open > a:nth-child(9)  { transition-delay: 0.36s; }
.mobile-nav.open > a:nth-child(10) { transition-delay: 0.40s; }
.mobile-nav .mobile-lang {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 24px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s ease 0.44s, transform 0.4s var(--ease-apple) 0.44s;
}
.mobile-nav.open .mobile-lang { opacity: 1; transform: translateY(0); }
.mobile-nav .mobile-lang .lang-btn {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--bg-soft);
  font-weight: 700;
  font-size: 0.9rem;
}
.mobile-nav .mobile-lang .lang-btn.active {
  background: var(--text-primary);
  color: white;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--text-primary);
  color: white;
  font-size: 0.95rem; font-weight: 500;
  padding: 12px 26px;
  border-radius: 999px;
  border: none; cursor: pointer;
  transition: transform 0.4s var(--ease-apple), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  letter-spacing: -0.005em;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.10);
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.btn-primary:hover {
  background: #000;
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0) scale(1); }
.btn-primary i {
  transition: transform 0.4s var(--ease-apple);
}
.btn-primary:hover i {
  transform: translateX(2px) rotate(-8deg);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,0,0,0.04);
  color: var(--text-primary);
  font-size: 0.95rem; font-weight: 500;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease-apple), background 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: -0.005em;
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(0,0,0,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-outline:hover {
  background: rgba(0,0,0,0.08);
  color: var(--text-primary);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.btn-outline:hover::before { opacity: 1; }
.btn-outline i { transition: transform 0.4s var(--ease-apple); }
.btn-outline:hover i { transform: translateX(2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  color: var(--blue);
  font-size: 0.95rem; font-weight: 500;
  padding: 8px 0;
  border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { gap: 10px; color: var(--blue-dark); }

.hero {
  position: relative;
  padding: 140px 0 100px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero .mesh-bg {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 50% at 20% 30%, rgba(0,0,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 60%, rgba(0,0,0,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(0,0,0,0.03) 0%, transparent 60%);
  filter: blur(40px);
  animation: mesh-shift 22s ease-in-out infinite;
}
@keyframes mesh-shift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, 20px) scale(1.05); }
  66% { transform: translate(20px, -10px) scale(0.95); }
}

.hero .cursor-spot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(450px circle at var(--cx, 50%) var(--cy, 50%), rgba(0,0,0,0.04), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero:hover .cursor-spot { opacity: 1; }

.rocket-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.rocket-particles::before,
.rocket-particles::after {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(0,0,0,0.18), transparent 60%),
    radial-gradient(1px 1px at 62% 32%, rgba(0,0,0,0.14), transparent 60%),
    radial-gradient(2px 2px at 38% 76%, rgba(0,0,0,0.16), transparent 60%),
    radial-gradient(1px 1px at 84% 24%, rgba(0,0,0,0.18), transparent 60%),
    radial-gradient(1.5px 1.5px at 25% 88%, rgba(0,0,0,0.12), transparent 60%),
    radial-gradient(1px 1px at 70% 60%, rgba(0,0,0,0.16), transparent 60%),
    radial-gradient(1.5px 1.5px at 92% 78%, rgba(0,0,0,0.14), transparent 60%),
    radial-gradient(1px 1px at 4% 42%, rgba(0,0,0,0.18), transparent 60%),
    radial-gradient(1.5px 1.5px at 50% 12%, rgba(0,0,0,0.12), transparent 60%),
    radial-gradient(1px 1px at 30% 50%, rgba(0,0,0,0.16), transparent 60%),
    radial-gradient(1px 1px at 18% 65%, rgba(0,0,0,0.14), transparent 60%),
    radial-gradient(1.5px 1.5px at 76% 88%, rgba(0,0,0,0.16), transparent 60%);
  background-size: 520px 400px;
  background-repeat: repeat;
  animation: hero-particle-drift 55s linear infinite;
  opacity: 0.9;
}
.rocket-particles::after {
  animation-direction: reverse;
  animation-duration: 130s;
  background-size: 380px 290px;
  opacity: 0.55;
  filter: blur(0.4px);
}
@keyframes hero-particle-drift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-520px, -400px, 0); }
}

.rocket-particles .rp { display: none; }

.rocket-particles .rp1 { top: 14%; animation: rp-fly-1 26s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite; animation-delay: -3s; }
.rocket-particles .rp2 { top: 38%; animation: rp-fly-2 32s cubic-bezier(0.30, 0.50, 0.50, 0.92) infinite; animation-delay: -14s; }
.rocket-particles .rp3 { top: 62%; animation: rp-fly-3 24s cubic-bezier(0.20, 0.40, 0.40, 0.95) infinite; animation-delay: -19s; }
.rocket-particles .rp4 { top: 24%; animation: rp-fly-4 30s cubic-bezier(0.30, 0.55, 0.50, 0.95) infinite; animation-delay: -8s; }
.rocket-particles .rp5 { top: 72%; animation: rp-fly-5 28s cubic-bezier(0.25, 0.45, 0.45, 0.94) infinite; animation-delay: -22s; }
.rocket-particles .rp6 { top: 50%; animation: rp-fly-6 34s cubic-bezier(0.30, 0.50, 0.50, 0.94) infinite; animation-delay: -11s; }

@keyframes rp-fly-1 {
  0%   { transform: translate(-60px, 0) rotate(26deg); opacity: 0; }
  6%   { opacity: 0.55; }
  25%  { transform: translate(25vw, -22px) rotate(28deg); }
  55%  { transform: translate(55vw, -78px) rotate(30deg); }
  80%  { transform: translate(80vw, -150px) rotate(28deg); opacity: 0.50; }
  94%  { opacity: 0.40; }
  100% { transform: translate(calc(100vw + 80px), -200px) rotate(26deg); opacity: 0; }
}
@keyframes rp-fly-2 {
  0%   { transform: translate(-60px, 0) rotate(32deg); opacity: 0; }
  7%   { opacity: 0.45; }
  30%  { transform: translate(30vw, -38px) rotate(36deg); }
  60%  { transform: translate(60vw, -120px) rotate(34deg); }
  85%  { transform: translate(85vw, -210px) rotate(32deg); opacity: 0.40; }
  94%  { opacity: 0.30; }
  100% { transform: translate(calc(100vw + 80px), -260px) rotate(30deg); opacity: 0; }
}
@keyframes rp-fly-3 {
  0%   { transform: translate(-60px, 0) rotate(18deg); opacity: 0; }
  6%   { opacity: 0.50; }
  35%  { transform: translate(35vw, -28px) rotate(22deg); }
  65%  { transform: translate(65vw, -90px) rotate(20deg); }
  82%  { transform: translate(82vw, -180px) rotate(22deg); opacity: 0.45; }
  94%  { opacity: 0.35; }
  100% { transform: translate(calc(100vw + 80px), -240px) rotate(20deg); opacity: 0; }
}
@keyframes rp-fly-4 {
  0%   { transform: translate(-60px, 0) rotate(40deg); opacity: 0; }
  8%   { opacity: 0.42; }
  28%  { transform: translate(28vw, -12px) rotate(38deg); }
  58%  { transform: translate(58vw, -70px) rotate(40deg); }
  82%  { transform: translate(82vw, -150px) rotate(38deg); opacity: 0.36; }
  94%  { opacity: 0.28; }
  100% { transform: translate(calc(100vw + 80px), -210px) rotate(36deg); opacity: 0; }
}
@keyframes rp-fly-5 {
  0%   { transform: translate(-60px, 0) rotate(22deg); opacity: 0; }
  6%   { opacity: 0.50; }
  32%  { transform: translate(32vw, -34px) rotate(26deg); }
  62%  { transform: translate(62vw, -130px) rotate(24deg); }
  84%  { transform: translate(84vw, -240px) rotate(22deg); opacity: 0.42; }
  94%  { opacity: 0.32; }
  100% { transform: translate(calc(100vw + 80px), -300px) rotate(20deg); opacity: 0; }
}
@keyframes rp-fly-6 {
  0%   { transform: translate(-60px, 0) rotate(28deg); opacity: 0; }
  8%   { opacity: 0.38; }
  30%  { transform: translate(30vw, -20px) rotate(32deg); }
  60%  { transform: translate(60vw, -100px) rotate(30deg); }
  82%  { transform: translate(82vw, -180px) rotate(28deg); opacity: 0.32; }
  94%  { opacity: 0.24; }
  100% { transform: translate(calc(100vw + 80px), -220px) rotate(26deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .rocket-particles .rp { animation: none !important; opacity: 0; }
}

.hero .orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
  animation: orb-float 14s ease-in-out infinite;
}
.hero .orb.o1 {
  width: 400px; height: 400px;
  top: 10%; left: -100px;
  background: radial-gradient(circle, rgba(0,0,0,0.06) 0%, transparent 70%);
}
.hero .orb.o2 {
  width: 360px; height: 360px;
  top: 30%; right: -80px;
  background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 70%);
  animation-direction: reverse;
  animation-duration: 18s;
}
.hero .orb.o3 {
  width: 300px; height: 300px;
  bottom: 5%; left: 30%;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
  animation-duration: 20s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -30px); }
  66% { transform: translate(-30px, 20px); }
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 700px;
  background:
    radial-gradient(ellipse 50% 50% at 50% 35%, rgba(0,0,0,0.03) 0%, transparent 65%),
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(0,0,0,0.025) 0%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  background:
    linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)) padding-box,
    linear-gradient(135deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.04) 30%, rgba(0,0,0,0.04) 70%, rgba(0,0,0,0.16) 100%) border-box;
  border: 1px solid transparent;
  color: var(--text-primary);
  font-size: 0.85rem; font-weight: 500;
  padding: 5px 18px 5px 5px;
  border-radius: 999px;
  margin-bottom: 32px;
  letter-spacing: -0.005em;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    0 2px 10px rgba(0,0,0,0.04),
    0 1px 2px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.65);
  overflow: hidden;
  isolation: isolate;
  background-size: 200% 200%, 200% 200%;
  animation: eyebrow-border 8s ease-in-out infinite;
}
@keyframes eyebrow-border {
  0%, 100% { background-position: 0% 0%, 0% 0%; }
  50% { background-position: 0% 0%, 100% 100%; }
}

.hero-eyebrow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-110%) skewX(-12deg);
  pointer-events: none;
  animation: eyebrow-shimmer 5.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: -1;
}
@keyframes eyebrow-shimmer {
  0%, 60%, 100% { transform: translateX(-110%) skewX(-12deg); }
  75% { transform: translateX(110%) skewX(-12deg); }
}

.hero-eyebrow .pill {
  position: relative;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.66rem;
  font-weight: 700;
  background: linear-gradient(140deg, #2c2c30 0%, #1d1d1f 50%, #2c2c30 100%);
  color: white;
  padding: 5px 12px 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.20);
}
.hero-eyebrow .pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #ffd166;
  box-shadow: 0 0 8px rgba(255,209,102,0.85), 0 0 0 1px rgba(0,0,0,0.20);
  animation: pill-spark 2.4s ease-in-out infinite;
}
@keyframes pill-spark {
  0%, 100% { opacity: 0.7; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-eyebrow .eb-mark {
  position: relative;
  width: 26px; height: 26px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, #2c2c30 0%, #515154 100%);
  color: white;
  font-size: 0.74rem;
  flex-shrink: 0;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);
  overflow: hidden;
  transition: transform 0.5s var(--ease-apple);
}
.hero-eyebrow .eb-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 15%, rgba(255,255,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.hero-eyebrow:hover .eb-mark { transform: rotate(-10deg) scale(1.06); }
.hero-eyebrow .eb-mark i { position: relative; z-index: 1; }

.hero-eyebrow .eb-divider {
  width: 1px; height: 14px;
  background: rgba(0,0,0,0.10);
  margin: 0 2px;
  flex-shrink: 0;
}

.hero-eyebrow .dot { display: none !important; }
@keyframes dot-radar {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}

.hero-eyebrow:has(.eb-mark) { padding-left: 4px; }
.hero-title {
  font-size: clamp(2.1rem, 6.4vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 22px;
  color: var(--text-primary);
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  position: relative;
}

.text-gradient {
  position: relative;
  display: inline-block;
}
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.05;
}
.hero-title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: word-rise 0.9s var(--ease-apple) forwards;
}
.hero-title .word:nth-of-type(1) > span { animation-delay: 0.05s; }
.hero-title .word:nth-of-type(2) > span { animation-delay: 0.11s; }
.hero-title .word:nth-of-type(3) > span { animation-delay: 0.17s; }
.hero-title .word:nth-of-type(4) > span { animation-delay: 0.23s; }
.hero-title .word:nth-of-type(5) > span { animation-delay: 0.29s; }
.hero-title .word:nth-of-type(6) > span { animation-delay: 0.35s; }
.hero-title .word:nth-of-type(7) > span { animation-delay: 0.41s; }
.hero-title .word:nth-of-type(8) > span { animation-delay: 0.47s; }
@keyframes word-rise {
  to { transform: translateY(0); }
}
.text-gradient {
  color: #cca958;
  -webkit-text-fill-color: #cca958;
}

.text-gradient .word,
.text-gradient .word > span {
  color: #cca958;
  -webkit-text-fill-color: #cca958;
}
.text-blue { color: var(--blue); }
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero-ctas {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.hero-trust {
  display: inline-flex; align-items: center;
  gap: 24px; flex-wrap: wrap;
  justify-content: center;
  padding: 12px 22px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.85rem; color: var(--text-secondary);
  font-weight: 500;
}
.hero-trust-item i { color: var(--green); font-size: 0.78rem; }

.orbit-stage {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 64px auto 0;
  aspect-ratio: 1.6 / 1;
}
.orbit-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0,0,0,0.09) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(0,0,0,0.12);
  border-radius: 50%;
  animation: rotate-slow 50s linear infinite;
}
.orbit-ring.r1 { width: 92%; aspect-ratio: 1; }
.orbit-ring.r2 { width: 70%; aspect-ratio: 1; animation-duration: 70s; animation-direction: reverse; border-color: rgba(0,0,0,0.09); }
.orbit-ring.r3 { width: 48%; aspect-ratio: 1; animation-duration: 40s; border-color: rgba(0,0,0,0.07); }
.orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 132px; height: 132px;
  transform: translate(-50%, -50%);
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-xl);
  z-index: 4;
  animation: float 8s ease-in-out infinite;
}
.orbit-core img { width: 80px; height: 80px; border-radius: 18px; }
.orbit-node {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  z-index: 3;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.orbit-node i {
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.orbit-node .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.orbit-node.n1 { top: 6%; left: 18%; animation: float 6.5s ease-in-out infinite; }
.orbit-node.n2 { top: 12%; right: 14%; animation: float 7.5s ease-in-out infinite 0.4s; }
.orbit-node.n3 { bottom: 24%; right: 6%; animation: float 6s ease-in-out infinite 0.8s; }
.orbit-node.n4 { bottom: 8%; left: 26%; animation: float 7s ease-in-out infinite 0.3s; }
.orbit-node.n5 { top: 50%; left: 0; animation: float 8s ease-in-out infinite 1s; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-primary);
}
.section-title {
  font-size: clamp(1.85rem, 4.4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--text-primary);
  overflow-wrap: break-word;
}
.section-sub {
  font-size: 1.15rem;
  max-width: 700px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head .section-sub { margin: 0 auto; }

.manifesto {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.manifesto-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.manifesto-card::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.manifesto-quote {
  position: relative;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.manifesto-quote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.manifesto-author {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-grid.feature-grid-4 { grid-template-columns: repeat(4, 1fr); }
.feature-grid.feature-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
@media (max-width: 980px) {
  .feature-grid.feature-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .pillars.pillars-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .pillars { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 720px) {
  .feature-grid.feature-grid-4 { grid-template-columns: 1fr; }
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.5s var(--ease-apple), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(0,0,0,0.04), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}
.feature-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--surface-2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 22px;
  transition: transform 0.5s var(--ease-apple), background 0.3s ease, color 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
  background: var(--text-primary);
  color: white;
}
.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.feature-text {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.project-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.project-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.project-card.coming-soon { opacity: 0.78; }
.project-head {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  gap: 16px;
}
.project-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3d 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.project-icon.alt {
  background: var(--surface-2);
  color: var(--text-secondary);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}
.project-icon.services {
  background: linear-gradient(135deg, #1d1d1f 0%, #515154 100%);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.project-status {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(204,169,88,0.10);
  color: var(--green);
  white-space: nowrap;
}
.project-status.soon {
  background: rgba(255,159,10,0.12);
  color: #c66f00;
}
.project-status.beta {
  background: rgba(0,0,0,0.06);
  color: var(--text-primary);
}
.project-status.lab {
  background: rgba(0,0,0,0.06);
  color: var(--text-secondary);
}
.project-name {
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.project-tag {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.project-desc {
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 22px;
  flex: 1;
}
.project-meta {
  display: flex; flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.project-chip {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-secondary);
  font-weight: 500;
}
.project-cta {
  display: inline-flex; align-items: center;
  gap: 6px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-primary);
  align-self: flex-start;
}
.project-card:hover .project-cta { gap: 10px; color: var(--text-primary); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps.steps-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .steps.steps-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .steps.steps-4 { grid-template-columns: 1fr; }
}
.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
}
.step-num {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--surface-2);
  color: var(--text-primary);
  border-radius: 999px;
  margin-bottom: 18px;
}
.step-title {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.cta-band {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.04) 0%, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.03) 0%, transparent 55%),
    linear-gradient(135deg, #1d1d1f 0%, #2c2c30 100%);
  border-radius: var(--radius-xl);
  padding: 88px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
  box-shadow:
    0 24px 60px -12px rgba(0,0,0,0.30),
    0 8px 24px -8px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 75%);
  pointer-events: none;
  opacity: 0.5;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band > .particles, .cta-band > .spark { z-index: 0; }
.bento-cell > .particles, .bento-cell > .spark { z-index: 0; }
.split-feature > .particles, .split-feature > .spark { z-index: 0; }
.cta-title {
  font-size: clamp(1.7rem, 4.2vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: white;
  overflow-wrap: break-word;
  text-shadow: 0 2px 12px rgba(13,73,160,0.22);
}
.cta-sub {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary {
  background: white;
  color: var(--text-primary);
}
.cta-band .btn-primary:hover {
  background: white;
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}
.cta-band .btn-outline {
  background: rgba(255,255,255,0.16);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.30);
}
.cta-band .btn-outline:hover {
  background: rgba(255,255,255,0.26);
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.50);
}

.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.single { grid-template-columns: 1fr; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.form-label .req { color: var(--blue); margin-left: 3px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  background: white;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.07);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-help {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-top: 6px;
}
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}
.form-checkbox input { margin-top: 3px; accent-color: var(--gold-deep); flex-shrink: 0; }
.form-checkbox a {
  color: #7a5e1e;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold-deep);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}
.form-checkbox a:hover {
  color: var(--text-primary);
  text-decoration-color: var(--text-primary);
}

.field-error {
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px;
  padding: 11px 14px;
  background: var(--gold-soft);
  border: 1.5px solid var(--gold-line);
  border-left: 4px solid var(--gold-deep);
  border-radius: 12px;
  color: #4a3a14;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  animation: fieldErrorIn 0.35s var(--ease-apple);
}
.field-error::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold-deep);
  font-size: 0.96rem;
  flex-shrink: 0;
}
@keyframes fieldErrorIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.has-error .form-input,
.has-error .form-select,
.has-error .form-textarea,
.has-error input[type="text"],
.has-error input[type="email"],
.has-error input[type="tel"],
.has-error input[type="url"],
.has-error select,
.has-error textarea {
  border-color: var(--gold-deep) !important;
  background: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(204,169,88,0.18);
}
.has-error .form-checkbox span {
  color: #4a3a14;
}

.form-other {
  display: none;
  margin-top: 12px;
  animation: fieldErrorIn 0.3s var(--ease-apple);
}
.form-other.show { display: block; }

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.progress-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.progress-num {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
}
.progress-num small {
  font-size: 1.6rem;
  color: var(--text-tertiary);
  -webkit-text-fill-color: var(--text-tertiary);
  font-weight: 500;
}
.progress-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 12px 0 28px;
}
.progress-bar {
  height: 10px;
  background: var(--surface-3);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: var(--grad-blue);
  border-radius: 999px;
  transition: width 1.2s var(--ease-apple);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pillars.pillars-4 { grid-template-columns: repeat(4, 1fr); }
.pillars.pillars-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
.pillar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.pillar:hover {
  border-color: var(--border-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pillar i {
  font-size: 1.6rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.pillar-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pillar-text {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--text-primary) 0%, var(--border) 100%);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 6px;
  width: 14px; height: 14px;
  background: white;
  border: 2px solid var(--text-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--surface-2);
}
.timeline-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.timeline-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.timeline-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.founder {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-md);
}
.founder-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.6rem;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
}
.founder-portrait::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 60%);
  animation: rotate-slow 20s linear infinite;
}
.founder-portrait i { position: relative; z-index: 1; }
.founder-name {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 20px;
}
.founder-bio {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.founder-links {
  display: flex; gap: 10px; flex-wrap: wrap;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] { border-color: var(--border-mid); box-shadow: var(--shadow-sm); }
.faq-summary {
  padding: 22px 26px;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-tertiary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] .faq-summary::after { transform: rotate(45deg); color: var(--blue); }
.faq-body {
  padding: 0 26px 22px;
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-tag {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.55;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
}
.footer-col a:hover { color: var(--blue); }
.footer-bar {
  display: flex; justify-content: center;
  align-items: center;
  flex-wrap: wrap; gap: 12px 22px;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-tertiary);
  opacity: 0.55;
  text-align: center;
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-legal a { color: var(--text-tertiary); }
.footer-legal a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 6px 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-tertiary);
  opacity: 0.55;
  text-align: center;
  letter-spacing: 0;
}
.footer-bottom span { display: inline-block; }

.page-intro {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-intro .hero-eyebrow,
.page-intro .hero-title,
.page-intro .hero-subtitle,
.page-intro .hero-ctas {
  opacity: 0;
  transform: translateY(20px);
  animation: rise-in 0.9s var(--ease-apple) forwards;
}
.page-intro .hero-eyebrow { animation-delay: 0.05s; }
.page-intro .hero-title { animation-delay: 0.18s; }
.page-intro .hero-subtitle { animation-delay: 0.32s; }
.page-intro .hero-ctas { animation-delay: 0.46s; }
.hero .hero-eyebrow,
.hero .hero-title,
.hero .hero-subtitle,
.hero .hero-ctas,
.hero .hero-trust,
.hero .hero-showcase {
  opacity: 0;
  transform: translateY(20px);
  animation: rise-in 0.9s var(--ease-apple) forwards;
}
.hero .hero-eyebrow { animation-delay: 0.05s; }
.hero .hero-title { animation-delay: 0.18s; }
.hero .hero-subtitle { animation-delay: 0.32s; }
.hero .hero-ctas { animation-delay: 0.46s; }
.hero .hero-trust { animation-delay: 0.58s; }
.hero .hero-showcase { animation-delay: 0.7s; }
@keyframes rise-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.kpi-banner {
  position: relative;
  background: linear-gradient(135deg, #1d1d1f 0%, #2c2c30 100%);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  color: white;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.20);
}
.kpi-banner > * { position: relative; z-index: 1; }
.kpi-banner > .particles, .kpi-banner > .spark { z-index: 0; }
.kpi-banner-head {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.kpi-banner-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.kpi-banner-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #cca958;
  box-shadow: 0 0 0 3px rgba(204,169,88,0.20);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.kpi-banner h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: white;
  max-width: 600px;
}
.kpi-banner-side {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px 8px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.kpi-banner-side .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #cca958;
  box-shadow: 0 0 0 3px rgba(204,169,88,0.20);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.kpi-card {
  position: relative;
  padding: 26px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.kpi-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}
.kpi-card-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.kpi-card-eyebrow i { font-size: 0.7rem; opacity: 0.85; }
.kpi-card-num {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 4px;
}
.kpi-card-num small {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.04em;
}
.kpi-card-label {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.66);
  line-height: 1.45;
  margin-bottom: 16px;
}
.kpi-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.kpi-bar span {
  display: block;
  height: 100%;
  width: var(--p, 50%);
  background: white;
  border-radius: 999px;
  transition: width 1.4s var(--ease-apple);
}
.kpi-trend {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.66);
}
.kpi-trend i { font-size: 0.65rem; }
.kpi-trend.up { color: var(--gold-deep); }

.kpi-ticker {
  margin-top: 32px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
}
.kpi-ticker .ticker-now {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.kpi-ticker .ticker-now::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #cca958;
  box-shadow: 0 0 0 3px rgba(204,169,88,0.20);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.kpi-ticker strong {
  color: white;
  font-weight: 600;
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
  z-index: 0;
}
.particles::before,
.particles::after {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    radial-gradient(2px 2px at 12% 18%, rgba(255,255,255,0.95), transparent 60%),
    radial-gradient(1.5px 1.5px at 62% 32%, rgba(255,255,255,0.80), transparent 60%),
    radial-gradient(2.5px 2.5px at 38% 76%, rgba(255,255,255,0.85), transparent 60%),
    radial-gradient(1.5px 1.5px at 84% 24%, rgba(255,255,255,0.95), transparent 60%),
    radial-gradient(2px 2px at 25% 88%, rgba(255,255,255,0.70), transparent 60%),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(255,255,255,0.80), transparent 60%),
    radial-gradient(2px 2px at 92% 78%, rgba(255,255,255,0.85), transparent 60%),
    radial-gradient(1.5px 1.5px at 4% 42%, rgba(255,255,255,0.95), transparent 60%),
    radial-gradient(2.5px 2.5px at 50% 12%, rgba(255,255,255,0.65), transparent 60%),
    radial-gradient(1.5px 1.5px at 30% 50%, rgba(255,255,255,0.85), transparent 60%),
    radial-gradient(1.5px 1.5px at 18% 65%, rgba(255,255,255,0.70), transparent 60%),
    radial-gradient(2px 2px at 76% 88%, rgba(255,255,255,0.80), transparent 60%);
  background-size: 480px 380px;
  background-repeat: repeat;
  animation: particle-drift 45s linear infinite;
  opacity: 0.9;
}
.particles::after {
  animation-direction: reverse;
  animation-duration: 100s;
  background-size: 360px 280px;
  opacity: 0.6;
  filter: blur(0.4px);
}
@keyframes particle-drift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-480px, -380px, 0); }
}

.spark {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
  animation: spark-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
.spark.s1 { top: 18%; left: 14%; animation-delay: 0s; }
.spark.s2 { top: 62%; right: 22%; animation-delay: 1.4s; }
.spark.s3 { bottom: 18%; left: 36%; animation-delay: 2.6s; }
.spark.s4 { top: 28%; right: 12%; animation-delay: 3.2s; }
@keyframes spark-pulse {
  0%, 100% { opacity: 0.15; transform: scale(0.6); }
  50% { opacity: 0.85; transform: scale(1.3); }
}

.flow-stage {
  position: relative;
  padding: 0;
}
.flow-stage .steps {
  position: relative;
  z-index: 2;
}
.flow-svg {
  position: absolute;
  top: 50%; left: 0; right: 0;
  width: 100%;
  height: 80px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: flow-fade 1.2s var(--ease-apple) 0.4s forwards;
}
@keyframes flow-fade { to { opacity: 1; } }
.flow-svg path {
  fill: none;
  stroke: rgba(0,0,0,0.18);
  stroke-width: 2;
  stroke-dasharray: 5 6;
  stroke-linecap: round;
  animation: dash-flow 16s linear infinite;
}
.flow-svg .arrow-head {
  fill: rgba(0,0,0,0.5);
  animation: arrow-pop 1s var(--ease-apple) 1.4s forwards;
  opacity: 0;
}
@keyframes arrow-pop { to { opacity: 1; } }

.roadmap {
  position: relative;
  padding: 40px 0 20px;
}
.roadmap-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
}
.roadmap-track::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background:
    linear-gradient(90deg, var(--text-primary) 0%, var(--text-primary) 25%, transparent 25%),
    repeating-linear-gradient(90deg, transparent 0, transparent 6px, rgba(0,0,0,0.18) 6px, rgba(0,0,0,0.18) 12px);
  z-index: 0;
}
.roadmap-node {
  position: relative;
  padding: 0 12px;
  text-align: center;
}
.roadmap-marker {
  position: relative;
  width: 44px; height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.92rem;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  transition: var(--transition);
}
.roadmap-node.done .roadmap-marker {
  background: var(--text-primary);
  color: white;
}
.roadmap-node.now .roadmap-marker {
  background: var(--text-primary);
  color: white;
  box-shadow: 0 0 0 6px var(--gold-soft), 0 8px 20px rgba(0,0,0,0.18);
  border-color: var(--gold-line);
  animation: marker-pulse 2s ease-in-out infinite;
}
.roadmap-node.future .roadmap-marker {
  background: var(--surface-2);
  border-color: rgba(0,0,0,0.18);
  color: var(--text-tertiary);
}
@keyframes marker-pulse {
  0%,100% { box-shadow: 0 0 0 6px rgba(0,0,0,0.06), 0 8px 20px rgba(0,0,0,0.18); }
  50% { box-shadow: 0 0 0 12px rgba(0,0,0,0.04), 0 8px 20px rgba(0,0,0,0.18); }
}
.roadmap-quarter {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}
.roadmap-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin-bottom: 6px;
}
.roadmap-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.changelog {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.changelog-side h3 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.changelog-feed {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.changelog-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.changelog-head .title {
  font-size: 0.84rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-primary);
}
.changelog-head .live-indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #cca958;
  box-shadow: 0 0 0 3px rgba(204,169,88,0.18);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.changelog-head .meta {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.changelog-list { padding: 8px 0; max-height: 360px; overflow: hidden; }
.changelog-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 14px 22px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
}
.changelog-item:last-child { border-bottom: none; }
.changelog-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--text-secondary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.changelog-icon.dark {
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3d 100%);
  color: white;
}
.changelog-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.changelog-body span {
  display: block;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.changelog-when {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.split-feature {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.05) 0%, transparent 55%),
    linear-gradient(135deg, #1d1d1f 0%, #2c2c30 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  color: white;
  position: relative;
  overflow: hidden;
}
.split-feature::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: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 70%);
  pointer-events: none;
}
.split-feature > * { position: relative; z-index: 1; }
.split-feature .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-feature h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}
.split-feature p {
  font-size: 1rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.55;
}
.split-feature .right-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.split-feature .ring-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}
.split-feature .ring-card .ring {
  position: relative;
  width: 70px; height: 70px;
  margin: 0 auto 10px;
}
.split-feature .ring-card .ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.split-feature .ring-card .ring svg circle { fill: none; }
.split-feature .ring-card .ring svg .track { stroke: rgba(255,255,255,0.14); stroke-width: 6; }
.split-feature .ring-card .ring svg .progress {
  stroke: white;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: var(--circ, 188);
  stroke-dashoffset: var(--off, 60);
  transition: stroke-dashoffset 1.6s var(--ease-apple);
}
.split-feature .ring-card .ring-num {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.split-feature .ring-card strong {
  font-size: 0.88rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.split-feature .ring-card span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.60);
}

.feat-banner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 auto;
  max-width: 1080px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.feat-banner-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 22px 22px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  line-height: 1.35;
  transition: transform 0.45s var(--ease-apple), box-shadow 0.3s ease, border-color 0.3s ease;
}
.feat-banner-item:hover {
  transform: translateY(-2px);
  border-color: var(--border-mid);
  box-shadow: var(--shadow-md);
}
.feat-banner-item i {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--bg-soft);
  color: var(--text-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s var(--ease-apple);
}
.feat-banner-item:hover i {
  background: var(--text-primary);
  color: white;
  transform: rotate(-6deg) scale(1.05);
}
.feat-banner-divider { display: none !important; }
@media (max-width: 880px) { .feat-banner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .feat-banner { grid-template-columns: 1fr; } }

.page-intro-decor {
  position: relative;
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  pointer-events: none;
}

.float-card {
  position: relative;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 8px 24px rgba(15,23,42,0.06),
    0 24px 48px rgba(15,23,42,0.08);
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-primary);
  pointer-events: auto;
  opacity: 0;
  animation: float-fade-in 1.2s var(--ease-apple) forwards;
}
.float-card .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.float-card .row + .row { margin-top: 8px; }
.float-card .icon-square {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3d 100%);
  color: white;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.16);
}
.float-card .icon-square.alt {
  background: var(--surface-2);
  color: var(--text-secondary);
  box-shadow: none;
}
.float-card .stack {
  display: flex; flex-direction: column;
  flex: 1;
  min-width: 0;
}
.float-card .stack strong {
  font-size: 0.92rem; font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.float-card .stack small {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}
.float-card .badge {
  font-size: 0.7rem; font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.float-card .badge.green { background: rgba(204,169,88,0.10); color: #7a5e1e; }
.float-card .badge.blue { background: rgba(0,0,0,0.06); color: var(--text-primary); }
.float-card .badge.grey { background: rgba(0,0,0,0.05); color: var(--text-tertiary); }
@keyframes float-fade-in {
  from { opacity: 0; transform: translateY(40px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.deco-stage {
  position: relative;
  width: 100%;
  max-width: 820px;
  height: 240px;
}
.deco-stage .float-card {
  position: absolute;
  animation-fill-mode: both;
}
.deco-stage .float-card.c1 {
  top: 0; left: 4%;
  width: 280px;
  transform: rotate(-3deg);
  animation: float-fade-in 1s var(--ease-apple) 0.6s forwards, float-bob-slow 7s ease-in-out 1.6s infinite;
}
.deco-stage .float-card.c2 {
  top: 30%; left: 50%;
  width: 320px;
  transform: translateX(-50%);
  z-index: 2;
  animation: float-fade-in 1s var(--ease-apple) 0.4s forwards, float-bob-slow 8s ease-in-out 1.4s infinite;
}
.deco-stage .float-card.c3 {
  top: 0; right: 4%;
  width: 280px;
  transform: rotate(3deg);
  animation: float-fade-in 1s var(--ease-apple) 0.7s forwards, float-bob-slow 7.5s ease-in-out 1.7s infinite;
}
.deco-stage .float-card.c4 {
  bottom: 0; left: 22%;
  width: 220px;
  animation: float-fade-in 1s var(--ease-apple) 0.85s forwards, float-bob-slow 7.2s ease-in-out 1.8s infinite;
}
.deco-stage .float-card.c5 {
  bottom: 0; right: 22%;
  width: 220px;
  animation: float-fade-in 1s var(--ease-apple) 1s forwards, float-bob-slow 7.8s ease-in-out 2s infinite;
}
@keyframes float-bob-slow {
  0%,100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--r, 0deg)); }
}
.deco-stage .float-card.c1 { --r: -3deg; }
.deco-stage .float-card.c3 { --r: 3deg; }

.deco-blob {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.deco-blob::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 70%; aspect-ratio: 1.2;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(0,0,0,0.05) 0%, transparent 70%);
  filter: blur(30px);
  border-radius: 50%;
  animation: blob-shift 12s ease-in-out infinite;
}
@keyframes blob-shift {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.12); }
}

.bubble-cluster {
  position: relative;
  width: 100%; max-width: 720px;
  height: 220px;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3d 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.10);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: bubble-pop 0.9s var(--ease-apple) forwards, bubble-float 8s ease-in-out infinite;
}
.bubble.alt-1 { background: linear-gradient(135deg, #3a3a3d 0%, #515154 100%); }
.bubble.alt-2 { background: var(--surface-2); color: var(--text-secondary); box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.bubble.large { width: 92px; height: 92px; font-size: 1.2rem; }
.bubble.medium { width: 68px; height: 68px; font-size: 0.95rem; }
.bubble.small { width: 50px; height: 50px; font-size: 0.78rem; }
.bubble.b1 { top: 20%; left: 5%; animation-delay: 0.4s, 1.4s; }
.bubble.b2 { top: 5%; left: 28%; animation-delay: 0.55s, 1.55s; }
.bubble.b3 { top: 38%; left: 38%; animation-delay: 0.45s, 1.45s; }
.bubble.b4 { top: 8%; left: 55%; animation-delay: 0.65s, 1.65s; }
.bubble.b5 { top: 32%; right: 22%; animation-delay: 0.7s, 1.7s; }
.bubble.b6 { top: 12%; right: 4%; animation-delay: 0.5s, 1.5s; }
.bubble.b7 { bottom: 8%; left: 18%; animation-delay: 0.75s, 1.75s; }
.bubble.b8 { bottom: 4%; left: 48%; animation-delay: 0.6s, 1.6s; }
.bubble.b9 { bottom: 12%; right: 8%; animation-delay: 0.8s, 1.8s; }
@keyframes bubble-pop {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bubble-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.bubble-cluster svg.lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.bubble-cluster svg.lines path {
  fill: none;
  stroke: rgba(0,0,0,0.14);
  stroke-width: 1.2;
  stroke-dasharray: 3 4;
  animation: dash-flow 8s linear infinite;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -40; }
}

.pitch-stage {
  position: relative;
  width: 100%; max-width: 720px;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pitch-paper {
  position: absolute;
  width: 240px; height: 200px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
  padding: 18px;
  opacity: 0;
  animation: paper-rise 0.8s var(--ease-apple) forwards;
}
.pitch-paper.p1 {
  transform: rotate(-8deg) translateX(-110px);
  animation-delay: 0.5s;
}
.pitch-paper.p2 {
  transform: rotate(2deg);
  z-index: 2;
  animation-delay: 0.65s;
}
.pitch-paper.p3 {
  transform: rotate(8deg) translateX(110px);
  animation-delay: 0.8s;
}
@keyframes paper-rise {
  from { opacity: 0; transform: translateY(40px) rotate(0); }
}
.pitch-paper .skel {
  height: 8px;
  background: var(--surface-2);
  border-radius: 999px;
  margin-bottom: 10px;
}
.pitch-paper .skel:nth-child(1) { width: 60%; height: 10px; }
.pitch-paper .skel:nth-child(2) { width: 92%; }
.pitch-paper .skel:nth-child(3) { width: 80%; }
.pitch-paper .skel:nth-child(4) { width: 70%; }
.pitch-paper.p2 .skel:nth-child(1) {
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3d 100%);
  height: 14px;
  width: 50%;
}
.pitch-arrow {
  position: absolute;
  bottom: 20px; right: 30px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3d 100%);
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 6px 18px rgba(0,0,0,0.20);
  z-index: 3;
  animation: pulse-soft 2.5s ease-in-out infinite;
}
@keyframes pulse-soft {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.founder-badge-stage {
  position: relative;
  width: 100%; max-width: 540px;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.founder-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px 14px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 8px 22px rgba(15,23,42,0.08);
  opacity: 0;
  animation: rise-in 0.9s var(--ease-apple) 0.6s forwards;
}
.founder-badge .badge-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3d 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.05rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}
.founder-badge .badge-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.founder-badge .badge-text span {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

.about-stats-line {
  display: flex; gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}
.about-stat {
  text-align: center;
  opacity: 0;
  animation: rise-in 0.9s var(--ease-apple) forwards;
}
.about-stat:nth-child(1) { animation-delay: 0.7s; }
.about-stat:nth-child(2) { animation-delay: 0.8s; }
.about-stat:nth-child(3) { animation-delay: 0.9s; }
.about-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.about-stat span {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-board {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 4px 14px rgba(15,23,42,0.04),
    0 24px 48px rgba(15,23,42,0.10);
  transform: perspective(1400px) rotateX(2deg);
  opacity: 0;
  animation: board-rise 1s var(--ease-apple) 0.5s forwards;
}
@keyframes board-rise {
  from { opacity: 0; transform: perspective(1400px) rotateX(8deg) translateY(30px); }
  to { opacity: 1; transform: perspective(1400px) rotateX(2deg) translateY(0); }
}
.project-board-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 8px;
}
.project-board-title {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem; font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.project-board-title::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(204,169,88,0.22);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.project-board-meta {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.project-board-list { display: flex; flex-direction: column; gap: 6px; }
.project-board-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.025);
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.4s var(--ease-apple);
}
.project-board-row:hover {
  background: rgba(0,0,0,0.04);
  transform: translateX(2px);
}
.project-board-row .pb-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3d 100%);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.92rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.16);
}
.project-board-row .pb-icon.muted {
  background: rgba(0,0,0,0.06);
  color: var(--text-secondary);
  box-shadow: none;
}
.project-board-row .pb-stack { display: flex; flex-direction: column; min-width: 0; }
.project-board-row .pb-stack strong {
  font-size: 0.92rem; font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.project-board-row .pb-stack span {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}
.project-board-row .pb-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  color: var(--text-tertiary);
}
.project-board-row .pb-status.live { background: rgba(204,169,88,0.10); color: #7a5e1e; }
.project-board-row .pb-status.live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(204,169,88,0.20);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.project-board-row .pb-status.active { background: rgba(0,0,0,0.06); color: var(--text-primary); }
.project-board-row .pb-status.soon { background: rgba(255,159,10,0.10); color: #c66f00; }

.project-board::after {
  content: '';
  position: absolute;
  left: 6%; right: 6%;
  bottom: -36px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.10) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}

.seats-card {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 22px 26px 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 4px 14px rgba(15,23,42,0.04),
    0 24px 48px rgba(15,23,42,0.10);
  transform: perspective(1400px) rotateX(2deg);
  opacity: 0;
  animation: board-rise 1s var(--ease-apple) 0.4s forwards;
}
.seats-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.seats-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: inline-flex; align-items: center; gap: 8px;
}
.seats-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-primary);
}
.seats-count {
  display: flex; align-items: baseline; gap: 4px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.seats-count .num {
  font-size: 1.6rem;
  color: var(--text-primary);
}
.seats-count .total {
  font-size: 1rem;
  color: var(--text-tertiary);
  font-weight: 500;
}
.seats-grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 4px;
}
.seats-grid .seat {
  aspect-ratio: 1;
  background: rgba(0,0,0,0.06);
  border-radius: 3px;
  transition: background 0.3s ease, transform 0.5s var(--ease-apple);
}
.seats-grid .seat.taken {
  background: var(--text-primary);
  box-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.seats-grid .seat.taken.you {
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3d 100%);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.20);
  animation: seat-pulse 2.4s ease-in-out infinite;
}
@keyframes seat-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
.seats-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-tertiary);
  flex-wrap: wrap;
  gap: 8px;
}
.seats-foot .legend {
  display: inline-flex; align-items: center; gap: 14px;
}
.seats-foot .legend-item {
  display: inline-flex; align-items: center; gap: 6px;
}
.seats-foot .legend-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
}
.seats-foot .legend-dot.taken { background: var(--text-primary); }
.seats-foot .legend-dot.open { background: rgba(0,0,0,0.10); }

@media (max-width: 720px) {
  .seats-grid { grid-template-columns: repeat(20, 1fr); gap: 3px; }
  .seats-card { padding: 18px 18px 20px; }
  .project-board { max-width: 100%; }
  .project-board-row { grid-template-columns: 32px 1fr auto; gap: 10px; padding: 10px 12px; }
  .project-board-row .pb-icon { width: 32px; height: 32px; font-size: 0.85rem; }
}

.quik-meaning {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.quik-meaning-text .section-eyebrow { margin-bottom: 14px; }
.quik-meaning-text .section-title { margin-bottom: 22px; }
.quik-meaning-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.quik-meaning-text p strong { color: var(--text-primary); font-weight: 600; }
.quik-meaning-text p:last-child { margin-bottom: 0; }
.quik-letters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quik-letter {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #1d1d1f;
  border: 1px solid #2a2a2e;
  border-radius: 24px;
  padding: 22px 24px;
  color: white;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 12px 32px rgba(0,0,0,0.20),
    0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.5s var(--ease-apple), box-shadow 0.4s ease, border-color 0.4s ease;
  isolation: isolate;
}
.quik-letter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.7;
}
.quik-letter::after {
  content: '';
  position: absolute;
  top: 16px; right: 16px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}
.quik-letter:hover {
  transform: translateY(-6px) rotate(-2deg);
  border-color: #3a3a3d;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 20px 44px rgba(0,0,0,0.26),
    0 6px 18px rgba(0,0,0,0.16);
}
.quik-letter > * { position: relative; z-index: 1; }
.quik-letter .ql-letter {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: #ffffff;
  text-shadow:
    0 1px 0 rgba(0,0,0,0.30),
    0 4px 14px rgba(0,0,0,0.30);
}
.quik-letter .ql-meta {
  display: flex; flex-direction: column;
  gap: 2px;
}
.quik-letter .ql-tag {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}
.quik-letter .ql-text {
  font-size: 0.92rem;
  font-weight: 500;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.quik-letter:nth-child(1) { transform: rotate(-1deg); }
.quik-letter:nth-child(2) { transform: rotate(1deg); }
.quik-letter:nth-child(3) { transform: rotate(1deg); }
.quik-letter:nth-child(4) { transform: rotate(-1deg); }
.quik-letter:nth-child(1):hover { transform: translateY(-6px) rotate(-3deg); }
.quik-letter:nth-child(2):hover { transform: translateY(-6px) rotate(3deg); }
.quik-letter:nth-child(3):hover { transform: translateY(-6px) rotate(3deg); }
.quik-letter:nth-child(4):hover { transform: translateY(-6px) rotate(-3deg); }

@media (max-width: 980px) {
  .quik-meaning { grid-template-columns: 1fr; gap: 36px; }
  .quik-letters { max-width: 480px; margin: 0 auto; }
}

.seo-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.seo-story-side .section-eyebrow { margin-bottom: 14px; }
.seo-story-side .section-title { margin-bottom: 22px; }
.seo-story-side p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}
.seo-story-side p:last-child { margin-bottom: 0; }
.seo-story-side .pull {
  position: relative;
  padding: 22px 26px;
  margin-top: 24px;
  background: var(--bg-soft);
  border-left: 3px solid var(--text-primary);
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.build-status {
  position: relative;
  margin-top: 28px;
  background: #1d1d1f;
  border: 1px solid #2a2a2e;
  border-radius: 22px;
  padding: 26px 28px 24px;
  color: #ffffff;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 18px 44px rgba(0,0,0,0.18);
}
.build-status::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at top right, black 25%, transparent 78%);
}
.build-status::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(204,169,88,0.18) 0%, rgba(204,169,88,0) 70%);
  pointer-events: none;
}
.build-status-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.build-status-eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.build-status-pulse {
  position: relative;
  width: 8px; height: 8px; border-radius: 50%;
  background: #cca958;
  box-shadow: 0 0 0 4px rgba(204,169,88,0.20);
  animation: build-pulse 2.4s ease-in-out infinite;
}
@keyframes build-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(204,169,88,0.20); }
  50%     { box-shadow: 0 0 0 9px rgba(204,169,88,0); }
}
.build-status-label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #c7c7cc; font-weight: 600;
}
.build-status-mode {
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: #d2d2d7;
}
.build-status-title {
  font-size: 1.22rem; font-weight: 700; letter-spacing: -0.018em;
  margin: 0 0 6px; color: #ffffff;
  position: relative; z-index: 1;
}
.build-status-text {
  font-size: 0.93rem; color: #c7c7cc; line-height: 1.55;
  margin: 0 0 18px; max-width: 32em;
  position: relative; z-index: 1;
}
.build-status-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  position: relative; z-index: 1;
}
.build-status-stat {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 13px;
  padding: 12px 14px;
  transition: background 0.3s ease, transform 0.4s var(--ease-apple);
}
.build-status-stat:hover { background: rgba(255,255,255,0.06); transform: translateY(-1px); }
.build-status-stat strong {
  display: block; color: #ffffff;
  font-size: 0.96rem; font-weight: 600; letter-spacing: -0.01em;
}
.build-status-stat span {
  display: block; color: #8e8e93;
  font-size: 0.7rem; letter-spacing: 0.10em; text-transform: uppercase;
  margin-top: 3px;
}
.build-status-foot {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px;
  position: relative; z-index: 1;
  font-size: 0.78rem; color: #a1a1a6;
}
.build-status-foot i { color: #c7c7cc; }
.build-status-bar {
  margin-top: 14px;
  height: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
  position: relative; z-index: 1;
}
.build-status-bar span {
  display: block; height: 100%; width: 38%;
  background: linear-gradient(90deg, #cca958 0%, #e8d8a8 100%);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(204,169,88,0.45);
  animation: build-bar-shimmer 3.6s ease-in-out infinite;
}
@keyframes build-bar-shimmer {
  0%,100% { width: 38%; }
  50%     { width: 44%; }
}

.seo-item { position: relative; }
.seo-item::after {
  content: ''; position: absolute; left: 51px; top: -7px;
  width: 1px; height: 7px;
  background: linear-gradient(180deg, transparent 0%, var(--border) 100%);
}
.seo-item:first-child::after { display: none; }

.lab-stage {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 980px) {
  .lab-stage { grid-template-columns: 1fr; }
}

.lab-status {
  position: relative;
  background: #1d1d1f;
  border: 1px solid #2a2a2e;
  border-radius: 24px;
  padding: 32px 32px 28px;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 22px 48px rgba(0,0,0,0.20);
  display: flex; flex-direction: column;
}
.lab-status::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at top right, black 25%, transparent 78%);
}
.lab-status::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,169,88,0.18) 0%, rgba(204,169,88,0) 70%);
  pointer-events: none; z-index: 0;
}
.lab-status > * { position: relative; z-index: 1; }
.lab-status-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 18px;
}
.lab-status-eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.lab-status-pulse {
  position: relative;
  width: 8px; height: 8px; border-radius: 50%;
  background: #cca958;
  box-shadow: 0 0 0 4px rgba(204,169,88,0.20);
  animation: build-pulse 2.4s ease-in-out infinite;
}
.lab-status-label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #c7c7cc; font-weight: 600;
}
.lab-status-mode {
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: #d2d2d7;
}
.lab-status-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.05;
  margin: 0 0 14px; color: #ffffff;
}
.lab-status-text {
  font-size: 0.98rem; color: #c7c7cc; line-height: 1.6;
  margin: 0 0 22px;
}
.lab-status-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-bottom: 14px;
}
.lab-status-stat {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 13px;
  padding: 12px 14px;
}
.lab-status-stat strong {
  display: block; color: #ffffff;
  font-size: 0.94rem; font-weight: 600; letter-spacing: -0.01em;
}
.lab-status-stat span {
  display: block; color: #8e8e93;
  font-size: 0.7rem; letter-spacing: 0.10em; text-transform: uppercase;
  margin-top: 3px;
}
.lab-status-bar {
  margin-top: 6px;
  height: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.lab-status-bar span {
  display: block; height: 100%; width: 38%;
  background: linear-gradient(90deg, #cca958 0%, #e8d8a8 100%);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(204,169,88,0.45);
  animation: build-bar-shimmer 3.6s ease-in-out infinite;
}
.lab-status-foot {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px;
  font-size: 0.78rem; color: #a1a1a6;
}
.lab-status-foot i { color: #c7c7cc; }

.lab-branches {
  display: flex; flex-direction: column; gap: 12px;
}
.lab-branch {
  position: relative;
  display: grid; grid-template-columns: 64px 1fr;
  gap: 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.45s var(--ease-apple), box-shadow 0.3s ease, border-color 0.3s ease;
  flex: 1;
}
.lab-branch:hover {
  transform: translateY(-2px);
  border-color: var(--border-mid);
  box-shadow: var(--shadow-md);
}
.lab-branch-num {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(140deg, #1d1d1f 0%, #3a3a3d 100%);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.10);
  flex-shrink: 0;
}
.lab-branch-body { min-width: 0; }
.lab-branch-tag {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-secondary); font-weight: 600;
  margin-bottom: 6px;
}
.lab-branch h3 {
  font-size: 1.12rem; font-weight: 600; letter-spacing: -0.018em;
  margin: 0 0 6px; color: var(--text-primary);
}
.lab-branch p {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.55;
  margin: 0 0 10px;
}
.lab-branch-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-primary);
}
.lab-branch-cta i { font-size: 0.72rem; transition: transform 0.4s var(--ease-apple); }
.lab-branch:hover .lab-branch-cta i { transform: translateX(3px); }
.lab-branch-startup { background: #1d1d1f; color: #ffffff; border-color: var(--gold-line); }
.lab-branch-startup .lab-branch-cta i { color: var(--gold); }
.lab-branch-startup .lab-branch-num { background: linear-gradient(140deg, #ffffff 0%, #d2d2d7 100%); color: #1d1d1f; box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 4px 14px rgba(0,0,0,0.30); }
.lab-branch-startup .lab-branch-tag { color: #c7c7cc; }
.lab-branch-startup h3 { color: #ffffff; }
.lab-branch-startup p { color: #c7c7cc; }
.lab-branch-startup .lab-branch-cta { color: #ffffff; }
.lab-branch-startup:hover { border-color: #3a3a3d; }

.services-spotlight {
  position: relative;
  max-width: 1080px; margin: 0 auto;
  background: #1d1d1f;
  border: 1px solid #2a2a2e;
  border-radius: 28px;
  padding: 56px 56px 48px;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 28px 60px rgba(0,0,0,0.22);
}
.services-spot-grid {
  position: absolute; inset: 0; pointer-events: none; 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: 36px 36px;
  mask-image: radial-gradient(ellipse at top right, black 22%, transparent 78%);
}
.services-spot-glow {
  position: absolute; pointer-events: none; z-index: 0;
  width: 420px; height: 420px;
  right: -180px; top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 70%);
}
.services-spot-head {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 22px;
  flex-wrap: wrap;
}
.services-spot-eyebrow {
  font-size: 0.74rem; letter-spacing: 0.20em; text-transform: uppercase;
  color: #c7c7cc; font-weight: 600;
}
.services-spot-mode {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: #d2d2d7;
}
.services-spot-title {
  position: relative; z-index: 1;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.025em;
  margin: 0 0 18px; color: #ffffff;
  line-height: 1.05;
}
.services-spot-title em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #c7c7cc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-spot-lead {
  position: relative; z-index: 1;
  font-size: 1.06rem; color: #d2d2d7; line-height: 1.6;
  max-width: 720px; margin: 0 0 30px;
}
.services-spot-mech {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 30px;
}
.services-spot-stat {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 18px;
  transition: background 0.3s ease, transform 0.4s var(--ease-apple), border-color 0.3s ease;
}
.services-spot-stat:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.16);
}
.services-spot-stat i {
  display: block;
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 10px;
  opacity: 0.85;
}
.services-spot-stat strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.services-spot-stat span {
  display: block;
  color: #8e8e93;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.services-spot-cta {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 12px;
}
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
}
.services-spot-trust {
  position: relative; z-index: 1;
  font-size: 0.84rem; color: #8e8e93; margin: 0;
}
@media (max-width: 880px) {
  .services-spotlight { padding: 36px 28px 32px; border-radius: 22px; }
  .services-spot-title { font-size: 1.6rem; }
  .services-spot-mech { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-spot-mech { grid-template-columns: 1fr; }
}

.ty-stage {
  min-height: calc(100vh - var(--nav-h, 52px));
  padding: 100px 0 80px;
  position: relative;
}
.ty-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 64px 56px 56px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ty-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at top center, black 0%, transparent 60%);
}
.ty-card > * { position: relative; z-index: 1; }
.ty-icon {
  width: 104px; height: 104px;
  border-radius: 30px;
  background: linear-gradient(140deg, #1d1d1f 0%, #3a3a3d 100%);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.6rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 18px 42px rgba(0,0,0,0.20);
  position: relative;
}
.ty-icon::before {
  content: ''; position: absolute; inset: -10px;
  border-radius: 40px;
  border: 1px solid var(--gold-line);
  pointer-events: none;
}
.ty-icon::after {
  content: ''; position: absolute; inset: -22px;
  border-radius: 52px;
  border: 1px solid rgba(204,169,88,0.20);
  pointer-events: none;
}
.ty-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #4a3a14; font-weight: 700;
  padding: 7px 14px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  margin: 0 auto 18px;
}
.ty-card .ty-eyebrow + .ty-title { margin-top: 6px; }
.ty-eyebrow .ty-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-deep);
  box-shadow: 0 0 0 4px var(--gold-soft);
  animation: build-pulse 2.4s ease-in-out infinite;
}
.ty-title {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
  margin: 0 0 18px;
  color: var(--text-primary);
}
.ty-title em {
  font-style: normal;
  background: linear-gradient(135deg, #1d1d1f 0%, #515154 50%, #1d1d1f 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ty-lead {
  font-size: 1.1rem; color: var(--text-secondary); line-height: 1.6;
  max-width: 600px; margin: 0 auto 36px;
}

.ty-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 880px; margin: 0 auto 36px;
  text-align: left;
}
.ty-step {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 22px;
  transition: transform 0.45s var(--ease-apple), border-color 0.3s ease, box-shadow 0.3s ease;
}
.ty-step:hover { transform: translateY(-2px); border-color: var(--border-mid); box-shadow: var(--shadow-md); }
.ty-step-num {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  margin-bottom: 10px;
}
.ty-step-title {
  font-size: 1rem; font-weight: 600; letter-spacing: -0.015em;
  margin: 0 0 6px; color: var(--text-primary);
}
.ty-step-text {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; margin: 0;
}

.ty-links {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  max-width: 880px; margin: 0 auto 32px;
}
.ty-link {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.45s var(--ease-apple), border-color 0.3s ease, box-shadow 0.3s ease;
}
.ty-link:hover { transform: translateY(-2px); border-color: var(--gold-line); box-shadow: var(--shadow-md); }
.ty-link i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--text-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.ty-link:hover i { background: var(--text-primary); color: var(--gold); }
.ty-link span {
  font-size: 0.86rem; font-weight: 600; letter-spacing: -0.01em;
}

.ty-foot {
  font-size: 0.84rem; color: var(--text-tertiary);
  margin-top: 8px;
}
.ty-foot a { color: var(--text-primary); font-weight: 500; }

@media (max-width: 760px) {
  .ty-card { padding: 44px 28px 36px; border-radius: 22px; }
  .ty-steps { grid-template-columns: 1fr; }
  .ty-links { grid-template-columns: repeat(2, 1fr); }
}

.faq-link-card {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px 40px;
  background: #1d1d1f;
  border: 1px solid #2a2a2e;
  border-radius: 26px;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 22px 48px rgba(0,0,0,0.20);
  transition: transform 0.5s var(--ease-apple), box-shadow 0.4s ease, border-color 0.3s ease;
}
.faq-link-card:hover {
  transform: translateY(-3px);
  border-color: #3a3a3d;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 28px 56px rgba(0,0,0,0.26);
}
.faq-link-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at top right, black 25%, transparent 78%);
}
.faq-link-glow {
  position: absolute; pointer-events: none;
  width: 320px; height: 320px;
  right: -120px; top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}
.faq-link-icon {
  position: relative; z-index: 1;
  width: 84px; height: 84px;
  border-radius: 22px;
  background: linear-gradient(140deg, #2c2c30 0%, #515154 100%);
  border: 1px solid rgba(255,255,255,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 8px 18px rgba(0,0,0,0.30);
  transition: transform 0.5s var(--ease-apple);
}
.faq-link-card:hover .faq-link-icon { transform: rotate(-6deg) scale(1.04); }
.faq-link-body { position: relative; z-index: 1; min-width: 0; }
.faq-link-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.20em; text-transform: uppercase;
  color: #c7c7cc; font-weight: 600;
  margin-bottom: 10px;
}
.faq-link-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #cca958;
  box-shadow: 0 0 0 4px rgba(204,169,88,0.20);
  animation: build-pulse 2.4s ease-in-out infinite;
}
.faq-link-title {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 10px; color: #ffffff;
  line-height: 1.1;
}
.faq-link-text {
  margin: 0 0 16px; color: #c7c7cc;
  font-size: 0.96rem; line-height: 1.55;
  max-width: 48em;
}
.faq-link-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.faq-link-tags span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: #d2d2d7; font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.faq-link-tags span i { font-size: 0.7rem; color: #a1a1a6; }
.faq-link-arrow {
  position: relative; z-index: 1;
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-left: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
}
.faq-link-cta {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: #c7c7cc;
}
.faq-link-arrow i {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #1d1d1f;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: transform 0.4s var(--ease-apple), background 0.3s ease;
}
.faq-link-card:hover .faq-link-arrow i { transform: translateX(4px); }

@media (max-width: 760px) {
  .faq-link-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 18px;
    text-align: left;
  }
  .faq-link-arrow {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 14px 0 0;
    justify-content: space-between;
  }
}
.seo-story-list {
  display: flex; flex-direction: column;
  gap: 14px;
}
.seo-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: start;
  transition: transform 0.4s var(--ease-apple), box-shadow 0.3s ease, border-color 0.3s ease;
}
.seo-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
}
.seo-item-num {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(140deg, #1d1d1f 0%, #3a3a3d 100%);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.10);
  transition: transform 0.4s var(--ease-apple);
}
.seo-item:hover .seo-item-num { transform: rotate(-6deg) scale(1.04); }
.seo-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.seo-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
@media (max-width: 980px) {
  .seo-story { grid-template-columns: 1fr; gap: 36px; }
}

.pitch-preview {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 22px 24px 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 4px 14px rgba(15,23,42,0.04),
    0 24px 48px rgba(15,23,42,0.10);
  transform: perspective(1400px) rotateX(2deg);
  opacity: 0;
  animation: board-rise 1s var(--ease-apple) 0.4s forwards;
}
.pitch-preview::after {
  content: '';
  position: absolute;
  left: 6%; right: 6%;
  bottom: -36px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.10) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}
.pitch-preview-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 16px;
}
.pitch-preview-title {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem; font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pitch-preview-title::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(204,169,88,0.22);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.pitch-preview-meta {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pitch-field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.pitch-field-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pitch-field-box {
  height: 38px;
  background: rgba(0,0,0,0.04);
  border-radius: 10px;
  display: flex; align-items: center;
  padding: 0 14px;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}
.pitch-field-box.text {
  height: auto;
  padding: 12px 14px;
  display: block;
}
.pitch-field-box.text .skel {
  height: 8px;
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
  margin-bottom: 8px;
}
.pitch-field-box.text .skel:last-child { margin-bottom: 0; width: 70%; }
.pitch-preview-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.pitch-preview-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.74rem;
  color: var(--text-tertiary);
}
.pitch-preview-status .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.pitch-preview-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  background: var(--text-primary);
  color: white;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.pitch-preview-btn i { font-size: 0.7rem; transition: transform 0.4s var(--ease-apple); }
.pitch-preview:hover .pitch-preview-btn i { transform: translateX(2px) rotate(-8deg); }

.slot-board {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 22px 26px 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 4px 14px rgba(15,23,42,0.04),
    0 24px 48px rgba(15,23,42,0.10);
  transform: perspective(1400px) rotateX(2deg);
  opacity: 0;
  animation: board-rise 1s var(--ease-apple) 0.4s forwards;
}
.slot-board::after {
  content: '';
  position: absolute;
  left: 6%; right: 6%;
  bottom: -36px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.10) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}
.slot-board-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap; gap: 10px;
}
.slot-board-title {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem; font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.slot-board-title::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-primary);
}
.slot-board-meta {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.slot-board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.slot-card {
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.025);
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.4s var(--ease-apple);
}
.slot-card:hover {
  background: rgba(0,0,0,0.04);
  transform: translateY(-2px);
}
.slot-card-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.slot-card-domain {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.slot-card-domain i { color: var(--text-secondary); font-size: 0.78rem; }
.slot-card-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color: var(--text-tertiary);
}
.slot-card-tag.full { background: rgba(255,69,58,0.10); color: #c63b30; }
.slot-card-tag.open { background: rgba(204,169,88,0.10); color: #7a5e1e; }
.slot-card-tag.half { background: rgba(255,159,10,0.10); color: #c66f00; }
.slot-card-dots {
  display: flex; gap: 4px;
}
.slot-card-dots span {
  flex: 1;
  height: 4px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
}
.slot-card-dots span.taken {
  background: var(--text-primary);
}

.domain-cloud {
  position: relative;
  width: 100%; max-width: 760px;
  height: 240px;
}
.domain-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  pointer-events: auto;
  white-space: nowrap;
  opacity: 0;
  animation: chip-pop 0.8s var(--ease-apple) forwards, chip-bob 7s ease-in-out infinite;
}
.domain-chip i { color: var(--text-secondary); font-size: 0.8rem; }
.domain-chip .status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 4px;
}
.domain-chip .status-dot.open { background: #cca958; box-shadow: 0 0 0 3px rgba(204,169,88,0.18); }
.domain-chip .status-dot.half { background: #ff9f0a; box-shadow: 0 0 0 3px rgba(255,159,10,0.16); }
.domain-chip .status-dot.full { background: #ff453a; box-shadow: 0 0 0 3px rgba(255,69,58,0.16); }

.domain-chip.top-1 { top: 4%; left: 6%; animation-delay: 0.4s, 1.5s; }
.domain-chip.top-2 { top: 0%; left: 38%; animation-delay: 0.55s, 1.65s; }
.domain-chip.top-3 { top: 6%; right: 4%; animation-delay: 0.7s, 1.7s; }
.domain-chip.mid-1 { top: 42%; left: 0; animation-delay: 0.5s, 1.6s; }
.domain-chip.mid-2 { top: 38%; right: 8%; animation-delay: 0.65s, 1.7s; }
.domain-chip.bot-1 { bottom: 6%; left: 12%; animation-delay: 0.6s, 1.7s; }
.domain-chip.bot-2 { bottom: 0%; left: 42%; animation-delay: 0.75s, 1.85s; }
.domain-chip.bot-3 { bottom: 8%; right: 18%; animation-delay: 0.55s, 1.65s; }
@keyframes chip-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes chip-bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-apple), transform 0.7s var(--ease-apple);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.06s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.14s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.22s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.30s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.38s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.46s; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

.page-intro::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.03) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.page-intro-inner { position: relative; z-index: 1; }

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
@keyframes pulse-glow {
  0%,100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float-soft {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes rotate-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.orbit-glow { animation: pulse-glow 4s ease-in-out infinite; }
.orbit-ring { animation: rotate-slow 50s linear infinite; }
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-tilt {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal-tilt.is-visible { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

.lift {
  transition: transform 0.4s var(--ease-apple), box-shadow 0.4s ease;
  cursor: pointer;
}
.lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lift:active { transform: translateY(-1px); transition-duration: 0.15s; }

.pillar { transition: transform 0.45s var(--ease-apple), box-shadow 0.4s ease, border-color 0.4s ease; cursor: default; }
.pillar:hover { transform: translateY(-3px) scale(1.01); box-shadow: var(--shadow-md); border-color: var(--border-mid); }
.pillar i { transition: transform 0.45s var(--ease-apple), color 0.3s ease; }
.pillar:hover i { transform: scale(1.15) rotate(-6deg); color: var(--gold-deep); }

.faq-item { transition: transform 0.4s var(--ease-apple); }
.faq-item:hover:not([open]) { transform: translateY(-1px); border-color: var(--border-mid); }
.faq-summary { transition: padding 0.4s var(--ease-apple); }
.faq-item:hover .faq-summary { padding-left: 30px; }

.project-card { will-change: transform; }
.project-card .project-icon { transition: transform 0.5s var(--ease-apple), box-shadow 0.4s ease; }
.project-card:hover .project-icon { transform: scale(1.08) rotate(-4deg); }
.project-card .project-chip { transition: background 0.3s ease, color 0.3s ease; }
.project-card:hover .project-chip { background: rgba(0,0,0,0.06); }

.stat-tile { will-change: transform; }
.stat-tile-icon { transition: transform 0.5s var(--ease-apple), background 0.3s ease, color 0.3s ease; }
.stat-tile:hover .stat-tile-icon { transform: scale(1.10) rotate(-6deg); background: var(--text-primary); color: white; }

.bento-cell { transition: transform 0.45s var(--ease-apple), box-shadow 0.4s ease, border-color 0.4s ease; }
.bento-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.kpi-card { will-change: transform; cursor: default; }
.kpi-card-num { transition: transform 0.5s var(--ease-apple); }
.kpi-card:hover .kpi-card-num { transform: translateY(-2px); }
.kpi-card-eyebrow { display: flex !important; }
.kpi-card-num { display: flex !important; }

.slot-card { cursor: default; }
.slot-card-dots span { transition: background 0.4s ease, transform 0.4s var(--ease-apple); }
.slot-card:hover .slot-card-dots span.taken { transform: scaleY(1.4); }

.project-board-row { cursor: default; }
.project-board-row .pb-icon { transition: transform 0.5s var(--ease-apple); }
.project-board-row:hover .pb-icon { transform: rotate(-8deg) scale(1.05); }

.roadmap-node { transition: transform 0.5s var(--ease-apple); }
.roadmap-node:hover { transform: translateY(-3px); }
.roadmap-marker { transition: transform 0.4s var(--ease-apple), box-shadow 0.4s ease; }
.roadmap-node:hover .roadmap-marker { transform: scale(1.10); }

.timeline-item { transition: transform 0.4s var(--ease-apple); }
.timeline-item:hover { transform: translateX(4px); }
.timeline-item::before { transition: transform 0.4s var(--ease-apple), box-shadow 0.4s ease; }
.timeline-item:hover::before { transform: scale(1.18); box-shadow: 0 0 0 6px rgba(0,0,0,0.04); }

.changelog-item { transition: background 0.3s ease, transform 0.4s var(--ease-apple); }
.changelog-item:hover { background: rgba(0,0,0,0.02); transform: translateX(2px); }
.changelog-icon { transition: transform 0.4s var(--ease-apple); }
.changelog-item:hover .changelog-icon { transform: rotate(-8deg) scale(1.05); }

.feat-banner-item { cursor: default; }
.feat-banner-item:hover i { transform: rotate(-6deg) scale(1.05); }

.step { transition: transform 0.45s var(--ease-apple), box-shadow 0.4s ease; cursor: default; }
.step:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-md); }
.step-num { transition: transform 0.4s var(--ease-apple), background 0.3s ease, color 0.3s ease; }
.step:hover .step-num { transform: scale(1.10); background: var(--text-primary); color: white; }

.chip { transition: transform 0.3s var(--ease-apple), box-shadow 0.3s ease, border-color 0.3s ease; }
.chip:hover { transform: translateY(-2px) scale(1.04); }

.footer-col a, .nav-links a { position: relative; }
.footer-col a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-apple);
}
.footer-col a:hover::after { width: 100%; }

.hero-showcase {
  margin: 80px auto 0;
  max-width: 1080px;
  perspective: 1800px;
  position: relative;
}
.showcase-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 24px;
  transform-style: preserve-3d;
}
.showcase-card {
  position: relative;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 4px 16px rgba(15,23,42,0.06),
    0 24px 48px rgba(15,23,42,0.10);
  text-align: left;
  transition: transform 0.6s var(--ease-apple), box-shadow 0.4s ease;
  z-index: 2;
  transform-style: preserve-3d;
}
.showcase-card:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 6px 20px rgba(15,23,42,0.08),
    0 32px 64px rgba(15,23,42,0.12);
}
.showcase-card.left {
  transform: translateX(20px) translateY(20px) rotateY(14deg) rotateX(2deg);
  z-index: 1;
}
.showcase-card.right {
  transform: translateX(-20px) translateY(20px) rotateY(-14deg) rotateX(2deg);
  z-index: 1;
}
.showcase-card.center {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 26px 28px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 12px 32px rgba(0,0,0,0.08),
    0 32px 80px rgba(0,0,0,0.10);
  animation: float-soft 7s ease-in-out infinite;
}
.showcase-card .card-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.showcase-card .card-eyebrow .live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(204,169,88,0.22);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.showcase-card .card-eyebrow .blue-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-secondary);
  animation: pulse-dot 2s ease-in-out infinite;
}
.showcase-card .card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.018em;
  margin-bottom: 6px;
}
.showcase-card .card-meta {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.showcase-progress {
  height: 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.showcase-progress span {
  display: block; height: 100%;
  background: var(--text-primary);
  border-radius: 999px;
  width: 68%;
  animation: pulse-prog 3s ease-in-out infinite;
}
@keyframes pulse-prog {
  0%,100% { width: 64%; }
  50% { width: 78%; }
}
.showcase-stack {
  display: flex; align-items: center; gap: 8px;
}
.avatar-stack {
  display: flex;
}
.avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  background: linear-gradient(135deg, #515154, #1d1d1f);
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.avatar:nth-child(1) { background: linear-gradient(135deg, #6e6e73, #515154); margin-left: 0; }
.avatar:nth-child(2) { background: linear-gradient(135deg, #515154, #3a3a3d); }
.avatar:nth-child(3) { background: linear-gradient(135deg, #3a3a3d, #1d1d1f); }
.avatar:nth-child(4) { background: linear-gradient(135deg, #cccccf, #a1a1a6); color: var(--text-secondary); }
.showcase-app {
  display: flex; flex-direction: column; align-items: stretch; gap: 8px;
}
.showcase-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  background: rgba(0,0,0,0.04);
  border-radius: 10px;
  font-size: 0.84rem;
  color: var(--text-primary);
}
.showcase-row.highlight {
  background: var(--text-primary);
  color: white;
  font-weight: 500;
}
.showcase-row.highlight .right { color: rgba(255,255,255,0.65); }
.showcase-row .right { color: var(--text-tertiary); font-size: 0.76rem; }
.showcase-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color: var(--text-primary);
}
.showcase-pill.green {
  background: rgba(204,169,88,0.10);
  color: #7a5e1e;
}

.mega-quote {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  padding: 96px 56px 88px;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.mega-rockets {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 14px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 40px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.mega-rockets .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-right: 4px;
}
.mega-rockets .rocket-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mega-rockets .r-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.76rem;
  background: var(--surface-2);
  color: var(--text-tertiary);
  font-weight: 700;
  position: relative;
}
.mega-rockets .r-dot.x { background: rgba(0,0,0,0.04); }
.mega-rockets .r-dot.x::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: rgba(0,0,0,0.30);
  transform: translate(-50%, -50%) rotate(-45deg);
  border-radius: 2px;
}
.mega-rockets .r-dot.live {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3d 100%);
  color: white;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.20);
  animation: rocket-bob 2.4s ease-in-out infinite;
}
@keyframes rocket-bob {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-3px) rotate(8deg); }
}
.mega-quote-text {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.mega-quote-text em {
  font-style: normal;
  background: linear-gradient(135deg, #1d1d1f 0%, #515154 50%, #1d1d1f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 6s linear infinite;
  position: relative;
}
.mega-quote-attribution {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 12px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.04);
  border-radius: 999px;
}
.mega-quote-attribution::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.mega-quote-marks {
  position: absolute;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14rem;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  pointer-events: none;
  user-select: none;
}
.mega-quote-marks.tl { top: -20px; left: 30px; }
.mega-quote-marks.br { bottom: -100px; right: 30px; transform: rotate(180deg); }

.stat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-tile {
  position: relative;
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.stat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.stat-tile-icon {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.stat-tile-num {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.stat-tile-num small {
  font-size: 0.42em;
  font-weight: 600;
  color: var(--text-tertiary);
  margin-left: 4px;
  vertical-align: super;
}
.stat-tile-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.35;
}
.stat-tile-trend {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-2);
  padding: 3px 9px;
  border-radius: 999px;
}
.stat-tile-trend i { font-size: 0.65rem; }
.stat-tile-spark {
  position: absolute;
  bottom: 0; right: 0;
  width: 70%; height: 40%;
  pointer-events: none;
  opacity: 0.55;
}

.expert-section {
  position: relative;
  background: var(--bg-soft);
  overflow: hidden;
}
.expert-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.expert-headline {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.expert-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}
.expert-list {
  list-style: none;
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.expert-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.97rem;
  color: var(--text-primary);
  line-height: 1.55;
}
.expert-list li i {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text-secondary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}

.expert-visual {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-md);
}
.expert-visual h3 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.expert-visual h3::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-primary);
}
.slot-list {
  display: flex; flex-direction: column;
  gap: 12px;
}
.slot-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.slot-row:hover {
  border-color: var(--border-mid);
  transform: translateX(2px);
  box-shadow: var(--shadow-xs);
}
.slot-row.full {
  background: rgba(204,169,88,0.05);
  border-color: rgba(204,169,88,0.20);
}
.slot-row.open {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.10);
}
.slot-domain {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.slot-domain i {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.slot-progress {
  display: flex; gap: 4px;
}
.slot-progress span {
  width: 18px; height: 6px;
  border-radius: 3px;
  background: rgba(0,0,0,0.08);
}
.slot-progress span.taken { background: var(--text-primary); }
.slot-status {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
  color: var(--text-tertiary);
}
.slot-status.full {
  background: rgba(204,169,88,0.12);
  color: #7a5e1e;
}
.slot-status.open {
  background: rgba(0,0,0,0.06);
  color: var(--text-primary);
}

.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee-loop 38s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.marquee-item .star {
  color: var(--blue);
  font-size: 0.7rem;
}
.marquee-item .small {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@keyframes marquee-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}
.bento-cell {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  transition: var(--transition);
}
.bento-cell:hover {
  border-color: var(--border-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.bento-cell.feature {
  position: relative;
  background: linear-gradient(135deg, #1d1d1f 0%, #2c2c30 100%);
  color: white;
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 12px 32px rgba(0,0,0,0.18),
    0 32px 80px rgba(0,0,0,0.14);
}
.bento-cell.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.7;
}
.bento-cell.feature > * { position: relative; z-index: 1; }
.bento-cell.feature h3 { color: white; }
.bento-cell.feature p { color: rgba(255,255,255,0.86); }
.bento-cell.feature .bento-eyebrow { color: rgba(255,255,255,0.78); }
.bento-cell.feature .bento-eyebrow .live-dot {
  background: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.20);
}

.activity-panel {
  margin-top: 26px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.activity-row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: white;
}
.activity-row:last-child { margin-bottom: 0; }
.activity-row.highlight {
  background: white;
  color: var(--text-primary);
}
.activity-row .meta {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: white;
  letter-spacing: 0.02em;
}
.activity-row.highlight .meta {
  background: rgba(0,0,0,0.06);
  color: var(--text-primary);
}
.activity-row .left { display: inline-flex; align-items: center; gap: 10px; }
.activity-row .left i { width: 16px; opacity: 0.9; }
.activity-progress {
  margin-top: 14px;
  height: 6px;
  background: rgba(255,255,255,0.20);
  border-radius: 999px;
  overflow: hidden;
}
.activity-progress span {
  display: block;
  height: 100%;
  width: 72%;
  background: white;
  border-radius: 999px;
  animation: pulse-prog 3s ease-in-out infinite;
}
.activity-foot {
  margin-top: 10px;
  display: flex; justify-content: space-between;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.bento-span-3 { grid-column: span 3; }
.bento-span-2 { grid-column: span 2; }
.bento-span-4 { grid-column: span 4; }
.bento-span-6 { grid-column: span 6; }
.bento-row-2 { grid-row: span 2; }
.bento-cell h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.bento-cell p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.bento-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.bento-cell.dark .bento-eyebrow { color: rgba(255,255,255,0.55); }
.bento-eyebrow .live-dot {
  width: 7px; height: 7px;
  background: var(--text-secondary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.tilt {
  position: relative;
  isolation: isolate;
}
.tilt::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(0,0,0,0.05), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.tilt:hover::before { opacity: 1; }
.tilt > * { position: relative; z-index: 1; }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num span { color: var(--blue); }
.stat-label {
  font-size: 0.84rem;
  color: var(--text-tertiary);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.terminal {
  background: linear-gradient(135deg, #0d0d10 0%, #1a1a1d 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
}
.terminal-bar {
  display: flex; align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.terminal-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.terminal-dot.r { background: #ff5f57; }
.terminal-dot.y { background: #ffbd2e; }
.terminal-dot.g { background: #28c940; }
.terminal-title {
  margin-left: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.005em;
}
.terminal-body {
  padding: 22px 24px 26px;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
}
.terminal-body .line { display: block; }
.terminal-body .prompt { color: #515154; margin-right: 8px; }
.terminal-body .cmd { color: white; }
.terminal-body .out { color: rgba(255,255,255,0.55); }
.terminal-body .ok { color: #4ade80; }
.terminal-body .blink {
  display: inline-block;
  width: 8px; height: 16px;
  background: var(--blue);
  vertical-align: -3px;
  margin-left: 4px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

.big-quote {
  position: relative;
  text-align: center;
  padding: 40px 0;
}
.big-quote::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11rem;
  line-height: 1;
  color: rgba(0,0,0,0.06);
  pointer-events: none;
}

.grad-border {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(140deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.06) 30%, rgba(0,0,0,0.06) 70%, rgba(0,0,0,0.20) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 8s linear infinite;
}
.grad-border-inner {
  background: white;
  border-radius: calc(var(--radius-lg) - 1px);
  padding: 36px;
}

.chip-stack {
  display: flex; flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--border-mid);
}
.chip i { color: var(--text-secondary); font-size: 0.85rem; }

.kbd {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.10);
  border-bottom-width: 2px;
  color: var(--text-secondary);
  margin: 0 2px;
}

@media (max-width: 880px) {
  .roadmap-track { grid-template-columns: 1fr; gap: 24px; }
  .roadmap-track::before { display: none; }
  .changelog { grid-template-columns: 1fr; gap: 28px; }
  .split-feature .grid { grid-template-columns: 1fr; gap: 28px; }
  .split-feature { padding: 48px 28px; }
  .feat-banner { padding: 22px 24px; gap: 22px; flex-direction: column; }
  .feat-banner-divider { display: none; }
  .domain-cloud { height: 380px; }
  .domain-chip { font-size: 0.78rem; padding: 8px 12px; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .kpi-banner { padding: 48px 28px; }
}

@media (max-width: 980px) {
  .feature-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .founder { grid-template-columns: 1fr; padding: 40px; gap: 32px; text-align: center; }
  .founder-portrait { max-width: 220px; margin: 0 auto; }
  .founder-links { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .orbit-stage { aspect-ratio: 1.2 / 1; }
  .orbit-node { font-size: 0.74rem; padding: 8px 11px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-span-3, .bento-span-2, .bento-span-4, .bento-span-6 { grid-column: span 2; }
  .bento-row-2 { grid-row: span 1; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .stat-tiles { grid-template-columns: repeat(2, 1fr); }
  .expert-grid { grid-template-columns: 1fr; gap: 36px; }
  .showcase-stage { grid-template-columns: 1fr; gap: 16px; }
  .showcase-card.left, .showcase-card.right { transform: none; }
  .navbar { max-width: calc(100% - 24px); }
}

@media (max-width: 880px) {

  *, *::before, *::after { will-change: auto !important; }

  *, *::before, *::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero .mesh-bg,
  .hero .orb,
  .hero .rocket-particles,
  .hero .cursor-spot,
  .hero-eyebrow::after,
  .scroll-progress,
  .ambient,
  .ambient-grid,
  .page-intro-decor,
  .page-intro::before { display: none !important; }

  .hero-eyebrow,
  .hero-eyebrow .pill::before,
  .showcase-card,
  .showcase-progress span,
  .showcase-card .live,
  .showcase-card .blue-dot,
  .text-gradient,
  .pulse-dot, .live, .blue-dot,
  .feat-banner-icon i { animation: none !important; }

  .text-gradient,
  .text-gradient .word,
  .text-gradient .word > span {
    background: none !important;
    background-image: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: #cca958 !important;
    color: #cca958 !important;
  }

  .hero .hero-eyebrow,
  .hero .hero-title,
  .hero .hero-subtitle,
  .hero .hero-ctas,
  .hero .hero-trust,
  .hero .hero-showcase,
  .page-intro .hero-eyebrow,
  .page-intro .hero-title,
  .page-intro .hero-subtitle,
  .page-intro .hero-ctas {
    opacity: 0;
    transform: translateY(14px);
    animation: m-rise 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
  }
  .hero .hero-eyebrow,
  .page-intro .hero-eyebrow { animation-delay: 0.05s !important; }
  .hero .hero-title,
  .page-intro .hero-title { animation-delay: 0.15s !important; }
  .hero .hero-subtitle,
  .page-intro .hero-subtitle { animation-delay: 0.25s !important; }
  .hero .hero-ctas,
  .page-intro .hero-ctas { animation-delay: 0.35s !important; }
  .hero .hero-trust { animation-delay: 0.45s !important; }
  .hero .hero-showcase { animation-delay: 0.55s !important; }
  @keyframes m-rise {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-title .word > span {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }

  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.55s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-tilt,
  .reveal-scale {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
  .reveal-tilt.is-visible,
  .reveal-scale.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .pillars > .pillar:nth-child(1).reveal { transition-delay: 0.05s !important; }
  .pillars > .pillar:nth-child(2).reveal { transition-delay: 0.10s !important; }
  .pillars > .pillar:nth-child(3).reveal { transition-delay: 0.15s !important; }
  .pillars > .pillar:nth-child(4).reveal { transition-delay: 0.20s !important; }
  .pillars > .pillar:nth-child(5).reveal { transition-delay: 0.25s !important; }
  .pillars > .pillar:nth-child(6).reveal { transition-delay: 0.30s !important; }
  .feature-grid > .feature-card:nth-child(1).reveal,
  .audience-grid > *:nth-child(1).reveal,
  .project-grid > *:nth-child(1).reveal { transition-delay: 0.05s !important; }
  .feature-grid > .feature-card:nth-child(2).reveal,
  .audience-grid > *:nth-child(2).reveal,
  .project-grid > *:nth-child(2).reveal { transition-delay: 0.12s !important; }
  .feature-grid > .feature-card:nth-child(3).reveal,
  .audience-grid > *:nth-child(3).reveal,
  .project-grid > *:nth-child(3).reveal { transition-delay: 0.19s !important; }
  .feature-grid > .feature-card:nth-child(4).reveal,
  .audience-grid > *:nth-child(4).reveal,
  .project-grid > *:nth-child(4).reveal { transition-delay: 0.26s !important; }

  .kpi-card.reveal {
    transform: translateY(22px) scale(0.97);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.34, 1.2, 0.34, 1) !important;
  }
  .kpi-card.reveal.is-visible {
    transform: translateY(0) scale(1);
  }

  .showcase-progress { height: 4px !important; background: rgba(0,0,0,0.05) !important; }
  .showcase-progress span {
    background: var(--gold-deep) !important;
    animation: m-progress 3.2s ease-in-out infinite alternate !important;
    transform-origin: left;
  }
  @keyframes m-progress {
    0% { transform: scaleX(0.55); opacity: 0.85; }
    100% { transform: scaleX(1); opacity: 1; }
  }

  .btn-primary, .btn-outline, .btn-nav {
    transition: transform 0.18s ease, box-shadow 0.18s ease !important;
  }
  .btn-primary:active, .btn-outline:active, .btn-nav:active {
    transform: scale(0.97) !important;
  }

  html { scroll-behavior: smooth; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation: none !important;
      transition: none !important;
    }
    .hero .hero-eyebrow, .hero .hero-title, .hero .hero-subtitle,
    .hero .hero-ctas, .hero .hero-trust, .hero .hero-showcase,
    .page-intro .hero-eyebrow, .page-intro .hero-title,
    .page-intro .hero-subtitle, .page-intro .hero-ctas,
    .reveal, .reveal-tilt, .reveal-scale {
      opacity: 1 !important;
      transform: none !important;
    }
  }
}

@media (max-width: 720px) {
  :root { --section-py: 72px; }
  .nav-links { display: none; }
  .nav-divider { display: none; }
  .nav-cta .btn-nav { display: none; }
  .hamburger { display: flex; }
  .navbar { max-width: calc(100% - 16px); height: 56px; padding: 5px 8px 5px 16px; }
  .navbar.scrolled { padding: 5px 8px 5px 14px; height: 52px; }
  .stat-tiles { grid-template-columns: 1fr; }
  .mega-quote { padding: 64px 28px; }
  .feature-grid, .steps { grid-template-columns: 1fr; }

  .pillars { grid-template-columns: repeat(2, 1fr) !important; }
  .pillars.pillars-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .manifesto-card, .form-card, .founder { padding: 36px 24px; }
  .cta-band { padding: 56px 28px; }
  .hero { padding: 96px 0 64px; }
  .page-intro { padding: 120px 0 40px; }
  .orbit-stage { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-span-3, .bento-span-2, .bento-span-4, .bento-span-6 { grid-column: span 1; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .marquee-item { font-size: 0.95rem; gap: 10px; }
  .marquee-track { gap: 36px; }

  .hero-eyebrow { padding: 6px 16px 6px 6px; gap: 10px; max-width: calc(100% - 32px); }
  .hero-eyebrow > span:not(.pill):not(.eb-mark):not(.eb-divider) { font-size: 0.78rem; line-height: 1.35; }

  .hero-trust { gap: 10px 14px; padding: 10px 16px; max-width: 100%; }
  .hero-trust-item { font-size: 0.78rem; gap: 6px; }

  .hero-title { line-height: 1.05; letter-spacing: -0.035em; }

  .manifesto-quote { font-size: clamp(1.4rem, 5.4vw, 1.9rem); line-height: 1.22; }

  .kpi-card-num { font-size: 2.2rem; flex-wrap: nowrap; white-space: nowrap; }
  .kpi-card-num span { white-space: nowrap; }
  .kpi-card { padding: 22px 18px; }
  .kpi-card-label { font-size: 0.82rem; }

  .slot-row { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 8px 12px; padding: 12px 14px; }
  .slot-row .slot-domain { grid-column: 1 / 2; grid-row: 1; font-size: 0.92rem; }
  .slot-row .slot-status { grid-column: 2 / 3; grid-row: 1; align-self: center; white-space: nowrap; }
  .slot-row .slot-progress { grid-column: 1 / -1; grid-row: 2; }
  .slot-domain i { width: 26px; height: 26px; font-size: 0.78rem; }
  .slot-progress span { width: 22px; height: 5px; }
}

@media (max-width: 420px) {
  :root { --section-py: 60px; }
  .container { padding: 0 18px; }

  .pillars:not(.pillars-4) { grid-template-columns: 1fr !important; }
  .pillars.pillars-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .pillar { padding: 22px 18px; }
  .hero-title { font-size: clamp(1.85rem, 8.4vw, 2.4rem); }
  .hero-subtitle { font-size: 1rem; line-height: 1.5; }
  .hero-eyebrow { padding: 5px 14px 5px 5px; gap: 8px; }
  .hero-eyebrow .pill { font-size: 0.6rem; padding: 4px 9px 4px 8px; letter-spacing: 0.06em; }
  .hero-eyebrow > span:not(.pill):not(.eb-mark):not(.eb-divider) { font-size: 0.74rem; }
  .hero-trust { gap: 8px 12px; padding: 9px 14px; }
  .hero-trust-item { font-size: 0.74rem; }
  .section-title { font-size: clamp(1.6rem, 6.8vw, 2.2rem) !important; line-height: 1.18; }
  .manifesto-card { padding: 30px 20px; }
  .manifesto-quote { font-size: 1.32rem; line-height: 1.28; text-wrap: balance; }
  .kpi-card { padding: 18px 14px; }
  .kpi-card-num { font-size: 1.95rem; }
  .kpi-card-label { font-size: 0.78rem; }
  .kpi-card-eyebrow { font-size: 0.64rem; margin-bottom: 10px; }
  .feature-card { padding: 26px 22px; }
  .form-card, .manifesto-card, .founder { padding: 28px 20px; }
  .footer-grid { gap: 28px; }

  .ty-card { padding: 36px 22px !important; }
  .ty-title { font-size: clamp(1.6rem, 6.6vw, 2.1rem) !important; line-height: 1.18; }
  .ty-lead { font-size: 0.96rem !important; line-height: 1.55; }
  .ty-step { padding: 18px 18px !important; }
  .ty-step-title { font-size: 1.02rem !important; }

  .mega-rockets { padding: 10px 14px 10px 16px; gap: 8px; flex-wrap: nowrap; max-width: 100%; }
  .mega-rockets .label { white-space: nowrap; font-size: 0.62rem; margin-right: 2px; }
  .mega-rockets .rocket-row { gap: 4px; flex-wrap: nowrap; }
  .mega-rockets .r-dot { width: 16px; height: 16px; font-size: 0.6rem; }
  .mega-rockets .r-dot.x::after { width: 8px; }
  .mega-rockets .r-dot.live { width: 22px; height: 22px; font-size: 0.74rem; }
}
