/* =========================================================
   DevTrix Solutions — Global Stylesheet
   ========================================================= */

:root {
  /* Palette */
  --bg: #0b1020;
  --bg-alt: #0f1730;
  --surface: #131c38;
  --surface-2: #182247;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8ecf8;
  --muted: #a3adc9;
  --brand: #5b8cff;
  --brand-2: #7c5cff;
  --brand-3: #22d3ee;
  --accent: #34e0a1;
  --danger: #ff6b6b;

  /* Effects */
  --grad: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 55%, var(--brand-3) 100%);
  --grad-soft: linear-gradient(135deg, rgba(91, 140, 255, 0.16), rgba(124, 92, 255, 0.10));
  --shadow: 0 20px 45px -20px rgba(3, 8, 24, 0.75);
  --shadow-sm: 0 10px 30px -12px rgba(3, 8, 24, 0.6);

  /* Layout */
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --pad: clamp(20px, 5vw, 40px);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Light theme */
[data-theme="light"] {
  --bg: #f6f8ff;
  --bg-alt: #eef2fd;
  --surface: #ffffff;
  --surface-2: #f2f5ff;
  --border: rgba(12, 22, 55, 0.10);
  --text: #131a30;
  --muted: #55607e;
  --shadow: 0 24px 50px -24px rgba(24, 40, 96, 0.35);
  --shadow-sm: 0 12px 30px -14px rgba(24, 40, 96, 0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

:target { scroll-margin-top: 96px; }
[id] { scroll-margin-top: 96px; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

section { padding: clamp(64px, 9vw, 120px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.divider {
  height: 1px;
  border: 0;
  margin: 0 auto clamp(44px, 6vw, 72px);
  background: linear-gradient(90deg, transparent, var(--border) 12%, var(--border) 88%, transparent);
}

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(91, 140, 255, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(91, 140, 255, 0.7); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--brand); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.site-header.scrolled { border-color: var(--border); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  height: 36px;
  width: 36px;
  flex: none;
}
.brand-logo { width: auto; }
.brand-mark,
.brand-logo { display: block; }
.brand-text { white-space: nowrap; }
.logo-on-dark { display: none; }
[data-theme="dark"] .logo-on-light { display: none; }
[data-theme="dark"] .logo-on-dark { display: block; }

/* Footer uses the full stacked lockup */
.site-footer .brand { display: block; }
.site-footer .brand-logo { height: 88px; }
.site-footer .brand-footer {
  display: block;
  margin: 0 0 18px;
}
.site-footer .brand-footer .brand-logo {
  height: auto;
  width: min(260px, 82%);
}
.footer-about p { margin-bottom: 0; }
@media (max-width: 640px) {
  .brand-text { font-size: 1.05rem; }
  .site-footer .brand-logo { height: 74px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.theme-toggle:hover { border-color: var(--brand); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  margin: 0 auto;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: rotate(45deg); }
.nav-open .nav-toggle span::after { transform: rotate(-45deg) translateY(-1px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% 40% 40% -20%;
  background: radial-gradient(closest-side, rgba(124, 92, 255, 0.35), transparent);
  filter: blur(30px);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 20% -30% -60% 50%;
  background: radial-gradient(closest-side, rgba(34, 211, 238, 0.25), transparent);
  filter: blur(30px);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero-badge b {
  background: var(--grad);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.hero p.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.deliver {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.deliver b { color: var(--brand); font-weight: 700; }
.deliver span { color: var(--border); }

.footer-tagline {
  margin: 4px 0 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats b {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-stats span { font-size: 0.85rem; color: var(--muted); }

.hero-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.hero-panel .bar {
  display: flex; gap: 6px; margin-bottom: 16px;
}
.hero-panel .bar i {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--surface-2);
  display: inline-block;
}
.code-line {
  font-family: "SF Mono", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 3px 0;
  white-space: pre;
  overflow-x: auto;
}
.code-line .k { color: var(--brand-3); }
.code-line .s { color: var(--accent); }
.code-line .c { color: #6b7699; }
.code-line .f { color: var(--brand); }

.marquee {
  border-block: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 22px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 26s linear infinite;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand) 45%, var(--border));
  box-shadow: var(--shadow-sm);
}
.card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}
.card ul li { margin-bottom: 4px; }

.bg-alt { background: var(--bg-alt); }

/* ---------- Process ---------- */
.steps { counter-reset: step; display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { margin: 8px 0 6px; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- Stats band ---------- */
.stat-band {
  background: var(--grad);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-band b { display: block; font-size: 2.2rem; font-weight: 800; }
.stat-band span { opacity: 0.9; font-size: 0.9rem; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.quote p { font-size: 1rem; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.quote .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  font-weight: 700; color: #fff; font-size: 0.9rem;
}
.quote .who b { font-size: 0.92rem; }
.quote .who span { font-size: 0.82rem; color: var(--muted); }

/* ---------- CTA ---------- */
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: -50% 60% 40% -10%;
  background: var(--grad-soft);
  filter: blur(20px);
}
.cta-box > * { position: relative; }
.cta-box p { color: var(--muted); max-width: 520px; margin-inline: auto; }

/* ---------- Products ---------- */
.product-card { display: flex; flex-direction: column; }
.product-top { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.product-logo {
  width: 52px; height: 52px; flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  background: var(--grad-soft);
  border: 1px solid var(--border);
}
.product-card h3 { font-size: 1.4rem; margin: 0; }
.product-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.product-card .tagline { color: var(--text); font-weight: 600; margin: 0 0 8px; }
.product-card > p { color: var(--muted); font-size: 0.96rem; }
.feat { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 9px; }
.feat li { position: relative; padding-left: 24px; color: var(--muted); font-size: 0.92rem; }
.feat li::before {
  content: "✓";
  position: absolute; left: 0; top: -1px;
  color: var(--accent); font-weight: 800;
}
.product-card .card-foot { margin-top: auto; padding-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }

.product-split { margin-bottom: clamp(56px, 8vw, 88px); }
.product-split:last-child { margin-bottom: 0; }
.product-split:nth-child(even) .split-media { order: -1; }

.app-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.app-mock .mock-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.app-mock .mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-2); }
.mock-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--border); }
.mock-row:first-of-type { border-top: 0; }
.mock-chip {
  width: 36px; height: 36px; flex: none; border-radius: 9px;
  background: var(--grad-soft); border: 1px solid var(--border);
  display: grid; place-items: center; font-size: 1rem;
}
.mock-line { height: 9px; border-radius: 5px; background: var(--surface-2); flex: 1; }
.mock-line.short { max-width: 44%; }
.mock-line.mid { max-width: 68%; }
.mock-badge {
  margin-left: auto; font-size: 0.72rem; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  background: var(--grad-soft); border: 1px solid var(--border); color: var(--brand);
}
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 4px; }
.mock-tile {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px;
}
.mock-tile b { font-size: 1.15rem; display: block; }
.mock-tile span { font-size: 0.72rem; color: var(--muted); }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(91, 140, 255, 0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--muted); }
.form-status { font-size: 0.9rem; font-weight: 600; }
.form-status.ok { color: var(--accent); }
.form-status.err { color: var(--danger); }

.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .icon {
  width: 42px; height: 42px; flex: none;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: grid; place-items: center;
}
.info-list b { display: block; font-size: 0.95rem; }
.info-list span { color: var(--muted); font-size: 0.9rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -60% 50% 30% -20%;
  background: var(--grad-soft);
  filter: blur(30px);
}
.page-hero .container { position: relative; }
.page-hero p { color: var(--muted); max-width: 620px; font-size: 1.08rem; }
.crumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }
.crumbs a:hover { color: var(--brand); }

/* ---------- Values / about ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split ul { padding-left: 20px; color: var(--muted); }
.split ul li { margin-bottom: 10px; }
.media-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.mini b { font-size: 1.5rem; display: block; }
.mini span { font-size: 0.82rem; color: var(--muted); }

.team-card { text-align: center; }
.team-card .avatar {
  width: 84px; height: 84px; border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--grad);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.5rem;
}
.team-card b { display: block; }
.team-card span { color: var(--muted); font-size: 0.88rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a { color: var(--muted); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--text); }
.footer-grid p { color: var(--muted); font-size: 0.92rem; max-width: 280px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.socials a:hover { border-color: var(--brand); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); padding: 32px; }
  .split { grid-template-columns: 1fr; }
  .product-split:nth-child(even) .split-media { order: 0; }
  .mock-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px var(--pad) 20px;
    transform: translateY(-140%);
    transition: transform 0.28s ease;
  }
  .nav-open .nav-links { transform: none; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 14px 0; color: var(--text); }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta-desktop { display: none; }
  .grid.cols-3, .grid.cols-4, .grid.cols-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
