/* =========================================================
   Voxy — pazarlama sayfası stilleri
   Tek tema (koyu), token tabanlı. Animasyonlar html.anim ile
   kapılanır; JS yoksa ya da hareket azaltma açıksa her şey
   doğrudan görünür.
   ========================================================= */

:root {
  color-scheme: dark;

  --bg: #050a0f;
  --bg-2: #0a121a;
  --surface: #0e1820;
  --surface-2: #132029;
  --line: rgba(160, 200, 215, 0.10);
  --line-strong: rgba(160, 200, 215, 0.18);

  --text: #eaf2f5;
  --text-2: #9fb2bd;
  --text-3: #6b7f8a;

  --accent: #36e2c4;          /* sinyal */
  --accent-rgb: 54, 226, 196;
  --accent-2: #7c6cff;        /* lila */
  --accent-2-rgb: 124, 108, 255;
  --warm: #ffb86b;            /* canlı / dikkat */
  --danger: #ff5c7a;
  --ok: #4ade80;

  --font-display: "Bricolage Grotesque", "Instrument Sans", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --gutter: clamp(16px, 5vw, 64px);
  --max: 1240px;
  --nav-h: 72px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
}

/* ---------- Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}
html:not(.lenis) { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.no-scroll { overflow: hidden; }
main { overflow-x: clip; }   /* taşan dekoratif küreler yatay kaydırma yaratmasın; clip, sticky'yi bozmaz */

img, svg, canvas { display: block; max-width: 100%; }
[hidden] { display: none !important; }   /* .panel / .mobile-menu display kurallarını ezmesin */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }

.ic {
  width: 20px; height: 20px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.ic.acc { color: var(--accent); }

/* ---------- Doku, ilerleme, imleç ---------- */
.grain {
  position: fixed; inset: 0; z-index: 70; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.progress {
  position: fixed; left: 0; right: 0; top: env(safe-area-inset-top, 0px); height: 2px; z-index: 80;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: left; transform: scaleX(0);
}
.cursor-glow {
  position: fixed; left: 0; top: 0; width: 560px; height: 560px; margin: -280px 0 0 -280px;
  border-radius: 50%; pointer-events: none; z-index: 65; opacity: 0; transition: opacity .6s;
  background: radial-gradient(circle, rgba(var(--accent-rgb), .10), rgba(var(--accent-2-rgb), .05) 40%, transparent 70%);
  mix-blend-mode: screen; will-change: transform;
}
.cursor-glow.is-on { opacity: 1; }

/* ---------- Dekoratif küreler ---------- */
.orb {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  filter: blur(100px); opacity: .28; pointer-events: none; z-index: -1; will-change: transform;
}
.orb-a { background: var(--accent-2); top: -12%; right: -14%; }
.orb-b { background: var(--accent); top: 10%; left: -18%; opacity: .16; }
.orb-c { background: var(--accent-2); bottom: -20%; right: -10%; opacity: .2; }
.orb-d { background: var(--accent); top: 30%; right: -20%; opacity: .14; }
@media (max-width: 700px) { .orb { width: 320px; height: 320px; filter: blur(70px); } }

/* ---------- Butonlar ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px; border-radius: 999px; font-weight: 600; font-size: .95rem; line-height: 1;
  border: 1px solid transparent; white-space: nowrap; overflow: hidden; isolation: isolate;
  transition: transform .5s var(--ease-out), background .3s, border-color .3s, color .3s, box-shadow .4s;
}
.btn .ic { width: 18px; height: 18px; transition: transform .4s var(--ease-out); }
.btn:hover .ic { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: #04211c; }
.btn-primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform .8s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(130%); }
.btn-primary:hover { box-shadow: 0 12px 44px -10px rgba(var(--accent-rgb), .65); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .04); }
.btn-lg { padding: 15px 24px; font-size: 1.02rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background .5s, border-color .5s, backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 10, 15, .72);
  -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto;
  height: var(--nav-h); display: flex; align-items: center; gap: 32px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -.03em;
}
.brand-mark { width: 26px; height: 26px; fill: var(--accent); }
.brand-mark rect { transform-origin: 50% 50%; transform-box: fill-box; }
html.anim .brand:hover .brand-mark rect { animation: barBounce 1s var(--ease-io) infinite; }
.brand-mark rect:nth-child(2), .brand-mark rect:nth-child(4) { animation-delay: .12s !important; }
.brand-mark rect:nth-child(3) { animation-delay: .24s !important; }
@keyframes barBounce { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.55); } }

.nav-links { display: flex; gap: 28px; margin-left: auto; font-size: .95rem; color: var(--text-2); }
.nav-links a { position: relative; padding: 6px 0; transition: color .25s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: flex; gap: 10px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; margin-left: auto; border-radius: 50%;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border: 1px solid var(--line-strong);
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--text); transition: transform .4s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 45; display: flex; flex-direction: column; justify-content: center; gap: 40px;
  padding: calc(var(--nav-h) + var(--gutter)) var(--gutter) var(--gutter);
  background: rgba(5, 10, 15, .94); -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  opacity: 0; transition: opacity .4s;
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: clamp(2rem, 9vw, 3.2rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.15;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  transition-delay: calc(.08s + var(--i) * 60ms);
}
.mobile-menu.is-open nav a { opacity: 1; transform: none; }
.mobile-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Tipografi ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px;
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2);
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--accent); }
.eyebrow-live::before { display: none; }
.eyebrow.center { justify-content: center; width: 100%; }

.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }
.dot.ok { background: var(--ok); }
.dot.live { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), .55); }
  70% { box-shadow: 0 0 0 10px rgba(var(--accent-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0); }
}

.h1 {
  font-family: var(--font-display); font-variation-settings: "opsz" 96; font-weight: 600;
  font-size: clamp(2.4rem, 4.6vw, 4.4rem); line-height: 1; letter-spacing: -.035em; margin: 0 0 26px;
}
.h1 .line { display: block; overflow: hidden; padding: .06em 0 .14em; margin: -.06em 0 -.14em; }
.h1 .line > span { display: inline-block; will-change: transform; }
.grad {
  background: linear-gradient(92deg, var(--accent), #9be9ff 45%, var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.h2 {
  font-family: var(--font-display); font-variation-settings: "opsz" 72; font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.5rem); line-height: 1.04; letter-spacing: -.03em; margin: 0 0 18px; text-wrap: balance;
}
.h2 em { font-style: normal; color: var(--accent); }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--text-2); max-width: 58ch; margin: 0 0 34px; }
.lede strong { color: var(--text); font-weight: 600; }
.sub { color: var(--text-2); font-size: 1.08rem; max-width: 60ch; margin: 0; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .sub { margin-inline: auto; }

/* ---------- Ortaya çıkma sistemi ---------- */
html.anim .reveal { opacity: 0; transform: translateY(28px); }
html.anim .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms);
}
html.anim .reveal-text { clip-path: inset(0 0 100% 0); transform: translateY(24px); }
html.anim .reveal-text.is-in {
  clip-path: inset(0 0 -25% 0); transform: none;
  transition: clip-path 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
html.anim .reveal-rule { transform: scaleX(0); }
html.anim .reveal-rule.is-in { transform: scaleX(1); transition: transform 1.6s var(--ease-out); }
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent); transform-origin: left; }

/* Hero giriş koreografisi (yalnızca html.anim) */
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes lineUp { from { transform: translateY(115%); } to { transform: none; } }
@keyframes roomIn { from { opacity: 0; transform: translateY(48px) scale(.94) rotateX(8deg); } to { opacity: 1; transform: none; } }
@keyframes tileIn { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: none; } }
@keyframes chipIn { from { opacity: 0; transform: translateY(18px) scale(.9); } to { opacity: 1; transform: none; } }
html.anim .hero-copy > :not(.h1) { animation: rise .9s var(--ease-out) var(--d, 0s) backwards; }
html.anim .h1 .line > span { animation: lineUp 1.15s var(--ease-out) backwards; }
html.anim .h1 .line:nth-child(1) > span { animation-delay: .15s; }
html.anim .h1 .line:nth-child(2) > span { animation-delay: .27s; }
html.anim .h1 .line:nth-child(3) > span { animation-delay: .39s; }
html.anim .h1 .line:nth-child(4) > span { animation-delay: .51s; }
html.anim .room { animation: roomIn 1.4s var(--ease-out) .35s backwards; }
html.anim .tile { animation: tileIn .8s var(--ease-out) var(--t, .6s) backwards; }
html.anim .chip-wrap { animation: chipIn .9s var(--ease-out) var(--t, 1s) backwards; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: clip;
  padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + clamp(40px, 8vh, 110px));
  padding-bottom: clamp(48px, 8vw, 110px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -3;
  background-image: radial-gradient(rgba(160, 200, 215, .16) 1px, transparent 1.3px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(70% 60% at 62% 38%, #000 10%, transparent 100%);
  mask-image: radial-gradient(70% 60% at 62% 38%, #000 10%, transparent 100%);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; opacity: 0; transition: opacity 1.6s ease .3s; }
.hero-canvas.is-on { opacity: 1; }
.hero-glow {
  position: absolute; z-index: -1; left: -10%; right: -10%; bottom: -30%; height: 60%; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 100%, rgba(var(--accent-rgb), .14), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.fineprint { font-size: .85rem; color: var(--text-3); margin: 0 0 22px; }
.install {
  display: inline-flex; align-items: center; gap: 14px; max-width: 100%;
  padding: 8px 8px 8px 16px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255, 255, 255, .02);
  font-family: var(--font-mono); font-size: .9rem; color: var(--text-2);
}
.install code { white-space: nowrap; }
.install code .p { color: var(--accent); }
.copy { padding: 7px 11px; border-radius: 6px; background: rgba(255, 255, 255, .06); font-family: var(--font-body); font-size: .78rem; color: var(--text); transition: background .3s; }
.copy:hover { background: rgba(255, 255, 255, .12); }

/* Oda mockup'ı */
.hero-visual { position: relative; perspective: 1400px; }
.room {
  position: relative; border-radius: var(--radius-lg); padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--line-strong);
  box-shadow: 0 50px 120px -30px rgba(0, 0, 0, .85), inset 0 1px 0 rgba(255, 255, 255, .06);
  transform-style: preserve-3d; transition: transform .7s var(--ease-out);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.room-top { display: flex; align-items: center; gap: 12px; padding: 4px 6px 14px; font-family: var(--font-mono); font-size: .78rem; color: var(--text-2); }
.room-name { font-weight: 500; color: var(--text); }
.room-timer { font-variant-numeric: tabular-nums; }
.room-top .pill { margin-left: auto; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 5px 10px; border-radius: 999px;
  background: rgba(var(--accent-rgb), .1); color: var(--accent); border: 1px solid rgba(var(--accent-rgb), .25);
  font-family: var(--font-mono); font-size: .75rem; font-variant-numeric: tabular-nums;
}
.bars { display: inline-flex; align-items: flex-end; gap: 2px; height: 12px; }
.bars i { width: 3px; background: currentColor; border-radius: 1px; }
.bars i:nth-child(1) { height: 35%; } .bars i:nth-child(2) { height: 55%; } .bars i:nth-child(3) { height: 80%; } .bars i:nth-child(4) { height: 100%; }

.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tile { position: relative; aspect-ratio: 4 / 3; border-radius: 14px; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); isolation: isolate; }
.tile .video {
  position: absolute; inset: -30%; z-index: -1;
  background: radial-gradient(40% 40% at 30% 30%, var(--c1), transparent 60%), radial-gradient(40% 40% at 70% 70%, var(--c2), transparent 60%), #0c161e;
  filter: blur(22px) saturate(120%); opacity: .75; animation: drift 14s ease-in-out infinite alternate;
}
.tile:nth-child(2) .video { animation-delay: -4s; } .tile:nth-child(3) .video { animation-delay: -8s; } .tile:nth-child(4) .video { animation-delay: -11s; }
@keyframes drift { from { transform: translate(0, 0) rotate(0); } to { transform: translate(7%, -7%) rotate(10deg); } }
.tile .avatar {
  position: absolute; inset: 0; margin: auto; width: 34%; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(.85rem, 1.3vw, 1.2rem);
  background: linear-gradient(135deg, var(--c1), var(--c2)); color: #fff; text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .6);
}
.tile .ring { position: absolute; inset: 0; border-radius: 14px; box-shadow: inset 0 0 0 2px var(--accent), 0 0 24px -4px rgba(var(--accent-rgb), .6); opacity: 0; transition: opacity .4s; }
.tile.is-speaking .ring { opacity: 1; }
.tile .name {
  position: absolute; left: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 6px; padding: 4px 8px; border-radius: 6px;
  background: rgba(5, 10, 15, .6); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); font-size: .74rem; white-space: nowrap;
}
.tile .name .mic { width: 12px; height: 12px; color: var(--text-2); }
.tile.is-speaking .name .mic { color: var(--accent); }
.tile .wave { position: absolute; right: 10px; bottom: 12px; display: flex; gap: 2px; align-items: flex-end; height: 14px; opacity: 0; transition: opacity .3s; }
.tile.is-speaking .wave { opacity: 1; }
.wave i { width: 3px; height: 30%; background: var(--accent); border-radius: 2px; animation: wave .9s ease-in-out infinite; }
.wave i:nth-child(2) { animation-delay: .15s; } .wave i:nth-child(3) { animation-delay: .3s; } .wave i:nth-child(4) { animation-delay: .45s; }
@keyframes wave { 0%, 100% { height: 30%; } 50% { height: 100%; } }

.room-bar { display: flex; justify-content: center; gap: 10px; padding: 14px 0 2px; }
.room-bar button {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--line); color: var(--text);
  transition: background .25s, transform .3s var(--ease-out);
}
.room-bar button:hover { background: rgba(255, 255, 255, .13); transform: translateY(-3px); }
.room-bar .rec { color: var(--warm); }
.room-bar .end { width: 58px; border-radius: 999px; background: var(--danger); border-color: transparent; color: #fff; }
.room-bar .end:hover { background: #ff7590; }

.chip-wrap { position: absolute; z-index: 2; }
.chip-a { top: -18px; right: -18px; }
.chip-b { bottom: 36px; left: -28px; }
.chip {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px;
  background: rgba(14, 24, 32, .86); border: 1px solid var(--line-strong);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  font-size: .82rem; color: var(--text-2); white-space: nowrap;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .8);
  animation: float 6s ease-in-out infinite;
}
.chip b { color: var(--text); font-weight: 600; }
.chip-b .chip { animation-delay: -3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 600px) {
  .chip-a { right: 6px; top: -14px; }
  .chip-b { left: 6px; bottom: 26px; }
  .chip { font-size: .76rem; padding: 8px 11px; }
}

/* ---------- İstatistikler ---------- */
.stats-wrap { padding-top: clamp(40px, 6vw, 72px); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: clamp(40px, 6vw, 80px); }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  display: block; font-family: var(--font-display); font-variation-settings: "opsz" 96;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem); font-weight: 600; letter-spacing: -.035em; line-height: 1; font-variant-numeric: tabular-nums;
}
.stat-label { display: block; margin-top: 10px; color: var(--text-2); font-size: .92rem; }

/* ---------- Bölümler ---------- */
.section { position: relative; padding-block: clamp(80px, 11vw, 150px); isolation: isolate; }
.grid-bg::before {
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background-image: radial-gradient(rgba(160, 200, 215, .12) 1px, transparent 1.3px); background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(60% 50% at 50% 25%, #000, transparent);
  mask-image: radial-gradient(60% 50% at 50% 25%, #000, transparent);
}

/* ---------- Bento kartlar ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.card {
  position: relative; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line);
  padding: 22px 26px 28px; overflow: hidden; display: flex; flex-direction: column; gap: 12px;
  transition: transform .6s var(--ease-out), border-color .4s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card > * { position: relative; z-index: 1; }
.card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: -.02em; margin-top: 8px; }
.card p { color: var(--text-2); font-size: .97rem; }
.card-lg { grid-column: span 4; }
.card-sm { grid-column: span 2; }
@media (max-width: 980px) { .card-lg, .card-sm { grid-column: span 3; } }
@media (max-width: 640px) { .card-lg, .card-sm { grid-column: span 6; } }

.spot::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; z-index: 0; pointer-events: none;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(var(--accent-rgb), .6), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .5s;
}
.spot::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(var(--accent-rgb), .07), transparent 60%);
  opacity: 0; transition: opacity .5s;
}
.spot:hover::before, .spot:hover::after { opacity: 1; }

.card-visual {
  position: relative; height: 160px; border-radius: 12px; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line); display: grid; place-items: center;
}
.tag {
  position: absolute; padding: 4px 9px; border-radius: 6px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em;
  background: rgba(5, 10, 15, .7); border: 1px solid var(--line); color: var(--text-2);
}
.tag-tl { top: 10px; left: 10px; } .tag-br { bottom: 10px; right: 10px; }

/* mini video ızgarası */
.mini-tiles { display: grid; grid-template-columns: repeat(3, 84px); gap: 8px; }
.mini-tiles i {
  display: block; height: 48px; border-radius: 8px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .25), rgba(var(--accent-2-rgb), .25)); border: 1px solid var(--line);
  animation: miniSpeak 6s ease-in-out infinite;
}
.mini-tiles i:nth-child(1) { animation-delay: 0s; } .mini-tiles i:nth-child(2) { animation-delay: 1s; } .mini-tiles i:nth-child(3) { animation-delay: 2s; }
.mini-tiles i:nth-child(4) { animation-delay: 3s; } .mini-tiles i:nth-child(5) { animation-delay: 4s; } .mini-tiles i:nth-child(6) { animation-delay: 5s; }
@keyframes miniSpeak { 0%, 12%, 100% { box-shadow: inset 0 0 0 0 transparent; } 5% { box-shadow: inset 0 0 0 2px var(--accent); } }
@media (max-width: 420px) { .mini-tiles { grid-template-columns: repeat(3, 64px); } }

/* ekolayzer */
.eq { display: flex; align-items: center; gap: 4px; height: 90px; }
.eq i { width: 5px; height: 20%; border-radius: 3px; background: linear-gradient(180deg, var(--accent), var(--accent-2)); animation: eq 1.4s ease-in-out infinite; }
.eq i:nth-child(odd) { animation-duration: 1.1s; }
.eq i:nth-child(1) { animation-delay: -.1s; } .eq i:nth-child(2) { animation-delay: -.3s; } .eq i:nth-child(3) { animation-delay: -.5s; } .eq i:nth-child(4) { animation-delay: -.7s; }
.eq i:nth-child(5) { animation-delay: -.2s; } .eq i:nth-child(6) { animation-delay: -.9s; } .eq i:nth-child(7) { animation-delay: -.4s; } .eq i:nth-child(8) { animation-delay: -1.1s; }
.eq i:nth-child(9) { animation-delay: -.6s; } .eq i:nth-child(10) { animation-delay: -.15s; } .eq i:nth-child(11) { animation-delay: -.8s; } .eq i:nth-child(12) { animation-delay: -.35s; }
.eq i:nth-child(13) { animation-delay: -1s; } .eq i:nth-child(14) { animation-delay: -.25s; } .eq i:nth-child(15) { animation-delay: -.55s; } .eq i:nth-child(16) { animation-delay: -.95s; }
.eq i:nth-child(17) { animation-delay: -.45s; } .eq i:nth-child(18) { animation-delay: -.05s; } .eq i:nth-child(19) { animation-delay: -.75s; } .eq i:nth-child(20) { animation-delay: -.65s; }
@keyframes eq { 0%, 100% { height: 18%; } 50% { height: 95%; } }

/* ekran paylaşımı penceresi */
.win { position: relative; width: 78%; height: 100px; border-radius: 8px; background: var(--surface-2); border: 1px solid var(--line-strong); overflow: hidden; }
.win-bar { display: flex; gap: 5px; padding: 7px 8px; border-bottom: 1px solid var(--line); }
.win-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, .15); }
.win-body { padding: 10px; display: flex; flex-direction: column; gap: 7px; }
.win-body span { display: block; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, .08); }
.win-body span:nth-child(1) { width: 60%; } .win-body span:nth-child(2) { width: 85%; } .win-body span:nth-child(3) { width: 45%; }
.win .cursor {
  position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .25);
  animation: cursorMove 5s var(--ease-io) infinite;
}
@keyframes cursorMove {
  0% { left: 20%; top: 40%; } 30% { left: 70%; top: 55%; } 55% { left: 55%; top: 80%; } 80% { left: 30%; top: 65%; } 100% { left: 20%; top: 40%; }
}

/* altyazı */
.caption { display: flex; align-items: flex-start; gap: 10px; width: 84%; padding: 12px 14px; border-radius: 10px; background: rgba(5, 10, 15, .7); border: 1px solid var(--line); min-height: 64px; }
.rec-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--danger); margin-top: 6px; flex: none; animation: blink 1.2s steps(2) infinite; }
@keyframes blink { to { opacity: .2; } }
.caption-text { font-size: .86rem; color: var(--text); line-height: 1.5; min-height: 2.6em; }
.caption-text::after { content: "▍"; color: var(--accent); animation: blink 1s steps(2) infinite; }

/* canlı yayın */
.live-box { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 80%; }
.live-badge {
  padding: 4px 10px; border-radius: 6px; background: var(--danger); color: #fff; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; font-weight: 500;
  box-shadow: 0 0 0 0 rgba(255, 92, 122, .5); animation: livePulse 2s infinite;
}
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(255, 92, 122, .5); } 70% { box-shadow: 0 0 0 10px rgba(255, 92, 122, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 92, 122, 0); } }
.live-count { font-size: .9rem; color: var(--text-2); }
.live-count b { font-family: var(--font-display); font-size: 1.6rem; color: var(--text); letter-spacing: -.02em; font-variant-numeric: tabular-nums; margin-right: 6px; }
.live-bar { width: 100%; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.live-bar i { display: block; height: 100%; width: 40%; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); animation: buffer 3s var(--ease-io) infinite; }
@keyframes buffer { 0% { transform: translateX(-100%); } 100% { transform: translateX(260%); } }

/* uç ağı svg */
.net { width: 100%; height: 100%; }
.net-line { fill: none; stroke: rgba(160, 200, 215, .18); stroke-width: 1.5; }
.net-flow { fill: none; stroke: url(#ng); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 70 600; animation: flow 3.2s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -670; } }
.net-node circle { fill: var(--surface-2); stroke: rgba(160, 200, 215, .35); stroke-width: 1.5; }
.net-node-edge circle { fill: var(--accent); stroke: none; }
.net-node .halo { fill: none; stroke: var(--accent); stroke-width: 1.5; animation: halo 2.4s ease-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes halo { from { transform: scale(1); opacity: .9; } to { transform: scale(3.2); opacity: 0; } }
.net-node text { fill: var(--text-2); font-family: var(--font-mono); font-size: 11px; text-anchor: middle; letter-spacing: .04em; }
.net-node-edge text { fill: var(--text); }

/* ---------- Geliştiriciler ---------- */
.dev-grid {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  grid-template-areas: "head code" "steps code"; column-gap: clamp(32px, 5vw, 80px); align-items: start;
}
.dev-grid .section-head { grid-area: head; }
.dev-grid .steps { grid-area: steps; }
.dev-code { grid-area: code; align-self: stretch; position: relative; z-index: 2; }
.code-window {
  position: sticky; top: calc(var(--nav-h) + 24px + env(safe-area-inset-top, 0px));
  border-radius: var(--radius-lg); background: #080f15; border: 1px solid var(--line-strong); overflow: hidden;
  box-shadow: 0 50px 120px -40px rgba(0, 0, 0, .9), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.code-bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: .76rem; color: var(--text-2); }
.dots { display: inline-flex; gap: 6px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .12); }
.code-lang { margin-left: auto; color: var(--text-3); display: none; }
.code-langs {
  margin-left: auto; display: inline-flex; gap: 2px; padding: 3px; border-radius: 8px;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line);
}
.code-langs button {
  padding: 4px 9px; border-radius: 6px; font-family: var(--font-mono); font-size: .72rem; color: var(--text-3);
  transition: background .3s, color .3s;
}
.code-langs button:hover { color: var(--text); }
.code-langs button[aria-pressed="true"] { background: rgba(var(--accent-rgb), .16); color: var(--accent); }
.code-window.is-client .code-langs { display: none; }
.code-window.is-client .code-lang { display: inline; }
@media (max-width: 480px) { .code-file { display: none; } }
.code {
  margin: 0; padding: 22px 20px 26px; min-height: 360px; overflow-x: auto;
  font-family: var(--font-mono); font-size: .86rem; line-height: 1.75; color: #cfe3ea; tab-size: 2;
}
.code code { display: block; }
.code .ln { display: block; white-space: pre; opacity: 0; transform: translateX(-10px); animation: lineIn .55s var(--ease-out) forwards; }
@keyframes lineIn { to { opacity: 1; transform: none; } }
.code .k { color: #c4b5fd; } .code .s { color: #86efac; } .code .c { color: #5f7480; font-style: italic; } .code .n { color: #fdba74; } .code .f { color: #7dd3fc; } .code .v { color: #f9a8d4; }

.steps { list-style: none; margin: 0; padding: 0 0 20vh; display: flex; flex-direction: column; gap: clamp(24px, 10vh, 120px); position: relative; z-index: 1; }
.step {
  position: relative; padding: 22px 22px 22px 66px; border-radius: var(--radius); border: 1px solid transparent; cursor: pointer;
  opacity: .5; transform: translateX(0);
  transition: opacity .5s, background .5s, border-color .5s, transform .6s var(--ease-out);
}
.step.is-active { opacity: 1; background: var(--surface); border-color: var(--line); transform: translateX(6px); }
.step-n {
  position: absolute; left: 22px; top: 24px; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: .8rem; border: 1px solid var(--line-strong); color: var(--text-2);
  transition: background .4s, color .4s, border-color .4s, box-shadow .4s;
}
.step.is-active .step-n { background: var(--accent); color: #04211c; border-color: transparent; box-shadow: 0 0 24px -4px rgba(var(--accent-rgb), .7); }
.step h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; letter-spacing: -.015em; margin: 0 0 6px; }
.step p { color: var(--text-2); font-size: .95rem; }

.sdks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.sdks span {
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); font-family: var(--font-mono); font-size: .78rem; color: var(--text-2);
  transition: border-color .3s, color .3s;
}
.sdks span:hover { border-color: rgba(var(--accent-rgb), .5); color: var(--accent); }

@media (max-width: 900px) {
  .dev-grid { display: block; }
  .dev-code { position: sticky; top: calc(var(--nav-h) + 8px + env(safe-area-inset-top, 0px)); background: var(--bg); padding-bottom: 14px; margin-bottom: 8px; }
  .code-window { position: static; }
  .code { min-height: 240px; font-size: .78rem; padding: 16px 14px 18px; }
  .steps { gap: 20px; padding-bottom: 8px; }
  .step.is-active { transform: none; }
}

/* ---------- Yönetim paneli: izometrik 3B sahne ---------- */
.panel-show { overflow: clip; }
.stage3d {
  position: relative; height: clamp(300px, 46vw, 640px); margin: clamp(8px, 2vw, 24px) auto 0;
  perspective: 1800px; perspective-origin: 50% 20%;
}
.iso {
  --rx: 56deg; --rz: -34deg; --ry: 0deg; --tx: 0deg; --ty: 0deg;
  position: absolute; left: 50%; top: 52%; width: min(760px, 66%); aspect-ratio: 16 / 10;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(calc(var(--rx) + var(--tx))) rotateY(calc(var(--ry) + var(--ty))) rotateZ(var(--rz));
  transition: transform .18s linear;
}
.iso::before {
  /* zemin parıltısı */
  content: ""; position: absolute; inset: -6% -10%; border-radius: 40%; z-index: -1;
  background: radial-gradient(50% 50% at 50% 55%, rgba(var(--accent-rgb), .28), rgba(var(--accent-2-rgb), .12) 45%, transparent 75%);
  filter: blur(40px); transform: translateZ(-160px) scale(1.2);
}
.shot {
  position: absolute; inset: 0; margin: 0; border-radius: 14px; overflow: hidden; background: var(--bg-2);
  border: 1px solid rgba(160, 200, 215, .28);
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, .95), 0 0 0 1px rgba(0, 0, 0, .5) inset;
  transform-style: preserve-3d;
}
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }
.shot::after {
  /* cam parlaması */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, .10) 0%, transparent 35%, transparent 65%, rgba(var(--accent-rgb), .08) 100%);
}
.shot-main { transform: translateZ(40px); }
.shot-back { transform: translate3d(14%, -26%, -140px) scale(.92); opacity: .78; filter: saturate(.85) brightness(.85); }
.fchip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 12px; white-space: nowrap;
  font-size: .84rem; color: var(--text-2); background: rgba(14, 24, 32, .9); border: 1px solid var(--line-strong);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .9);
  animation: floatY 6s ease-in-out infinite;   /* transform'a dokunmaz; translateZ korunur */
}
@keyframes floatY { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.fchip b { color: var(--text); font-weight: 600; }
.fc-1 { left: -6%; top: 10%; transform: translateZ(150px); }
.fc-2 { right: -8%; top: 46%; transform: translateZ(190px); animation-delay: -2s; }
.fc-3 { left: 8%; bottom: -6%; transform: translateZ(120px); animation-delay: -4s; }
.panel-points { list-style: none; margin: clamp(24px, 4vw, 48px) auto 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1100px; }
.panel-points li { padding: 18px 20px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); color: var(--text-2); font-size: .93rem; line-height: 1.5; }
.panel-points b { display: block; color: var(--text); font-weight: 600; margin-bottom: 4px; }
@media (max-width: 1100px) { .panel-points { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .iso { width: 84%; } .fc-1 { left: 0; } .fc-2 { right: 0; } .fchip { font-size: .76rem; padding: 8px 11px; } }
@media (max-width: 560px) { .panel-points { grid-template-columns: 1fr; } .stage3d { height: 72vw; } .iso { width: 92%; --rx: 30deg; --rz: -14deg; } .shot-back { display: none; } .fc-2 { display: none; } }
@media (prefers-reduced-motion: reduce) { .iso { --rx: 14deg; --rz: -6deg; --ry: 10deg; transition: none; } .fchip { animation: none; } }

/* ---------- Ağ / küre ---------- */
.network-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
@media (max-width: 900px) { .network-grid { grid-template-columns: 1fr; } .network-grid .globe-wrap { order: 2; } }
.globe-wrap { position: relative; aspect-ratio: 1; width: 100%; max-width: 560px; margin-inline: auto; }
#globe { width: 100%; height: 100%; }
.globe-badge {
  position: absolute; left: 50%; bottom: 4%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px; white-space: nowrap;
  background: rgba(14, 24, 32, .86); border: 1px solid var(--line-strong); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font-family: var(--font-mono); font-size: .8rem; color: var(--text-2);
}
.globe-badge b { color: var(--accent); font-weight: 500; }
.regions { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 28px 0; }
.regions li {
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); font-size: .82rem; color: var(--text-2); font-family: var(--font-mono);
  transition: border-color .4s, color .4s, background .4s, transform .4s var(--ease-out);
}
.regions li.is-hot { border-color: rgba(255, 184, 107, .6); color: var(--warm); background: rgba(255, 184, 107, .08); transform: translateY(-2px); }
.facts { display: flex; flex-direction: column; gap: 14px; }
.fact { display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, .015); }
.fact b { display: block; font-weight: 600; margin-bottom: 2px; }
.fact span { color: var(--text-2); font-size: .92rem; }

/* ---------- Sekmeler ---------- */
.tabs {
  position: relative; display: flex; gap: 4px; padding: 6px; margin-bottom: 28px; max-width: 100%; width: max-content;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .02); overflow-x: auto; scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab { position: relative; z-index: 1; padding: 10px 18px; border-radius: 999px; color: var(--text-2); font-weight: 500; font-size: .95rem; white-space: nowrap; transition: color .35s; }
.tab:hover { color: var(--text); }
.tab[aria-selected="true"] { color: #04211c; }
.tab-ind {
  position: absolute; top: 6px; left: 0; height: calc(100% - 12px); width: 0; border-radius: 999px; background: var(--accent); z-index: 0;
  transition: transform .55s var(--ease-out), width .55s var(--ease-out);
  box-shadow: 0 8px 30px -8px rgba(var(--accent-rgb), .7);
}
.tab-panels { position: relative; }
.panel {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 48px); background: var(--surface);
  animation: panelIn .7s var(--ease-out) backwards;
}
@keyframes panelIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (max-width: 860px) { .panel { grid-template-columns: 1fr; } }
.panel h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -.025em; margin: 0 0 12px; font-weight: 600; }
.panel-copy > p { color: var(--text-2); }
.panel ul { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 10px; color: var(--text-2); font-size: .97rem; }
.panel li { display: flex; gap: 12px; align-items: flex-start; }
.panel li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: .6em; }

/* çözüm mockup'ları */
.mock { position: relative; min-height: 300px; border-radius: 16px; background: var(--bg-2); border: 1px solid var(--line); overflow: hidden; padding: 16px; }
.m-tile {
  position: relative; border-radius: 12px; overflow: hidden; display: grid; place-items: center; aspect-ratio: 4 / 3;
  background: radial-gradient(60% 60% at 30% 30%, color-mix(in srgb, var(--c1) 45%, transparent), transparent 70%), radial-gradient(60% 60% at 75% 75%, color-mix(in srgb, var(--c2) 45%, transparent), transparent 70%), var(--surface-2);
  border: 1px solid var(--line);
}
.m-tile b { width: 38%; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--c1), var(--c2)); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.m-tile span { position: absolute; left: 8px; bottom: 8px; padding: 3px 7px; border-radius: 5px; background: rgba(5, 10, 15, .65); font-size: .7rem; }
.mock-tele { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.m-notes { grid-column: 1 / -1; padding: 12px 14px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.m-notes em { font-style: normal; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.m-notes i { display: block; height: 7px; width: 90%; border-radius: 4px; background: rgba(255, 255, 255, .08); animation: typeBar 4s var(--ease-io) infinite alternate; transform-origin: left; }
.m-notes i:nth-of-type(2) { animation-delay: -1s; } .m-notes i:nth-of-type(3) { animation-delay: -2s; } .m-notes i:nth-of-type(4) { animation-delay: -3s; }
@keyframes typeBar { from { transform: scaleX(.4); } to { transform: scaleX(1); } }

.mock-edu { display: flex; flex-direction: column; gap: 12px; }
.mock-edu .m-big { aspect-ratio: 16 / 7; }
.m-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.m-grid i { display: block; aspect-ratio: 1; border-radius: 8px; background: linear-gradient(135deg, var(--c1), var(--c2)); opacity: .85; animation: miniSpeak 8s ease-in-out infinite; }
.m-grid i:nth-child(2) { animation-delay: 1s; } .m-grid i:nth-child(3) { animation-delay: 2s; } .m-grid i:nth-child(4) { animation-delay: 3s; }
.m-grid i:nth-child(5) { animation-delay: 4s; } .m-grid i:nth-child(6) { animation-delay: 5s; } .m-grid i:nth-child(7) { animation-delay: 6s; }
.m-grid .m-more { background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-mono); font-size: .7rem; color: var(--text-2); animation: none; }

.mock-sup { display: flex; align-items: flex-end; }
.m-chat { display: flex; flex-direction: column; gap: 10px; width: 100%; padding-right: 96px; }
.m-chat .b { max-width: 78%; padding: 10px 14px; border-radius: 14px; font-size: .86rem; line-height: 1.4; opacity: 0; animation: bubbleIn .6s var(--ease-out) forwards; }
.m-chat .b:nth-child(1) { animation-delay: .2s; } .m-chat .b:nth-child(2) { animation-delay: 1s; } .m-chat .b:nth-child(3) { animation-delay: 1.8s; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }
.b-in { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.b-out { align-self: flex-end; background: rgba(var(--accent-rgb), .16); border: 1px solid rgba(var(--accent-rgb), .3); border-bottom-right-radius: 4px; color: var(--text); }
.m-pip {
  position: absolute; right: 16px; top: 16px; width: 84px; aspect-ratio: 3 / 4; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--c1), var(--c2)); border: 2px solid var(--accent); box-shadow: 0 16px 40px -14px rgba(0, 0, 0, .8);
  animation: float 5s ease-in-out infinite;
}
.m-pip b { font-family: var(--font-display); color: #fff; }

.mock-social { display: grid; place-items: center; }
.m-ring { position: relative; width: 240px; height: 240px; animation: spin 40s linear infinite; }
.m-ring i {
  position: absolute; left: 50%; top: 50%; width: 46px; height: 46px; margin: -23px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2)); box-shadow: 0 0 0 0 rgba(var(--accent-rgb), .6);
  transform: rotate(var(--r)) translateY(-100px);
  animation: talk 3.6s ease-in-out infinite;
}
.m-ring i:nth-child(2) { animation-delay: .6s; } .m-ring i:nth-child(3) { animation-delay: 1.2s; } .m-ring i:nth-child(4) { animation-delay: 1.8s; } .m-ring i:nth-child(5) { animation-delay: 2.4s; } .m-ring i:nth-child(6) { animation-delay: 3s; }
@keyframes talk { 0%, 25%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), .6); } 12% { box-shadow: 0 0 0 10px rgba(var(--accent-rgb), 0); } }
@keyframes spin { to { transform: rotate(360deg); } }
.m-ring b {
  position: absolute; inset: 0; margin: auto; width: 96px; height: 96px; border-radius: 50%; display: grid; place-content: center; text-align: center;
  background: var(--surface-2); border: 1px solid var(--line-strong); font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -.02em;
  animation: spin 40s linear infinite reverse;
}
.m-ring b small { display: block; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-top: 2px; }

.mock-kyc { display: grid; place-items: center; }
.m-id {
  position: relative; width: 78%; max-width: 300px; aspect-ratio: 1.58; border-radius: 14px; padding: 18px;
  background: linear-gradient(160deg, var(--surface-2), var(--bg-2)); border: 1px solid var(--line-strong); overflow: hidden;
  display: grid; grid-template-columns: 34% 1fr; gap: 8px 14px; align-content: start;
}
.m-photo { grid-row: 1 / 4; border-radius: 8px; background: linear-gradient(135deg, #38bdf8, #a78bfa); opacity: .8; }
.m-id > span { display: block; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, .1); width: 80%; align-self: center; }
.m-scan { position: absolute; left: 0; right: 0; height: 40%; background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb), .25), var(--accent)); animation: scan 3s var(--ease-io) infinite; }
@keyframes scan { 0% { top: -40%; opacity: 1; } 70% { top: 100%; opacity: 1; } 71%, 100% { top: 100%; opacity: 0; } }
.m-ok {
  position: absolute; right: 12px; bottom: 12px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ok); color: #052e16; animation: okPop 3s var(--ease-out) infinite;
}
.m-ok .ic { width: 18px; height: 18px; stroke-width: 2.5; }
@keyframes okPop { 0%, 65% { transform: scale(0); opacity: 0; } 75%, 92% { transform: scale(1); opacity: 1; } 100% { transform: scale(0); opacity: 0; } }

/* ---------- Fiyatlandırma ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; align-items: stretch; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }
.plan {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; background: var(--surface);
  display: flex; flex-direction: column; gap: 18px; transition: transform .6s var(--ease-out), border-color .4s;
}
.plan:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.plan.is-featured { border-color: rgba(var(--accent-rgb), .45); background: linear-gradient(180deg, rgba(var(--accent-rgb), .09), var(--surface) 45%); }
.plan.is-featured:hover { box-shadow: 0 40px 100px -40px rgba(var(--accent-rgb), .35); }
.plan-tag {
  position: absolute; top: -12px; left: 28px; padding: 4px 10px; border-radius: 999px; background: var(--warm); color: #2a1600;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.plan h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; letter-spacing: -.02em; }
.plan-desc { color: var(--text-2); font-size: .95rem; margin-top: -10px; }
.price { font-family: var(--font-display); font-variation-settings: "opsz" 96; font-size: 2.1rem; letter-spacing: -.035em; font-weight: 600; line-height: 1; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price small { font-family: var(--font-body); font-size: .9rem; color: var(--text-2); letter-spacing: 0; font-weight: 400; }
.plan ul { list-style: none; padding: 0; margin: 4px 0 8px; display: flex; flex-direction: column; gap: 10px; color: var(--text-2); font-size: .95rem; }
.plan li { display: flex; gap: 10px; align-items: flex-start; }
.plan li .ic { width: 18px; height: 18px; color: var(--accent); margin-top: 3px; }
.plan .btn { margin-top: auto; justify-content: center; }

.calc {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(28px, 4vw, 48px); align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); background: var(--surface);
}
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }
.calc h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: -.02em; margin-bottom: 6px; }
.calc-hint { color: var(--text-3); font-size: .9rem; margin-bottom: 28px; }
.field { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.field label { display: flex; justify-content: space-between; gap: 12px; font-size: .95rem; color: var(--text-2); }
.field output { font-family: var(--font-mono); color: var(--text); font-variant-numeric: tabular-nums; }
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 2px; margin: 8px 0; cursor: pointer;
  background: linear-gradient(90deg, var(--accent) var(--pct, 50%), rgba(255, 255, 255, .1) var(--pct, 50%));
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .45); transition: transform .25s var(--ease-out), box-shadow .25s;
}
input[type="range"]:hover::-webkit-slider-thumb, input[type="range"]:active::-webkit-slider-thumb { transform: scale(1.18); box-shadow: 0 0 0 8px rgba(var(--accent-rgb), .18); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); }
.switch { display: flex; align-items: center; gap: 12px; cursor: pointer; color: var(--text-2); font-size: .95rem; position: relative; }
.switch small { color: var(--text-3); }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.track { width: 44px; height: 24px; border-radius: 999px; background: rgba(255, 255, 255, .12); position: relative; flex: none; transition: background .3s; }
.knob { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .35s var(--ease-out); }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track .knob { transform: translateX(20px); }
.switch input:focus-visible + .track { outline: 2px solid var(--accent); outline-offset: 2px; }
.calc-result { text-align: center; padding: 32px 24px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.calc-label { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.calc-total { font-family: var(--font-display); font-variation-settings: "opsz" 96; font-size: clamp(2.6rem, 4.5vw, 3.8rem); letter-spacing: -.035em; font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; }
.calc-unit { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .06em; color: var(--accent); margin-top: -2px; }
.calc-meta { color: var(--text-2); font-size: .88rem; }
.calc-cta { display: inline-flex; align-items: center; gap: 8px; justify-content: center; margin-top: 12px; font-weight: 600; font-size: .92rem; color: var(--text); transition: color .3s; }
.calc-cta .ic { width: 16px; height: 16px; transition: transform .4s var(--ease-out); }
.calc-cta:hover { color: var(--accent); } .calc-cta:hover .ic { transform: translateX(4px); }
.faq-a a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- SSS ---------- */

.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; text-align: left;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; letter-spacing: -.012em; transition: color .3s;
}
.faq-q:hover { color: var(--accent); }
.plus { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); position: relative; transition: transform .5s var(--ease-out), background .3s, border-color .3s, color .3s; color: var(--text); }
.plus::before, .plus::after { content: ""; position: absolute; inset: 0; margin: auto; width: 12px; height: 1.5px; background: currentColor; }
.plus::after { transform: rotate(90deg); }
.faq-item.is-open .plus { transform: rotate(45deg); background: rgba(var(--accent-rgb), .12); border-color: rgba(var(--accent-rgb), .45); color: var(--accent); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease-out); }
.faq-a > div { overflow: hidden; min-height: 0; }
.faq-a p { color: var(--text-2); max-width: 66ch; padding: 0 4px 26px; opacity: 0; transform: translateY(-6px); transition: opacity .4s, transform .5s var(--ease-out); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-a p { opacity: 1; transform: none; transition-delay: .1s; }

/* ---------- CTA ---------- */
.cta { position: relative; padding-block: clamp(90px, 13vw, 170px); text-align: center; overflow: clip; isolation: isolate; }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(50% 60% at 50% 100%, rgba(var(--accent-rgb), .18), transparent 70%), radial-gradient(30% 40% at 20% 20%, rgba(var(--accent-2-rgb), .12), transparent 70%);
}
.cta .h2 { font-size: clamp(2.4rem, 6vw, 5rem); margin: 0 auto 20px; max-width: 16ch; }
.cta .lede { margin: 0 auto 34px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.sonar { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.sonar i {
  position: absolute; left: 50%; top: 50%; width: 30vmin; height: 30vmin; margin: -15vmin; border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), .35); animation: sonar 7s linear infinite;
}
.sonar i:nth-child(2) { animation-delay: -2.33s; } .sonar i:nth-child(3) { animation-delay: -4.66s; }
@keyframes sonar { from { transform: scale(.3); opacity: .9; } to { transform: scale(3.4); opacity: 0; } }

/* ---------- Footer ---------- */
.footer { position: relative; border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 80px); overflow: clip; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 32px; margin-bottom: clamp(48px, 6vw, 80px); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--text-2); font-size: .95rem; max-width: 34ch; margin: 16px 0 0; }
.footer h4 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin: 0 0 16px; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: .95rem; color: var(--text-2); }
.footer li a { transition: color .25s; }
.footer li a:hover { color: var(--accent); }
.wordmark {
  display: flex; justify-content: center; margin: 0; padding: 0 0 .05em; user-select: none;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(5rem, 24vw, 22rem); line-height: .8; letter-spacing: -.06em;
}
.wordmark span {
  color: transparent; -webkit-text-stroke: 1px rgba(160, 200, 215, .22);
  transition: color .6s, -webkit-text-stroke-color .6s, transform .8s var(--ease-out);
  transition-delay: calc(var(--i) * 70ms);
}
.wordmark:hover span { color: var(--accent); -webkit-text-stroke-color: transparent; transform: translateY(-.04em); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 24px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line); font-size: .85rem; color: var(--text-3);
}

/* ---------- Alt sayfalar: giriş / iletişim ---------- */
.page {
  position: relative; isolation: isolate; overflow-x: clip;
  padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + clamp(28px, 6vh, 72px));
  padding-bottom: clamp(56px, 8vw, 110px);
}
.page-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); align-items: stretch; }
@media (max-width: 900px) { .page-grid { grid-template-columns: 1fr; } }

.panel-visual {
  position: relative; isolation: isolate; overflow: hidden; min-height: 460px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  padding: clamp(26px, 4vw, 48px); border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
}
.panel-visual > :not(canvas) { position: relative; z-index: 1; }
.panel-visual .h1 { font-size: clamp(2rem, 3.6vw, 3.2rem); margin-bottom: 18px; }
.panel-visual .lede { margin-bottom: 0; font-size: 1.05rem; }
.panel-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.panel-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); font-size: .95rem; }
.panel-list li b { color: var(--text); font-weight: 600; }
.panel-list .ic { color: var(--accent); margin-top: 3px; }
.panel-steps { counter-reset: s; list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.panel-steps li { position: relative; padding-left: 44px; color: var(--text-2); font-size: .95rem; }
.panel-steps li::before {
  counter-increment: s; content: counter(s); position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-mono); font-size: .8rem;
  background: rgba(var(--accent-rgb), .14); color: var(--accent); border: 1px solid rgba(var(--accent-rgb), .35);
}
.panel-steps b { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.panel-contact { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: .9rem; color: var(--text-2); }
.panel-contact span { display: inline-flex; align-items: center; gap: 8px; }
.panel-contact .ic { width: 16px; height: 16px; color: var(--accent); }
.panel-contact a { color: var(--text); transition: color .25s; }
.panel-contact a:hover { color: var(--accent); }

.form-card {
  align-self: start; display: flex; flex-direction: column; gap: 18px;
  padding: clamp(24px, 4vw, 44px); border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface);
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, .8);
}
.form-card h2 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: -.02em; font-weight: 600; }
.form-sub { color: var(--text-2); font-size: .95rem; margin-top: -8px; }
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.f { display: flex; flex-direction: column; gap: 8px; }
.f > label { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: .9rem; color: var(--text-2); }
.f .opt { color: var(--text-3); font-size: .8rem; font-weight: 400; white-space: nowrap; }
.panel-visual .hero-canvas.is-on { opacity: .6; }
.f > label a.opt { transition: color .25s; }
.f > label a.opt:hover { color: var(--accent); }
.input {
  width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .03); color: var(--text); font: inherit; font-size: .98rem; line-height: 1.4;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.input::placeholder { color: var(--text-3); }
.input:hover { border-color: rgba(255, 255, 255, .28); }
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .15); background: rgba(255, 255, 255, .05); }
textarea.input { min-height: 132px; resize: vertical; }
select.input {
  appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239fb2bd' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
select.input option { background: var(--surface-2); color: var(--text); }
.f.is-invalid .input { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(255, 92, 122, .12); }
.f .err { display: none; font-size: .82rem; color: var(--danger); }
.f.is-invalid .err { display: block; animation: rise .35s var(--ease-out) backwards; }
.pw { position: relative; }
.pw .input { padding-right: 84px; }
.pw-toggle {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%); padding: 6px 10px; border-radius: 6px;
  font-size: .78rem; color: var(--text-2); background: rgba(255, 255, 255, .06); transition: background .25s, color .25s;
}
.pw-toggle:hover { color: var(--text); background: rgba(255, 255, 255, .12); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--text-2); cursor: pointer; position: relative; line-height: 1.45; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check .box { flex: none; width: 20px; height: 20px; border-radius: 6px; border: 1px solid var(--line-strong); display: grid; place-items: center; margin-top: 1px; transition: background .25s, border-color .25s; }
.check .box .ic { width: 14px; height: 14px; stroke-width: 2.5; color: #04211c; opacity: 0; transform: scale(.6); transition: opacity .2s, transform .25s var(--ease-out); }
.check input:checked + .box { background: var(--accent); border-color: var(--accent); }
.check input:checked + .box .ic { opacity: 1; transform: none; }
.check input:focus-visible + .box { outline: 2px solid var(--accent); outline-offset: 2px; }
.check a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.f.is-invalid .box { border-color: var(--danger); }
.form-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }
.btn[aria-busy="true"] { pointer-events: none; opacity: .7; }
.notice { display: none; padding: 14px 16px; border-radius: 10px; font-size: .92rem; border: 1px solid var(--line); background: rgba(255, 255, 255, .03); color: var(--text-2); }
.notice a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.notice.is-on { display: block; animation: rise .5s var(--ease-out) backwards; }
.notice.ok { border-color: rgba(74, 222, 128, .35); background: rgba(74, 222, 128, .08); color: var(--text); }
.notice.err { border-color: rgba(255, 92, 122, .35); background: rgba(255, 92, 122, .08); color: var(--text); }
.form-foot { text-align: center; font-size: .9rem; color: var(--text-2); }
.form-foot a { color: var(--accent); }

/* ---------- Yasal metin sayfası ---------- */
.legal-grid { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .legal-grid { grid-template-columns: 1fr; } }
.legal-toc { position: sticky; top: calc(var(--nav-h) + 24px + env(safe-area-inset-top, 0px)); }
.legal-toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; border-left: 1px solid var(--line); }
.legal-toc a { display: block; padding: 7px 0 7px 16px; margin-left: -1px; border-left: 1px solid transparent; font-size: .9rem; color: var(--text-2); transition: color .25s, border-color .25s; }
.legal-toc a:hover { color: var(--text); border-left-color: var(--accent); }
@media (max-width: 900px) { .legal-toc { position: static; } .legal-toc ol { border-left: 0; flex-direction: row; flex-wrap: wrap; gap: 6px 14px; } .legal-toc a { padding: 4px 0; border-left: 0; margin: 0; } }
.legal-body { max-width: 760px; }
.legal-head { margin-bottom: clamp(32px, 4vw, 48px); }
.legal-head .h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; }
.legal-head .lede { margin-bottom: 14px; }
.legal-meta { font-family: var(--font-mono); font-size: .8rem; color: var(--text-3); }
.legal-body section { margin-bottom: clamp(32px, 4vw, 48px); }
.legal-body h2 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; letter-spacing: -.02em; margin: 0 0 14px; padding-top: 8px; }
.legal-body p, .legal-body li { color: var(--text-2); font-size: 1rem; line-height: 1.7; }
.legal-body p + p, .legal-body ul + p, .legal-body .table-wrap + p { margin-top: 12px; }
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-body ul { margin: 10px 0 0; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; }
.legal-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-dl { margin: 16px 0 0; display: grid; grid-template-columns: 140px 1fr; gap: 10px 20px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.legal-dl div { display: contents; }
.legal-dl dt { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); padding-top: 2px; }
.legal-dl dd { margin: 0; color: var(--text); }
@media (max-width: 560px) { .legal-dl { grid-template-columns: 1fr; gap: 2px 0; } .legal-dl dd { margin-bottom: 10px; } }
.table-wrap { overflow-x: auto; margin-top: 14px; border: 1px solid var(--line); border-radius: var(--radius); }
.legal-table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 560px; }
.legal-table th, .legal-table td { text-align: left; padding: 12px 16px; vertical-align: top; border-bottom: 1px solid var(--line); }
.legal-table th { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); background: var(--surface); font-weight: 500; }
.legal-table td { color: var(--text-2); }
.legal-table td:first-child { color: var(--text); font-weight: 500; }
.legal-table tr:last-child td { border-bottom: 0; }
.legal-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.legal-cta p { margin: 0; }

.footer-mini { padding-top: 0; }
.footer-mini .footer-bottom { border-top: 0; }
.footer-links { display: inline-flex; gap: 20px; }
.footer-links a { transition: color .25s; }
.footer-links a:hover { color: var(--accent); }

/* ---------- Hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .hero-canvas { opacity: 1; }
}
