/* ============================================================
   DISGUARD — Tanıtım & satış sitesi
   Palet ve tipografi, masaüstü uygulamasıyla birebir aynıdır
   (electron/renderer/styles.css :root)
   ============================================================ */

:root {
  --bg: #0a0c0f;
  --bg-elev: #12161c;
  --bg-elev-2: #171c24;
  --ink: #f3f0ea;
  --muted: #8a909c;
  --line: rgba(243, 240, 234, 0.08);
  --line-strong: rgba(243, 240, 234, 0.14);
  --accent: #e4572e;
  --accent-hot: #ff6a3d;
  --ok: #3ecf8e;
  --warn: #e8b84a;
  --bad: #ff5c4d;
  --info: #6b8cae;
  --radius: 18px;
  --radius-sm: 12px;
  --font-brand: "Syne", system-ui, sans-serif;
  --font-ui: "Sora", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Code", monospace;
  --nav-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: rgba(228, 87, 46, 0.1);
  border: 1px solid rgba(228, 87, 46, 0.16);
  color: #ffb59b;
  padding: 0.1em 0.4em;
  border-radius: 6px;
}

strong {
  font-weight: 600;
  color: var(--ink);
}

em {
  font-style: normal;
  color: var(--muted);
}

::selection {
  background: rgba(228, 87, 46, 0.35);
  color: #fff;
}

/* ── Arka plan katmanları ───────────────────────────────── */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(228, 87, 46, 0.2), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(107, 140, 174, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 45% at 50% 108%, rgba(228, 87, 46, 0.08), transparent 60%),
    linear-gradient(165deg, #0a0c0f 0%, #0e1218 45%, #0a0c0f 100%);
  background-attachment: fixed;
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: scale(1) translateY(0);
  }
  to {
    transform: scale(1.05) translateY(-1.5%);
  }
}

.grid-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.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='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

main,
.footer {
  position: relative;
  z-index: 2;
}

.wrap {
  width: min(1180px, 100% - 44px);
  margin-inline: auto;
}

.wrap-narrow {
  width: min(820px, 100% - 44px);
}

/* ── Üst bar ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  background: rgba(10, 12, 15, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}

.nav-inner {
  width: min(1180px, 100% - 44px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  box-shadow: 0 0 12px rgba(255, 106, 61, 0.6);
  transition: width 0.1s linear;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 26px;
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(228, 87, 46, 0.45));
  transition: transform 0.4s var(--ease);
}

.logo:hover .logo-mark {
  transform: translateY(-2px) scale(1.06);
}

.logo-text {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.logo-text span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 55;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10, 12, 15, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 14px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: menuIn 0.3s var(--ease) both;
}

.mobile-menu[hidden] {
  display: none;
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.mobile-menu a {
  padding: 13px 6px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.mobile-menu .btn {
  margin-top: 16px;
  justify-content: center;
  border-bottom: none;
  color: #fff;
}

/* ── Butonlar ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.25s var(--ease);
}

.btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent));
  box-shadow: 0 8px 24px -10px rgba(228, 87, 46, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.32) 50%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(255, 106, 61, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover::after {
  transform: translateX(130%);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13.5px;
}

.btn-lg {
  padding: 13px 26px;
  font-size: 14.5px;
}

.btn.is-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.55;
  filter: saturate(0.5);
  box-shadow: none;
}

/* ── Ortak bölüm parçaları ──────────────────────────────── */
.section {
  padding: 74px 0;
  position: relative;
  border-top: 1px solid var(--line);
}

.section-alt {
  background: rgba(255, 255, 255, 0.014);
}

.sec-head {
  max-width: 700px;
  margin-bottom: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-hot);
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(228, 87, 46, 0.1);
  border: 1px solid rgba(228, 87, 46, 0.22);
  margin-bottom: 15px;
}

.eyebrow-n {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.85;
  padding-right: 8px;
  margin-right: 2px;
  border-right: 1px solid currentColor;
  color: inherit;
}

.eyebrow-bad {
  color: var(--bad);
  background: rgba(255, 92, 77, 0.09);
  border-color: rgba(255, 92, 77, 0.22);
}

.sec-title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.sec-sub {
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.65;
}

.grad {
  background: linear-gradient(100deg, var(--accent-hot) 10%, #ffb08c 55%, var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bad {
  color: var(--bad);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.6);
  animation: pulse 2.2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(62, 207, 142, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(62, 207, 142, 0);
  }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(88svh, 820px);
  display: flex;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) 0 72px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -22%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 620px;
  background: radial-gradient(ellipse at center, rgba(228, 87, 46, 0.2), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #cfd3da;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  margin-bottom: 22px;
}

/* Logo */
.hero-logo {
  position: relative;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.hero-logo-mark {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--accent-hot);
  background: radial-gradient(circle at 50% 30%, rgba(228, 87, 46, 0.28), rgba(18, 22, 28, 0.9) 72%);
  border: 1px solid rgba(228, 87, 46, 0.35);
  box-shadow: 0 12px 40px -8px rgba(228, 87, 46, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-logo-mark svg {
  width: 36px;
  filter: drop-shadow(0 0 10px rgba(255, 106, 61, 0.5));
}

.hero-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(228, 87, 46, 0.4);
  animation: ringPulse 3.4s ease-out infinite;
}

.hero-logo-ring.d2 {
  animation-delay: 1.7s;
}

/* Marka adı */
.hero-brand {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.hero-brand span {
  color: var(--accent);
}

.hero-tagline {
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}

.hero-sub {
  color: #a9aeb8;
  font-size: clamp(14.5px, 1.4vw, 17px);
  line-height: 1.68;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 42px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}

.stat-label {
  font-size: 12.5px;
  color: var(--muted);
}

.stat-sep {
  width: 1px;
  height: 34px;
  background: var(--line-strong);
}

/* Logo halkalarının nabzı */
@keyframes ringPulse {
  0% {
    opacity: 0.05;
    transform: scale(0.9);
  }
  40% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

/* Aşağı kaydır göstergesi */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 22px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: grid;
  justify-items: center;
  padding-top: 7px;
  z-index: 2;
  opacity: 0.7;
}

.hero-scroll-dot {
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ── TEHDİT ─────────────────────────────────────────────── */
.attack-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 52px;
}

.attack-steps {
  list-style: none;
  display: grid;
  gap: 4px;
}

.astep {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 13px 0 20px;
  opacity: 0.28;
  filter: blur(0.4px);
  transition: opacity 0.55s var(--ease), filter 0.55s var(--ease), transform 0.55s var(--ease);
  transform: translateX(-8px);
}

.astep.is-on {
  opacity: 1;
  filter: none;
  transform: translateX(0);
}

.astep-idx {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  padding-top: 3px;
  transition: color 0.4s var(--ease);
}

.astep.is-on .astep-idx {
  color: var(--accent-hot);
}

.astep.is-on.is-bad .astep-idx {
  color: var(--bad);
}

.astep-body h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}

.astep-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.astep-line {
  position: absolute;
  left: 22px;
  top: 34px;
  bottom: -6px;
  width: 1px;
  background: var(--line);
  overflow: hidden;
}

.astep-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--accent), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.7s var(--ease);
}

.astep.is-on .astep-line::after {
  transform: scaleY(1);
}

/* Terminal */
.terminal {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  background: #08090c;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 34px 70px -30px rgba(0, 0, 0, 0.95);
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  background: rgba(255, 255, 255, 0.028);
  border-bottom: 1px solid var(--line);
}

.term-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.d1 {
  background: #ff5f57;
}
.dot.d2 {
  background: #febc2e;
}
.dot.d3 {
  background: #28c840;
}

.term-title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
}

.term-body {
  padding: 20px 22px;
  min-height: 260px;
  font-family: var(--font-mono);
  font-size: 12.6px;
  line-height: 1.85;
  color: #9fb0c4;
  white-space: pre-wrap;
  word-break: break-word;
}

.term-body .k {
  color: #ff8a63;
}
.term-body .s {
  color: #7fd1a8;
}
.term-body .c {
  color: #5a6373;
}
.term-body .f {
  color: #e8b84a;
}

.caret {
  display: inline-block;
  width: 7px;
  height: 14px;
  translate: 0 2px;
  background: var(--accent-hot);
  animation: caret 1s steps(2) infinite;
}

@keyframes caret {
  50% {
    opacity: 0;
  }
}

.term-leak {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-top: 1px solid rgba(255, 92, 77, 0.22);
  background: rgba(255, 92, 77, 0.07);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.term-leak.is-on {
  opacity: 1;
  transform: translateY(0);
}

.leak-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--bad);
  border: 1px solid rgba(255, 92, 77, 0.35);
  border-radius: 5px;
  padding: 3px 8px;
  flex-shrink: 0;
  animation: leakBlink 1.4s ease-in-out infinite;
}

@keyframes leakBlink {
  50% {
    opacity: 0.45;
  }
}

.leak-value {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #ff9d92;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mitler */
.myth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 20px;
}

.myth {
  padding: 26px 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.myth:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 92, 77, 0.3);
}

.myth-x {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 14px;
  color: var(--bad);
  background: rgba(255, 92, 77, 0.11);
  border: 1px solid rgba(255, 92, 77, 0.22);
  margin-bottom: 16px;
}

.myth h4 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 9px;
  letter-spacing: -0.02em;
}

.myth p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.68;
}

/* ── MÜDAHALE ───────────────────────────────────────────── */
.lockdown {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 32px;
  align-items: start;
}

.lock-scene {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.lock-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(228, 87, 46, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.lock-scene.is-alert::before {
  opacity: 1;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 92, 77, 0.16), transparent 70%);
}

.lock-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.lock-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ok);
}

.lock-status .pulse-dot {
  background: var(--ok);
}

.lock-status.is-alert {
  color: var(--bad);
}

.lock-status.is-alert .pulse-dot {
  background: var(--bad);
  box-shadow: 0 0 0 0 rgba(255, 92, 77, 0.6);
  animation: pulseBad 1s infinite;
}

@keyframes pulseBad {
  70% {
    box-shadow: 0 0 0 9px rgba(255, 92, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 92, 77, 0);
  }
}

.lock-clock {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.lock-steps {
  list-style: none;
  position: relative;
}

.lstep {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  opacity: 0.3;
  transform: translateY(6px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.lstep:last-child {
  border-bottom: none;
}

.lstep.is-on {
  opacity: 1;
  transform: translateY(0);
}

.lstep-ico {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  transition: color 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.lstep-ico svg {
  width: 18px;
}

.lstep.is-on .lstep-ico {
  color: var(--accent-hot);
  background: rgba(228, 87, 46, 0.12);
  border-color: rgba(228, 87, 46, 0.28);
}

.lstep.is-on.is-threat .lstep-ico {
  color: var(--bad);
  background: rgba(255, 92, 77, 0.12);
  border-color: rgba(255, 92, 77, 0.3);
  animation: shake 0.5s var(--ease);
}

.lstep.is-on.is-done .lstep-ico {
  color: var(--ok);
  background: rgba(62, 207, 142, 0.1);
  border-color: rgba(62, 207, 142, 0.26);
}

@keyframes shake {
  20% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  80% {
    transform: translateX(-2px);
  }
}

.lstep-text {
  font-size: 14.5px;
  display: grid;
  gap: 2px;
}

.lstep-text em {
  font-size: 12.5px;
}

.lstep-state {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.lstep.is-on .lstep-state {
  opacity: 1;
}

.lstep.is-on.is-threat .lstep-state {
  color: var(--bad);
  border-color: rgba(255, 92, 77, 0.35);
  background: rgba(255, 92, 77, 0.08);
}

.lstep.is-on.is-done .lstep-state {
  color: var(--ok);
  border-color: rgba(62, 207, 142, 0.3);
  background: rgba(62, 207, 142, 0.07);
}

.lock-replay {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
  cursor: pointer;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.lock-replay svg {
  width: 14px;
}

.lock-replay:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

.lock-side {
  display: grid;
  gap: 18px;
}

.lock-note {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid var(--line);
  border-left: 2px solid rgba(228, 87, 46, 0.5);
  transition: transform 0.4s var(--ease), border-left-color 0.4s var(--ease);
}

.lock-note:hover {
  transform: translateX(4px);
  border-left-color: var(--accent-hot);
}

.lock-note h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 17.5px;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
}

.lock-note p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ── MİMARİ ─────────────────────────────────────────────── */
.arch {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: stretch;
  gap: 0;
}

.layer {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
  overflow: hidden;
}

.layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(228, 87, 46, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.layer:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 87, 46, 0.3);
  box-shadow: 0 26px 56px -30px rgba(0, 0, 0, 0.9);
}

.layer:hover::before {
  opacity: 1;
}

.layer.is-core {
  border-color: rgba(228, 87, 46, 0.32);
  background: linear-gradient(180deg, rgba(228, 87, 46, 0.09), rgba(255, 255, 255, 0.012));
  box-shadow: 0 22px 60px -34px rgba(228, 87, 46, 0.6);
}

.layer-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.04em;
  color: rgba(243, 240, 234, 0.06);
}

.layer-ico {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--accent-hot);
  background: rgba(228, 87, 46, 0.1);
  border: 1px solid rgba(228, 87, 46, 0.2);
  margin-bottom: 18px;
}

.layer-ico svg {
  width: 24px;
}

.layer h3 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}

.layer-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent-hot);
  opacity: 0.85;
  margin-bottom: 14px;
}

.layer > p {
  color: var(--muted);
  font-size: 14.3px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.layer-list {
  list-style: none;
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.layer-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.4px;
  color: #b6bbc5;
}

.layer-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(228, 87, 46, 0.8);
}

.layer-badge {
  position: absolute;
  top: 0;
  left: 26px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent));
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.arch-flow {
  position: relative;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  overflow: visible;
}

.arch-flow .packet {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--accent-hot);
  box-shadow: 0 0 10px var(--accent-hot);
  animation: packet 2.4s linear infinite;
}

.arch-flow .packet:nth-child(2) {
  animation-delay: 0.8s;
}

.arch-flow .packet:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes packet {
  0% {
    left: -4px;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    left: calc(100% + 4px);
    opacity: 0;
  }
}

.arch-caption {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ── ÖZELLİKLER ─────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat {
  position: relative;
  padding: 28px 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}

.feat::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 87, 46, 0.13), transparent 65%);
  left: var(--mx, 50%);
  top: var(--my, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.feat:hover {
  transform: translateY(-5px);
  border-color: rgba(228, 87, 46, 0.26);
}

.feat:hover::after {
  opacity: 1;
}

.feat-wide {
  grid-column: span 2;
}

.feat-ico {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #c8ccd4;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  margin-bottom: 18px;
}

.feat-ico svg {
  width: 22px;
}

.feat-ico.accent {
  color: var(--accent-hot);
  background: rgba(228, 87, 46, 0.12);
  border-color: rgba(228, 87, 46, 0.26);
  box-shadow: 0 0 26px -6px rgba(228, 87, 46, 0.55);
}

.feat h3 {
  position: relative;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 18.5px;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.feat p {
  position: relative;
  color: var(--muted);
  font-size: 14.4px;
  line-height: 1.7;
}

.feat-bar {
  position: relative;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 20px;
  overflow: hidden;
}

.feat-bar span {
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  transform: scaleX(0);
  transform-origin: left;
  animation: barFill 2.6s var(--ease) infinite;
}

@keyframes barFill {
  0% {
    transform: scaleX(0);
    opacity: 0.4;
  }
  55% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0.4;
  }
}

/* ── UYGULAMA ÖNİZLEME ──────────────────────────────────── */
.app-shot {
  position: relative;
  perspective: 1600px;
}

.app-window {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #12161c, #0c0f14);
  border: 1px solid var(--line-strong);
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  overflow: hidden;
  transform: rotateX(6deg);
  transform-origin: top center;
  transition: transform 0.9s var(--ease);
}

.app-shot.is-in .app-window {
  transform: rotateX(0deg);
}

.app-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.app-brand {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.04em;
}

.app-brand span {
  color: var(--accent);
}

.app-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--ok);
  background: rgba(62, 207, 142, 0.08);
  border: 1px solid rgba(62, 207, 142, 0.2);
  border-radius: 999px;
  padding: 4px 11px;
}

.app-dots {
  margin-left: auto;
  display: flex;
  gap: 6px;
}

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

/* Hesap sekmeleri */
.app-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 15px 18px 0;
}

.app-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-size: 12.8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: color 0.22s var(--ease), background 0.22s var(--ease),
    border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.app-tab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.app-tab:active {
  transform: scale(0.97);
}

.app-tab.is-active {
  color: var(--ink);
  background: rgba(228, 87, 46, 0.12);
  border-color: rgba(228, 87, 46, 0.3);
}

.app-tab:focus-visible {
  outline: 2px solid var(--accent-hot);
  outline-offset: 2px;
}

.app-tab-av {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a5568, #2d3748);
  flex-shrink: 0;
}

.app-tab-st {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.app-tab-st.ok {
  background: var(--ok);
  box-shadow: 0 0 7px rgba(62, 207, 142, 0.8);
}

.app-tab-st.off {
  background: var(--muted);
}

/* Seçili hesap paneli */
.app-panel {
  padding: 16px 18px 2px;
}

.app-panel-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(228, 87, 46, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(228, 87, 46, 0.2);
  margin-bottom: 14px;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease),
    border-color 0.3s var(--ease), filter 0.3s var(--ease);
}

.app-panel-id {
  min-width: 0;
}

.app-panel.is-off .app-panel-head {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
}

.app-panel.is-off .app-panel-head .app-avatar,
.app-panel.is-off .app-metrics {
  opacity: 0.45;
  filter: grayscale(0.5);
}

.app-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-hot), #8a4bd4);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.app-user {
  font-weight: 500;
  font-size: 14.5px;
}

.app-meta {
  font-size: 11.5px;
  color: var(--muted);
}

.app-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  font-family: var(--font-ui);
}

.app-toggle-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.app-toggle.is-on .app-toggle-label {
  color: var(--ok);
}

.app-toggle-track {
  position: relative;
  width: 44px;
  height: 25px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.app-toggle.is-on .app-toggle-track {
  background: linear-gradient(135deg, var(--accent-hot), var(--accent));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.app-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease);
}

.app-toggle.is-on .app-toggle-thumb {
  transform: translateX(19px);
}

.app-toggle:focus-visible {
  outline: 2px solid var(--accent-hot);
  outline-offset: 3px;
  border-radius: 999px;
}

.app-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-val {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.metric-val.ok {
  color: var(--ok);
}

.metric-lab {
  font-size: 11px;
  color: var(--muted);
}

.app-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  color: #c3c8d1;
  margin-bottom: 14px;
}

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  color: var(--ok);
}

.app-events {
  list-style: none;
  display: grid;
  gap: 2px;
  min-height: 176px;
}

.app-events li {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 2px;
  border-bottom: 1px solid rgba(243, 240, 234, 0.045);
  font-size: 12.8px;
  color: #b6bbc5;
  animation: evIn 0.5s var(--ease) both;
}

@keyframes evIn {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
}

.app-events li:last-child {
  border-bottom: none;
}

.ev-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--info);
}

.ev-dot.ok {
  background: var(--ok);
  box-shadow: 0 0 8px rgba(62, 207, 142, 0.7);
}

.ev-dot.warn {
  background: var(--warn);
  box-shadow: 0 0 8px rgba(232, 184, 74, 0.7);
}

.ev-dot.bad {
  background: var(--bad);
  box-shadow: 0 0 8px rgba(255, 92, 77, 0.8);
}

.ev-time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
}

/* Canlı olay akışı */
.app-feed {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--line);
}

.live-tag.off {
  color: var(--muted);
}

.live-tag.off .pulse-dot {
  background: var(--muted);
  box-shadow: none;
  animation: none;
}

.app-chip.is-off {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.app-chip.is-off .pulse-dot {
  background: var(--muted);
  box-shadow: none;
  animation: none;
}

/* Etkileşim ipucu */
.app-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted);
}

.app-hint svg {
  width: 14px;
  color: var(--accent-hot);
  animation: hintNudge 1.6s ease-in-out infinite;
}

@keyframes hintNudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

.steps-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.s3 {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.s3-n {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent));
  margin-bottom: 14px;
}

.s3 h4 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
}

.s3 p {
  color: var(--muted);
  font-size: 14px;
}

/* ── FİYAT ──────────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 87, 46, 0.28);
}

.plan.is-featured {
  background: linear-gradient(180deg, rgba(228, 87, 46, 0.12), rgba(255, 255, 255, 0.014));
  border-color: rgba(228, 87, 46, 0.38);
  box-shadow: 0 30px 70px -34px rgba(228, 87, 46, 0.7);
}

.plan.is-featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 106, 61, 0.6), transparent 55%, rgba(228, 87, 46, 0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent));
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(255, 106, 61, 0.9);
}

.plan-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}

.plan-desc {
  color: var(--muted);
  font-size: 13.6px;
  line-height: 1.6;
  min-height: 44px;
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.plan-cur {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent-hot);
}

.plan-amount {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.045em;
  line-height: 1;
}

.plan-period {
  font-size: 13px;
  color: var(--muted);
}

.plan-feats {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 26px;
  flex: 1;
}

.plan-feats li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  font-size: 14px;
  color: #b8bdc7;
}

.plan-feats li.no {
  color: #5b616d;
}

.pf-ico {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 10px;
  color: var(--ok);
  background: rgba(62, 207, 142, 0.12);
  margin-top: 3px;
}

.plan-feats li.no .pf-ico {
  color: #5b616d;
  background: rgba(255, 255, 255, 0.04);
}

.plan .btn {
  justify-content: center;
  width: 100%;
}

.price-note {
  margin-top: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
}

/* ── S.S.S. ─────────────────────────────────────────────── */
.faq {
  display: grid;
  gap: 12px;
}

.fq {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.024);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.fq[open] {
  border-color: rgba(228, 87, 46, 0.26);
  background: rgba(228, 87, 46, 0.045);
}

.fq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 19px 54px 19px 22px;
  font-size: 15.5px;
  font-weight: 400;
  transition: color 0.25s var(--ease);
}

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

.fq summary:hover {
  color: var(--accent-hot);
}

.fq summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  border-right: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease);
}

.fq[open] summary::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}

.fq-body {
  padding: 0 22px 22px;
  display: grid;
  gap: 12px;
  animation: fqIn 0.4s var(--ease) both;
}

@keyframes fqIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}

.fq-body p {
  color: var(--muted);
  font-size: 14.6px;
  line-height: 1.75;
}

/* ── SON CTA ────────────────────────────────────────────── */
.cta {
  padding: 24px 0 88px;
}

.cta-card {
  position: relative;
  text-align: center;
  padding: 54px 36px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(228, 87, 46, 0.16), rgba(255, 255, 255, 0.02) 55%);
  border: 1px solid rgba(228, 87, 46, 0.26);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255, 106, 61, 0.35), transparent 68%);
  filter: blur(40px);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.cta-card h2 {
  position: relative;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(23px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.cta-card p {
  position: relative;
  max-width: 580px;
  margin: 0 auto 26px;
  color: #a9aeb8;
  font-size: 15px;
  line-height: 1.65;
}

.cta-actions {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 20px;
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.contact-link:hover {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.contact-link svg {
  width: 15px;
  height: 15px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 34px;
  background: rgba(0, 0, 0, 0.24);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .logo-text {
  font-size: 22px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-legal {
  padding-top: 26px;
  display: grid;
  gap: 8px;
}

.footer-legal p {
  color: #6a707c;
  font-size: 12.2px;
  line-height: 1.65;
}

/* ── Giriş animasyonları ────────────────────────────────── */
[data-anim] {
  opacity: 0;
  will-change: opacity, transform;
}

[data-anim="up"] {
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

[data-anim="fade"] {
  transition: opacity 0.9s var(--ease);
}

[data-anim].is-in {
  opacity: 1;
  transform: none;
}

/* ── Duyarlı ────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .arch {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .arch-flow {
    height: 40px;
    width: 2px;
    justify-self: center;
    background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
  }

  .arch-flow .packet {
    left: 50% !important;
    margin-left: -3px;
    animation-name: packetV;
  }

  @keyframes packetV {
    0% {
      top: -4px;
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    85% {
      opacity: 1;
    }
    100% {
      top: calc(100% + 4px);
      opacity: 0;
    }
  }

  .attack-flow,
  .lockdown {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .terminal {
    position: static;
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-wide {
    grid-column: span 2;
  }

  .price-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .plan.is-featured {
    order: -1;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav .btn-sm {
    margin-left: auto;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 680px) {
  .wrap,
  .wrap-narrow {
    width: min(100% - 32px, 100%);
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 34px);
    padding-bottom: 56px;
  }

  .hero-logo {
    width: 78px;
    height: 78px;
    margin-bottom: 16px;
  }

  .hero-logo-mark {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .hero-logo-mark svg {
    width: 30px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-stats {
    gap: 18px;
  }

  .stat-sep {
    display: none;
  }

  .stat {
    min-width: 120px;
  }

  .feat-grid {
    grid-template-columns: 1fr;
  }

  .feat-wide {
    grid-column: span 1;
  }

  .app-tabs {
    padding: 12px 14px 0;
  }

  .app-panel {
    padding: 14px 14px 2px;
  }

  .app-feed {
    padding: 14px 14px 18px;
  }

  .lstep {
    grid-template-columns: 30px 1fr;
  }

  .lstep-state {
    grid-column: 2;
    justify-self: start;
  }

  .cta-card {
    padding: 52px 22px;
  }

  .term-body {
    font-size: 11.4px;
    padding: 16px 15px;
  }
}

/* ── Hareket azaltma tercihi ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-anim] {
    opacity: 1 !important;
    transform: none !important;
  }

  .astep,
  .lstep {
    opacity: 1 !important;
    transform: none !important;
  }

  .grid-canvas {
    display: none;
  }
}
