:root {
  --bg: #090d14;
  --bg2: #0d1117;
  --surface: #141a23;
  --surface2: #1a212c;
  --border: #232c38;
  --border2: #303c4c;
  --text: #e8eef5;
  --muted: #9aa7b4;
  --faint: #6b7785;
  --teal: #38c8a0;
  --blue: #1f6feb;
  --blue2: #58a6ff;
  --maxw: 1200px;
  --r: 14px;
  --r-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: rgba(56,200,160,0.3); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.grad-text {
  background: linear-gradient(120deg, var(--teal), var(--blue2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-size: 15px; font-weight: 600; padding: 13px 26px; border-radius: var(--r-sm);
  border: 1px solid transparent; transition: transform .15s, box-shadow .2s, background .2s;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(120deg, var(--blue), var(--teal));
  color: #04121a; box-shadow: 0 8px 30px -8px rgba(31,111,235,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(56,200,160,0.55); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border2); }
.btn-ghost:hover { background: var(--surface2); border-color: var(--teal); }

/* ── Nav ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(9,13,20,0.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
header.scrolled { border-color: var(--border); background: rgba(9,13,20,0.9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-size: 21px; font-weight: 700; letter-spacing: .3px; }
.brand img { height: 36px; width: auto; }
.brand .b1 { color: var(--teal); } .brand .b2 { color: var(--blue2); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15px; color: var(--muted); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 9px 18px; font-size: 14px; }
.burger { display: none; background: none; border: 0; color: var(--text); font-size: 26px; cursor: pointer; }

/* ── Hero ── */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -10%; right: -5%; width: 70%; height: 120%;
  background: radial-gradient(circle at 70% 30%, rgba(31,111,235,0.18), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -20%; left: -10%; width: 55%; height: 90%;
  background: radial-gradient(circle at 30% 70%, rgba(56,200,160,0.12), transparent 60%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.07; font-weight: 800; letter-spacing: -1.2px; }
.hero p.lead { font-size: 19px; color: var(--muted); margin: 22px 0 32px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--faint); }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)); animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-badges { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero-badges .b { }
.hero-badges .b strong { display: block; font-size: 24px; font-weight: 700; color: var(--text); }
.hero-badges .b span { font-size: 13px; color: var(--faint); }

/* ── Sections ── */
section { position: relative; }
.section-pad { padding: 90px 0; }
.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -.8px; line-height: 1.12; }
.section-head p { font-size: 17px; color: var(--muted); margin-top: 16px; }

/* ── Feature grid ── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px 24px; transition: transform .2s, border-color .2s, background .2s;
}
.fcard:hover { transform: translateY(-4px); border-color: var(--border2); background: var(--surface2); }
.fic {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(31,111,235,0.18), rgba(56,200,160,0.18));
  border: 1px solid var(--border2); margin-bottom: 18px; font-size: 22px;
}
.fcard h3 { font-size: 18px; font-weight: 650; margin-bottom: 8px; }
.fcard p { font-size: 15px; color: var(--muted); }

/* ── Showcase (alternating) ── */
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 70px; }
.show-row:nth-child(even) .show-media { order: 2; }
.show-media {
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface), var(--bg2));
  padding: 22px; display: flex; align-items: center; justify-content: center;
}
.show-media img { width: 100%; max-height: 360px; object-fit: contain; filter: drop-shadow(0 14px 30px rgba(0,0,0,0.5)); }
.show-text h3 { font-size: 24px; font-weight: 700; margin-bottom: 14px; }
.show-text p { color: var(--muted); font-size: 16px; margin-bottom: 14px; }
.show-text ul { list-style: none; }
.show-text li { padding: 6px 0 6px 26px; position: relative; color: var(--text); font-size: 15px; }
.show-text li::before { content: '▹'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ── Visuals gallery ── */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gcard {
  position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border);
  background: radial-gradient(circle at 50% 40%, var(--surface), var(--bg2));
  aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; padding: 14px;
  transition: transform .2s, border-color .2s;
}
.gcard:hover { transform: translateY(-4px); border-color: var(--teal); }
.gcard img { max-height: 100%; object-fit: contain; filter: drop-shadow(0 10px 22px rgba(0,0,0,0.5)); }
.gcard .tag {
  position: absolute; left: 12px; bottom: 12px; font-size: 12px; font-weight: 600;
  background: rgba(9,13,20,0.82); color: var(--teal); padding: 5px 11px; border-radius: 20px;
  border: 1px solid var(--border2);
}

/* ── Products ── */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 26px; transition: transform .2s, border-color .2s; position: relative; overflow: hidden;
}
.pcard:hover { transform: translateY(-4px); border-color: var(--border2); }
.pcard.flagship { border-color: rgba(56,200,160,0.45); background: linear-gradient(160deg, rgba(56,200,160,0.06), var(--surface)); }
.pcard .phead { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pcard .phead img { width: 54px; height: 54px; }
.pcard .phead h3 { font-size: 19px; font-weight: 700; }
.pcard p { font-size: 14.5px; color: var(--muted); min-height: 64px; }
.badge {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 20px; margin-top: 6px;
}
.badge.ready { background: rgba(56,200,160,0.15); color: var(--teal); border: 1px solid rgba(56,200,160,0.35); }
.badge.soon { background: rgba(210,153,34,0.13); color: #e3b341; border: 1px solid rgba(210,153,34,0.3); }

/* ── Download ── */
.download {
  background: linear-gradient(150deg, rgba(31,111,235,0.1), rgba(56,200,160,0.08)), var(--bg2);
  border: 1px solid var(--border); border-radius: 20px; padding: 56px; text-align: center;
  position: relative; overflow: hidden;
}
.download h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -.6px; }
.download p { color: var(--muted); font-size: 17px; margin: 16px auto 32px; max-width: 560px; }
.dl-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.dl-btn {
  display: flex; align-items: center; gap: 14px; padding: 16px 28px; border-radius: var(--r-sm);
  border: 1px solid var(--border2); background: var(--surface); transition: transform .15s, border-color .2s; cursor: pointer;
}
.dl-btn:hover { transform: translateY(-3px); border-color: var(--teal); }
.dl-btn.disabled { opacity: .55; cursor: default; }
.dl-btn.disabled:hover { transform: none; border-color: var(--border2); }
.dl-btn .os-ic { font-size: 30px; }
.dl-btn .meta { text-align: left; }
.dl-btn .meta small { display: block; font-size: 12px; color: var(--faint); }
.dl-btn .meta strong { font-size: 16px; font-weight: 600; }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 50px 0 36px; margin-top: 30px; }
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-brand { max-width: 320px; }
.foot-brand p { color: var(--faint); font-size: 14px; margin-top: 14px; }
.foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--faint); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--muted); font-size: 15px; padding: 5px 0; transition: color .2s; }
.foot-col a:hover { color: var(--teal); }
.foot-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--faint); font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ── Giriş animasyonu (GÜVENLİ: içerik her zaman görünür; animasyon yalnızca sahnede) ──
   .reveal varsayılan tam görünür. JS varsa görünüm alanına girince hafif bir yukarı-kayma
   oynar AMA içerik asla gizlenmez (opacity hep 1) — böylece JS çalışmasa/observer takılsa
   bile site eksiksiz görüntülenir. */
.reveal { opacity: 1; }
.js-on .reveal { transform: translateY(22px); transition: transform .7s ease; }
.js-on .reveal.in { transform: none; }
@media (prefers-reduced-motion: reduce) { .js-on .reveal { transform: none; transition: none; } }

/* ── Responsive ── */
@media (max-width: 920px) {
  .hero-grid, .show-row, .show-row:nth-child(even) .show-media { grid-template-columns: 1fr; order: 0; }
  .features, .products { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .features, .products, .gallery { grid-template-columns: 1fr; }
  .download { padding: 36px 22px; }
  .section-pad { padding: 64px 0; }
}

/* ── Yetenek kartları, ortometrik şema, hero SVG, alt bölüm ── */
.hero-visual .art-cloud { width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55)); animation: float 7s ease-in-out infinite; }
.section-pad.alt { background: linear-gradient(180deg, transparent, rgba(20,26,35,0.55), transparent); }

.caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.cap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 26px 24px; transition: transform .15s, border-color .2s, background .2s; }
.cap:hover { transform: translateY(-4px); border-color: var(--border2); background: var(--surface2); }
.cap.flag { border-color: rgba(56,200,160,0.42); background: linear-gradient(180deg, rgba(56,200,160,0.07), var(--surface)); }
.cap-ic { width: 46px; height: 46px; margin-bottom: 16px; }
.cap h3 { font-size: 17px; font-weight: 650; margin-bottom: 9px; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.cap p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.cap p strong { color: var(--text); font-weight: 600; }
.cap a { color: var(--teal); font-weight: 600; }
.cap a:hover { text-decoration: underline; }
.pill { font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  background: linear-gradient(120deg, var(--teal), var(--blue)); color: #04121a; padding: 3px 9px; border-radius: 20px; }
.caps-note { text-align: center; margin-top: 28px; color: var(--faint); font-size: 14px; }
.caps-note strong { color: var(--muted); }

.ortho-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; margin-top: 10px; }
.ortho-art { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 18px; }
.ortho-art svg { width: 100%; height: auto; }
.ortho-steps { display: flex; flex-direction: column; gap: 20px; }
.ostep { display: flex; gap: 16px; }
.ostep > span { flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(120deg, var(--blue), var(--teal)); color: #04121a; font-weight: 800; display: grid; place-items: center; }
.ostep h4 { font-size: 16px; font-weight: 650; margin-bottom: 5px; }
.ostep p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.ostep p strong { color: var(--text); }
.foot-small { font-size: 13px; color: var(--faint); margin-top: 6px; }

@media (max-width: 920px) { .caps { grid-template-columns: 1fr 1fr; } .ortho-grid { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 620px) { .caps { grid-template-columns: 1fr; } }

/* ── Çıktı galerisi (figure tabanlı, optimize görsel) ── */
.gallery { grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gcard { aspect-ratio: auto; display: block; padding: 0; align-items: stretch;
  background: var(--surface); }
.gcard .gimg { aspect-ratio: 16/10; overflow: hidden; background: var(--bg2); border-bottom: 1px solid var(--border); }
.gcard .gimg img { width: 100%; height: 100%; max-height: none; object-fit: cover; filter: none; display: block;
  transition: transform .4s ease; }
.gcard:hover .gimg img { transform: scale(1.04); }
.gcard figcaption { padding: 14px 18px; }
.gcard figcaption strong { display: block; font-size: 15.5px; font-weight: 650; margin-bottom: 2px; }
.gcard figcaption span { font-size: 13px; color: var(--muted); }
@media (max-width: 620px) { .gallery { grid-template-columns: 1fr; } }

/* ── İndirme sayfası ── */
.dlpage { display: grid; grid-template-columns: 240px 1fr; gap: 30px; align-items: start; margin-top: 18px; }
.dl-side { display: flex; flex-direction: column; gap: 6px; position: sticky; top: 90px; }
.dl-app { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--r-sm);
  border: 1px solid transparent; background: transparent; color: var(--muted); cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 600; text-align: left; transition: .15s; }
.dl-app img { width: 26px; height: 26px; }
.dl-app:hover { background: var(--surface); color: var(--text); }
.dl-app.active { background: var(--surface2); color: var(--text); border-color: rgba(56,200,160,0.4); }
.dl-app small { display: block; font-size: 11px; font-weight: 500; color: var(--faint); }
.dl-app-panel { display: none; }
.dl-app-panel.active { display: block; animation: fadein .35s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.dlp-head { display: flex; align-items: center; gap: 16px; margin-bottom: 6px; }
.dlp-head img { width: 48px; height: 48px; }
.dlp-head h2 { font-size: 26px; }
.dlp-status { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  padding: 5px 12px; border-radius: 20px; margin: 4px 0 18px; }
.dlp-status.ready { background: #173a2a; color: #3fb950; }
.dlp-status.dev { background: #2d2417; color: #d6a531; }
.dot-pulse { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.dlp-desc { color: var(--muted); font-size: 15px; max-width: 640px; margin-bottom: 22px; }
.dlp-os { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 640px; }
.dlp-sub { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint);
  margin: 28px 0 10px; }
.dlp-history { max-width: 640px; }
.dlp-ver { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--r-sm); margin-bottom: 8px; font-size: 14px; }
.dlp-ver span { color: var(--faint); font-size: 13px; }
.dlp-ver a { color: var(--teal); font-weight: 600; }
.dlp-none { color: var(--faint); font-size: 14px; padding: 14px 0; }
.dev-box { max-width: 640px; padding: 26px; border: 1px dashed var(--border2); border-radius: var(--r);
  background: linear-gradient(180deg, rgba(214,165,49,0.05), transparent); }
.dev-box h3 { font-size: 18px; margin-bottom: 8px; }
.dev-box p { color: var(--muted); font-size: 15px; }
@media (max-width: 820px) { .dlpage { grid-template-columns: 1fr; } .dl-side { position: static; flex-direction: row; flex-wrap: wrap; }
  .dl-app { flex: 1 1 auto; } .dlp-os { grid-template-columns: 1fr; } }

/* ── Satın Al & Lisans ── */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 680px; margin-top: 6px; }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; }
.plan.hl { border-color: rgba(56,200,160,0.42); background: linear-gradient(180deg, rgba(56,200,160,0.06), var(--surface)); }
.plan h4 { font-size: 18px; margin-bottom: 3px; }
.plan .ptag { font-size: 12px; color: var(--teal); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.plan ul { list-style: none; margin: 14px 0; flex: 1; }
.plan li { font-size: 14px; color: var(--muted); padding: 5px 0 5px 22px; position: relative; }
.plan li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.plan .btn { width: 100%; text-align: center; }
.terms { max-width: 760px; margin-top: 4px; }
.terms li { font-size: 14.5px; color: var(--muted); line-height: 1.6; padding: 8px 0 8px 26px; position: relative; list-style: none;
  border-bottom: 1px solid var(--border); }
.terms li:last-child { border-bottom: none; }
.terms li::before { content: '§'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.terms li strong { color: var(--text); }
@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   v4 — özgün tema katmanı: kontur arkaplan, mono aksanlar,
   gerçek-veri geçiş animasyonu, HRYScan imza canvas, mini ürün
   animasyonları, öne çıkanlar, sözlük
   ════════════════════════════════════════════════════════════ */
.mono { font-family: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace; }

/* Topografik kontur arkaplan (tüm sayfa, çok hafif) */
.topo-bg {
  position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0;
  color: var(--teal); opacity: 0.05; pointer-events: none;
}
header, section, footer { z-index: 1; }

/* eyebrow içindeki sıra numarası */
.eyebrow .mono { color: var(--blue2); opacity: .85; margin-right: 2px; letter-spacing: 1px; }

/* Hero pills (mono etiketler) */
.hero-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.mono-pill {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600; color: var(--muted);
  padding: 6px 12px; border: 1px solid var(--border); border-radius: 8px; background: rgba(20,26,35,0.5);
}

/* ── Gerçek veri geçiş animasyonu (datashow) ── */
.datashow {
  position: relative; border: 1px solid var(--border2); border-radius: 18px; overflow: hidden;
  background: linear-gradient(160deg, var(--surface), var(--bg2));
  box-shadow: 0 30px 70px -22px rgba(0,0,0,0.7); padding: 12px;
}
.ds-frame {
  position: relative; aspect-ratio: 1300/1540; border-radius: 12px; overflow: hidden;
  background: radial-gradient(circle at 50% 38%, #0c1119, #070a0f);
}
.ds-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity .9s ease, transform 6s ease; transform: scale(1.02);
}
.ds-img.active { opacity: 1; transform: scale(1.06); }
.ds-frame::after {
  content: ''; position: absolute; left: 0; right: 0; height: 32%; top: -32%;
  background: linear-gradient(180deg, transparent, rgba(95,227,192,0.10), transparent);
  animation: dsScan 5.5s linear infinite; pointer-events: none;
}
@keyframes dsScan { 0% { top: -32%; } 100% { top: 100%; } }
.ds-bar { display: flex; justify-content: space-between; align-items: center; padding: 11px 8px 4px; gap: 10px; }
.ds-coord { font-size: 11.5px; color: var(--faint); }
.ds-label { font-size: 12.5px; color: var(--teal); font-weight: 600; }
.ds-dots { display: flex; gap: 6px; justify-content: center; padding: 4px 0 6px; }
.ds-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--border2); transition: background .3s, width .3s; }
.ds-dots i.on { background: linear-gradient(120deg, var(--teal), var(--blue2)); width: 18px; border-radius: 6px; }

/* ── HRYScan imza animasyonu (canvas) ── */
.scan-stage {
  position: relative; border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(31,111,235,0.05), transparent 40%),
    radial-gradient(120% 80% at 50% 0%, rgba(56,200,160,0.07), transparent 60%), var(--bg2);
  padding: 8px;
}
#hryscan-canvas { display: block; width: 100%; height: auto; border-radius: 12px; }
.scan-caption { position: absolute; left: 18px; bottom: 16px; pointer-events: none; }
.scan-phase {
  font-size: 13px; color: var(--text); background: rgba(7,10,15,0.72); border: 1px solid var(--border2);
  padding: 7px 13px; border-radius: 20px; backdrop-filter: blur(6px); letter-spacing: .3px;
}
.scan-replay {
  position: absolute; right: 16px; bottom: 16px; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border2); background: rgba(7,10,15,0.72); color: var(--teal);
  font-size: 18px; cursor: pointer; transition: .2s; backdrop-filter: blur(6px);
}
.scan-replay:hover { border-color: var(--teal); transform: rotate(-90deg); }
.scan-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.sstep { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: var(--r); background: var(--surface); }
.sstep > span { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(120deg, var(--blue), var(--teal)); color: #04121a; font-weight: 700; }
.sstep h4 { font-size: 15.5px; margin-bottom: 3px; }
.sstep p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 760px) { .scan-steps { grid-template-columns: 1fr; } }

/* ── Öne çıkanlar bandı ── */
.highlights {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px;
  border: 1px solid var(--border); border-radius: var(--r); padding: 28px 22px;
  background: linear-gradient(160deg, rgba(56,200,160,0.05), transparent);
}
.hl { text-align: center; }
.hl strong { display: block; font-size: 26px; font-weight: 800; letter-spacing: -.5px;
  background: linear-gradient(120deg, var(--teal), var(--blue2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hl span { font-size: 13px; color: var(--muted); }
@media (max-width: 720px) { .highlights { grid-template-columns: 1fr 1fr; gap: 22px; } }

/* ── Ürün ailesi (animasyonlu satırlar) ── */
.famlist { display: grid; gap: 18px; }
.fam {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 22px 26px; transition: transform .2s, border-color .2s;
}
.fam:hover { transform: translateY(-3px); border-color: var(--border2); }
.fam.flagship { border-color: rgba(56,200,160,0.42); background: linear-gradient(160deg, rgba(56,200,160,0.06), var(--surface)); }
.fam-anim {
  border-radius: 12px; border: 1px solid var(--border); background: radial-gradient(circle at 50% 40%, var(--surface2), var(--bg2));
  aspect-ratio: 4/3; display: grid; place-items: center; overflow: hidden;
}
.fam-anim .mini { width: 90%; height: 90%; }
.fam-head { display: flex; align-items: center; gap: 12px; margin-bottom: 9px; flex-wrap: wrap; }
.fam-head h3 { font-size: 19px; font-weight: 700; }
.fam-body p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.fam-body p strong { color: var(--text); }
@media (max-width: 680px) { .fam { grid-template-columns: 1fr; } .fam-anim { max-width: 260px; } }

/* mini animasyon ortak stiller */
.mini { stroke-linecap: round; stroke-linejoin: round; }
.mini circle, .mini rect, .mini path, .mini line { vector-effect: non-scaling-stroke; }
/* scan mini (JS noktaları) */
.m-pts circle { fill: #5fe3c0; }
/* fly */
.fly-path { stroke: var(--border2); stroke-width: 1.4; stroke-dasharray: 3 3; }
.fly-wp circle { fill: var(--blue2); }
.fly-drone { stroke: var(--teal); stroke-width: 1.6; fill: var(--teal);
  offset-path: path('M12 70 L40 70 L40 52 L80 52 L80 34 L108 34'); offset-rotate: 0deg;
  animation: flyMove 4s ease-in-out infinite; }
@keyframes flyMove { 0% { offset-distance: 0%; } 50% { offset-distance: 100%; } 100% { offset-distance: 0%; } }
/* d3 */
.d3-photos rect { fill: none; stroke: var(--blue2); stroke-width: 1.4; animation: d3pulse 2.4s ease-in-out infinite; }
.d3-photos rect:nth-child(2) { animation-delay: .3s; } .d3-photos rect:nth-child(3) { animation-delay: .6s; }
@keyframes d3pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
.d3-mesh { stroke: var(--teal); stroke-width: 1.5; animation: d3pulse 2.4s ease-in-out infinite .9s; }
.d3-rays line { stroke: #5fe3c0; stroke-width: 1; opacity: .5; animation: d3flow 1.6s linear infinite; }
@keyframes d3flow { from { stroke-dashoffset: 10; } to { stroke-dashoffset: 0; } }
/* cad */
.cad-surf { stroke: var(--border2); stroke-width: 1.6; }
.cad-draw { stroke: var(--teal); stroke-width: 2; stroke-dasharray: 120; stroke-dashoffset: 120; animation: cadDraw 3.4s ease-in-out infinite; }
@keyframes cadDraw { 0% { stroke-dashoffset: 120; } 55% { stroke-dashoffset: 0; } 85% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; opacity: 0; } }
.cad-nodes circle { fill: var(--blue2); }
.cad-pen { fill: var(--teal); offset-path: path('M24 58 L48 44 L74 50 L96 40'); animation: cadPen 3.4s ease-in-out infinite; }
@keyframes cadPen { 0% { offset-distance: 0%; opacity: 1; } 55% { offset-distance: 100%; opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
/* geo */
.geo-track { stroke: var(--border2); stroke-width: 1.4; stroke-dasharray: 3 3; animation: d3flow 1.4s linear infinite; }
.geo-pins .pin { fill: none; stroke: var(--teal); stroke-width: 1.6; transform-box: fill-box;
  animation: geoDrop 2.6s ease-in-out infinite; animation-delay: var(--d); opacity: 0; }
@keyframes geoDrop { 0% { transform: translateY(-14px); opacity: 0; } 20% { opacity: 1; } 70% { transform: translateY(0); opacity: 1; } 100% { opacity: 0; } }

/* ── Sözlük CTA ── */
.sozluk-cta {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; align-items: center;
  border: 1px solid var(--border); border-radius: 20px; padding: 40px;
  background: linear-gradient(150deg, rgba(31,111,235,0.08), rgba(56,200,160,0.05)), var(--bg2);
}
.sozluk-cta h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.6px; margin-bottom: 12px; }
.sozluk-cta p { color: var(--muted); font-size: 15.5px; margin-bottom: 22px; }
.sozluk-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.sozluk-tags span {
  font-family: 'JetBrains Mono', monospace; font-size: 12.5px; color: var(--text);
  padding: 8px 13px; border-radius: 8px; border: 1px solid var(--border2); background: rgba(20,26,35,0.6);
}
@media (max-width: 760px) { .sozluk-cta { grid-template-columns: 1fr; padding: 28px; } }

@media (prefers-reduced-motion: reduce) {
  .ds-frame::after, .ds-img, .fly-drone, .cad-draw, .cad-pen, .geo-pins .pin, .d3-photos rect, .d3-mesh, .d3-rays line, .geo-track { animation: none !important; }
  .hero-visual img, .hero-visual .art-cloud { animation: none !important; }
}

/* ── Sözlük sayfası ── */
.cat-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 48px; }
.cat-nav a {
  font-size: 13.5px; font-weight: 600; color: var(--muted); padding: 9px 15px; border-radius: 9px;
  border: 1px solid var(--border); background: var(--surface); transition: .18s;
}
.cat-nav a:hover { color: var(--text); border-color: var(--teal); background: var(--surface2); }
.lexcat { margin-bottom: 52px; scroll-margin-top: 90px; }
.lexcat-h { font-size: 22px; font-weight: 800; letter-spacing: -.4px; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: baseline; gap: 12px; }
.lexcat-h .mono { font-size: 14px; color: var(--teal); }
.lexgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.term { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 20px 20px 18px;
  transition: transform .15s, border-color .2s; }
.term:hover { transform: translateY(-3px); border-color: var(--border2); }
.term-h { margin-bottom: 9px; }
.term-h h3 { font-size: 16.5px; font-weight: 700; }
.term-h .en { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: var(--faint); margin-top: 2px; }
.term p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.term p strong { color: var(--text); font-weight: 600; }
.term p.use { margin-top: 10px; font-size: 12.5px; color: var(--teal);
  padding-top: 9px; border-top: 1px dashed var(--border2); }
@media (max-width: 920px) { .lexgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .lexgrid { grid-template-columns: 1fr; } }
