/* ============================================================
   Luminous Digital Visions — Design System v4 (brand-accurate, Apple-tier)
   Brand orange #FF4F01 · Space Grotesk display + SF Pro body
   White + near-black, big rounded surfaces, orange-tinted shadows,
   oversized type, generous whitespace, smooth reveals.
   Vanilla CSS. Dials 5 / 6 / 2. Zero em-dashes. Phosphor icons.
   ============================================================ */

:root {
  /* Brand */
  --brand: #FF4F01;
  --brand-deep: #CC3F00;
  --brand-bright: #FF6B2C;
  --peach: #FFC8B0;
  --peach-soft: #FFEDE6;

  /* Neutrals (Apple-ish) */
  --ink: #0B0B0C;
  --text: #1D1D1F;
  --muted: #6E6E73;
  --muted-2: #86868B;
  --paper: #FFFFFF;
  --paper-2: #F5F5F3;
  --paper-3: #ECEBE7;
  --line: rgba(0, 0, 0, .08);
  --line-2: rgba(0, 0, 0, .14);

  /* Shadows — soft neutral + orange-tinted */
  --sh-sm: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .05);
  --sh: 0 18px 48px rgba(0, 0, 0, .08), 0 6px 16px rgba(0, 0, 0, .05);
  --sh-lg: 0 40px 90px rgba(0, 0, 0, .13), 0 14px 36px rgba(0, 0, 0, .08);
  --sh-brand: 0 16px 40px rgba(255, 79, 1, .22);
  --sh-brand-lg: 0 28px 70px rgba(255, 79, 1, .30);

  /* Big rounded brand radii */
  --r-sm: 14px;
  --r: 22px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-2xl: 56px;
  --pill: 9999px;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, system-ui, sans-serif;
  --display: "Space Grotesk", var(--font);

  --spring: 600ms cubic-bezier(.16, 1, .3, 1);
  --ease: 340ms cubic-bezier(.22, .61, .36, 1);

  --z-grain: 1;
  --z-base: 2;
  --z-nav: 50;
  --z-top: 100;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

.skip {
  position: absolute;
  left: -999px;
  top: .5rem;
  z-index: var(--z-top);
  background: var(--ink);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: var(--pill);
}

.skip:focus {
  left: .5rem;
}

/* Layout — airy */
.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
  position: relative;
  z-index: var(--z-base);
}

.wide {
  width: min(1340px, 94vw);
  margin-inline: auto;
  position: relative;
  z-index: var(--z-base);
}

.section {
  padding: clamp(3.25rem, 6vw, 6rem) 0;
}

.section--tight {
  padding: clamp(2rem, 3.5vw, 3.25rem) 0;
}

.center {
  text-align: center;
}

.stack>*+* {
  margin-top: 1.3rem;
}

.maxw {
  max-width: 62ch;
}

.mx-auto {
  margin-inline: auto;
}

/* Type — oversized, confident */
h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.h2 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
}

.h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  letter-spacing: -.02em;
}

.display-em {
  color: var(--brand);
}

.hero .display-em {
  display: block;
}

.lead {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  color: var(--muted);
  line-height: 1.45;
  font-weight: 400;
  text-wrap: pretty;
  letter-spacing: -.01em;
}

p {
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--brand);
}

.muted {
  color: var(--muted);
}

.tnum {
  font-variant-numeric: tabular-nums;
}

/* Buttons — pill, brand */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.06rem;
  line-height: 1;
  padding: 1.1rem 1.9rem;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px) scale(.99);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--sh-brand);
}

.btn--primary:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: var(--sh-brand-lg);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh);
}

.btn--white {
  background: #fff;
  color: var(--brand-deep);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}

.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.25rem 2.2rem;
  font-size: 1.15rem;
}

.btn--block {
  width: 100%;
}

.btn i {
  font-size: 1.15em;
  transition: transform var(--ease);
}

.btn:hover i.fwd {
  transform: translateX(4px);
}

/* Text link CTA */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  color: var(--brand-deep);
}

.tlink i {
  transition: transform var(--ease);
}

.tlink:hover i {
  transform: translateX(4px);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: -.02em;
}

.brand__mark {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 8px;
  background: var(--brand);
  box-shadow: var(--sh-brand);
}

.brand__logo {
  height: 1.95rem;
  width: auto;
  display: block;
}

.footer .brand__logo {
  height: 1.8rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a:not(.btn) {
  color: var(--text);
  font-weight: 500;
  font-size: .98rem;
  transition: color var(--ease);
}

.nav__links a:not(.btn):hover,
.nav__links a[aria-current="page"] {
  color: var(--brand);
}

.nav .btn {
  padding: .7rem 1.3rem;
  font-size: .96rem;
}

@media (max-width: 860px) {
  .nav__links a:not(.btn) {
    display: none;
  }
}

/* Hero — centered, oversized, with big image below */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 40% at 50% -8%, var(--peach-soft), transparent 70%),
    radial-gradient(30% 30% at 85% 0%, rgba(255, 79, 1, .06), transparent 60%);
}

.hero__inner {
  text-align: center;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: min(1000px, 92vw);
  margin-inline: auto;
}

.hero h1 {
  margin-bottom: 1.6rem;
}

.hero .lead {
  max-width: min(540px, 90vw);
  margin-inline: auto;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.4rem;
}

.shot {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 16 / 8.5;
  background: var(--paper-2);
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 700px) {
  .shot {
    aspect-ratio: 4/3;
    border-radius: var(--r-xl);
  }

  .hero__inner {
    max-width: min(92vw, 34rem);
  }
}

/* Quiet stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.stat b {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.04em;
  display: block;
}

.stat span {
  color: var(--muted);
  font-size: 1rem;
}

/* Section heads */
.head {
  max-width: min(680px, 90vw);
}

.head--center {
  max-width: min(760px, 90vw);
  margin-inline: auto;
  text-align: center;
}

/* Pain list — airy, large */
.pains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}

@media (max-width: 760px) {
  .pains {
    grid-template-columns: 1fr;
  }
}

.pain {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.pain i {
  color: var(--brand);
  font-size: 1.5rem;
  line-height: 1;
}

.pain p {
  font-size: 1.1rem;
  color: var(--text);
}

/* Feature spotlight — big alternating blocks (Apple-style) */
.spot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.spot+.spot {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.spot--rev .spot__media {
  order: -1;
}

@media (max-width: 820px) {
  .spot {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .spot--rev .spot__media {
    order: 0;
  }
}

.spot__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh);
  aspect-ratio: 5/4;
  background: var(--paper-2);
}

.spot__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot__media--tint {
  background: linear-gradient(150deg, var(--peach-soft), #fff);
  display: grid;
  place-items: center;
}

/* Premium animated icon orb (floating glyph + pulsing rings + breathing glow) */
.orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 12rem;
  height: 12rem;
}
.orb i {
  position: relative;
  z-index: 3;
  font-size: 6rem;
  color: var(--brand);
}
.orb__glow {
  position: absolute;
  z-index: 1;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 1, .30), transparent 68%);
}
.orb__ring {
  position: absolute;
  z-index: 2;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 79, 1, .45);
}
@media (prefers-reduced-motion: no-preference) {
  .orb i { animation: orb-float 5s ease-in-out infinite; }
  .orb__glow { animation: orb-glow 4.5s ease-in-out infinite; }
  .orb__ring { animation: orb-ring 3.6s cubic-bezier(.2, .7, .3, 1) infinite; }
  .orb__ring--2 { animation-delay: 1.8s; }
  .spot__media--tint > i { animation: orb-float 5s ease-in-out infinite; }
}
@keyframes orb-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes orb-glow { 0%, 100% { transform: scale(.9); opacity: .55; } 50% { transform: scale(1.18); opacity: 1; } }
@keyframes orb-ring { 0% { transform: scale(.6); opacity: .65; } 100% { transform: scale(1.95); opacity: 0; } }

.spot__panel {
  width: 78%;
}

.spot h3 {
  margin-bottom: 1rem;
}

.spot p {
  font-size: 1.12rem;
  color: var(--muted);
}

/* Trio — minimal 3-up */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 760px) {
  .trio {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.trio__item .ico {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: var(--peach-soft);
  color: var(--brand-deep);
  margin-bottom: 1.2rem;
}

.trio__item .ico i {
  font-size: 1.6rem;
}

.trio__item h3 {
  margin-bottom: .5rem;
}

.trio__item p {
  color: var(--muted);
}

/* Flow / steps */
.flow {
  display: grid;
  gap: 0;
}

.flow li {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  align-items: center;
}

.flow li+li {
  border-top: 1px solid var(--line);
}

.flow .n {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  transition: background var(--ease), color var(--ease);
}

.flow li:hover .n {
  background: var(--brand);
  color: #fff;
}

.flow li p {
  font-size: 1.1rem;
}

/* Pricing — big rounded cards */
.price-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 920px) {
  .price-wrap {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
}

.price {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}

.price:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh);
}

.price--feature {
  position: relative;
  background: var(--ink);
  color: #fff;
  border: 0;
  box-shadow: var(--sh-lg);
}

.price__tag {
  position: absolute;
  top: -.9rem;
  left: 2.4rem;
  background: var(--brand);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .45rem .9rem;
  border-radius: var(--pill);
}

.price__name {
  font-weight: 600;
  color: var(--muted);
  min-height: 1.4em;
}

.price--feature .price__name {
  color: rgba(255, 255, 255, .7);
}

.price__amt {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.04em;
  margin: .5rem 0 .2rem;
}

.price--feature .price__amt {
  color: #fff;
}

.price__amt span {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.price__note {
  font-size: .96rem;
  color: var(--muted);
  min-height: 2.7em;
}

.price--feature .price__note {
  color: rgba(255, 255, 255, .62);
}

.price__feats {
  list-style: none;
  display: grid;
  gap: .8rem;
  margin: 1.6rem 0 2rem;
}

.price__feats li {
  padding-left: 1.9rem;
  position: relative;
  font-size: 1rem;
}

.price__feats li i {
  position: absolute;
  left: 0;
  top: .08em;
  color: var(--brand);
  font-size: 1.2rem;
}

.price .btn {
  margin-top: auto;
}

.note {
  font-size: .96rem;
  color: var(--muted);
}

/* Campaign landing-page helpers */
.campaign-hero .hero__inner {
  max-width: min(940px, 92vw);
}

.campaign-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.campaign-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper-2);
}

.campaign-checks {
  display: grid;
  gap: 1rem;
}

.campaign-checks p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  color: var(--text);
}

.campaign-checks i {
  color: var(--brand);
  font-size: 1.25rem;
  line-height: 1.25;
}

@media (max-width: 820px) {
  .campaign-split,
  .campaign-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .campaign-hero .hero__inner {
    max-width: min(92vw, 28rem);
  }
}

/* Final CTA — bold orange panel (the one color moment) */
.cta-final {
  background: var(--brand);
  border-radius: var(--r-2xl);
  padding: clamp(3rem, 7vw, 6rem);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 100% at 50% 0%, rgba(255, 255, 255, .18), transparent 60%);
  pointer-events: none;
}

.cta-final h2 {
  color: #fff;
  position: relative;
}

.cta-final p {
  color: rgba(255, 255, 255, .9);
  position: relative;
}

.cta-final .btn {
  position: relative;
}

@media (max-width: 700px) {
  .cta-final {
    border-radius: var(--r-xl);
  }
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}

.faq summary {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary i {
  color: var(--brand);
  font-size: 1.5rem;
  transition: transform var(--ease);
}

.faq details[open] summary i {
  transform: rotate(45deg);
}

.faq p {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 72ch;
  font-size: 1.05rem;
}

/* Forms */
.form {
  display: grid;
  gap: 1.2rem;
}

.field {
  display: grid;
  gap: .45rem;
}

.field label {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
}

.field input,
.field select {
  font: inherit;
  padding: .95rem 1.1rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.field input::placeholder {
  color: var(--muted-2);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 79, 1, .14);
}

/* Footer — light (Apple-style) */
.footer {
  background: var(--paper-2);
  color: var(--muted);
  padding: 4rem 0 3rem;
  position: relative;
  z-index: var(--z-base);
}

.footer a {
  color: var(--muted);
  transition: color var(--ease);
}

.footer a:hover {
  color: var(--brand);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: .96rem;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: .88rem;
  color: var(--muted-2);
}

.footer__bottom a {
  color: var(--muted-2);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

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

  * {
    scroll-behavior: auto;
  }
}
/* ============================================================
   Custom animated SVG assets (revenue chart + AI intake graph)
   ============================================================ */
.viz {
  width: 84%;
  max-width: 380px;
  height: auto;
  display: block;
  overflow: visible;
}
.viz .bar { transform-box: fill-box; transform-origin: bottom; }
.viz-dot { opacity: 0; filter: drop-shadow(0 0 7px rgba(255, 79, 1, .65)); }
.viz-end-pulse { transform-box: fill-box; transform-origin: center; }
.viz-orbit-rot, .viz-orbit-rot2, .viz-core, .viz-core-glow, .viz-spark { transform-box: fill-box; transform-origin: center; }

@media (prefers-reduced-motion: no-preference) {
  .viz .bar { animation: viz-bar 4s ease-in-out infinite; }
  .viz .b2 { animation-delay: .2s; }
  .viz .b3 { animation-delay: .4s; }
  .viz .b4 { animation-delay: .6s; }
  .viz .b5 { animation-delay: .8s; }
  /* .viz-dot travels via SMIL animateMotion in the SVG (robust in Safari) */
  .viz-end-pulse { animation: viz-ping 2.2s ease-out infinite; }
  .viz-orbit-rot { animation: viz-spin 16s linear infinite; }
  .viz-orbit-rot2 { animation: viz-spin 24s linear infinite reverse; }
  .viz-core { animation: viz-corepulse 3.6s ease-in-out infinite; }
  .viz-core-glow { animation: viz-glow 3.6s ease-in-out infinite; }
  .viz-spark { animation: viz-twinkle 4.4s ease-in-out infinite; }
}
@keyframes viz-bar { 0%, 100% { transform: scaleY(.84); } 50% { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .viz-dot { display: none; } }
@keyframes viz-ping { 0% { transform: scale(1); opacity: .65; } 70% { opacity: 0; } 100% { transform: scale(2.7); opacity: 0; } }
@keyframes viz-spin { to { transform: rotate(360deg); } }
@keyframes viz-corepulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes viz-glow { 0%, 100% { transform: scale(.88); opacity: .5; } 50% { transform: scale(1.16); opacity: 1; } }
@keyframes viz-twinkle { 0%, 100% { transform: scale(1) rotate(0); } 50% { transform: scale(1.2) rotate(18deg); } }

/* ============================================================
   Mobile responsiveness hardening
   Overrides inline grid styles that bypass the media queries,
   prevents grid blowout from form controls, and stacks split
   layouts on phones. (Inline styles need !important to override.)
   ============================================================ */

/* Two-column "split" blocks (hero+form, text+media) stack on mobile */
@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .spot__panel {
    width: 100%;
  }
}

/* Home "trio" uses an inline repeat(3,1fr) that must collapse */
@media (max-width: 760px) {
  .trio {
    grid-template-columns: 1fr !important;
  }
}

/* Form controls: always full-width, never blow out their grid track */
.form { min-width: 0; }
.field { min-width: 0; }
.field input,
.field select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

/* Long single-word CTAs / headings never force horizontal scroll */
@media (max-width: 420px) {
  .btn { white-space: normal; }
}
