/* Auckland Automate IT — Agents landing
   Design system: AI-Native UI · Product Demo + Features · Inter
   Palette: purple #7C3AED primary, cyan #0891B2 accent, light #FAF5FF base */

:root {
  --bg: #FAF5FF;
  --surface: #FFFFFF;
  --ink: #1E1B4B;
  --muted: #475569;
  --muted-bg: #ECEEF9;
  --line: #DDD6FE;
  --line-soft: #EDE9FE;
  --primary: #7C3AED;
  --primary-hover: #6D28D9;
  --on-primary: #FFFFFF;
  --secondary: #A78BFA;
  --accent: #0891B2;
  --link: #0E7490;
  --danger: #DC2626;
  --ring: #7C3AED;

  --hero-bg-1: #120E2E;
  --hero-bg-2: #1E1B4B;
  --hero-ink: #F5F3FF;
  --hero-muted: #C7BFF0;
  --hero-line: rgba(167, 139, 250, 0.28);
  --bubble-agent: #241C4F;
  --bubble-user: #6D28D9;

  --radius-card: 18px;
  --radius-btn: 12px;
  --shadow-card: 0 1px 2px rgba(30, 27, 75, 0.05), 0 12px 32px -16px rgba(30, 27, 75, 0.18);
  --shadow-pop: 0 24px 64px -24px rgba(18, 14, 46, 0.45);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --section-pad: clamp(72px, 9vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--link); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: var(--space-2); top: -64px; z-index: 100;
  background: var(--surface); color: var(--ink); font-weight: 600;
  padding: 10px 18px; border-radius: 10px; text-decoration: none;
  transition: top 150ms ease;
}
.skip-link:focus { top: var(--space-2); }

.container { width: min(1120px, 100% - clamp(40px, 8vw, 64px)); margin-inline: auto; }
.container-narrow { width: min(780px, 100% - clamp(40px, 8vw, 64px)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 26px;
  border-radius: var(--radius-btn); border: 1.5px solid transparent;
  font: 600 1rem/1.2 var(--font); text-decoration: none; cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 120ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-primary { background: var(--primary); color: var(--on-primary); box-shadow: 0 10px 24px -12px rgba(124, 58, 237, 0.65); }
.btn-primary:hover { background: var(--primary-hover); }

.btn-ghost-light { border-color: var(--hero-line); color: var(--hero-ink); background: rgba(255, 255, 255, 0.04); }
.btn-ghost-light:hover { border-color: var(--secondary); background: rgba(167, 139, 250, 0.12); }

.btn-outline { border-color: var(--line); color: var(--ink); background: var(--surface); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-sm { min-height: 44px; padding: 10px 18px; font-size: 0.9375rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: wait; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18, 14, 46, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(167, 139, 250, 0.16);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); min-height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--hero-ink); }
.brand-mark { width: 26px; height: 26px; color: var(--secondary); }
.brand-name { font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.01em; display: inline-flex; align-items: baseline; gap: 8px; }
.brand-sub {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--secondary); border: 1px solid var(--hero-line); border-radius: 999px; padding: 3px 9px;
}

.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); }
.site-nav > a:not(.btn) {
  color: var(--hero-muted); text-decoration: none; font-weight: 500; font-size: 0.9375rem;
  padding: 6px 2px; border-bottom: 2px solid transparent; transition: color 150ms ease, border-color 150ms ease;
}
.site-nav > a:not(.btn):hover { color: var(--hero-ink); border-color: var(--secondary); }

.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--hero-ink);
  content: ""; transition: transform 180ms ease, opacity 180ms ease;
}
.nav-toggle-bar { position: relative; }
.nav-toggle-bar::before { position: absolute; top: -7px; }
.nav-toggle-bar::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 480px at 82% -10%, rgba(124, 58, 237, 0.38), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(8, 145, 178, 0.22), transparent 60%),
    linear-gradient(160deg, var(--hero-bg-1), var(--hero-bg-2));
  color: var(--hero-ink);
  padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 112px);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(40px, 6vw, 80px); align-items: center; }

.eyebrow {
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); margin-bottom: var(--space-2);
}
.hero .eyebrow { color: var(--secondary); }

.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--secondary); }
.lede { margin-top: var(--space-3); font-size: clamp(1.0625rem, 1.6vw, 1.25rem); color: var(--hero-muted); max-width: 34em; }
.lede strong { color: var(--hero-ink); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }
.hero-note { margin-top: var(--space-2); font-size: 0.875rem; color: var(--hero-muted); }

.hero-chips { display: flex; flex-wrap: wrap; gap: var(--space-1) var(--space-3); margin-top: var(--space-4); }
.hero-chips li { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--hero-muted); }
.hero-chips svg { width: 16px; height: 16px; color: var(--secondary); }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone {
  width: min(360px, 100%);
  border-radius: 36px;
  background: #14102E;
  border: 1px solid var(--hero-line);
  box-shadow: var(--shadow-pop), 0 0 0 7px #0B0820;
  overflow: hidden;
}
.phone-top {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-bottom: 1px solid rgba(167, 139, 250, 0.18);
  background: rgba(124, 58, 237, 0.14);
}
.phone-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}
.phone-avatar svg { width: 20px; height: 20px; }
.phone-who { display: flex; flex-direction: column; line-height: 1.3; }
.phone-who strong { font-size: 0.9375rem; }
.phone-who small { color: var(--hero-muted); font-size: 0.75rem; display: inline-flex; align-items: center; gap: 6px; }
.dot-online { width: 8px; height: 8px; border-radius: 50%; background: #34D399; display: inline-block; }

.phone-body { padding: 18px 16px 22px; display: flex; flex-direction: column; gap: 10px; }
.day-chip {
  align-self: center; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--hero-muted); background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.2); border-radius: 999px; padding: 4px 12px;
}
.msg {
  max-width: 92%; padding: 12px 14px; border-radius: 16px;
  font-size: 0.875rem; line-height: 1.55; white-space: pre-line;
}
.msg.agent { background: var(--bubble-agent); color: #EDE9FE; border: 1px solid rgba(167, 139, 250, 0.22); border-bottom-left-radius: 6px; align-self: flex-start; }
.msg.user { background: var(--bubble-user); color: #fff; border-bottom-right-radius: 6px; align-self: flex-end; }
.msg .quote { display: block; margin-top: 6px; }

.typing { display: none; gap: 4px; padding: 4px 2px 0; }
html.streaming .typing { display: inline-flex; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); animation: pulse-dot 1.2s ease-in-out infinite; }
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes pulse-dot { 0%, 60%, 100% { opacity: 0.35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
html.recap-done .typing { display: none; }

/* ---------- Problem band (continues dark) ---------- */
.problem {
  background: linear-gradient(180deg, var(--hero-bg-2), var(--hero-bg-1));
  color: var(--hero-ink);
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid rgba(167, 139, 250, 0.12);
}
.section-h-light { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; max-width: 22ch; }
.problem-list { margin-top: var(--space-4); display: grid; gap: var(--space-2); max-width: 620px; }
.problem-list li {
  position: relative; padding-left: 26px; color: var(--hero-muted); font-size: 1.0625rem;
}
.problem-list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em; width: 10px; height: 10px;
  border-radius: 3px; background: var(--secondary); transform: rotate(45deg);
}
.problem-list strong { color: var(--hero-ink); }
.problem-close { margin-top: var(--space-4); font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 700; color: var(--secondary); }

/* ---------- Generic sections ---------- */
.section { padding: var(--section-pad) 0; }
.section-alt { background: #F3EFFE; border-block: 1px solid var(--line-soft); }
.section-h { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; max-width: 24ch; }
.section-lede { margin-top: var(--space-2); color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.125rem); max-width: 52ch; }

/* ---------- Demo cards ---------- */
.demo-grid { margin-top: var(--space-5); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); }
.demo-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: var(--space-4); box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.demo-card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(30, 27, 75, 0.06), 0 24px 48px -20px rgba(30, 27, 75, 0.25); }
.demo-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.0625rem; }
.demo-card h3 svg { width: 22px; height: 22px; color: var(--primary); flex: none; }
.mini-chat { margin-top: var(--space-3); display: flex; flex-direction: column; gap: 8px; }
.mini-chat .msg { font-size: 0.8438rem; }
.mini-chat .msg.agent { background: #F3EFFE; color: var(--ink); border-color: var(--line); }
.mini-chat .msg.user { background: var(--primary); color: #fff; }

/* ---------- Capabilities ---------- */
.cap-grid { margin-top: var(--space-5); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-3); }
.cap-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: var(--space-4); box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.cap-card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(30, 27, 75, 0.06), 0 24px 48px -20px rgba(30, 27, 75, 0.25); }
.icon-chip {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: #F3EFFE; border: 1px solid var(--line); color: var(--primary); margin-bottom: var(--space-3);
}
.icon-chip svg { width: 24px; height: 24px; }
.cap-card h3 { font-size: 1.125rem; margin-bottom: var(--space-1); }
.cap-card p { color: var(--muted); font-size: 0.9688rem; }

/* ---------- Steps ---------- */
.steps { margin-top: var(--space-5); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-3); counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: var(--space-4); box-shadow: var(--shadow-card);
}
.step-num {
  font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.12em; color: var(--primary);
  display: inline-block; margin-bottom: var(--space-2);
}
.step h3 { font-size: 1.1875rem; margin-bottom: var(--space-1); }
.step p { color: var(--muted); font-size: 0.9688rem; }

/* ---------- Comparison ---------- */
.table-wrap { margin-top: var(--space-5); overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow-card); }
table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 0.9688rem; }
th, td { padding: 16px 20px; text-align: left; border-top: 1px solid var(--line-soft); vertical-align: top; }
thead th { border-top: 0; font-size: 0.875rem; color: var(--muted); padding-top: 20px; padding-bottom: 12px; }
tbody th[scope="row"] { font-weight: 600; color: var(--ink); width: 22%; }
td { color: var(--muted); }
.col-us { background: #F3EFFE; color: var(--ink); font-weight: 600; }
thead .col-us { color: var(--primary); }

/* ---------- Pricing ---------- */
.price-card {
  margin-top: var(--space-5); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow-pop); overflow: hidden;
}
.price-main { padding: clamp(28px, 4vw, 48px); background: linear-gradient(165deg, var(--hero-bg-1), var(--hero-bg-2)); color: var(--hero-ink); display: flex; flex-direction: column; gap: var(--space-2); }
.price-kicker { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--secondary); }
.price-amount { font-size: clamp(2.6rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; }
.price-unit { font-size: 1.125rem; font-weight: 600; color: var(--hero-muted); letter-spacing: 0; }
.price-incl { font-size: 0.875rem; color: var(--hero-muted); }
.price-blurb { color: var(--hero-muted); font-size: 0.9688rem; margin-bottom: var(--space-2); }
.price-main .btn-block + .btn-block { margin-top: 10px; }
.price-side { padding: clamp(28px, 4vw, 48px); }
.price-side h3 { font-size: 1.125rem; margin-bottom: var(--space-3); }
.tick-list { display: grid; gap: 12px; }
.tick-list li { position: relative; padding-left: 32px; color: var(--muted); font-size: 0.9688rem; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%;
  background: #F3EFFE url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
  border: 1px solid var(--line);
}
.price-fine { margin-top: var(--space-3); font-size: 0.8125rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: var(--space-4); display: grid; gap: var(--space-2); }
.faq-list details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 0; overflow: hidden; transition: border-color 150ms ease;
}
.faq-list details[open] { border-color: var(--primary); }
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
  padding: 18px 20px; font-weight: 600; font-size: 1rem; min-height: 44px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; width: 12px; height: 12px; flex: none; margin-right: 4px;
  border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform: rotate(45deg) translateY(-2px); transition: transform 180ms ease;
}
.faq-list details[open] summary::after { transform: rotate(225deg) translateY(-2px); }
.faq-list details p { padding: 0 20px 18px; color: var(--muted); font-size: 0.9688rem; }
.faq-contact { margin-top: var(--space-4); color: var(--muted); }

/* ---------- Enquiry ---------- */
.enquiry-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 72px); align-items: start; }
.next-list { margin-top: var(--space-4); display: grid; gap: var(--space-2); }
.next-list li { display: flex; align-items: center; gap: 14px; color: var(--muted); font-weight: 500; }
.next-list span {
  width: 32px; height: 32px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary); color: #fff; font-size: 0.875rem; font-weight: 700;
}
.enquiry-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-card);
}
.enquiry-card h3 { font-size: 1.25rem; }
.form-required { margin-top: 4px; font-size: 0.8125rem; color: var(--muted); }
.form-required span { color: var(--danger); }
.field { margin-top: var(--space-3); }
.field label { display: block; font-weight: 600; font-size: 0.9375rem; margin-bottom: 6px; }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field textarea {
  width: 100%; padding: 13px 14px; font: 400 1rem/1.5 var(--font); color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 10px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18); }
.hp-field { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.consent { margin-top: var(--space-3); font-size: 0.8125rem; color: var(--muted); }
#enquiry-form .btn { margin-top: var(--space-3); }
.form-help { margin-top: var(--space-2); font-size: 0.8125rem; color: var(--muted); }
.form-help.is-error { color: var(--danger); font-weight: 600; }
.form-success { text-align: center; padding: var(--space-4) var(--space-2); }
.success-mark {
  width: 56px; height: 56px; margin: 0 auto var(--space-3); border-radius: 50%;
  display: grid; place-items: center; background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0;
}
.success-mark svg { width: 26px; height: 26px; }
.form-success h3 { margin-bottom: var(--space-1); }
.form-success p { color: var(--muted); font-size: 0.9688rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--hero-bg-1); color: var(--hero-muted); padding: clamp(48px, 6vw, 72px) 0 var(--space-4); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(32px, 5vw, 56px); }
.footer-brand p { margin-top: var(--space-2); font-size: 0.9375rem; max-width: 34ch; }
.footer-brand a:not(.brand) { color: var(--secondary); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h3 { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hero-ink); margin-bottom: var(--space-1); }
.footer-col a { color: var(--hero-muted); text-decoration: none; font-size: 0.9375rem; width: fit-content; }
.footer-col a:hover { color: var(--hero-ink); text-decoration: underline; }
.footer-col span { font-size: 0.875rem; }
.footer-base {
  margin-top: var(--space-6); padding-top: var(--space-3);
  border-top: 1px solid rgba(167, 139, 250, 0.16);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-2);
  font-size: 0.8125rem;
}

/* ---------- Reveal motion ---------- */
[data-reveal] { opacity: 0; transform: translateY(16px); }
[data-reveal].revealed {
  opacity: 1; transform: none;
  transition: opacity 420ms ease calc(var(--i, 0) * 60ms), transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1) calc(var(--i, 0) * 60ms);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 68px; left: 0; right: 0; display: none; flex-direction: column;
    align-items: stretch; gap: 0; padding: var(--space-2) clamp(20px, 6vw, 32px) var(--space-3);
    background: rgba(18, 14, 46, 0.97); border-bottom: 1px solid var(--hero-line);
  }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid rgba(167, 139, 250, 0.14); font-size: 1rem; }
  .nav-cta { margin-top: var(--space-2); justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: 2; }
  .price-card { grid-template-columns: 1fr; }
  .enquiry-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .demo-grid, .cap-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .section-h { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .btn:hover, .demo-card:hover, .cap-card:hover { transform: none; }
}
