/* ==========================================================================
   Netclave — netclave.io tanıtım sitesi
   Tema: koyu / siber güvenlik. Vurgu: cyan + mint. Tek sayfa landing.
   ========================================================================== */

:root {
  /* Zemin */
  --bg:        #060d13;
  --bg-2:      #0a1620;
  --panel:     #0c1b24;
  --panel-2:   #102632;
  --border:    rgba(87, 217, 255, .14);
  --border-2:  rgba(255, 255, 255, .07);

  /* Metin */
  --white:     #eefcff;
  --text:      #b4c8ce;
  --text-dim:  #76909a;
  --text-soft: #49616b;

  /* Vurgu */
  --accent:    #57d9ff;   /* cyan */
  --accent-2:  #8cffc1;   /* mint */
  --danger:    #ff6b8a;
  --warn:      #ffcf6b;

  /* Sistem */
  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1200px;
  --shadow:    0 30px 90px rgba(0, 0, 0, .45);
  --glow:      0 0 45px rgba(87, 217, 255, .12);

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", "SFMono-Regular", "Consolas", "Menlo", monospace;
}

* { 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(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: rgba(87, 217, 255, .28); color: var(--white); }

/* ---------- Yardımcılar ---------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 16, 22, .55);
  color: #b8eefc;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(12px);
  box-shadow: var(--glow);
}

.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 99px;
  background: var(--accent-2);
  box-shadow: 0 0 14px var(--accent-2);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--white); letter-spacing: -.03em; }

.h-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.04;
  margin: 0 0 18px;
}

.section-head p {
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
}

.grad {
  background: linear-gradient(92deg, #ffffff 0%, #aef2ff 52%, #8cffc1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border-2);
  border-radius: 13px;
  padding: 13px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); border-color: var(--border); background: rgba(255, 255, 255, .09); }

.btn.primary {
  background: linear-gradient(135deg, rgba(87, 217, 255, .96), rgba(140, 255, 193, .9));
  color: #041015;
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(87, 217, 255, .22);
}
.btn.primary:hover { box-shadow: 0 22px 64px rgba(87, 217, 255, .34); }

.btn.ghost { background: transparent; }

/* ==========================================================================
   Navigasyon
   ========================================================================== */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 13, 19, .78);
  border-bottom-color: var(--border-2);
  backdrop-filter: blur(16px) saturate(140%);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand-logo { height: 30px; width: 30px; object-fit: contain; display: block; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.02em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 500;
  transition: color .16s ease, background .16s ease;
}
.nav-links a:hover { color: var(--white); background: rgba(255, 255, 255, .05); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Dil değiştirici */
.lang {
  display: inline-flex;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
}
.lang button {
  border: 0;
  background: transparent;
  color: var(--text-dim);
  padding: 8px 11px;
  cursor: pointer;
  transition: color .15s ease, background .15s ease;
}
.lang button.active { color: #041015; background: var(--accent); }

.menu-toggle {
  display: none;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  border-radius: 10px;
  width: 42px; height: 42px;
  cursor: pointer;
  font-size: 20px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(87, 217, 255, .14), transparent 28%),
    radial-gradient(circle at 22% 82%, rgba(140, 255, 193, .09), transparent 32%),
    linear-gradient(135deg, #060d13 0%, #07151e 46%, #04090d 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(circle at center, black 18%, transparent 76%);
  mask-image: radial-gradient(circle at center, black 18%, transparent 76%);
  opacity: .5;
}

/* Akan log arka planı */
.logs {
  position: absolute;
  inset: -22vh -12vw;
  transform: rotate(-7deg) scale(1.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  opacity: .8;
  pointer-events: none;
}
.log-col {
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(138, 164, 173, .55);
  animation: logscroll 30s linear infinite;
  will-change: transform;
}
.log-col:nth-child(2) { animation-duration: 37s; opacity: .74; }
.log-col:nth-child(3) { animation-duration: 26s; opacity: .6; }
.log-col:nth-child(4) { animation-duration: 41s; opacity: .7; }

@keyframes logscroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* Log içindeki vurgulanan (belirgin) token'lar */
.tok       { color: rgba(238, 252, 255, .96); font-weight: 800; letter-spacing: .01em; text-shadow: 0 0 16px rgba(87, 217, 255, .5); }
.tok.green { color: var(--accent-2); text-shadow: 0 0 16px rgba(140, 255, 193, .4); }
.tok.red   { color: var(--danger);  text-shadow: 0 0 16px rgba(255, 107, 138, .4); }
.tok.warn  { color: var(--warn);    text-shadow: 0 0 16px rgba(255, 207, 107, .35); }

.hero-fade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 13, 19, .97) 0%, rgba(6, 13, 19, .35) 42%, rgba(6, 13, 19, .9) 100%),
    linear-gradient(0deg, rgba(6, 13, 19, .98) 0%, transparent 26%, transparent 60%, rgba(6, 13, 19, .92) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 60px;
}

.hero-copy { max-width: 760px; }

.hero h1 {
  margin: 26px 0 20px;
  font-size: clamp(42px, 6.6vw, 88px);
  line-height: .96;
  letter-spacing: -.05em;
}
.hero h1 .grad { display: block; }

.hero-lead {
  margin: 0;
  max-width: 620px;
  color: #c2d4da;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 42px;
  color: var(--text-dim);
  font-size: 13px;
  font-family: var(--font-mono);
}
.hero-trust .chip {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-trust .chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 99px;
  background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2);
}

/* AI korelasyon kartı */
.ai-card {
  position: absolute;
  right: max(24px, calc((100vw - var(--maxw)) / 2 + 12px));
  bottom: 8vh;
  width: min(410px, 40vw);
  border: 1px solid var(--border);
  background: rgba(8, 24, 33, .62);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  z-index: 4;
}
.ai-card .card-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.ai-card .card-title { color: #dffbff; font-weight: 700; font-family: var(--font-display); }
.ai-card .badge {
  font-size: 11px; color: #062018; background: var(--accent-2);
  border-radius: 999px; padding: 4px 10px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
}
.ai-card .mini-log { font-family: var(--font-mono); color: #97b4bd; font-size: 12px; line-height: 1.75; }
.ai-card .mini-log b { color: #fff; font-weight: 700; }
.ai-card .mini-log .warn { color: var(--danger); }
.ai-card .mini-log .ok { color: var(--accent-2); }

/* ==========================================================================
   Genel bölüm düzeni
   ========================================================================== */

section.block { position: relative; padding: clamp(72px, 10vw, 130px) 0; }
section.block.alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); }

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* Kart ızgarası */
.grid { display: grid; gap: 20px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  border: 1px solid var(--border-2);
  background: linear-gradient(180deg, var(--panel) 0%, rgba(10, 22, 32, .6) 100%);
  border-radius: var(--radius);
  padding: 26px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(87, 217, 255, .1), transparent 60%);
  opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: 0 24px 60px rgba(0, 0, 0, .35); }
.card:hover::after { opacity: 1; }

.card .ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(87, 217, 255, .1);
  border: 1px solid var(--border);
  color: var(--accent);
  margin-bottom: 18px;
}
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 19px; margin: 0 0 8px; }
.card p { margin: 0; font-size: 15px; color: var(--text-dim); line-height: 1.55; }
.card .tag {
  display: inline-block; margin-top: 14px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em;
  color: var(--accent-2); text-transform: uppercase;
}

/* Yol haritası (yakında) kartları */
.card .soon {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; font-weight: 700;
  color: var(--warn);
  border: 1px solid rgba(255, 207, 107, .32);
  background: rgba(255, 207, 107, .09);
  border-radius: 999px; padding: 3px 10px;
}
.card.roadmap { border-style: dashed; border-color: rgba(255, 207, 107, .22); }
.card.roadmap .ico {
  color: var(--warn);
  background: rgba(255, 207, 107, .1);
  border-color: rgba(255, 207, 107, .24);
}
.card.roadmap h3, .card.roadmap p { opacity: .82; }

/* ==========================================================================
   Mühürleme / 5651 kanıt zinciri
   ========================================================================== */

.seal {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.seal-steps { display: flex; flex-direction: column; gap: 0; }
.seal-step {
  position: relative;
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0;
}
.seal-step:not(:last-child)::before {
  content: ""; position: absolute;
  left: 22px; top: 46px; bottom: -4px; width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(87, 217, 255, .12));
}
.seal-step .n {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(87, 217, 255, .1); border: 1px solid var(--border);
  color: var(--accent); font-family: var(--font-mono); font-weight: 800;
  z-index: 1;
}
.seal-step h4 { margin: 4px 0 4px; color: var(--white); font-size: 18px; font-family: var(--font-display); font-weight: 600; }
.seal-step p { margin: 0; font-size: 14.5px; color: var(--text-dim); }

/* Kanıt paketi görseli */
.evidence {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 22px;
  box-shadow: var(--shadow);
  font-family: var(--font-mono);
  font-size: 13px;
}
.evidence .ev-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--border-2);
}
.evidence .ev-head .name { color: var(--white); font-weight: 700; }
.evidence .ev-head .seal-badge {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--accent-2); font-size: 12px;
}
.evidence .ev-head .seal-badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 99px;
  background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2);
}
.evidence ul { list-style: none; margin: 0; padding: 0; }
.evidence li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; color: var(--text-dim);
}
.evidence li .f { color: #cfe6ec; }
.evidence li .h { margin-left: auto; color: var(--accent); opacity: .8; }
.evidence li svg { width: 15px; height: 15px; color: var(--accent-2); flex: none; }

/* ==========================================================================
   İstatistik şeridi
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), rgba(10, 22, 32, .5));
  padding: 36px 30px;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  background: linear-gradient(92deg, #aef2ff, #8cffc1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .lbl { margin-top: 10px; color: var(--text-dim); font-size: 14px; }

/* ==========================================================================
   Son CTA
   ========================================================================== */

.cta {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: clamp(44px, 6vw, 76px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(87, 217, 255, .16), transparent 60%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  overflow: hidden;
}
.cta h2 { font-size: clamp(30px, 4.6vw, 54px); margin-bottom: 16px; }
.cta p { max-width: 560px; margin: 0 auto 30px; color: var(--text); }
.cta .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .contact-line {
  margin-top: 26px; font-family: var(--font-mono); font-size: 14px; color: var(--text-dim);
}
.cta .contact-line a { color: var(--accent); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { border-top: 1px solid var(--border-2); padding: 54px 0 40px; background: var(--bg-2); }
.footer-top {
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: space-between; align-items: flex-start;
  margin-bottom: 36px;
}
.footer .brand-logo { height: 34px; width: 34px; }
.footer .brand-name { font-size: 19px; }
.footer-tag { margin: 14px 0 0; color: var(--text-dim); font-size: 14px; max-width: 320px; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 {
  margin: 0 0 14px; color: var(--white); font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-mono); font-weight: 600;
}
.footer-col a { display: block; padding: 5px 0; color: var(--text-dim); font-size: 15px; transition: color .15s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border-2);
  color: var(--text-soft); font-size: 13px;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1040px) {
  /* ai-card artik akista: hero'yu dikey istifle, yan yana sikismasin */
  .hero { flex-direction: column; justify-content: flex-start; }
  .hero-content { padding-top: 104px; padding-bottom: 28px; }
  .ai-card {
    position: relative; right: auto; bottom: auto;
    width: min(440px, calc(100vw - 48px));
    margin: 24px auto 0;
  }
  .seal { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-actions { margin-left: auto; }   /* menu gizlenince aksiyonlari saga yasla */
  .menu-toggle { display: grid; place-items: center; }
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .logs { grid-template-columns: repeat(2, 1fr); opacity: .5; }

  /* Mobil açılır menü */
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(6, 13, 19, .96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-2);
    padding: 14px 24px 22px;
    gap: 4px;
  }
  .nav-links.open a { padding: 12px 14px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr 1fr; padding: 26px 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .log-col { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Demo modal
   ========================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
body.modal-open { overflow: hidden; }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 9, 13, .72);
  backdrop-filter: blur(6px);
  animation: modalFade .2s ease;
}

.modal-card {
  position: relative;
  width: min(460px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(87, 217, 255, .12), transparent 62%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
  padding: 30px 28px 28px;
  animation: modalPop .24s cubic-bezier(.2, .8, .2, 1);
}

@keyframes modalFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes modalPop { from { opacity: 0; transform: translateY(12px) scale(.98) } to { opacity: 1; transform: none } }

.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  border-radius: 10px;
  font-size: 22px; line-height: 1;
  cursor: pointer;
  transition: color .15s, background .15s, border-color .15s;
}
.modal-close:hover { color: var(--white); background: rgba(255, 255, 255, .09); border-color: var(--border); }

.modal-card h3 {
  font-family: var(--font-display); font-size: 26px; margin: 16px 0 8px;
  color: var(--white); letter-spacing: -.02em;
}
.modal-sub { margin: 0 0 22px; color: var(--text-dim); font-size: 15px; line-height: 1.5; }

.demo-form { display: flex; flex-direction: column; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { font-size: 13px; color: var(--text); font-weight: 500; }
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 15px;
  color: var(--white);
  background: rgba(6, 13, 19, .6);
  border: 1px solid var(--border-2);
  border-radius: 11px;
  padding: 12px 14px;
  transition: border-color .16s, box-shadow .16s, background .16s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-soft); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(87, 217, 255, .16);
  background: rgba(6, 13, 19, .85);
}

.modal-submit { justify-content: center; margin-top: 4px; width: 100%; }
.modal-submit[disabled] { opacity: .6; cursor: default; }

.demo-status { margin: 12px 0 0; font-size: 14px; text-align: center; line-height: 1.5; }
.demo-status.ok  { color: var(--accent-2); }
.demo-status.err { color: var(--danger); }

@media (prefers-reduced-motion: reduce) {
  .modal-backdrop, .modal-card { animation: none; }
}
