/* =============================================
   NATBox.io — Main Stylesheet
   Design: Clean professional (Cloudflare-inspired)
   Dark theme, sharp typography, precise spacing
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&family=Syne:wght@600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --bg:         #0a0b0e;
  --bg2:        #0f1117;
  --bg3:        #141720;
  --panel:      #161922;
  --panel2:     #1c2030;
  --border:     rgba(255,255,255,.07);
  --border2:    rgba(255,255,255,.12);

  --text1:      #f0f2f7;
  --text2:      #9ba3b8;
  --text3:      #5a637a;

  --cyan:       #00d4ff;
  --cyan-dim:   rgba(0,212,255,.12);
  --cyan-glow:  rgba(0,212,255,.25);

  --green:      #22c55e;
  --green-dim:  rgba(34,197,94,.12);

  --orange:     #f97316;
  --orange-dim: rgba(249,115,22,.12);

  --red:        #ef4444;
  --red-dim:    rgba(239,68,68,.12);

  --yellow:     #eab308;

  --blue:       #3b82f6;
  --blue-dim:   rgba(59,130,246,.12);

  --white:      #ffffff;

  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:  0 8px 48px rgba(0,0,0,.6);

  --font-body:  'Inter', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', 'Courier New', monospace;
  --font-display: 'Syne', 'Inter', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text1);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ── CONTAINER ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1380px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  background: rgba(10,11,14,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--cyan), #0066cc);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: #fff;
  font-family: var(--font-display);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 6px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--text2);
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text1); background: var(--bg3); }
.nav-links a.active { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-badge {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  color: var(--green); background: var(--green-dim);
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid rgba(34,197,94,.2);
}
.nav-hamburger {
  display: none; background: none; border: 1px solid var(--border2);
  color: var(--text2); padding: 6px 10px; border-radius: 6px; cursor: pointer;
}

/* ── TICKER ── */
.ticker-wrap {
  background: linear-gradient(90deg, transparent, var(--bg2), var(--bg2), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; white-space: nowrap;
  padding: 9px 0; margin-top: 64px;
}
.ticker {
  display: inline-flex; gap: 0;
  animation: ticker-scroll 40s linear infinite;
}
.ticker span {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  color: var(--text3); padding: 0 32px;
}
.ticker span:nth-child(odd) { color: var(--cyan); }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 24px rgba(0,212,255,.2);
}
.btn-primary:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 32px rgba(0,212,255,.4);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--panel2);
  color: var(--text1);
  border: 1px solid var(--border2);
}
.btn-secondary:hover {
  background: var(--bg3);
  border-color: rgba(255,255,255,.2);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg3); color: var(--text1); }
.btn-danger {
  background: var(--red);
  color: #fff;
}
.btn-danger:hover { background: #dc2626; color: #fff; transform: translateY(-1px); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION ── */
.section { padding: 80px 0; }
.section-label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  color: var(--cyan); letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; color: var(--white); letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--text2); line-height: 1.7;
  max-width: 540px;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,255,.06) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.page-hero-title {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; color: var(--white); letter-spacing: -0.04em;
  line-height: 1.1; margin-bottom: 16px;
}
.page-hero-sub {
  font-family: var(--font-mono); font-size: 14px; color: var(--text3);
}

/* ── HERO (HOME) ── */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,212,255,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(0,102,204,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .4;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--green); background: var(--green-dim);
  border: 1px solid rgba(34,197,94,.2);
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;} 50%{opacity:.4;} }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--cyan); }
.hero-title .dim { color: var(--text2); }
.hero-sub {
  font-size: 18px; color: var(--text2); max-width: 520px; line-height: 1.7;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
  color: var(--white); letter-spacing: -0.03em;
}
.hero-stat-num span { color: var(--cyan); }
.hero-stat-label { font-size: 13px; color: var(--text3); margin-top: 2px; }

/* ── PLAN CARDS ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 48px;
}
.plan-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.plan-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.plan-card.popular {
  border-color: rgba(0,212,255,.35);
  background: linear-gradient(135deg, rgba(0,212,255,.05), var(--panel));
  box-shadow: 0 0 40px rgba(0,212,255,.08);
}
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: #000;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  padding: 3px 14px; border-radius: 20px; white-space: nowrap;
  letter-spacing: .08em;
}
.plan-burner-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  padding: 3px 14px; border-radius: 20px; white-space: nowrap;
  letter-spacing: .08em;
}
.plan-icon { font-size: 28px; margin-bottom: 14px; }
.plan-name {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em; margin-bottom: 4px;
}
.plan-tagline {
  font-family: var(--font-mono); font-size: 11px; color: var(--text3);
  margin-bottom: 20px;
}
.plan-price { margin-bottom: 24px; }
.plan-price .currency { font-size: 18px; font-weight: 700; color: var(--text2); vertical-align: top; margin-top: 6px; display: inline-block; }
.plan-price .amount { font-family: var(--font-display); font-size: 44px; font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.plan-price .period { font-size: 13px; color: var(--text3); font-family: var(--font-mono); }
.plan-price.burner .amount { color: var(--orange); }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li {
  font-size: 13.5px; color: var(--text2); display: flex; align-items: center; gap: 9px;
}
.plan-features li::before { content: '✓'; color: var(--cyan); font-weight: 700; font-size: 12px; flex-shrink: 0; }
.plan-features li.burner-feat::before { color: var(--orange); }
.plan-discount-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--green-dim); color: var(--green);
  border: 1px solid rgba(34,197,94,.2);
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px; margin-bottom: 10px;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 48px;
}
.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.feature-desc { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ── TERMINAL ── */
.terminal {
  background: #080b10;
  border: 1px solid rgba(0,212,255,.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,212,255,.05);
}
.terminal-bar {
  background: #0d1117; padding: 12px 16px;
  display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.terminal-dot { width: 11px; height: 11px; border-radius: 50%; }
.terminal-dot.red   { background: #ff5f57; }
.terminal-dot.yellow{ background: #febc2e; }
.terminal-dot.green { background: #28c840; }
.terminal-title { font-family: var(--font-mono); font-size: 12px; color: var(--text3); margin-left: 8px; }
.terminal-body { padding: 20px; font-family: var(--font-mono); font-size: 13px; line-height: 1.8; }
.t-prompt { color: var(--green); }
.t-cmd    { color: var(--white); }
.t-out    { color: var(--text2); }
.t-green  { color: var(--green); }
.t-cyan   { color: var(--cyan); }
.t-yellow { color: var(--yellow); }
.t-red    { color: var(--red); }
.t-cursor { display: inline-block; width: 8px; height: 14px; background: var(--cyan); animation: blink .8s step-end infinite; vertical-align: middle; }
@keyframes blink { 50% { opacity: 0; } }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--text1); text-align: left; gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--white); }
.faq-q .arrow { color: var(--text3); transition: transform .25s; font-size: 12px; flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(180deg); color: var(--cyan); }
.faq-a {
  font-size: 14px; color: var(--text2); line-height: 1.8;
  max-height: 0; overflow: hidden; padding: 0;
  transition: max-height .35s ease, padding .25s;
}
.faq-a.open { max-height: 400px; padding-bottom: 20px; }

/* ── ALERTS ── */
.alert {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; border-radius: var(--radius);
  font-size: 14px; line-height: 1.6;
}
.alert > span:first-child { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: var(--green-dim); border: 1px solid rgba(34,197,94,.25); color: #86efac; }
.alert-error   { background: var(--red-dim);   border: 1px solid rgba(239,68,68,.25);  color: #fca5a5; }
.alert-info    { background: var(--cyan-dim);   border: 1px solid rgba(0,212,255,.2);   color: var(--text2); }
.alert-warning { background: var(--orange-dim); border: 1px solid rgba(249,115,22,.25); color: #fdba74; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text2); margin-bottom: 7px; letter-spacing: .01em;
}
.form-control {
  width: 100%; background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 11px 14px;
  font-size: 14px; color: var(--text1);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus {
  border-color: rgba(0,212,255,.5);
  box-shadow: 0 0 0 3px rgba(0,212,255,.08);
}
.form-control::placeholder { color: var(--text3); }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a637a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-hint { font-size: 12px; color: var(--text3); margin-top: 5px; font-family: var(--font-mono); }
.form-panel {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.form-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.form-sub { font-family: var(--font-mono); font-size: 12px; color: var(--text3); margin-bottom: 28px; }

/* ── CARD ── */
.card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  margin-bottom: 20px;
}
.card-title {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
  display: flex; align-items: center; gap: 9px;
}
.card-sm { padding: 18px 20px; }

/* ── STATS BAR ── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  margin: 48px 0;
}
.stat-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  color: var(--white); letter-spacing: -0.04em; margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: var(--text3); font-family: var(--font-mono); }

/* ── TABLE ── */
.table-wrap { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 14px 20px; text-align: left;
  font-size: 13.5px; border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--bg3); font-family: var(--font-display); font-size: 13px;
  font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: .04em;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,.02); }
.check { color: var(--green); font-weight: 700; }
.cross { color: var(--red); }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 20px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .02em;
}
.badge-green  { background: var(--green-dim);  color: var(--green);  border: 1px solid rgba(34,197,94,.2); }
.badge-red    { background: var(--red-dim);    color: var(--red);    border: 1px solid rgba(239,68,68,.2); }
.badge-yellow { background: rgba(234,179,8,.12); color: var(--yellow); border: 1px solid rgba(234,179,8,.2); }
.badge-cyan   { background: var(--cyan-dim);   color: var(--cyan);   border: 1px solid rgba(0,212,255,.2); }
.badge-orange { background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(249,115,22,.2); }
.badge-gray   { background: var(--bg3);        color: var(--text3);  border: 1px solid var(--border); }

/* ── LEGAL ── */
.legal-content { max-width: 760px; margin: 0 auto; padding: 48px 0; }
.legal-content h2 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--white); margin: 40px 0 12px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { font-size: 14.5px; color: var(--text2); line-height: 1.85; margin-bottom: 14px; }
.legal-content ul { margin: 12px 0 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-content ul li { font-size: 14px; color: var(--text2); line-height: 1.7; list-style: disc; }
.legal-content code { font-family: var(--font-mono); font-size: 12px; color: var(--cyan); background: var(--bg3); padding: 2px 7px; border-radius: 4px; }

/* ── ORDER ── */
.order-section { padding: 40px 0 100px; }
.order-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.plan-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.plan-option { position: relative; }
.plan-option input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.plan-option label {
  display: block; cursor: pointer;
  background: var(--bg3); border: 2px solid var(--border);
  border-radius: 10px; padding: 14px;
  transition: border-color .2s, background .2s;
}
.plan-option input:checked + label {
  border-color: var(--cyan);
  background: var(--cyan-dim);
}
.plan-option label:hover { border-color: var(--border2); }
.opt-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.opt-price { font-family: var(--font-mono); font-size: 13px; color: var(--cyan); margin-bottom: 4px; }
.opt-spec { font-family: var(--font-mono); font-size: 11px; color: var(--text3); }
.billing-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 4px; overflow: hidden; }
.billing-toggle label {
  cursor: pointer; padding: 9px 12px; border-radius: 6px;
  text-align: center; font-size: 13px; font-weight: 600; color: var(--text2);
  transition: all .2s;
}
.billing-toggle input:checked + label { background: var(--panel); color: var(--white); }
.price-display {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px; margin-bottom: 20px;
  text-align: center;
}
.price-display .big-price {
  font-family: var(--font-display); font-size: 48px; font-weight: 800;
  color: var(--white); letter-spacing: -0.04em; line-height: 1;
}
.price-display .price-note { font-family: var(--font-mono); font-size: 12px; color: var(--text3); margin-top: 6px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ── REPORT ── */
.report-wrap { max-width: 780px; margin: 0 auto; padding: 48px 24px 100px; }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-desc {
  font-size: 14px; color: var(--text3); line-height: 1.8;
  margin: 12px 0 20px;
}
.footer-col-title {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--text3); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text2); transition: color .2s; }
.footer-links a:hover { color: var(--text1); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom-left { font-family: var(--font-mono); font-size: 12px; color: var(--text3); }
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a { font-size: 13px; color: var(--text3); transition: color .2s; }
.footer-bottom-right a:hover { color: var(--text2); }

/* ── DASHBOARD ── */
.dash-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.dash-sidebar {
  background: var(--bg2); border-right: 1px solid var(--border);
  padding: 24px 16px; position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.dash-sidebar-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  color: var(--white); margin-bottom: 32px; padding: 0 8px;
}
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav a, .dash-nav button {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text2);
  transition: all .2s; cursor: pointer;
  background: none; border: none; width: 100%; text-align: left;
}
.dash-nav a:hover, .dash-nav button:hover { background: var(--bg3); color: var(--text1); }
.dash-nav a.active { background: var(--cyan-dim); color: var(--cyan); border: 1px solid rgba(0,212,255,.15); }
.dash-nav .icon { font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }
.dash-nav .section-label {
  font-family: var(--font-mono); font-size: 10px; color: var(--text3);
  padding: 16px 12px 6px; text-transform: uppercase; letter-spacing: .1em;
}
.dash-main { padding: 32px; overflow-y: auto; }
.dash-header { margin-bottom: 32px; }
.dash-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.dash-sub { font-size: 14px; color: var(--text3); margin-top: 4px; }
.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 32px; }
.kpi-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
}
.kpi-label { font-family: var(--font-mono); font-size: 12px; color: var(--text3); margin-bottom: 10px; }
.kpi-value { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--white); letter-spacing: -0.03em; }
.kpi-change { font-family: var(--font-mono); font-size: 12px; margin-top: 6px; }
.kpi-change.up { color: var(--green); }
.kpi-change.down { color: var(--red); }

/* ── ADMIN TABLE ── */
.admin-table-wrap { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: var(--bg3); padding: 12px 16px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--text3); text-transform: uppercase; letter-spacing: .06em;
  text-align: left; white-space: nowrap;
}
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--text2); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,.02); }
.admin-table td .name { font-weight: 600; color: var(--text1); font-size: 14px; }
.admin-table td .mono { font-family: var(--font-mono); font-size: 12px; }

/* ── TABS ── */
.tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 28px; gap: 0; }
.tab-btn {
  padding: 12px 20px; background: none; border: none; cursor: pointer;
  font-size: 14px; font-weight: 500; color: var(--text3);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all .2s;
}
.tab-btn:hover { color: var(--text2); }
.tab-btn.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── TICKET ── */
.ticket-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  margin-bottom: 16px; cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.ticket-card:hover { border-color: var(--border2); transform: translateX(2px); }
.ticket-card.open   { border-left: 3px solid var(--cyan); }
.ticket-card.pending { border-left: 3px solid var(--yellow); }
.ticket-card.closed  { border-left: 3px solid var(--text3); }
.ticket-id { font-family: var(--font-mono); font-size: 11px; color: var(--text3); }
.ticket-subject { font-size: 15px; font-weight: 600; color: var(--white); margin: 4px 0 8px; }
.ticket-meta { font-family: var(--font-mono); font-size: 12px; color: var(--text3); }
.ticket-message {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px; margin-bottom: 12px;
}
.ticket-message.admin-msg { background: rgba(0,212,255,.05); border-color: rgba(0,212,255,.1); }
.ticket-msg-author { font-family: var(--font-mono); font-size: 11px; color: var(--text3); margin-bottom: 6px; }
.ticket-msg-body { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 48px; }
.blog-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.blog-card-img { height: 180px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-card-body { padding: 24px; }
.blog-card-cat { font-family: var(--font-mono); font-size: 11px; color: var(--cyan); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.blog-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.35; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 13.5px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.blog-card-meta { font-family: var(--font-mono); font-size: 12px; color: var(--text3); display: flex; gap: 16px; }

/* ── HOW IT WORKS ── */
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; }
.how-step {
  padding: 32px 24px; position: relative;
  border-right: 1px solid var(--border);
}
.how-step:last-child { border-right: none; }
.how-step-num {
  font-family: var(--font-display); font-size: 56px; font-weight: 800;
  color: rgba(0,212,255,.07); letter-spacing: -0.05em; line-height: 1;
  position: absolute; top: 16px; right: 20px;
}
.how-step-icon { font-size: 28px; margin-bottom: 16px; }
.how-step-title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.how-step-desc { font-size: 13.5px; color: var(--text2); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .order-grid { grid-template-columns: 1fr; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .section { padding: 60px 0; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .plan-selector { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .billing-toggle { font-size: 12px; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.gap-sm { gap: 8px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
