/* ==========================================================================
   Recoilz Nodes — Design System
   ========================================================================== */

:root {
  --bg: #05050a;
  --bg-alt: #08080f;
  --bg-elevated: #0e0e18;
  --bg-card: #101018;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f8;
  --text-dim: #a3a3b3;
  --text-dimmer: #6f6f80;
  --accent: #7c5cff;
  --accent-2: #22d3ee;
  --accent-soft: rgba(124, 92, 255, 0.12);
  --gradient: linear-gradient(135deg, #7c5cff 0%, #4f8bff 50%, #22d3ee 100%);
  --gradient-text: linear-gradient(90deg, #b09bff 0%, #7c5cff 40%, #22d3ee 100%);
  --success: #22c55e;
  --danger: #f8555a;
  --warning: #f5b942;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-glow: 0 0 0 1px rgba(124, 92, 255, 0.15), 0 20px 60px -20px rgba(124, 92, 255, 0.35);
  --container: 1200px;
  --font-heading: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 900px 500px at 12% -10%, rgba(124, 92, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 800px 500px at 88% 10%, rgba(34, 211, 238, 0.12), transparent 60%),
    radial-gradient(ellipse 700px 600px at 50% 100%, rgba(124, 92, 255, 0.08), transparent 60%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 1200px 800px at 50% 0%, black, transparent 70%);
  pointer-events: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--text-dim); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gradient);
  color: #06060c;
  box-shadow: 0 8px 30px -8px rgba(124, 92, 255, 0.6);
}
.btn-primary:hover { box-shadow: 0 10px 36px -6px rgba(124, 92, 255, 0.8); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255,255,255,0.3); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px) saturate(140%);
  background: rgba(5, 5, 10, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px -6px rgba(124,92,255,.7);
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-logo {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(124,92,255,.45), 0 6px 22px -6px rgba(124,92,255,.75);
}
.brand-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.brand span.dim { color: var(--text-dim); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border-strong);
  border-radius: 8px; padding: 8px; color: var(--text);
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Home banner ---------- */
.banner-strip { padding: 28px 24px 0; }
.banner-strip .container { padding: 0; }
.banner-strip img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 1920 / 768;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-glow);
  background: var(--bg-elevated);
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 24px 60px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  max-width: 900px;
  margin: 0 auto 20px;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 17.5px;
  color: var(--text-dim);
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note {
  font-size: 13px;
  color: var(--text-dimmer);
  margin-bottom: 64px;
}

/* fake terminal / panel preview */
.hero-visual {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-card));
  box-shadow: var(--shadow-glow), 0 40px 100px -30px rgba(0,0,0,.8);
  overflow: hidden;
  text-align: left;
}
.hero-visual-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.hero-visual-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.hero-visual-bar .label {
  margin-left: 6px;
  font-size: 12.5px;
  color: var(--text-dimmer);
  font-family: monospace;
}
.hero-visual-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
@media (max-width: 720px) { .hero-visual-body { grid-template-columns: 1fr; } }

.term {
  padding: 20px 22px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  color: #b7ffb0;
  border-right: 1px solid var(--border);
}
@media (max-width: 720px) { .term { border-right: none; border-bottom: 1px solid var(--border); } }
.term .l { margin-bottom: 6px; white-space: pre-wrap; }
.term .muted { color: var(--text-dimmer); }
.term .cyan { color: var(--accent-2); }
.term .violet { color: #b09bff; }
.term .cursor { display: inline-block; width: 6px; height: 13px; background: #b7ffb0; vertical-align: middle; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.stat-panel { padding: 20px 22px; display: flex; flex-direction: column; gap: 16px; }
.stat-row { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--text-dim); }
.bar-track { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.06); overflow: hidden; margin-top: 6px; }
.bar-fill { height: 100%; border-radius: 4px; background: var(--gradient); }
.mini-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.mini-stat { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; }
.mini-stat b { display: block; font-family: var(--font-heading); font-size: 16px; }
.mini-stat span { font-size: 11.5px; color: var(--text-dimmer); }

/* ---------- Trust / stats strip ---------- */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 24px;
  text-align: center;
}
@media (max-width: 720px) { .stats-strip .container { grid-template-columns: repeat(2, 1fr); } }
.stat b {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { font-size: 13px; color: var(--text-dim); }

/* ---------- Game pill strip ---------- */
.pill-strip {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  padding: 20px 24px 0;
}
.pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 13.5px; font-weight: 500; color: var(--text-dim);
}

/* ---------- Section ---------- */
.section { padding: 100px 24px; }
.section-tight { padding: 70px 24px; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head p { font-size: 16px; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(124,92,255,0.035) 40%, transparent); }

/* ---------- Feature grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); background: var(--bg-elevated); }

.icon-box {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  border: 1px solid rgba(124,92,255,0.25);
  margin-bottom: 18px;
}
.icon-box svg { width: 22px; height: 22px; stroke: var(--accent-2); }

.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- Showcase (panel / billing) ---------- */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .showcase { grid-template-columns: 1fr; gap: 36px; } }
.showcase.reverse .showcase-visual { order: 2; }
@media (max-width: 900px) { .showcase.reverse .showcase-visual { order: initial; } }

.showcase-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.check-list { display: flex; flex-direction: column; gap: 13px; margin: 24px 0 30px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text-dim); }
.check-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; stroke: var(--success); }

.showcase-visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.sv-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
}
.sv-header .l { display:flex; gap:6px; }
.sv-header .l span { width:9px; height:9px; border-radius:50%; background: rgba(255,255,255,.15); }
.sv-header .url { font-family: monospace; font-size: 12px; color: var(--text-dimmer); }
.sv-body { padding: 18px; }
.sv-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: 10px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); margin-bottom: 10px; font-size: 13px;
}
.sv-row:last-child { margin-bottom: 0; }
.sv-row .name { font-weight: 600; color: var(--text); display:flex; align-items:center; gap:9px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-dot.on { background: var(--success); box-shadow: 0 0 8px var(--success); }
.status-dot.off { background: var(--text-dimmer); }
.tag { font-size: 11px; padding: 3px 9px; border-radius: 999px; border: 1px solid var(--border-strong); color: var(--text-dim); }
.tag.green { color: var(--success); border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.08); }

/* invoice-style rows for billing showcase */
.inv-row { display:flex; align-items:center; justify-content:space-between; padding:12px 14px; border-radius:10px; background: rgba(255,255,255,0.03); border:1px solid var(--border); margin-bottom:10px; }
.inv-row:last-child{ margin-bottom:0; }
.inv-row .name{ font-size:13px; font-weight:600; }
.inv-row .sub{ font-size:11.5px; color: var(--text-dimmer); }
.inv-row .amt{ font-family: var(--font-heading); font-size: 14px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 24px 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.step-num {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--gradient); color: #06060c;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; margin-bottom: 16px;
}
.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { font-size: 14px; margin: 0; }

/* ---------- Pricing ---------- */
.plan-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: 999px; padding: 4px; margin: 0 auto 44px; display: flex; width: fit-content;
}
.plan-toggle button {
  border: none; background: none; color: var(--text-dim);
  font-family: var(--font-heading); font-weight: 600; font-size: 13.5px;
  padding: 9px 20px; border-radius: 999px; transition: all .15s ease;
}
.plan-toggle button.active { background: var(--gradient); color: #06060c; }
.plan-toggle .save { font-size: 10.5px; background: rgba(34,197,94,.15); color: var(--success); padding: 2px 7px; border-radius: 6px; margin-left: 6px; }

.tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.tab-btn {
  border: 1px solid var(--border-strong); background: var(--bg-card); color: var(--text-dim);
  font-family: var(--font-heading); font-weight: 600; font-size: 13.5px;
  padding: 10px 20px; border-radius: 10px;
}
.tab-btn.active { color: #06060c; background: var(--gradient); border-color: transparent; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

.plan {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex; flex-direction: column;
}
.plan.featured {
  border: 1px solid rgba(124,92,255,.5);
  background: linear-gradient(180deg, rgba(124,92,255,.08), var(--bg-card) 40%);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}
@media (max-width: 900px) { .plan.featured { transform: none; } }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #06060c;
  font-family: var(--font-heading); font-weight: 700; font-size: 11px;
  padding: 5px 14px; border-radius: 999px; letter-spacing: .04em;
}
.plan h3 { font-size: 18px; margin-bottom: 6px; }
.plan .desc { font-size: 13.5px; margin-bottom: 20px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan .price b { font-family: var(--font-heading); font-size: 2.6rem; }
.plan .price span { color: var(--text-dimmer); font-size: 13.5px; }
.plan .price-annual { font-size: 12px; color: var(--text-dimmer); margin-bottom: 22px; }
.plan-specs { display: flex; flex-direction: column; gap: 11px; margin: 4px 0 26px; flex: 1; }
.plan-specs li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--text-dim); }
.plan-specs svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; stroke: var(--accent-2); }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; min-width: 680px; }
table.compare th, table.compare td {
  padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 13.5px;
}
table.compare th { font-family: var(--font-heading); color: var(--text-dimmer); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; background: rgba(255,255,255,.02); }
table.compare td:first-child, table.compare th:first-child { color: var(--text); font-weight: 500; }
table.compare tr:last-child td { border-bottom: none; }
table.compare svg.yes { width: 18px; height: 18px; stroke: var(--success); }
table.compare svg.no { width: 18px; height: 18px; stroke: var(--text-dimmer); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; background: none; border: none; color: var(--text);
  font-family: var(--font-heading); font-weight: 600; font-size: 14.5px; text-align: left;
}
.faq-q svg { width: 18px; height: 18px; stroke: var(--text-dim); flex-shrink: 0; transition: transform .2s ease; margin-left: 12px; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 22px 20px; font-size: 14px; color: var(--text-dim); }

/* ---------- Locations / network ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.loc-card .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.loc-card h3 { font-size: 15.5px; margin: 0; }
.loc-card .region { font-size: 12px; color: var(--text-dimmer); margin-top: 2px; }
.loc-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-dim); margin-top: 6px; }

/* ---------- Testimonials ---------- */
.testi { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 18px; }
.testi-stars { display: flex; gap: 3px; }
.testi-stars svg { width: 15px; height: 15px; fill: var(--accent-2); stroke: none; }
.testi p.quote { color: var(--text); font-size: 14.5px; margin: 0; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gradient); flex-shrink: 0; display:flex; align-items:center; justify-content:center; font-family: var(--font-heading); font-weight:700; font-size:13px; color:#06060c;}
.testi-person b { display: block; font-size: 13.5px; }
.testi-person span { font-size: 12px; color: var(--text-dimmer); }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: radial-gradient(ellipse 600px 300px at 50% 0%, rgba(124,92,255,.25), transparent 70%), var(--bg-elevated);
  padding: 64px 40px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 12px; }
.cta-banner p { max-width: 480px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-dim); }
.field input, .field select, .field textarea {
  background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: 10px; padding: 13px 14px; color: var(--text);
  font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.channel-card { display: flex; gap: 16px; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); margin-bottom: 16px; }
.channel-card .icon-box { margin-bottom: 0; flex-shrink: 0; }
.channel-card h3 { font-size: 15px; margin-bottom: 4px; }
.channel-card p { font-size: 13.5px; margin: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 80px 24px 50px; text-align: center; }
.page-hero .eyebrow { }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); max-width: 760px; margin: 0 auto 16px; }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 16px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 64px 24px 30px; background: var(--bg-alt); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; margin-bottom: 50px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 13.5px; max-width: 280px; margin: 14px 0 20px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 13px; color: var(--text-dimmer); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: var(--text-dim); transition: color .15s ease; }
.footer-col a:hover { color: var(--text); }
.footer-col .ext { display: inline-flex; align-items: center; gap: 5px; }
.footer-col .ext svg { width: 12px; height: 12px; }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center; color: var(--text-dim);
}
.social-row a:hover { color: var(--text); border-color: var(--text-dim); }
.social-row svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 12.5px; color: var(--text-dimmer);
}
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--text-dim); }
.status-pill .status-dot.on { width: 7px; height: 7px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Mobile nav ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-ghost.desktop-only { display: none; }
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(5,5,10,0.98);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 6px; font-size: 15px; color: var(--text-dim); border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 12px; }

@media (max-width: 560px) {
  .hero { padding: 70px 20px 40px; }
  .section { padding: 64px 20px; }
  .cta-banner { padding: 44px 24px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 14px 16px; gap: 8px; }
  .brand { font-size: 15px; gap: 7px; flex-shrink: 1; min-width: 0; }
  .brand-mark { width: 29px; height: 29px; flex-shrink: 0; }
  .brand-mark svg { width: 15px; height: 15px; }
  .brand-logo { width: 30px; height: 30px; border-radius: 8px; }
  .banner-strip { padding: 16px 16px 0; }
  .banner-strip img { border-radius: 14px; }
  .nav-actions { gap: 6px; flex-shrink: 0; }
  .nav-actions .btn-sm { padding: 9px 11px; font-size: 12px; }
  .nav-toggle { padding: 6px; }
}
