/* =========================================================
   MONOLITH — Design System v1.1
   Tech/Futurista · Neon + Dark · Terminal vibes
   ========================================================= */

:root {
  /* Core palette (from DS) */
  --orange: #ff6b00;
  --orange-soft: #ff8c33;
  --teal: #00c9a7;
  --blue: #3d9cf5;
  --amber: #ffaa00;
  --purple: #c77dff;

  /* Dark (default) */
  --bg: #0c0e0f;
  --bg-2: #0f1113;
  --surface: #141618;
  --surface-2: #1c1f21;
  --surface-3: #24282b;
  --text: #f0ede8;
  --muted: #7a7870;
  --border: #2a2d30;
  --border-hi: #3a3e42;

  /* Accent (current) — changes via tweaks */
  --accent: var(--orange);
  --accent-rgb: 255, 107, 0;

  /* Per-service accents */
  --c-3d: #ff6b00;       --c-3d-rgb: 255,107,0;
  --c-web: #3d9cf5;      --c-web-rgb: 61,156,245;
  --c-social: #c77dff;   --c-social-rgb: 199,125,255;
  --c-ok: #00c9a7;       --c-ok-rgb: 0,201,167;
  --c-warn: #ffaa00;     --c-warn-rgb: 255,170,0;

  /* Neon intensity (0 = off → 1 = intense) */
  --neon: 0.5;

  /* Type */
  --f-display: "Bebas Neue", "Oswald", sans-serif;
  --f-mono: "JetBrains Mono", "Space Mono", ui-monospace, monospace;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Scale */
  --radius: 4px;
  --radius-lg: 8px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(0,0,0,.3);
  --shadow-md: 0 10px 30px rgba(0,0,0,.4);
}

/* Light mode */
html[data-theme="light"] {
  --bg: #f5f3ee;
  --bg-2: #ebe8e1;
  --surface: #ffffff;
  --surface-2: #f0ede5;
  --surface-3: #e4e0d6;
  --text: #14161a;
  --muted: #6a6860;
  --border: #d7d3c8;
  --border-hi: #b8b3a4;
  --neon: 0.15;
}

/* Variant: sober (less neon, more editorial) */
html[data-variant="sober"] {
  --neon: 0.2;
}
html[data-variant="bold"] {
  --neon: 0.7;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--accent); color: #000; }

/* ===== TYPE ===== */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
}
.mono {
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
}
.label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
}
.section-head .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.section-head .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  backdrop-filter: blur(12px);
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.04em;
}
.nav-logo .logo-mark {
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  position: relative;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::before {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s;
}
.nav-links a:hover::before { width: 100%; }

.nav-theme-toggle {
  display: flex;
  gap: 4px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px 6px;
}
.theme-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.theme-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.theme-btn:not(.active) {
  opacity: 0.4;
}
.theme-btn.active {
  background: var(--accent);
  color: white;
}

.nav-cta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius);
  transition: all .25s;
}
.nav-cta:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 calc(24px * var(--neon)) rgba(var(--accent-rgb), calc(var(--neon) * 0.8));
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: var(--orange-soft);
  box-shadow: 0 0 calc(32px * var(--neon)) rgba(var(--accent-rgb), calc(var(--neon) * 0.9));
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border-hi);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-lg { padding: 18px 32px; font-size: 13px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  background: var(--surface);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(64px, 9vw, 144px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.005em;
  margin-bottom: 28px;
}
.hero-title .neon {
  color: var(--accent);
  text-shadow:
    0 0 calc(10px * var(--neon)) rgba(var(--accent-rgb), calc(var(--neon) * 0.8)),
    0 0 calc(30px * var(--neon)) rgba(var(--accent-rgb), calc(var(--neon) * 0.5)),
    0 0 calc(60px * var(--neon)) rgba(var(--accent-rgb), calc(var(--neon) * 0.3));
}
.hero-title .glitch {
  position: relative;
  display: inline-block;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 560px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--f-display);
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
}
.stat-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Terminal window (hero right side) */
.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--f-mono);
  font-size: 13px;
  box-shadow: var(--shadow-md), 0 0 calc(40px * var(--neon)) rgba(var(--accent-rgb), calc(var(--neon) * 0.15));
}
.terminal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.t-dots { display: flex; gap: 6px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-hi); }
.t-dot.r { background: #ff5f56; }
.t-dot.y { background: #ffbd2e; }
.t-dot.g { background: #27c93f; }
.t-title {
  flex: 1;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.terminal-body {
  padding: 20px 18px;
  min-height: 340px;
  line-height: 1.7;
}
.t-line { display: block; }
.t-prompt { color: var(--teal); }
.t-dim { color: var(--muted); }
.t-accent { color: var(--accent); }
.t-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--accent);
  vertical-align: -2px;
  margin-left: 2px;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ===== MARQUEE ===== */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg-2);
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: scroll 35s linear infinite;
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .sep { color: var(--accent); font-size: 20px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .3s;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4), 0 0 calc(40px * var(--neon)) rgba(var(--service-rgb, var(--accent-rgb)), calc(var(--neon) * 0.2));
}
.service-card:hover::before { transform: scaleX(1); }

.s-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
}
.s-num .tag {
  padding: 3px 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
}
.service-card.feat .s-num .tag {
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.4);
  background: rgba(var(--accent-rgb), 0.08);
}
.s-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--accent);
  background: var(--bg-2);
}
.s-title {
  font-family: var(--f-display);
  font-size: 36px;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.s-desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.s-list {
  list-style: none;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s-list li {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.s-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Service Card Colors */
.services-grid .service-card:nth-child(1) { --service-color: var(--c-3d); --service-rgb: var(--c-3d-rgb); }
.services-grid .service-card:nth-child(2) { --service-color: var(--c-web); --service-rgb: var(--c-web-rgb); }
.services-grid .service-card:nth-child(3) { --service-color: var(--c-social); --service-rgb: var(--c-social-rgb); }

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--service-color, var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s;
}

.service-card .s-icon {
  color: var(--service-color, var(--accent));
  border-color: rgba(var(--service-rgb, var(--accent-rgb)), 0.3);
  background: rgba(var(--service-rgb, var(--accent-rgb)), 0.08);
}

.service-card .s-list li::before {
  color: var(--service-color, var(--accent));
}

/* ===== PROCESS ===== */
.process-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.process-rail {
  position: sticky;
  top: 120px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.8;
}
.process-rail .cmd {
  color: var(--teal);
  margin-bottom: 8px;
}
.process-rail .out {
  color: var(--text);
  margin-bottom: 2px;
}

.process-steps {
  display: flex;
  flex-direction: column;
}
.step {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: start;
  transition: background .3s;
}
.step:last-child { border-bottom: 1px solid var(--border); }
.step:hover { background: var(--surface); }
.step:hover .step-num { color: var(--accent); }
.step-num {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1;
  color: var(--muted);
  transition: color .3s;
}
.step-title {
  font-family: var(--f-display);
  font-size: 32px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.step-desc {
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
}
.step-time {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: var(--radius);
  background: rgba(var(--accent-rgb), 0.05);
  white-space: nowrap;
}

/* ===== PLANS ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
.plan:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
}
.plan.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.04) 0%, var(--surface) 40%);
  box-shadow: 0 0 calc(60px * var(--neon)) rgba(var(--accent-rgb), calc(var(--neon) * 0.15));
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--accent);
  color: #000;
  border-radius: var(--radius);
}
.plan-name {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.plan-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.plan-currency {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--muted);
}
.plan-amount {
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.005em;
}
.plan.featured .plan-amount { color: var(--accent); }
.plan-period {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
}
.plan-desc {
  color: var(--muted);
  font-size: 14px;
  padding: 20px 0 24px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 24px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.plan-features li::before {
  content: "+";
  color: var(--accent);
  font-family: var(--f-mono);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-features li.off { color: var(--muted); }
.plan-features li.off::before { content: "–"; color: var(--muted); }
.plan .btn { margin-top: auto; justify-content: center; }

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.testi::before {
  content: """;
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 84px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
}
.testi-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
}
.testi-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--accent);
}
.testi-name {
  font-weight: 500;
  font-size: 14px;
}
.testi-role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.testi-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.testi-text { margin-top: 40px; }

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.contact-info p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 440px;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ch {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: all .25s;
}
.ch:last-child { border-bottom: none; }
.ch:hover { background: var(--surface-2); color: var(--accent); }
.ch-ico {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.ch-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ch-val {
  font-family: var(--f-mono);
  font-size: 15px;
  margin-top: 2px;
  color: var(--text);
}
.ch:hover .ch-val { color: var(--accent); }

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 15px;
  transition: all .2s;
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--f-mono); font-size: 13px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}
.chip:hover { color: var(--text); border-color: var(--border-hi); }
.chip.active {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: var(--accent);
  color: var(--accent);
}
.form-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.form-note {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
  letter-spacing: 0.06em;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--text); font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--accent); }
.footer-brand .display {
  font-size: 48px;
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.footer-bottom .sys {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== TWEAKS PANEL ===== */
.tweaks {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 280px;
  box-shadow: var(--shadow-md);
  display: none;
  font-family: var(--f-mono);
  font-size: 12px;
}
.tweaks.open { display: block; }
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.tweaks-head b {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}
.tweaks-head .close {
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
}
.tweaks-group {
  margin-bottom: 16px;
}
.tweaks-group .g-lbl {
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 10px;
  margin-bottom: 8px;
}
.tweaks-seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--bg-2);
  padding: 3px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.tweaks-seg button {
  padding: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 3px;
  cursor: pointer;
  transition: all .2s;
}
.tweaks-seg button.active {
  background: var(--accent);
  color: #000;
}
.tweaks-colors {
  display: flex;
  gap: 8px;
}
.tweaks-colors button {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: all .2s;
}
.tweaks-colors button.active {
  border-color: var(--text);
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .terminal { max-width: 520px; }
  .services-grid, .plans-grid, .testi-grid { grid-template-columns: 1fr; }
  .process-wrap { grid-template-columns: 1fr; }
  .process-rail { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container, .nav, .hero { padding-left: 24px; padding-right: 24px; }
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: clamp(32px, 8vw, 64px); }
  .section-head h2 { font-size: clamp(32px, 6vw, 56px); }
  .marquee-track { font-size: 18px; gap: 24px; }
  .marquee-track span { gap: 24px; }
}
@media (max-width: 480px) {
  .container, .nav, .hero { padding-left: 16px; padding-right: 16px; }
  .section { padding: 48px 0; }
  .nav { padding: 14px 16px; }
  .nav-logo { font-size: 18px; gap: 8px; }
  .nav-cta { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(24px, 5vw, 40px); }
  .hero-title { font-size: clamp(28px, 7vw, 48px); margin-bottom: 16px; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn, .btn-lg { padding: 12px 20px; font-size: 11px; }
  .hero-stats { grid-template-columns: 1fr; gap: 24px; }
  .stat-num { font-size: 32px; }
  .terminal { max-width: 100%; min-height: 260px; }
  .marquee-track { font-size: 14px; gap: 16px; }
  .marquee-track span { gap: 16px; }
  .s-title { font-size: 24px; }
  .s-desc { font-size: 13px; }
  .plan-name { font-size: 24px; }
  .plan-amount { font-size: 44px; }
  .step-num { font-size: 32px; }
  .step-title { font-size: 20px; }
  .step-desc { font-size: 13px; }
  .contact-info h3 { font-size: 32px; }
  .contact-channels { display: flex; flex-direction: column; }
  .ch { padding: 16px 12px; }
  .form { padding: 24px 16px; }
  .form-field label { font-size: 9px; }
  .form-field input, .form-field textarea { padding: 12px 12px; font-size: 14px; }
  .form-field textarea { min-height: 100px; }
  .chip { padding: 8px 12px; font-size: 10px; }
  .footer { padding: 48px 0 24px; }
  .footer-brand .display { font-size: 32px; margin-bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
