:root {
  --bg: #080b16;
  --bg-soft: #0c1122;
  --panel: #121834;
  --panel-2: #0f1430;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #eef1f8;
  --muted: #97a1c4;
  --muted-dim: #6b7597;
  --brand: #7c86ff;
  --brand-2: #33d6ee;
  --brand-grad: linear-gradient(120deg, #8b93ff 0%, #4bc8ff 55%, #33e0d0 100%);
  --ring: rgba(124,134,255,0.35);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* Layered page background: grid + glows */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 520px at 12% -5%, rgba(124,134,255,0.18), transparent 60%),
    radial-gradient(820px 520px at 92% 2%, rgba(51,214,238,0.12), transparent 58%),
    radial-gradient(700px 600px at 60% 108%, rgba(124,134,255,0.10), transparent 60%);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 40%, transparent 85%);
}

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  background: rgba(8,11,22,0.65);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.02em; font-size: 21px; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px; position: relative;
  background: var(--brand-grad);
  box-shadow: 0 6px 20px -6px var(--ring), inset 0 0 0 1px rgba(255,255,255,0.25);
}
.brand .mark::after {
  content: ""; position: absolute; inset: 7px; border-radius: 4px;
  background: var(--bg); opacity: .85;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text small {
  font-size: 10.5px; font-weight: 600; letter-spacing: .04em;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #ffffff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .12s, box-shadow .2s, background .2s;
}
.btn-primary { background: linear-gradient(120deg, #6d78ff 0%, #4a7ef2 100%); color: #ffffff; font-weight: 700; box-shadow: 0 10px 30px -10px var(--ring); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 36px -10px var(--ring); filter: brightness(1.06); }
.btn-ghost { background: rgba(255,255,255,0.02); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--panel); border-color: var(--brand); }
.nav-cta { display: inline-flex; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 88px 0 44px; }
/* hero-single shares the same 1180px wrap as every other section so left/right edges align */
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

/* Hero image band */
.preview { padding: 24px 0 96px; }
.hero-photo {
  position: relative; border-radius: 22px; overflow: visible; max-width: 1020px; margin: 0 auto;
}
.hero-photo img, .hero-photo .ph {
  width: 100%; aspect-ratio: 21 / 9; object-fit: cover; display: block; border-radius: 22px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.85);
}
.hero-photo .ph { display: none; background: var(--brand-grad); opacity: .3; position: absolute; inset: 0; }
.hero-photo::after {
  /* subtle brand tint + bottom fade so the photo sits in the dark theme */
  content: ""; position: absolute; inset: 0; border-radius: 22px; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,11,22,0.05), rgba(8,11,22,0.45) 88%),
              linear-gradient(120deg, rgba(124,134,255,0.16), rgba(51,214,238,0.08));
  mix-blend-mode: normal;
}
.hero-photo .float-card { z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-2); background: rgba(51,214,238,0.07);
  border: 1px solid rgba(51,214,238,0.2); padding: 7px 14px; border-radius: 999px;
}
.eyebrow .live { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 0 0 rgba(51,214,238,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(51,214,238,0.5); } 70% { box-shadow: 0 0 0 8px rgba(51,214,238,0); } 100% { box-shadow: 0 0 0 0 rgba(51,214,238,0); } }
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px); line-height: 1.04; letter-spacing: -0.035em;
  margin: 22px 0 20px; max-width: 24ch; font-weight: 800;
}
.hero h1 .grad { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: clamp(17px, 2.1vw, 19.5px); color: var(--muted); max-width: 76ch; margin: 0 0 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.trust { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 14px 28px; color: var(--muted-dim); font-size: 14px; }
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust b { color: var(--text); font-weight: 600; }
.trust .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }

/* Hero visual — CSS "app window" + floating cards */
.hero-visual { position: relative; }
.glow-orb {
  position: absolute; width: 320px; height: 320px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(124,134,255,0.5), transparent 65%);
  filter: blur(30px); top: -40px; right: -30px; pointer-events: none;
}
.window {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, rgba(24,30,60,0.9), rgba(13,18,42,0.92));
  border: 1px solid var(--border-strong); border-radius: 16px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden; backdrop-filter: blur(4px);
}
.window .bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.window .bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.window .bar .url { margin-left: 12px; font-size: 12.5px; color: var(--muted-dim); background: rgba(255,255,255,0.04); padding: 4px 12px; border-radius: 7px; border: 1px solid var(--border); }
.window .body { padding: 20px; display: grid; gap: 14px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.stat .k { font-size: 11px; color: var(--muted-dim); letter-spacing: .04em; text-transform: uppercase; }
.stat .v { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; }
.stat .v.grad { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.chart { height: 96px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; padding: 14px; display: flex; align-items: flex-end; gap: 8px; }
.chart .col { flex: 1; border-radius: 5px 5px 3px 3px; background: linear-gradient(180deg, rgba(124,134,255,0.85), rgba(51,214,238,0.35)); opacity: .9; }
.line { height: 10px; border-radius: 6px; background: rgba(255,255,255,0.05); }
.line.w70 { width: 70%; } .line.w45 { width: 45%; } .line.w85 { width: 85%; }

.float-card {
  position: absolute; z-index: 2; background: rgba(16,22,48,0.92);
  border: 1px solid var(--border-strong); border-radius: 13px; padding: 12px 15px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.8); backdrop-filter: blur(8px);
  display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600;
  animation: float 5.5s ease-in-out infinite;
}
.float-card .ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; font-size: 16px; background: rgba(124,134,255,0.14); border: 1px solid rgba(124,134,255,0.25); }
.float-card small { display: block; font-size: 11.5px; font-weight: 500; color: var(--muted-dim); }
.fc-1 { top: -22px; left: -34px; animation-delay: 0s; }
.fc-2 { bottom: -26px; right: -26px; animation-delay: -2.6s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Section shell ---------- */
section { padding: 82px 0; position: relative; }
.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(29px, 4vw, 42px); letter-spacing: -0.025em; margin: 0 0 14px; font-weight: 800; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }
.alt { background: linear-gradient(180deg, rgba(12,17,34,0.7), rgba(8,11,22,0)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- Cards (gradient border) ---------- */
.grid { display: grid; gap: 20px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative; display: block; border-radius: var(--radius); padding: 28px; color: inherit;
  background: linear-gradient(180deg, rgba(18,24,52,0.85), rgba(13,18,42,0.7));
  border: 1px solid var(--border);
  transition: transform .18s, border-color .2s, box-shadow .25s;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px;
  background: linear-gradient(140deg, rgba(124,134,255,0.6), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -26px rgba(0,0,0,0.85); }
.card:hover::before { opacity: 1; }
.card .ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; font-size: 24px;
  background: linear-gradient(160deg, rgba(124,134,255,0.18), rgba(51,214,238,0.1));
  border: 1px solid rgba(124,134,255,0.25); margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.card h3 { margin: 0 0 9px; font-size: 19px; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
a.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--brand-2); }
a.card:hover .more { gap: 10px; }

/* showcase / images */
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); background: var(--panel);
  aspect-ratio: 4 / 3; transition: transform .18s, border-color .2s, box-shadow .25s;
}
.work:hover { transform: translateY(-4px); border-color: rgba(124,134,255,0.4); box-shadow: 0 26px 50px -26px rgba(0,0,0,0.85); }
.work img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.work:hover img { transform: scale(1.06); }
.work .ph { position: absolute; inset: 0; display: none; background: var(--brand-grad); opacity: .35; }
.work .cap { position: absolute; inset: auto 0 0 0; padding: 18px 20px; background: linear-gradient(0deg, rgba(6,9,18,0.94) 10%, rgba(6,9,18,0.55) 55%, transparent); }
.work .cap .tag { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-2); background: rgba(51,214,238,0.12); border: 1px solid rgba(51,214,238,0.25); padding: 3px 10px; border-radius: 999px; }
.work .cap h4 { margin: 10px 0 0; font-size: 17px; letter-spacing: -0.01em; }

/* industries pills */
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  padding: 13px 20px; border-radius: 12px;
  background: linear-gradient(180deg, rgba(18,24,52,0.7), rgba(13,18,42,0.55));
  border: 1px solid var(--border); font-weight: 500; font-size: 15px; color: var(--text);
  transition: border-color .2s, transform .15s, color .2s;
}
.pill:hover { border-color: var(--brand); transform: translateY(-2px); }

/* process steps */
.steps { display: grid; gap: 0; }
.step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: 0; }
.step .num {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; color: #071021;
  background: var(--brand-grad); box-shadow: 0 8px 22px -10px var(--ring);
}
.step h4 { margin: 8px 0 4px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); }

/* ---------- Subpage: breadcrumb + page hero + prose ---------- */
.breadcrumb { padding-top: 30px; font-size: 14px; color: var(--muted-dim); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .divider { margin: 0 9px; opacity: .5; }
.breadcrumb [aria-current] { color: var(--text); }

.page-hero { padding: 34px 0 62px; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 18px; max-width: 20ch; font-weight: 800; }
.page-hero h1 .grad { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p.lead { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 64ch; margin: 0 0 30px; }

.prose { max-width: 780px; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.02em; margin: 0 0 16px; font-weight: 800; }
.prose p { color: var(--muted); font-size: 17px; margin: 0 0 18px; }
.prose p:last-child { margin-bottom: 0; }

/* feature checklist */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.feature-list li { display: flex; gap: 12px; color: var(--text); font-size: 15.5px; align-items: flex-start; }
.feature-list .tick { margin-top: 2px; width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; font-size: 12px; color: #071021; background: var(--brand-grad); flex: 0 0 auto; font-weight: 700; }
.feature-list li b { display: block; font-weight: 600; }
.feature-list li span.d { color: var(--muted); font-size: 14px; }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden; border-radius: 24px; padding: 52px 40px; text-align: center;
  border: 1px solid var(--border-strong);
  background: linear-gradient(140deg, rgba(124,134,255,0.18), rgba(51,214,238,0.08));
}
.cta-band::after {
  content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,134,255,0.35), transparent 65%); filter: blur(30px);
  top: -140px; right: -60px; pointer-events: none;
}
.cta-band h2 { position: relative; font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -0.02em; margin: 0 0 12px; font-weight: 800; }
.cta-band p { position: relative; color: var(--muted); font-size: 17px; margin: 0 auto 26px; max-width: 52ch; }
.cta-band .btn { position: relative; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-copy h2 { font-size: clamp(29px, 4vw, 42px); letter-spacing: -0.025em; margin: 12px 0 16px; font-weight: 800; }
.contact-copy p { color: var(--muted); font-size: 17px; }
.contact-copy a.email { color: var(--brand-2); font-weight: 600; }
.contact-points { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.contact-points li { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 15px; }
.contact-points .tick { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; font-size: 13px; color: #071021; background: var(--brand-grad); flex: 0 0 auto; }
form.contact {
  position: relative;
  background: linear-gradient(180deg, rgba(18,24,52,0.9), rgba(13,18,42,0.8));
  border: 1px solid var(--border-strong); border-radius: 22px; padding: 30px;
  box-shadow: 0 30px 60px -34px rgba(0,0,0,0.85);
}
.field { margin-bottom: 17px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px; font-size: 15px; font-family: inherit;
  background: rgba(255,255,255,0.025); border: 1px solid var(--border); color: var(--text); transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: #5d6788; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--ring);
}
.field select { 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 fill='%2397a1c4' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.field textarea { min-height: 120px; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-actions { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.form-actions .btn { width: 100%; justify-content: center; }
.form-note { font-size: 13px; color: var(--muted-dim); margin-top: 12px; text-align: center; }
.form-msg { margin-top: 16px; font-size: 15px; padding: 13px 15px; border-radius: 12px; display: none; }
.form-msg.ok { display: block; background: rgba(51,214,238,0.1); border: 1px solid rgba(51,214,238,0.3); color: #a5f0ff; }
.form-msg.err { display: block; background: rgba(255,99,99,0.1); border: 1px solid rgba(255,99,99,0.3); color: #ffc2c2; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* ---------- Footer ---------- */
footer.site { border-top: 1px solid var(--border); padding: 48px 0 40px; color: var(--muted-dim); font-size: 14px; }
.foot-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.foot-cols .brand { font-size: 19px; color: var(--text); margin-bottom: 12px; }
.foot-cols p { margin: 0; max-width: 34ch; }
.foot-tagline {
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 10px !important;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.foot-cols h5 { margin: 0 0 14px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.foot-cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-cols ul a { color: var(--muted-dim); }
.foot-cols ul a:hover { color: var(--text); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 24px; border-top: 1px solid var(--border); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 70px; }
  section { padding: 62px 0; }
  .float-card { display: none; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 24px; }
}
@media (prefers-reduced-motion: reduce) { *, ::before, ::after { animation: none !important; scroll-behavior: auto; transition: none !important; } .reveal { opacity: 1; transform: none; } }
