/* TABİABİ Landing v9 */

:root {
  --bg: #07080b;
  --bg-2: #0e1016;
  --bg-3: #141820;
  --card: rgba(255, 255, 255, 0.035);
  --card-hover: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: #f3f5f9;
  --muted: #8d96a8;
  --gold: #d4a574;
  --gold-2: #ebc89a;
  --teal: #6dd4c0;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: clamp(4rem, 10vw, 5rem);
  --wrap: min(76rem, 100% - clamp(1.25rem, 5vw, 3rem));
  --r: clamp(0.7rem, 1.4vw, 1rem);
  --r-lg: clamp(1rem, 2vw, 1.4rem);
  --t-hero: clamp(2.4rem, 1.5rem + 4.5vw, 4.25rem);
  --t-h2: clamp(1.65rem, 1.1rem + 2vw, 2.5rem);
  --t-lead: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  --section: clamp(3rem, 6.5vw, 4.75rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: clamp(0.92rem, 0.86rem + 0.25vw, 1.02rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; border: none; background: none; }
ul { list-style: none; }

.wrap { width: var(--wrap); margin-inline: auto; }
.wrap--tight { width: min(42rem, var(--wrap)); }

/* Ambient — CSS only, GPU-friendly */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient__aurora {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 45% 35% at 15% 20%, rgba(212, 165, 116, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 30% at 85% 70%, rgba(109, 212, 192, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(80, 60, 120, 0.08), transparent 45%);
  animation: aurora-shift 18s ease-in-out infinite alternate;
}

@keyframes aurora-shift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -2%) scale(1.05); }
}

.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 35%, black 20%, transparent 75%);
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  transition: background 0.35s var(--ease), border-color 0.35s, backdrop-filter 0.35s;
}

.header.is-scrolled {
  background: rgba(7, 8, 11, 0.85);
  backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  width: var(--wrap);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  letter-spacing: -0.03em;
}

.logo span { color: var(--gold-2); }

.logo__orb {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav a:hover { color: var(--text); }

.nav__cta {
  padding: 0.45rem 0.95rem !important;
  border-radius: 999px;
  background: rgba(212, 165, 116, 0.12) !important;
  border: 1px solid rgba(212, 165, 116, 0.28) !important;
  color: var(--gold-2) !important;
  font-weight: 600 !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header) + clamp(2rem, 5vw, 3.5rem));
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 920px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
}

.hero__copy > * {
  opacity: 1;
  transform: none;
}

html.js-reveal .hero__copy > [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

html.js-reveal .hero__copy > [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.35rem 0.8rem 0.35rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  margin-bottom: 1.25rem;
}

.chip__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(109, 212, 192, 0.5);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109, 212, 192, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(109, 212, 192, 0); }
}

.hero__title {
  font-size: var(--t-hero);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 1.1rem;
}

.text-gradient {
  background: linear-gradient(120deg, var(--gold-2) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: var(--t-lead);
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 1.75rem;
}

.hero__lead em { color: var(--text); font-style: normal; }

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero__actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__dl-note {
  max-width: 28rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero__dl-badge {
  display: inline-block;
  margin-right: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(109, 212, 192, 0.1);
  border: 1px solid rgba(109, 212, 192, 0.22);
  vertical-align: middle;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero__stats li {
  padding: 0.85rem;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--border);
}

.hero__stats strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-2);
  line-height: 1.1;
}

.hero__stats span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Hero stage */
.hero__stage {
  position: relative;
  min-height: clamp(16rem, 40vw, 22rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__orb-box {
  position: relative;
  width: min(100%, 20rem);
  aspect-ratio: 1;
}

#orbCanvas { width: 100%; height: 100%; }

.hero__orb-glow {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  border: 1px solid rgba(212, 165, 116, 0.25);
  animation: ring-spin 12s linear infinite;
  pointer-events: none;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.hero__float {
  position: absolute;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(14, 16, 22, 0.9);
  border: 1px solid var(--border-2);
  color: var(--muted);
  white-space: nowrap;
  animation: float-y 5s ease-in-out infinite;
  backdrop-filter: blur(8px);
}

.hero__float--1 { top: 8%; left: 0; animation-delay: 0s; }
.hero__float--2 { top: 42%; right: -2%; animation-delay: 1.2s; }
.hero__float--3 { bottom: 10%; left: 8%; animation-delay: 2.4s; }
.hero__float--4 { top: 18%; right: 6%; animation-delay: 3.6s; font-size: 0.68rem; }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--border);
  background: rgba(14, 16, 22, 0.6);
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee__track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee__track span:nth-child(odd) { color: var(--gold-2); opacity: 0.85; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Banter / Tabi abi sözleri */
.banter {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.04), transparent);
}

.banter__grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .banter__grid { grid-template-columns: repeat(3, 1fr); }
}

.banter__card {
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.25rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.banter__card:hover {
  border-color: rgba(212, 165, 116, 0.28);
  transform: translateY(-2px);
}

.banter__q {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.banter__a {
  font-size: 0.84rem;
  color: var(--gold-2);
  font-style: italic;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding-block: var(--section);
}

/* Ardışık bölümlerde çift padding birikmesin */
.section + .section {
  padding-top: calc(var(--section) * 0.5);
}

.section--dim { background: rgba(255, 255, 255, 0.015); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-head { margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem); max-width: 38rem; }
.section-head--center { text-align: center; margin-inline: auto; }

.section-head h2 {
  font-size: var(--t-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.5rem;
}

.section-head__sub { color: var(--muted); font-size: var(--t-lead); }
.section-head__sub a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-head__sub a:hover { color: var(--teal); }

/* Scope / kapsam */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .scope-grid { grid-template-columns: repeat(3, 1fr); }
}

.scope-card {
  padding: clamp(1.1rem, 2.5vw, 1.35rem);
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.scope-card:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}

.scope-card--highlight {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(109, 212, 192, 0.05));
  border-color: rgba(212, 165, 116, 0.2);
}

.scope-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.scope-card ul { display: flex; flex-direction: column; gap: 0.4rem; }

.scope-card li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}

.scope-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.75;
}

/* Reveal */
html.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

html.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Yetenekler — ikon grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .feat-grid { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
}

@media (min-width: 1100px) {
  .feat-grid--wide { grid-template-columns: repeat(5, 1fr); }
}

.feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 6.5rem;
  padding: 1rem 0.65rem;
  text-align: center;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.feat-item:hover {
  border-color: var(--border-2);
  background: var(--card-hover);
  transform: translateY(-2px);
}

.feat-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(212, 165, 116, 0.1);
  color: var(--gold-2);
}

.feat-item__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.feat-item h3 {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.feat-item--more {
  border-style: dashed;
  border-color: rgba(212, 165, 116, 0.25);
  background: rgba(212, 165, 116, 0.04);
}

.feat-item--more h3 {
  color: var(--gold-2);
}

.feat-item--more .feat-item__icon {
  background: rgba(109, 212, 192, 0.08);
  color: var(--teal);
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 600px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(8rem, auto);
  }
  .bento__card--wide { grid-column: span 2; }
  .bento__card--tall { grid-row: span 2; }
  .bento__card--accent { grid-column: span 2; }
}

.bento__card {
  padding: clamp(1.15rem, 2.5vw, 1.4rem);
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.bento__card:hover {
  border-color: var(--border-2);
  background: var(--card-hover);
  transform: translateY(-2px);
}

.bento__card--accent {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(109, 212, 192, 0.06));
  border-color: rgba(212, 165, 116, 0.22);
}

.bento__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.bento__card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.bento__card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Split / mock */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1.05fr; }
}

.split__copy h2 {
  font-size: var(--t-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.split__text { color: var(--muted); margin-bottom: 1.25rem; max-width: 32em; }

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.mock {
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  background: var(--bg-2);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.mock__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}

.mock__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.mock__bar p {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
}

.mock__chat {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 16rem;
}

.mock__bubble {
  max-width: 88%;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.mock__bubble--user {
  align-self: flex-end;
  background: rgba(212, 165, 116, 0.15);
  border: 1px solid rgba(212, 165, 116, 0.25);
  color: var(--text);
}

.mock__bubble--ai {
  align-self: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
}

.mock__bubble--typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 0.75rem 1rem;
}

.mock__bubble--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing 1.2s ease infinite;
}

.mock__bubble--typing span:nth-child(2) { animation-delay: 0.15s; }
.mock__bubble--typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}

/* Tools grid */
.tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) { .tools { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .tools { grid-template-columns: repeat(4, 1fr); gap: 0.65rem; } }

.tool {
  padding: 1rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.tool:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}

.tool__n {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.35rem;
}

.tool h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.15rem; }
.tool p { font-size: 0.75rem; color: var(--muted); }

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  padding: 1.35rem;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--border);
}

.step__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.step p { font-size: 0.88rem; color: var(--muted); }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0.65rem; }

.faq__item {
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.faq__item summary {
  padding: 1rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item p {
  padding: 0 1.1rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* CTA */
.cta-section { padding-bottom: calc(var(--section) * 0.85); }

.cta {
  position: relative;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  background: var(--bg-2);
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(212, 165, 116, 0.15), transparent 60%);
  pointer-events: none;
}

.cta h2 {
  position: relative;
  font-size: var(--t-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.cta__sub {
  position: relative;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 28em;
  margin-inline: auto;
}

.cta__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta__platform {
  position: relative;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.cta .eyebrow { position: relative; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold), #b8885a);
  color: #1a1208;
  box-shadow: 0 4px 24px rgba(212, 165, 116, 0.35);
}

.btn--primary:hover { box-shadow: 0 8px 32px rgba(212, 165, 116, 0.45); }

.btn--ghost {
  border: 1px solid var(--border-2);
  background: var(--card);
  color: var(--text);
}

.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); }

.btn--lg { padding: 0.95rem 1.75rem; font-size: 0.95rem; }
.btn--block { width: 100%; }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__nav { display: flex; gap: 1.25rem; }
.footer__nav a:hover { color: var(--gold-2); }

/* Modal */
.modal {
  border: none;
  padding: 0;
  background: transparent;
  width: 100%;
  max-width: none;
  max-height: none;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: fixed;
  z-index: 200;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  overflow-y: auto;
  max-height: 100dvh;
}

@media (max-width: 599px) {
  .modal__panel {
    inset: auto 0 0 0;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    padding: 1.35rem;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
  }
}

@media (min-width: 600px) {
  .modal__panel {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(26rem, calc(100% - 2rem));
    border-radius: var(--r-lg);
    padding: 1.75rem;
  }
}

.modal__x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
}

.modal__top { margin-bottom: 1.25rem; padding-right: 2rem; }
.modal__top h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.35rem; }
.modal__hint { font-size: 0.88rem; color: var(--muted); }

.modal-form { display: flex; flex-direction: column; gap: 0.85rem; }
.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.modal-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
@media (max-width: 480px) { .modal-form__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field span { font-size: 0.72rem; font-weight: 600; color: var(--muted); }
.field i { color: var(--gold); font-style: normal; }

.field input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

.field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.modal-form__err {
  font-size: 0.88rem;
  color: #f87171;
  padding: 0.5rem 0.65rem;
  border-radius: var(--r);
  background: rgba(248, 113, 113, 0.1);
}

.modal__done { text-align: center; padding: 1.5rem 0; }
.modal__done-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(109, 212, 192, 0.12);
  color: var(--teal);
}
.modal__done-icon svg { width: 1.5rem; height: 1.5rem; }
.modal__done h3 { font-weight: 700; margin-bottom: 0.35rem; }
.modal__done p { font-size: 0.88rem; color: var(--muted); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem;
    background: rgba(7, 8, 11, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { padding: 0.75rem 1rem; width: 100%; border-radius: var(--r); }
  .nav__cta { text-align: center; margin-top: 0.35rem; }
  .hero__stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js-reveal [data-reveal],
  html.js-reveal .hero__copy > [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee__track { animation: none; }
}
