/* ============================================================
   VPSFairy - stylesheet
   Dark "cyber-fairy" theme: ink background, violet/cyan/fuchsia
   accents, Syne (display), Manrope (body), Fira Code (mono/logo).
   ============================================================ */

:root {
  --ink: #0d0b14;
  --ink-2: #100e18;
  --surface: #171225;
  --surface-2: #1d1830;
  --surface-border: #2c2440;
  --violet: #a855f7;
  --violet-soft: #c084fc;
  --cyan: #22d3ee;
  --cyan-soft: #67e8f9;
  --fuchsia: #f472b6;
  --text: #ede9fe;
  --text-dim: #b5aed1;
  --text-faint: #8479a3;
  --line: #2a2440;
  --ok: #34d399;
  --warn: #fbbf24;
  --display: 'Syne', sans-serif;
  --body: 'Manrope', sans-serif;
  --mono: 'Fira Code', monospace;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-glow: 0 0 0 1px rgba(168,85,247,0.15), 0 20px 60px -20px rgba(168,85,247,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 400px at 12% -5%, rgba(168,85,247,0.16), transparent 60%),
    radial-gradient(600px 380px at 100% 0%, rgba(34,211,238,0.12), transparent 55%),
    radial-gradient(800px 500px at 50% 110%, rgba(244,114,182,0.08), transparent 60%),
    var(--ink);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; }
p { margin: 0; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

h1 { font-size: 44px; }
h2 { font-size: 32px; }
h3 { font-size: 21px; }
h4 { font-size: 17px; }

.grad-text {
  background: linear-gradient(90deg, var(--violet-soft), var(--cyan-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

code, .mono { font-family: var(--mono); }

/* ---- status strip ---- */
.status-strip {
  background: #0a0912;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-faint);
}
.status-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px rgba(52,211,153,0.7);
  margin-right: 7px;
}
.status-strip a { color: var(--cyan-soft); }
.status-strip a:hover { text-decoration: underline; }

/* ---- topbar ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13,11,20,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  flex-shrink: 0;
}
.brand .fairy { color: var(--cyan-soft); }
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; }
.foot-brand .brand { font-size: 21px; }
.foot-brand .brand-mark { width: 34px; height: 34px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dim);
  flex: 1;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--cyan-soft); }

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

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.bars { display: flex; flex-direction: column; gap: 4px; width: 20px; }
.bars span { display: block; height: 2px; background: var(--text); border-radius: 2px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 8px 15px; font-size: 13.5px; }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-grad {
  background: linear-gradient(90deg, var(--violet), var(--fuchsia));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(168,85,247,0.6);
}
.btn-grad:hover { box-shadow: 0 12px 30px -8px rgba(168,85,247,0.75); }

.btn-cyan {
  background: linear-gradient(90deg, var(--cyan), #38bdf8);
  color: #06141a;
  box-shadow: 0 8px 24px -8px rgba(34,211,238,0.5);
}

.btn-outline {
  background: transparent;
  border-color: var(--surface-border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--violet-soft); color: var(--violet-soft); }

.btn-ghost {
  background: var(--surface);
  border-color: var(--surface-border);
  color: var(--text-dim);
}
.btn-ghost:hover { color: var(--text); }

/* ---- eyebrow / badges ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan-soft);
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.25);
  padding: 6px 13px;
  border-radius: 999px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan-soft);
  box-shadow: 0 0 6px rgba(34,211,238,0.8);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  color: var(--text-dim);
}
.tag.tag-violet { color: var(--violet-soft); border-color: rgba(168,85,247,0.35); background: rgba(168,85,247,0.1); }
.tag.tag-cyan { color: var(--cyan-soft); border-color: rgba(34,211,238,0.35); background: rgba(34,211,238,0.1); }
.tag.tag-fuchsia { color: var(--fuchsia); border-color: rgba(244,114,182,0.35); background: rgba(244,114,182,0.1); }

/* ---- page banner ---- */
.page-banner {
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--line);
}
.page-banner .breadcrumb {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.page-banner .breadcrumb a:hover { color: var(--cyan-soft); }
.page-banner h1 { margin: 14px 0 14px; font-size: 40px; max-width: 760px; }
.page-banner .lead { font-size: 17px; color: var(--text-dim); max-width: 640px; }

/* ---- hero ---- */
.hero {
  padding: 76px 0 60px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: 50px; margin: 18px 0 18px; }
.hero .lead { font-size: 18px; color: var(--text-dim); max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stats .stat-num { font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--text); }
.hero-stats .stat-label { font-size: 12.5px; color: var(--text-faint); font-family: var(--mono); }

/* ---- hero mini configurator preview card ---- */
.hero-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-glow);
}
.hero-card .hc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.hero-card .hc-head span { font-family: var(--mono); font-size: 12.5px; color: var(--text-faint); }
.hero-card .hc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed var(--surface-border);
  font-size: 14px;
}
.hero-card .hc-row:last-of-type { border-bottom: none; }
.hero-card .hc-row .hc-label { color: var(--text-dim); }
.hero-card .hc-row .hc-val { font-family: var(--mono); font-weight: 600; color: var(--text); }
.hero-card .hc-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.hero-card .hc-total .tl { font-size: 13px; color: var(--text-faint); }
.hero-card .hc-total .tv { font-family: var(--display); font-size: 28px; font-weight: 700; color: var(--cyan-soft); }

/* ---- sections ---- */
section { padding: 64px 0; }
.section-head { max-width: 620px; margin-bottom: 40px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--text-dim); font-size: 15.5px; }
.section-alt { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---- cards / grids ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 24px;
}
.card:hover { border-color: rgba(168,85,247,0.35); }

.feat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(168,85,247,0.12);
  color: var(--violet-soft);
  margin-bottom: 16px;
}
.feat-icon svg { width: 20px; height: 20px; }
.feat-icon.cyan { background: rgba(34,211,238,0.12); color: var(--cyan-soft); }
.feat-icon.fuchsia { background: rgba(244,114,182,0.12); color: var(--fuchsia); }

.card h3 { margin-bottom: 9px; }
.card p { color: var(--text-dim); font-size: 14.5px; }

/* ---- hypervisor compare ---- */
.hv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hv-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  padding: 30px;
}
.hv-card.rec { border-color: rgba(34,211,238,0.4); box-shadow: 0 0 0 1px rgba(34,211,238,0.15); }
.hv-card .hv-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.hv-card .hv-head h3 { font-size: 24px; font-family: var(--display); }
.hv-list { margin: 20px 0 0; padding: 0; list-style: none; }
.hv-list li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-dim);
}
.hv-list li:last-child { border-bottom: none; }
.hv-list li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--ok); }

.compare-table-wrap { overflow-x: auto; margin-top: 36px; }
table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
table.compare th, table.compare td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}
table.compare th { font-family: var(--mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-faint); font-weight: 500; }
table.compare td { color: var(--text-dim); }
table.compare td:first-child { color: var(--text); font-weight: 600; }
table.compare tr:last-child td { border-bottom: none; }

/* ---- pricing / presets ---- */
.preset-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.preset-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.preset-card.pop { border-color: rgba(168,85,247,0.45); box-shadow: var(--shadow-glow); position: relative; }
.preset-card .pop-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--violet), var(--fuchsia));
  color: #fff; font-family: var(--mono); font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; white-space: nowrap;
}
.preset-card .pc-name { font-family: var(--display); font-size: 19px; font-weight: 700; }
.preset-card .pc-price { font-family: var(--mono); font-size: 30px; font-weight: 700; color: var(--cyan-soft); }
.preset-card .pc-price span { font-size: 13px; color: var(--text-faint); font-weight: 400; }
.preset-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: var(--text-dim); }
.preset-card ul li { display: flex; gap: 8px; align-items: flex-start; }
.preset-card ul li svg { width: 14px; height: 14px; margin-top: 3px; flex-shrink: 0; color: var(--violet-soft); }

/* ---- configurator ---- */
.configurator {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}
.config-panel {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  padding: 30px;
}
.config-block { margin-bottom: 30px; }
.config-block:last-child { margin-bottom: 0; }
.config-block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.config-block-head h4 { font-size: 15px; }
.config-block-head .cb-val { font-family: var(--mono); font-size: 14px; color: var(--cyan-soft); font-weight: 600; }
.config-block .cb-hint { font-size: 12.5px; color: var(--text-faint); margin-top: 8px; }

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--surface-2);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(168,85,247,0.5);
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  border: 2px solid #fff;
  cursor: pointer;
}

.seg-group { display: flex; gap: 10px; flex-wrap: wrap; }
.seg-opt {
  flex: 1;
  min-width: 120px;
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.seg-opt:hover { border-color: rgba(168,85,247,0.4); }
.seg-opt.selected {
  border-color: var(--violet-soft);
  background: rgba(168,85,247,0.1);
}
.seg-opt .so-name { font-weight: 700; font-size: 14.5px; margin-bottom: 3px; }
.seg-opt .so-desc { font-size: 12px; color: var(--text-faint); }
.seg-opt .so-price { font-family: var(--mono); font-size: 12px; color: var(--cyan-soft); margin-top: 6px; }

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.toggle-row:last-child { border-bottom: none; }
.toggle-row .tr-name { font-weight: 600; font-size: 14.5px; }
.toggle-row .tr-desc { font-size: 12.5px; color: var(--text-faint); margin-top: 3px; }
.toggle-row .tr-price { font-family: var(--mono); font-size: 12.5px; color: var(--text-dim); margin-left: auto; margin-right: 14px; white-space: nowrap; }

.switch { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute; inset: 0;
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.switch .slider::before {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 2px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: transform 0.15s ease, background 0.15s ease;
}
.switch input:checked + .slider { background: rgba(168,85,247,0.35); border-color: var(--violet-soft); }
.switch input:checked + .slider::before { transform: translateX(18px); background: var(--violet-soft); }

.stepper { display: flex; align-items: center; gap: 12px; }
.stepper button {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1px solid var(--surface-border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.stepper button:hover { border-color: var(--violet-soft); }
.stepper .step-val { font-family: var(--mono); font-weight: 600; min-width: 20px; text-align: center; }

select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 14.5px;
  cursor: pointer;
}

.billing-toggle {
  display: inline-flex;
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.billing-toggle button {
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}
.billing-toggle button.active {
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  color: #0a0912;
}

/* ---- summary sidebar (configurator + checkout) ---- */
.summary-panel {
  position: sticky;
  top: 84px;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-glow);
}
.summary-panel h4 { font-family: var(--mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); margin-bottom: 18px; }
.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 13.5px;
  color: var(--text-dim);
  border-bottom: 1px dashed var(--surface-border);
}
.sum-row:last-of-type { border-bottom: none; }
.sum-row .sr-val { font-family: var(--mono); color: var(--text); font-weight: 600; }
.summary-panel .sum-total {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--surface-border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.summary-panel .sum-total .stl { font-size: 13px; color: var(--text-faint); }
.summary-panel .sum-total .stv { font-family: var(--display); font-size: 30px; font-weight: 700; color: var(--cyan-soft); }
.summary-panel .sum-sub { font-size: 12px; color: var(--text-faint); margin-top: 4px; }

/* ---- checkout stepper ---- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-faint);
}
.checkout-steps .cs-step { display: flex; align-items: center; gap: 8px; }
.checkout-steps .cs-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.checkout-steps .cs-step.active { color: var(--text); }
.checkout-steps .cs-step.active .cs-num { border-color: var(--cyan-soft); color: var(--cyan-soft); }
.checkout-steps .cs-line { width: 26px; height: 1px; background: var(--surface-border); }

.order-recap {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 22px;
}
.order-recap .or-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 13.5px; color: var(--text-dim); }
.order-recap .or-row .or-val { color: var(--text); font-family: var(--mono); }

.pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 18px 0 8px; }
.pay-option {
  border: 1px solid var(--surface-border);
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pay-option.selected { border-color: var(--violet-soft); background: rgba(168,85,247,0.09); }
.pay-option input { margin-top: 3px; accent-color: var(--violet); }
.pay-option .po-name { font-weight: 700; font-size: 14.5px; }
.pay-option .po-desc { font-size: 12px; color: var(--text-faint); margin-top: 3px; }

.pay-details {
  display: none;
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin: 4px 0 18px;
  font-size: 13.5px;
}
.pay-details.open { display: block; }
.pay-details .pd-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--surface-border); }
.pay-details .pd-row:last-child { border-bottom: none; }
.pay-details .pd-row span:last-child { font-family: var(--mono); color: var(--cyan-soft); font-weight: 600; }
.pay-details .pd-note { color: var(--text-faint); font-size: 12px; margin-top: 10px; }

.crypto-addr {
  font-family: var(--mono);
  font-size: 12px;
  word-break: break-all;
  background: var(--ink-2);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--cyan-soft);
  margin-top: 6px;
}

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dim); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--surface-border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 14.5px;
}
.field input:focus, .field textarea:focus, select:focus { outline: none; border-color: var(--violet-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.note-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--text);
}
.note-box svg { width: 18px; height: 18px; color: var(--ok); flex-shrink: 0; margin-top: 1px; }
.note-box.warn { background: rgba(251,191,36,0.08); border-color: rgba(251,191,36,0.3); }
.note-box.warn svg { color: var(--warn); }

/* ---- checkout thank-you page ---- */
.thank-you-panel {
  max-width: 620px;
  margin: 48px auto 0;
  text-align: center;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(52,211,153,0.35);
  border-radius: 20px;
  padding: 56px 40px;
  box-shadow: 0 0 0 1px rgba(52,211,153,0.12), 0 20px 60px -20px rgba(52,211,153,0.3);
}
.thank-you-panel .ty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(52,211,153,0.14);
  border: 1px solid rgba(52,211,153,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.thank-you-panel .ty-icon svg { width: 30px; height: 30px; color: var(--ok); }
.thank-you-panel .eyebrow { color: var(--ok); background: rgba(52,211,153,0.08); border-color: rgba(52,211,153,0.25); }
.thank-you-panel .eyebrow .dot { background: var(--ok); box-shadow: 0 0 6px rgba(52,211,153,0.8); }
.thank-you-panel h2 { margin-bottom: 14px; }
.thank-you-panel p { color: var(--text-dim); font-size: 15px; margin-bottom: 10px; }
.thank-you-panel .ty-ref { font-family: var(--mono); color: var(--cyan-soft); font-weight: 600; }
.thank-you-panel .ty-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- team / about ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.team-card .av-lg {
  width: 58px; height: 58px;
  border-radius: 14px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #0a0912;
}
.team-card .av-lg svg { width: 28px; height: 28px; }
.team-card h3.role-title { font-family: var(--mono); font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--cyan-soft); margin-bottom: 10px; }
.team-card p { color: var(--text-dim); font-size: 13.5px; }

/* ---- testimonial / stat strip ---- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-strip .ss-num { font-family: var(--display); font-size: 32px; font-weight: 700; }
.stat-strip .ss-label { font-size: 12.5px; color: var(--text-faint); font-family: var(--mono); margin-top: 6px; }

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item h4 { font-size: 15.5px; margin-bottom: 8px; }
.faq-item p { color: var(--text-dim); font-size: 14px; }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(120deg, rgba(168,85,247,0.16), rgba(34,211,238,0.12));
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--text-dim); max-width: 480px; margin: 0 auto 26px; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- footer ---- */
footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: 56px 0 26px; margin-top: 40px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 36px; }
.foot-brand p { color: var(--text-faint); font-size: 13.5px; margin: 16px 0 18px; max-width: 300px; }
.foot-status { display: flex; align-items: center; font-size: 13px; color: var(--text-dim); margin-bottom: 14px; }
.foot-contact { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; }
.foot-contact a:hover { color: var(--cyan-soft); }
.foot-col h5 { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); margin-bottom: 14px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul li a { font-size: 13.5px; color: var(--text-dim); }
.foot-col ul li a:hover { color: var(--cyan-soft); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--text-faint);
  font-family: var(--mono);
}
.foot-bottom span:last-child a { margin-left: 16px; }
.foot-bottom span:last-child a:hover { color: var(--cyan-soft); }

/* ---- legal pages ---- */
.legal-body { max-width: 760px; }
.legal-body h2 { margin: 36px 0 14px; font-size: 22px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: var(--text-dim); font-size: 15px; margin-bottom: 14px; }
.legal-body ul { color: var(--text-dim); font-size: 15px; padding-left: 22px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 8px; }
.legal-body .updated { font-family: var(--mono); font-size: 12.5px; color: var(--text-faint); margin-bottom: 30px; }

/* ---- contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius); padding: 18px 20px; }
.contact-card .cc-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(168,85,247,0.12); color: var(--violet-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .cc-icon svg { width: 18px; height: 18px; }
.contact-card h4 { margin-bottom: 4px; }
.contact-card p { font-size: 13.5px; color: var(--text-dim); }
.contact-card a { color: var(--cyan-soft); }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .hero-grid, .configurator, .checkout-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .grid-4, .preset-grid, .team-grid, .hv-grid, .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .summary-panel { position: static; }
}
@media (max-width: 640px) {
  h1 { font-size: 32px; }
  .hero h1 { font-size: 32px; }
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .grid-3, .grid-2, .grid-4, .preset-grid, .team-grid, .hv-grid, .stat-strip, .pay-options, .field-row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
  .page-banner h1 { font-size: 30px; }
  .cta-band { padding: 32px 22px; }
}

/* ---- mobile nav open state ---- */
@media (max-width: 640px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px;
    gap: 16px;
  }
}
