/* ════════════════════════════════════════════════════════════════════════
   ATAMANSOFTWARE — siber güvenlik temalı stil
   Koyu terminal zemini · neon yeşil + cyan · monospace · ızgara dokusu
   ════════════════════════════════════════════════════════════════════════ */

:root {
  --bg: #0a0e14;
  --bg-2: #0d121a;
  --bg-3: #11171f;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --border-green: rgba(159, 239, 0, 0.35);

  --text: #c9d1d9;
  --text-bright: #e6edf3;
  --muted: #7d8590;
  --muted-2: #565d66;

  --green: #9fef00;
  --green-dim: #7bbf00;
  --cyan: #2ee6d6;
  --cyan-dim: #1fb3a6;
  --red: #ff5f56;
  --accent: var(--green);

  --grad: linear-gradient(135deg, #9fef00 0%, #2ee6d6 100%);
  --grad-text: linear-gradient(120deg, #b6ff2e 0%, #2ee6d6 70%);

  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Sabit zemin ışıltıları */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(55% 45% at 82% -5%, rgba(159, 239, 0, 0.10), transparent 60%),
    radial-gradient(50% 45% at 5% 6%, rgba(46, 230, 214, 0.08), transparent 55%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 760px; }

/* ── Header / Nav ─────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 200; transition: all .3s var(--ease); }
.site-header.scrolled {
  background: rgba(10, 14, 20, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-weight: 800; font-size: 16px; letter-spacing: -.3px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px; background: var(--bg-3);
  border: 1px solid var(--border-green); color: var(--green);
  display: grid; place-items: center; font-family: var(--mono); font-size: 16px; font-weight: 800;
  box-shadow: 0 0 18px rgba(159, 239, 0, .22), inset 0 0 14px rgba(159, 239, 0, .08);
  position: relative;
}
.brand-cursor { animation: blink 1.1s step-end infinite; margin-left: 1px; }
@keyframes blink { 50% { opacity: 0; } }
.brand-name { color: var(--text-bright); }
.brand-name span { color: var(--green); }

.nav { display: flex; gap: 4px; align-items: center; }
.nav > a, .nav-drop-btn {
  padding: 9px 15px; border-radius: 10px; color: var(--muted);
  font-family: var(--mono); font-weight: 500; font-size: 13.5px; transition: .2s var(--ease);
  background: none; border: none; cursor: pointer;
}
.nav > a:hover, .nav-drop-btn:hover { color: var(--green); }
.nav > a.active, .nav-drop-btn.active { color: var(--text-bright); }
.nav a.nav-cta { color: var(--green); border: 1px solid var(--border-green); background: rgba(159, 239, 0, .06); margin-left: 6px; }
.nav a.nav-cta:hover { background: rgba(159, 239, 0, .12); box-shadow: 0 0 16px rgba(159, 239, 0, .2); }

/* Açılır menü */
.nav-dropdown { position: relative; }
.nav-drop-btn .caret { transition: transform .2s var(--ease); display: inline-block; }
.nav-dropdown.open .caret { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px;
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: .22s var(--ease); box-shadow: 0 24px 50px rgba(0, 0, 0, .55);
  z-index: 50;
}
.nav-dropdown.open .nav-drop-menu, .nav-dropdown:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-menu a {
  display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 10px;
  color: var(--text); font-size: 14px; font-family: var(--sans); transition: .15s;
}
.nav-drop-menu a:hover { background: var(--surface-2); color: var(--green); }
.nav-drop-menu a.drop-all { color: var(--muted); font-family: var(--mono); font-size: 12.5px; border-bottom: 1px solid var(--border); border-radius: 8px 8px 0 0; margin-bottom: 4px; padding-bottom: 12px; }
.drop-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 8px currentColor; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 11px; font-family: var(--mono); font-weight: 700; font-size: 14px;
  cursor: pointer; border: 1px solid transparent; transition: .25s var(--ease); text-align: center;
}
.btn-primary { background: var(--grad); color: #06210a; box-shadow: 0 0 26px rgba(159, 239, 0, .28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(159, 239, 0, .45); }
.btn-primary:disabled { opacity: .55; cursor: default; transform: none; box-shadow: none; }
.btn-ghost { background: var(--surface); color: var(--text-bright); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: 130px 0 100px; overflow: hidden; }
.hero-grid {
  position: absolute; inset: -2px 0 auto 0; height: 620px; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(rgba(159, 239, 0, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 239, 0, .07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 75% 60% at 70% 0%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 70% 0%, #000 0%, transparent 72%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 8px;
  background: var(--bg-3); border: 1px solid var(--border); font-family: var(--mono);
  font-size: 12.5px; color: var(--muted); margin-bottom: 28px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero-badge .type { color: var(--green); }
.hero-title { font-family: var(--mono); font-size: clamp(42px, 8.5vw, 96px); line-height: .98; font-weight: 800; letter-spacing: -2px; margin: 0 0 22px; }
.hero-title .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-tagline { font-family: var(--mono); color: var(--cyan); font-size: clamp(16px, 2.2vw, 21px); margin: 0 0 22px; }
.hero-lead { color: var(--muted); font-size: clamp(16px, 2vw, 19px); max-width: 560px; margin: 0 0 38px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }

/* Hero görsel paneli — matrix kod yağmuru */
.hero-visual { position: relative; }
.code-panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: #070a0f; border: 1px solid var(--border-green);
  box-shadow: 0 0 0 1px rgba(159, 239, 0, .05), 0 40px 80px rgba(0, 0, 0, .6), 0 0 60px rgba(159, 239, 0, .08);
  height: 400px;
}
.code-panel-bar { display: flex; align-items: center; gap: 7px; padding: 12px 15px; background: var(--bg-3); border-bottom: 1px solid var(--border); position: relative; z-index: 3; }
.cp-title { margin-left: 10px; font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); }
.matrix-canvas { position: absolute; inset: 44px 0 0 0; width: 100%; height: calc(100% - 44px); display: block; opacity: .55; }
.code-panel-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px; display: flex; flex-direction: column; gap: 9px;
  background: linear-gradient(to top, rgba(7, 10, 15, .96) 35%, transparent);
  font-family: var(--mono); font-size: 13px;
}
.cp-line { color: var(--text-bright); }
.cp-prompt { color: var(--green); font-weight: 700; margin-right: 6px; }
.cp-dim { color: var(--muted); }
.cp-ok { color: var(--green); }

/* Yetenek başlığı SVG ikonları */
.sb-icon { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--border); background: var(--bg-3); }
.sb-icon svg { width: 18px; height: 18px; }
.sb-green { color: var(--green); border-color: var(--border-green); }
.sb-cyan { color: var(--cyan); border-color: rgba(46, 230, 214, .3); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.eyebrow { display: inline-block; font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 1px; color: var(--green); margin: 0 0 14px; }
.section-title { font-family: var(--mono); font-size: clamp(28px, 4.5vw, 46px); font-weight: 800; letter-spacing: -1px; margin: 0 0 18px; line-height: 1.08; color: var(--text-bright); }
.section-lead { color: var(--muted); font-size: 18px; max-width: 640px; margin: 0 0 48px; }
.section-head-center { text-align: center; }
.section-head-center .section-lead { margin-left: auto; margin-right: auto; }
.page-title { font-family: var(--mono); font-size: clamp(32px, 5.5vw, 56px); font-weight: 800; letter-spacing: -1.5px; margin: 0 0 14px; color: var(--text-bright); }
.page-top { padding-top: 76px; }

/* ── Geliştirici / Terminal ───────────────────────────────────────────────── */
.dev-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.terminal { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px rgba(0, 0, 0, .4); }
.terminal-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--bg-3); border-bottom: 1px solid var(--border); }
.tdot { width: 12px; height: 12px; border-radius: 50%; }
.tdot.r { background: var(--red); } .tdot.y { background: #ffbd2e; } .tdot.g { background: #27c93f; }
.terminal-title { margin-left: 10px; font-family: var(--mono); font-size: 12px; color: var(--muted-2); }
.terminal-body { padding: 22px 22px 26px; font-family: var(--mono); font-size: 14px; line-height: 1.9; }
.terminal-body p { margin: 0; }
.t-prompt { color: var(--green); margin-right: 8px; font-weight: 700; }
.t-out { color: var(--text); padding: 2px 0 14px; border-left: 2px solid var(--border-green); padding-left: 14px; margin-left: 4px !important; }
.t-blink { animation: blink 1.1s step-end infinite; color: var(--green); }

.dev-skills { display: flex; flex-direction: column; gap: 18px; }
.skill-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.skill-block h3 { font-family: var(--mono); font-size: 16px; margin: 0 0 16px; display: flex; align-items: center; gap: 9px; color: var(--text-bright); }
.sb-icon { font-size: 18px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; }
.tag { font-family: var(--mono); font-size: 12.5px; padding: 7px 13px; border-radius: 7px; border: 1px solid var(--border); transition: .2s var(--ease); }
.tag-green { color: var(--green); border-color: var(--border-green); background: rgba(159, 239, 0, .05); }
.tag-green:hover { background: rgba(159, 239, 0, .12); box-shadow: 0 0 14px rgba(159, 239, 0, .18); }
.tag-cyan { color: var(--cyan); border-color: rgba(46, 230, 214, .3); background: rgba(46, 230, 214, .05); }
.tag-cyan:hover { background: rgba(46, 230, 214, .12); box-shadow: 0 0 14px rgba(46, 230, 214, .18); }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; }
.social-link { font-family: var(--mono); font-size: 13px; padding: 9px 16px; border-radius: 9px; border: 1px solid var(--border-strong); color: var(--text-bright); transition: .2s var(--ease); }
.social-link:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ── Projeler ─────────────────────────────────────────────────────────────── */
.project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 22px; }
.project-card {
  position: relative; padding: 28px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 15px; transition: .32s var(--ease); overflow: hidden;
}
.project-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); opacity: .55; transition: opacity .3s; }
.project-card::after { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s var(--ease); pointer-events: none; background: radial-gradient(420px 200px at 50% -10%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%); }
.project-card:hover { transform: translateY(-7px); border-color: var(--border-strong); box-shadow: 0 28px 56px rgba(0, 0, 0, .55); }
.project-card:hover::before { opacity: 1; }
.project-card:hover::after { opacity: 1; }
.project-card-top { display: flex; align-items: center; gap: 15px; position: relative; z-index: 1; }
.project-icon { width: 58px; height: 58px; border-radius: 14px; object-fit: cover; border: 1px solid var(--border); }
.project-icon-fallback { width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; font-family: var(--mono); font-size: 26px; font-weight: 800; color: #06210a; background: var(--grad); flex-shrink: 0; }
.project-card h3 { font-family: var(--mono); margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -.5px; color: var(--text-bright); }
.project-tag { margin: 3px 0 0; color: var(--accent); font-size: 13px; font-weight: 500; font-family: var(--mono); }
.project-desc { color: var(--muted); font-size: 15px; margin: 0; flex: 1; position: relative; z-index: 1; }
.project-foot { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.project-link { color: var(--text-bright); font-family: var(--mono); font-weight: 500; font-size: 13.5px; display: inline-flex; gap: 6px; align-items: center; transition: gap .25s var(--ease); }
.project-card:hover .project-link { gap: 11px; color: var(--green); }
.chip { font-family: var(--mono); font-size: 11.5px; padding: 5px 11px; border-radius: 7px; background: var(--bg-3); color: var(--muted); border: 1px solid var(--border); }

/* ── QR kodları ───────────────────────────────────────────────────────────── */
.qr-row { display: flex; gap: 22px; flex-wrap: wrap; }
.qr-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; text-align: center; transition: .25s var(--ease); }
.qr-card:hover { border-color: var(--border-green); transform: translateY(-4px); }
.qr-card img { border-radius: 12px; background: #fff; padding: 10px; }
.qr-label { margin-top: 14px; font-family: var(--mono); font-size: 13px; color: var(--text-bright); }

/* ── Amaçlar ──────────────────────────────────────────────────────────────── */
.goal-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.goal-list li { display: flex; align-items: flex-start; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; color: var(--text); font-size: 15.5px; transition: .25s var(--ease); }
.goal-list li:hover { border-color: var(--border-green); transform: translateX(4px); }
.goal-num { font-family: var(--mono); font-weight: 800; font-size: 15px; color: var(--green); flex-shrink: 0; }

/* ── Özellikler ───────────────────────────────────────────────────────────── */
.feature-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; margin: 0; }
.feature-list li { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 15px 18px 15px 46px; position: relative; color: var(--text); font-size: 15px; transition: .25s var(--ease); }
.feature-list li:hover { border-color: var(--border-strong); transform: translateX(4px); }
.feature-list li::before { content: "✓"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 6px; background: var(--grad); color: #06210a; font-size: 12px; font-weight: 900; display: grid; place-items: center; }

/* ── Renk paleti ──────────────────────────────────────────────────────────── */
.palette-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.swatch { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: .25s var(--ease); }
.swatch:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.swatch-color { height: 96px; width: 100%; }
.swatch-info { padding: 14px 16px; display: flex; flex-direction: column; gap: 2px; }
.swatch-name { font-weight: 600; font-size: 14.5px; color: var(--text-bright); }
.swatch-hex { font-family: var(--mono); font-size: 13px; color: var(--green); text-transform: uppercase; }
.swatch-role { font-size: 12px; color: var(--muted-2); margin-top: 2px; }

/* ── App detail başlık ────────────────────────────────────────────────────── */
.app-detail { --accent: var(--green); }
.app-head { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; margin-bottom: 30px; }
.app-icon-lg { width: 108px; height: 108px; border-radius: 26px; object-fit: cover; border: 1px solid var(--border); }
.app-tagline { color: var(--accent); font-family: var(--mono); font-weight: 500; font-size: 16px; margin: 8px 0 18px; }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge-soon { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 11px; background: var(--surface); border: 1px solid var(--border); color: var(--muted); font-family: var(--mono); font-size: 13.5px; }
.app-description { color: var(--muted); font-size: 18px; max-width: 800px; line-height: 1.75; }
.shots { display: flex; gap: 18px; overflow-x: auto; padding: 32px 0; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.shots img { height: 480px; border-radius: 20px; border: 1px solid var(--border); scroll-snap-align: start; flex-shrink: 0; }

/* ── Telefon mockup ───────────────────────────────────────────────────────── */
.phone-row { display: flex; gap: 26px; flex-wrap: wrap; padding: 30px 0 10px; }
.phone {
  width: 224px; aspect-ratio: 9 / 19; border-radius: 34px; padding: 9px; flex-shrink: 0;
  background: linear-gradient(160deg, #1a212c, #0c1119); border: 1px solid var(--border-strong);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .55), inset 0 0 0 2px rgba(0, 0, 0, .4);
  position: relative; transition: .3s var(--ease);
}
.phone:hover { transform: translateY(-8px); border-color: var(--border-green); }
.phone::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 64px; height: 6px; border-radius: 6px; background: #05070a; z-index: 3; }
.phone-screen { width: 100%; height: 100%; border-radius: 27px; overflow: hidden; background: var(--bg-2); position: relative; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Görsel yokken sahte app önizlemesi */
.phone-faux .phone-screen { padding: 34px 18px 18px; display: flex; flex-direction: column; align-items: center; gap: 13px; background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 16%, var(--bg-2)), var(--bg-2) 60%); }
.fx-bar { width: 55%; height: 8px; border-radius: 4px; background: var(--accent); opacity: .55; margin-top: 4px; }
.fx-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--accent); color: #06210a; display: grid; place-items: center; font-family: var(--mono); font-weight: 800; font-size: 25px; margin: 6px 0; box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 40%, transparent); }
.fx-line { height: 10px; border-radius: 5px; background: rgba(255, 255, 255, .08); }
.fx-line.w90 { width: 90%; } .fx-line.w70 { width: 70%; } .fx-line.w50 { width: 50%; }
.fx-btn { margin-top: auto; width: 100%; height: 40px; border-radius: 13px; background: var(--accent); opacity: .85; }
.inline-code { font-family: var(--mono); font-size: .9em; background: var(--bg-3); border: 1px solid var(--border); border-radius: 6px; padding: 2px 7px; color: var(--green); }

/* ── Forms ────────────────────────────────────────────────────────────────── */
.form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-family: var(--mono); font-weight: 500; font-size: 13px; color: var(--muted); }
.form input, .form textarea { background: var(--bg); border: 1px solid var(--border); border-radius: 11px; padding: 14px 16px; color: var(--text-bright); font-size: 15px; font-family: var(--sans); transition: .2s var(--ease); }
.form input::placeholder, .form textarea::placeholder { color: var(--muted-2); }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(159, 239, 0, .14); }
.form-status { margin: 2px 0 0; font-size: 14px; min-height: 20px; font-family: var(--mono); }
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--red); }
.contact-alt { margin-top: 24px; color: var(--muted); text-align: center; font-family: var(--mono); font-size: 14px; }
.contact-alt a { color: var(--green); }

/* ── Legal ────────────────────────────────────────────────────────────────── */
.legal-date { font-family: var(--mono); color: var(--muted-2); font-size: 14px; margin-bottom: 36px; }
.legal-heading { font-family: var(--mono); font-size: 19px; font-weight: 700; margin: 34px 0 10px; color: var(--text-bright); }
.legal-body { color: var(--muted); margin: 0 0 10px; white-space: pre-line; line-height: 1.75; }
.legal-links { display: flex; gap: 22px; margin-top: 48px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border); font-family: var(--mono); font-size: 14px; }
.legal-links a { color: var(--green); }

/* ── Status ───────────────────────────────────────────────────────────────── */
.center-page { text-align: center; min-height: 54vh; display: grid; place-content: center; }
.big-status { font-family: var(--mono); font-size: clamp(72px, 15vw, 150px); margin: 0 0 4px; font-weight: 800; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 56px 0 40px; margin-top: 60px; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.footer-about { max-width: 320px; }
.footer-about .brand { margin-bottom: 14px; }
.footer-about p { color: var(--muted); font-size: 14.5px; margin: 0; }
.footer-col h4 { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted-2); margin: 0 0 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: .2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-family: var(--mono); color: var(--muted-2); font-size: 12.5px; margin: 0; }

/* ── Scroll reveal ────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .brand-cursor, .t-blink { animation: none; } }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .dev-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .nav > a:not(.nav-cta) { display: none; }
  .nav-dropdown { display: none; }
  .section { padding: 70px 0; }
  .hero { padding: 90px 0 70px; }
  .shots img { height: 380px; }
  .footer-grid { gap: 28px; }
}
