/* ============================================================
   QuantIop.com — domain-for-sale concept page
   ============================================================ */

:root {
  --bg: #06080B;
  --bg-2: #0A0D12;
  --bg-3: #0B0E13;
  --bg-4: #0C0F15;
  --ink: #F4F6FA;
  --ink-2: #E6E9EF;
  --ink-3: #C7CCD6;
  --ink-4: #9AA3B2;
  --ink-5: #8A93A3;
  --ink-6: #6B7382;
  --ink-7: #5C6573;
  --ink-8: #4B535F;
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.09);
  --line-3: rgba(255, 255, 255, 0.14);
  --accent: #36E08B;
  --accent-soft: #9EEFC4;
  --accent-bg: rgba(54, 224, 139, 0.12);
  --accent-border: rgba(54, 224, 139, 0.30);
  --warn: #FFB454;
  --warn-soft: #FFC98A;
  --warn-bg: rgba(255, 180, 84, 0.12);
  --danger: #FF8585;
  --danger-soft: #FF7A7A;
  --amber: #FFB454;
  --sans: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
::selection { background: rgba(54, 224, 139, 0.25); }

@keyframes qiPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes qiGlow { 0%, 100% { box-shadow: 0 0 8px var(--amber); } 50% { box-shadow: 0 0 14px var(--amber); } }

/* ============================================================
   DISCLAIMER STRIP (sticky top)
   ============================================================ */
.disclaimer {
  position: sticky; top: 0; z-index: 60;
  background: linear-gradient(180deg, #1a1410 0%, #14110d 100%);
  border-bottom: 1px solid #2a2218;
  color: #ffd9a8;
  font-size: 13px;
  line-height: 1.5;
}
.disclaimer-row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 11px 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.disclaimer .dot {
  flex: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  animation: qiGlow 2s infinite ease-in-out;
}
.disclaimer .pill {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px;
  border: 1px solid #4a3a20;
  border-radius: 999px;
  background: #221a10;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.disclaimer p {
  margin: 0;
  flex: 1 1 auto;
  color: #e9d4b0;
}
.disclaimer b { color: #fff1d6; font-weight: 600; }
.disclaimer i { font-style: italic; color: #fff1d6; }
.disclaimer .strip-cta {
  flex: none;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid #4a3a20;
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.disclaimer .strip-cta:hover { background: var(--amber); color: #14110d; }

@media (max-width: 760px) {
  .disclaimer-row { flex-wrap: wrap; padding: 10px 20px; gap: 10px; }
  .disclaimer p { flex-basis: 100%; order: 3; font-size: 12px; }
}

/* ============================================================
   PAGE FRAME + AMBIENT BG
   ============================================================ */
.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.ambient-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 80%);
}
.ambient-glow {
  position: absolute;
  top: -280px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(54, 224, 139, 0.10), transparent 70%);
  filter: blur(20px);
}
.container {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   BRAND MARK
   ============================================================ */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 22px; height: 22px;
  border: 1.5px solid var(--accent);
  display: grid; place-items: center;
}
.brand-mark-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  display: block;
}
.brand-mark-sm { width: 16px; height: 16px; border-width: 1.5px; }
.brand-mark-sm .brand-mark-dot { width: 5px; height: 5px; }
.brand-text {
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-quant { font-weight: 600; color: var(--ink); }
.brand-iop { font-weight: 400; color: var(--accent); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  border-bottom: 1px solid var(--line);
}
.nav-links {
  display: flex; align-items: center; gap: 34px;
  font-size: 14px;
  color: var(--ink-5);
}
.nav-link { transition: color .15s; }
.nav-link:hover { color: var(--ink); }
.nav-cta {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  border: 1px solid var(--line-3);
  padding: 7px 14px;
  transition: background .15s, color .15s, border-color .15s;
}
.nav-cta:hover { background: var(--accent); color: #04130C; border-color: var(--accent); }

@media (max-width: 760px) {
  .nav { height: 64px; }
  .nav-links { gap: 18px; font-size: 13px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 96px 0 56px;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-5);
  text-transform: uppercase;
  border: 1px solid var(--line-2);
  padding: 6px 12px;
  margin-bottom: 34px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: qiPulse 2s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 auto;
  max-width: 880px;
  color: var(--ink);
  text-wrap: balance;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-4);
  max-width: 620px;
  margin: 26px auto 0;
  font-weight: 300;
}
.hero-ctas {
  display: flex; gap: 14px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 26px;
  letter-spacing: 0.01em;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
  cursor: pointer;
  border: 1px solid transparent;
}
.cta-primary {
  background: var(--accent);
  color: #04130C;
}
.cta-primary:hover { transform: translateY(-1px); background: #4cf09b; }
.cta-ghost {
  color: var(--ink-3);
  border-color: var(--line-3);
}
.cta-ghost:hover { border-color: var(--ink-4); color: var(--ink); }
.cta-ar { font-family: var(--sans); font-size: 16px; }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(13, 16, 22, 0.5);
}
.pillar {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.pillar-title {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0 8px;
  color: var(--ink-2);
}
.pillar-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-5);
  margin: 0;
}

@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
}

/* ============================================================
   CONSOLE / DASHBOARD
   ============================================================ */
.console { margin: 72px 0 40px; }
.console-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 18px;
  gap: 18px;
}
.console-kicker {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.console-title {
  font-size: 24px;
  font-weight: 600;
  margin: 8px 0 0;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.console-url {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-7);
}

.window {
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.8);
}
.window-titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-4);
}
.window-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: #2A2F38;
}
.window-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-7);
  margin-left: 14px;
}
.window-body {
  display: grid;
  grid-template-columns: 200px 1fr;
}

.sidebar {
  border-right: 1px solid var(--line);
  padding: 18px 0;
  background: var(--bg-3);
}
.sidebar-brand {
  padding: 0 18px 16px;
  display: flex; align-items: center; gap: 8px;
}
.sidebar-brand .brand-text { font-size: 13px; }
.sidebar-group {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-8);
  letter-spacing: 0.1em;
  padding: 16px 18px 6px;
}
.sidebar-group:first-of-type { padding-top: 10px; }
.sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  font-size: 13px;
  color: #7A8392;
  cursor: default;
}
.sidebar-item.is-active {
  background: var(--accent-bg);
  border-left: 2px solid var(--accent);
  color: var(--accent-soft);
  padding-left: 16px;
}
.sidebar-item-row { justify-content: space-between; }
.sidebar-badge {
  font-family: var(--mono);
  font-size: 10px;
  background: rgba(255, 92, 92, 0.15);
  color: var(--danger);
  padding: 1px 6px;
}

.main {
  padding: 20px 22px 24px;
}
.main-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}
.main-head-l {
  display: flex; align-items: center; gap: 12px;
}
.main-title {
  font-size: 16px; font-weight: 600;
  margin: 0;
  color: #EDEFF3;
}
.live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 2px 8px;
}
.live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: qiPulse 2s ease-in-out infinite;
}
.main-clock {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-7);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.stat {
  background: var(--bg-2);
  padding: 14px 16px;
}
.stat-k {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-6);
}
.stat-v {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 500;
  color: #EDEFF3;
  margin-top: 6px;
}
.stat-u {
  font-size: 13px;
  color: var(--ink-6);
}
.stat-d {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-6);
  margin-top: 4px;
}
.stat-d-up { color: var(--accent); }
.stat-d-warn { color: var(--danger); }

.charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.chart {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 14px 16px;
}
.chart-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.chart-title {
  font-size: 12px;
  color: var(--ink-5);
}
.chart-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-6);
}

.table {
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 0.8fr 0.9fr;
  padding: 11px 16px;
  align-items: center;
}
.table-head {
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-7);
  text-transform: uppercase;
  padding: 10px 16px;
}
.table-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 13px;
}
.table-row-last { border-bottom: none; }
.cell-name { color: #DCE0E7; }
.cell-mono { font-family: var(--mono); color: var(--ink-3); }
.cell-up { color: var(--accent); }
.cell-warn { color: var(--warn); }
.cell-down { color: var(--danger-soft); }
.right { text-align: right; }
.status {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  padding: 2px 9px;
}
.status-run { color: var(--accent-soft); background: var(--accent-bg); }
.status-warn { color: var(--warn-soft); background: var(--warn-bg); }
.status-paused { color: var(--ink-4); background: rgba(255, 255, 255, 0.06); }

@media (max-width: 860px) {
  .window-body { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .charts { grid-template-columns: 1fr; }
  .table-head, .table-row { grid-template-columns: 1.4fr 0.7fr 1fr 0.9fr; }
  .table-head span:nth-child(4), .table-row span:nth-child(4) { display: none; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 48px;
}
.trust-kicker {
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-7);
  margin-bottom: 26px;
}
.trust-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-logo {
  display: flex; align-items: center; gap: 9px;
  color: var(--ink-5);
}
.trust-logo svg { fill: var(--ink-7); stroke: var(--ink-7); }
.trust-logo span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.logo-sub { color: var(--ink-7); font-weight: 400; }
.trust-note {
  text-align: center;
  margin: 22px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-8);
  letter-spacing: 0.06em;
}

/* ============================================================
   ACQUIRE
   ============================================================ */
.acquire {
  padding: 72px 0 32px;
}
.acquire-card {
  border: 1px solid var(--line-2);
  background:
    radial-gradient(60% 80% at 20% 30%, rgba(54, 224, 139, 0.06), transparent 60%),
    radial-gradient(50% 70% at 90% 90%, rgba(54, 224, 139, 0.04), transparent 60%),
    var(--bg-2);
  padding: 44px 44px 40px;
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.6);
}
.acquire-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-7);
}
.acquire-title {
  margin: 22px 0 14px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.acquire-sub {
  margin: 0 0 28px;
  color: var(--ink-4);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}
.acquire-sub b { color: var(--ink); font-weight: 600; }
.acquire-sub i { font-style: italic; color: var(--accent-soft); }

.acquire-price {
  display: inline-flex; align-items: baseline; gap: 4px;
  margin-bottom: 28px;
  font-family: var(--mono);
  color: var(--accent);
  position: relative;
}
.acquire-price-d { font-size: 18px; opacity: 0.85; }
.acquire-price-a { font-size: 44px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.acquire-price-f {
  margin-left: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-7);
  align-self: center;
}

.acquire-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  max-width: 560px;
}
.acquire-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--ink-3);
}
.acquire-list li svg {
  width: 14px; height: 14px;
  stroke: var(--accent);
}

@media (max-width: 560px) {
  .acquire-card { padding: 32px 24px; }
  .acquire-list { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: 48px 0 64px;
}
.foot-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.foot-brand .brand { margin-bottom: 14px; }
.foot-tag {
  font-size: 13px;
  color: var(--ink-7);
  max-width: 260px;
  margin: 0;
  line-height: 1.5;
}
.foot-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.foot-col {
  display: flex; flex-direction: column; gap: 11px;
  font-size: 13px;
  color: var(--ink-5);
}
.foot-col a { transition: color .15s; }
.foot-col a:hover { color: var(--ink); }
.foot-col-h {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.disclaimer-final {
  margin: 42px 0 0;
  padding: 22px 24px;
  background: rgba(13, 16, 22, 0.6);
  border: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-5);
}
.disclaimer-final b { color: var(--amber); font-weight: 600; }

.foot-legal {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-8);
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: grid; place-items: center;
  padding: 20px;
  animation: qiFadeIn .18s ease-out;
}
.modal[hidden] { display: none; }

@keyframes qiFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes qiPopIn  { from { opacity: 0; transform: translateY(8px) scale(.985); } to { opacity: 1; transform: none; } }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 6, 9, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: 36px 36px 32px;
  box-shadow: 0 40px 120px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(54, 224, 139, 0.04);
  animation: qiPopIn .22s ease-out;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-5);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}
.modal-close:hover { color: var(--ink); border-color: var(--ink-4); background: var(--bg-4); }

.modal-head { margin-bottom: 22px; }
.modal-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.modal-kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: qiPulse 2s ease-in-out infinite;
}
.modal-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.15;
}
.modal-lede {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-5);
}

.modal-form { display: flex; flex-direction: column; gap: 14px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .modal-card { padding: 28px 22px; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-6);
}
.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-2);
  padding: 11px 13px;
  transition: border-color .15s, background .15s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #050709;
}
.field textarea { min-height: 96px; }
.field-hint {
  font-size: 12px;
  color: var(--ink-7);
  line-height: 1.45;
}
.honeypot {
  position: absolute !important;
  left: -9999px;
}

.modal-submit {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  background: var(--accent);
  color: #04130C;
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform .15s, background .15s;
}
.modal-submit:hover { background: #4cf09b; transform: translateY(-1px); }
.modal-submit:disabled { opacity: 0.6; cursor: progress; transform: none; }

.modal-success,
.modal-error {
  margin: 12px 0 0;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
}
.modal-success {
  color: var(--accent-soft);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
}
.modal-error {
  color: var(--danger);
  background: rgba(255, 92, 92, 0.08);
  border: 1px solid rgba(255, 92, 92, 0.25);
}

body.modal-open { overflow: hidden; }
