:root {
  color-scheme: light;
  --bg: #fff7ed;
  --bg-soft: rgba(255, 247, 237, .72);
  --panel: rgba(255, 255, 255, .66);
  --panel-strong: rgba(255, 255, 255, .86);
  --text: #23170f;
  --muted: rgba(35, 23, 15, .66);
  --line: rgba(124, 45, 18, .16);
  --accent: #f97316;
  --accent-2: #fb923c;
  --accent-dark: #9a3412;
  --cream: #fffaf5;
  --star: #f5b301;
  --shadow: 0 24px 80px rgba(124, 45, 18, .18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --max: 1120px;
  --header-h: 78px;
}

:root.dark-mode {
  color-scheme: dark;
  --bg: #090604;
  --bg-soft: rgba(9, 6, 4, .72);
  --panel: rgba(21, 13, 8, .62);
  --panel-strong: rgba(28, 18, 12, .86);
  --text: #fff7ed;
  --muted: rgba(255, 247, 237, .68);
  --line: rgba(251, 146, 60, .22);
  --accent: #fb7a1d;
  --accent-2: #ffb86b;
  --accent-dark: #fed7aa;
  --cream: #130b07;
  --shadow: 0 24px 90px rgba(0, 0, 0, .48);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Onest, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.vanta-ready {
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 20%), rgba(249, 115, 22, .20), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.10), transparent 42%, rgba(255,255,255,.08));
  z-index: 1;
}
.dark-mode body::before,
:root.dark-mode body::before {
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 20%), rgba(249, 115, 22, .22), transparent 28rem),
    linear-gradient(180deg, rgba(0,0,0,.10), transparent 42%, rgba(0,0,0,.18));
}

#vanta-fog {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,184,107,.62), transparent 32rem),
    radial-gradient(circle at 78% 30%, rgba(249,115,22,.48), transparent 34rem),
    radial-gradient(circle at 50% 90%, rgba(154,52,18,.28), transparent 34rem),
    var(--bg);
  pointer-events: none;
  overflow: hidden;
}

#vanta-fog::before,
#vanta-fog::after {
  content: "";
  position: absolute;
  inset: -22%;
  background:
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.34), transparent 23rem),
    radial-gradient(circle at 70% 55%, rgba(251,146,60,.32), transparent 24rem),
    radial-gradient(circle at 45% 75%, rgba(154,52,18,.22), transparent 24rem);
  filter: blur(34px);
  animation: fallbackFog 18s ease-in-out infinite alternate;
}
#vanta-fog::after { animation-duration: 26s; animation-direction: alternate-reverse; opacity: .7; }
body.vanta-ready #vanta-fog::before,
body.vanta-ready #vanta-fog::after { opacity: 0; }
#vanta-fog canvas {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1;
}
@keyframes fallbackFog {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(3%, 2%, 0) scale(1.08); }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.dark-mode .noise { opacity: .16; mix-blend-mode: screen; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

main, .site-header, .footer {
  position: relative;
  z-index: 3;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(var(--max), calc(100% - 32px));
  min-height: var(--header-h);
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel-strong) 82%, transparent);
  backdrop-filter: blur(22px) saturate(1.3);
  box-shadow: 0 18px 60px rgba(124, 45, 18, .12);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: -.03em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff7ed, var(--accent-2) 38%, var(--accent) 72%, #7c2d12);
  box-shadow: 0 0 34px rgba(249,115,22,.45);
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a, .theme-toggle, .menu-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 11px 14px;
  border-radius: 999px;
  cursor: pointer;
}
.nav a:hover, .theme-toggle:hover { color: var(--text); background: rgba(249, 115, 22, .10); }
.nav-cta { color: #fff !important; background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important; box-shadow: 0 12px 34px rgba(249,115,22,.32); }
.menu-button { display: none; font-size: 1.35rem; color: var(--text); }

.section-grid, .section { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.hero {
  min-height: calc(100vh - var(--header-h) - 20px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .86fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: 46px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 850;
}
.hero-headline, h2, h3, p { margin-top: 0; }
.hero-headline {
  margin-bottom: 20px;
  max-width: 820px;
  font-size: clamp(3.15rem, 7vw, 7.2rem);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 900;
  color: var(--text);
}
.switch-slot {
  display: inline-grid;
  min-width: 4.95em;
  vertical-align: baseline;
}
.switch-word {
  color: var(--accent);
  text-shadow: 0 0 42px rgba(249,115,22,.34);
  transition: opacity .22s ease, transform .22s ease;
}
.switch-word.is-switching { opacity: 0; transform: translateY(.18em) scale(.98); }
.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
  line-height: 1.7;
  margin-bottom: 26px;
}
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 18px 50px rgba(249, 115, 22, .32); border-color: transparent; }
.button.ghost { background: color-mix(in srgb, var(--panel) 88%, transparent); color: var(--text); backdrop-filter: blur(16px); }
.button.small { min-height: 44px; padding: 0 18px; font-size: .94rem; }
.hero-stats {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-stats span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel) 78%, transparent);
  color: var(--muted);
  backdrop-filter: blur(16px);
}
.hero-stats strong { color: var(--text); }

.hero-visual { transform: translateY(var(--parallax-y, 0)); }
.showcase-shell, .visual-real-card, .service-card, .step, .review-card, .contact-panel {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  backdrop-filter: blur(22px) saturate(1.2);
  box-shadow: var(--shadow);
}
.showcase-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 14px;
  transform: rotate(1.5deg);
}
.showcase-shell img { border-radius: 24px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.browser-dots { display: flex; gap: 7px; padding: 6px 6px 12px; }
.browser-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); opacity: .8; }
.floating-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #431407;
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(67,20,7,.22);
}
.dark-mode .floating-badge { background: rgba(16,10,7,.72); color: #fed7aa; }

.section { padding: 64px 0; }
.section-heading { max-width: 720px; margin-bottom: 26px; }
.section-heading h2, .sticky-copy h2, .contact-panel h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 14px;
}
.section-heading p, .sticky-copy p, .contact-panel p { color: var(--muted); line-height: 1.7; }
.cards, .review-grid, .timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-card, .step, .review-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}
.service-card::after, .step::after, .review-card::after, .contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--local-x, 40%) var(--local-y, 20%), rgba(249,115,22,.18), transparent 18rem);
  pointer-events: none;
  opacity: .85;
}
.card-index, .step b { color: var(--accent); font-weight: 900; }
h3 { font-size: 1.35rem; letter-spacing: -.035em; margin: 16px 0 10px; }
.service-card p, .step p, .review-card p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }

.showcase {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 28px;
  align-items: center;
}
.sticky-copy { position: sticky; top: 130px; align-self: start; }
.visual-showcase-grid {
  display: grid;
  grid-template-columns: 1fr .46fr;
  gap: 14px;
  align-items: end;
}
.visual-real-card { border-radius: var(--radius-xl); overflow: hidden; padding: 10px; }
.visual-real-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.desktop-card img { aspect-ratio: 16/10; }
.mobile-card { transform: translateY(24px); }
.mobile-card img { aspect-ratio: 9/16; }

.timeline.compact .step { min-height: 180px; }
.reviews-section { padding-top: 42px; }
.stars { color: var(--star); letter-spacing: .12em; font-size: 1.12rem; margin-bottom: 18px; text-shadow: 0 0 20px rgba(245,179,1,.22); }
.review-author { margin-top: 22px; display: flex; flex-direction: column; gap: 3px; }
.review-author span { color: var(--muted); font-size: .9rem; }

.contact { padding-bottom: 84px; }
.contact-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 52px);
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact-form { display: grid; gap: 12px; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-strong) 86%, transparent);
  color: var(--text);
  border-radius: 18px;
  padding: 16px 18px;
  outline: none;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus { border-color: rgba(249,115,22,.58); box-shadow: 0 0 0 4px rgba(249,115,22,.12); }

.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  padding: 20px 0;
}

.cursor, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 100;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor { width: 7px; height: 7px; background: var(--accent); box-shadow: 0 0 26px rgba(249,115,22,.75); }
.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(249,115,22,.42); transition: width .2s ease, height .2s ease, border-color .2s ease; }
.cursor-ring.active { width: 58px; height: 58px; border-color: rgba(249,115,22,.72); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.hoverable { position: relative; }

@media (min-width: 1180px) {
  :root { --max: 1080px; }
  .hero { gap: 34px; }
  .section { padding: 56px 0; }
  .cards, .review-grid, .timeline { gap: 12px; }
}

@media (max-width: 900px) {
  .site-header { top: 10px; width: calc(100% - 20px); }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: absolute;
    right: 0; top: calc(100% + 10px);
    width: min(340px, calc(100vw - 24px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--panel-strong);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .hero, .showcase, .contact-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 48px; }
  .hero-headline { font-size: clamp(3rem, 13vw, 5.4rem); }
  .cards, .review-grid, .timeline { grid-template-columns: 1fr; }
  .service-card, .step, .review-card { min-height: unset; }
  .sticky-copy { position: static; }
  .visual-showcase-grid { grid-template-columns: 1fr; }
  .mobile-card { transform: none; max-width: 300px; margin-left: auto; }
}

@media (max-width: 560px) {
  .section-grid, .section, .footer { width: calc(100% - 24px); }
  .site-header { border-radius: 24px; }
  .brand span:last-child { max-width: 150px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero { padding-bottom: 38px; }
  .section { padding: 44px 0; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .showcase-shell { transform: none; }
  .footer { flex-direction: column; }
  .cursor, .cursor-ring { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Clean visual replacements: no unstyled photos, only branded glass UI visuals */
.showcase-shell img,
.visual-real-card img { display: none; }

.premium-mockup {
  min-height: clamp(430px, 43vw, 560px);
  isolation: isolate;
}
.mockup-stage {
  position: relative;
  min-height: clamp(360px, 36vw, 490px);
  border-radius: 24px;
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px);
  background:
    radial-gradient(circle at 70% 22%, rgba(255,184,107,.42), transparent 24rem),
    radial-gradient(circle at 20% 80%, rgba(249,115,22,.28), transparent 22rem),
    linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,247,237,.22));
  border: 1px solid rgba(249,115,22,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42);
}
:root.dark-mode .mockup-stage {
  background:
    radial-gradient(circle at 70% 22%, rgba(255,184,107,.26), transparent 24rem),
    radial-gradient(circle at 20% 80%, rgba(249,115,22,.18), transparent 22rem),
    linear-gradient(135deg, rgba(28,18,12,.82), rgba(8,5,3,.48));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.mockup-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -70px;
  top: -60px;
  border-radius: 50%;
  background: rgba(251,146,60,.38);
  filter: blur(40px);
  animation: floatGlow 7s ease-in-out infinite alternate;
}
.mockup-nav,
.mockup-metrics,
.mockup-cards,
.result-grid,
.result-bars,
.phone-steps { position: relative; z-index: 1; }
.mockup-nav { display: flex; gap: 10px; justify-content: flex-end; }
.mockup-nav span {
  width: clamp(44px, 6vw, 74px);
  height: 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 22%, transparent);
}
.mockup-hero-line {
  position: relative;
  z-index: 1;
  width: 76%;
  height: clamp(56px, 7vw, 82px);
  margin-top: clamp(56px, 8vw, 84px);
  border-radius: 22px;
  background: linear-gradient(90deg, var(--text), var(--accent), var(--accent-2));
  mask: linear-gradient(#000 0 0) left/100% 28% no-repeat,
        linear-gradient(#000 0 0) left 50%/76% 28% no-repeat,
        linear-gradient(#000 0 0) left bottom/52% 28% no-repeat;
  -webkit-mask: linear-gradient(#000 0 0) left/100% 28% no-repeat,
        linear-gradient(#000 0 0) left 50%/76% 28% no-repeat,
        linear-gradient(#000 0 0) left bottom/52% 28% no-repeat;
  opacity: .92;
}
.mockup-hero-subline {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 12px;
  margin-top: 24px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 48%, transparent);
  box-shadow: 0 22px 0 color-mix(in srgb, var(--muted) 28%, transparent);
}
.mockup-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: clamp(58px, 7vw, 86px);
}
.mockup-metrics span,
.mockup-cards span,
.result-grid i,
.phone-shell {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-strong) 80%, transparent);
  backdrop-filter: blur(18px);
}
.mockup-metrics span {
  display: grid;
  gap: 3px;
  min-height: 78px;
  align-content: center;
  padding: 14px;
  border-radius: 18px;
  color: var(--muted);
  font-size: .82rem;
}
.mockup-metrics b { color: var(--text); font-size: 1.26rem; }
.mockup-cards {
  display: grid;
  grid-template-columns: 1.1fr .9fr .7fr;
  gap: 10px;
  margin-top: 10px;
}
.mockup-cards span { height: 86px; border-radius: 18px; }
.mockup-cards span:nth-child(1) { background: linear-gradient(135deg, rgba(249,115,22,.22), color-mix(in srgb, var(--panel-strong) 84%, transparent)); }
.mockup-cards span:nth-child(2) { background: linear-gradient(135deg, rgba(255,184,107,.22), color-mix(in srgb, var(--panel-strong) 84%, transparent)); }
.mockup-cards span:nth-child(3) { background: linear-gradient(135deg, rgba(154,52,18,.18), color-mix(in srgb, var(--panel-strong) 84%, transparent)); }

.result-board,
.launch-card {
  position: relative;
  min-height: 430px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 78% 18%, rgba(255,184,107,.26), transparent 18rem),
    color-mix(in srgb, var(--panel) 86%, transparent);
}
.result-board::before,
.launch-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 26px;
  border: 1px solid rgba(249,115,22,.14);
  pointer-events: none;
}
.result-top { display: flex; align-items: center; justify-content: space-between; color: var(--accent); font-weight: 850; text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; }
.result-top b { font-size: 1.6rem; letter-spacing: -.04em; color: var(--text); }
.result-title { max-width: 520px; margin-top: 58px; font-weight: 900; letter-spacing: -.055em; line-height: .98; font-size: clamp(2.15rem, 4.2vw, 4.4rem); color: var(--text); }
.result-bars { display: grid; gap: 11px; margin-top: 42px; max-width: 72%; }
.result-bars span { height: 12px; border-radius: 999px; background: color-mix(in srgb, var(--muted) 34%, transparent); }
.result-bars span:nth-child(2) { width: 78%; }
.result-bars span:nth-child(3) { width: 52%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.result-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-top: 32px; }
.result-grid i { height: 84px; border-radius: 18px; }
.mobile-card { min-height: 430px; display: grid; place-items: center; }
.phone-shell {
  width: min(100%, 230px);
  min-height: 350px;
  border-radius: 34px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 22px 60px rgba(124,45,18,.18);
}
.phone-shell::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 130px;
  border-radius: 24px;
  background: radial-gradient(circle at 60% 30%, rgba(255,184,107,.7), transparent 60%), linear-gradient(135deg, rgba(249,115,22,.34), transparent);
  filter: blur(.5px);
}
.phone-pill { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 58px; height: 6px; border-radius: 999px; background: color-mix(in srgb, var(--text) 24%, transparent); }
.phone-shell strong { position: relative; z-index: 1; font-size: 1.55rem; letter-spacing: -.05em; }
.phone-shell p { position: relative; z-index: 1; margin: 10px 0 20px; color: var(--muted); line-height: 1.45; }
.phone-steps { display: grid; gap: 9px; }
.phone-steps span { height: 11px; border-radius: 999px; background: color-mix(in srgb, var(--muted) 34%, transparent); }
.phone-steps span:last-child { width: 70%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

@keyframes floatGlow {
  from { transform: translate3d(0,0,0) scale(1); opacity: .78; }
  to { transform: translate3d(-26px,34px,0) scale(1.12); opacity: .48; }
}

@media (max-width: 900px) {
  .premium-mockup { min-height: 390px; }
  .mockup-stage { min-height: 330px; }
  .result-board, .launch-card, .mobile-card { min-height: 360px; }
  .result-title { margin-top: 38px; }
}

@media (max-width: 560px) {
  .mockup-metrics { grid-template-columns: 1fr; margin-top: 44px; }
  .mockup-cards { display: none; }
  .mockup-hero-line { width: 92%; margin-top: 42px; }
  .result-grid { grid-template-columns: repeat(2, 1fr); }
  .result-bars { max-width: 100%; }
}

/* Polished abstract visuals replacing placeholder-style mockups */
.aurora-device { transform: rotate(1.1deg); }
.aurora-stage {
  position: relative;
  min-height: clamp(390px, 39vw, 540px);
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 219, 184, .48), transparent 20rem),
    radial-gradient(circle at 76% 72%, rgba(249, 115, 22, .34), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,.52), rgba(255, 237, 213, .18));
  border: 1px solid rgba(249,115,22,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42);
  isolation: isolate;
}
:root.dark-mode .aurora-stage {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 184, 107, .28), transparent 22rem),
    radial-gradient(circle at 76% 72%, rgba(249, 115, 22, .24), transparent 24rem),
    linear-gradient(135deg, rgba(28,18,12,.82), rgba(8,5,3,.48));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .85;
  mix-blend-mode: screen;
  animation: orbFloat 9s ease-in-out infinite alternate;
}
.orb-one { width: 240px; height: 240px; left: -76px; top: 42px; background: radial-gradient(circle, rgba(255,214,170,.86), rgba(249,115,22,.06) 68%); }
.orb-two { width: 330px; height: 330px; right: -118px; bottom: -86px; background: radial-gradient(circle, rgba(249,115,22,.54), rgba(154,52,18,.04) 70%); animation-delay: -2.5s; }
.orb-three { width: 150px; height: 150px; right: 24%; top: 14%; background: radial-gradient(circle, rgba(255,255,255,.82), rgba(251,146,60,.08) 68%); animation-delay: -4.5s; }
.glass-window {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.28);
  background: linear-gradient(135deg, rgba(255,255,255,.42), rgba(255,255,255,.14));
  backdrop-filter: blur(24px) saturate(1.25);
  box-shadow: 0 24px 80px rgba(124,45,18,.18), inset 0 1px 0 rgba(255,255,255,.38);
}
:root.dark-mode .glass-window { background: linear-gradient(135deg, rgba(38,25,17,.66), rgba(12,7,5,.28)); border-color: rgba(255,255,255,.12); }
.main-window { left: 9%; top: 18%; width: 68%; min-height: 245px; border-radius: 28px; padding: clamp(22px, 3vw, 34px); }
.window-top { display: flex; gap: 9px; margin-bottom: 44px; }
.window-top span { width: 38px; height: 9px; border-radius: 999px; background: color-mix(in srgb, var(--text) 18%, transparent); }
.window-title { max-width: 520px; font-size: clamp(2rem, 4vw, 4.2rem); line-height: .9; letter-spacing: -.07em; font-weight: 900; }
.window-copy { max-width: 330px; margin-top: 18px; color: var(--muted); line-height: 1.55; }
.window-action { display: inline-flex; margin-top: 24px; padding: 12px 16px; border-radius: 999px; color: #fff; font-weight: 850; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 18px 44px rgba(249,115,22,.3); }
.mini-window { display: grid; gap: 4px; min-width: 150px; padding: 16px 18px; border-radius: 22px; }
.mini-window b { font-size: 1.5rem; letter-spacing: -.05em; }
.mini-window span { color: var(--muted); font-size: .86rem; }
.left-window { left: 4%; bottom: 12%; animation: cardFloat 7s ease-in-out infinite alternate; }
.right-window { right: 6%; top: 15%; animation: cardFloat 8s ease-in-out infinite alternate-reverse; }
.flow-line { position: absolute; z-index: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent); transform: rotate(-24deg); }
.line-one { width: 74%; left: 12%; top: 48%; }
.line-two { width: 58%; left: 22%; top: 64%; transform: rotate(19deg); }

.strategy-board,
.signal-card {
  position: relative;
  min-height: 430px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 16% 18%, rgba(255,219,184,.34), transparent 18rem),
    radial-gradient(circle at 82% 72%, rgba(249,115,22,.22), transparent 19rem),
    color-mix(in srgb, var(--panel) 88%, transparent);
}
.board-header { display: flex; align-items: center; justify-content: space-between; color: var(--accent); font-weight: 900; text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; }
.board-header b { color: var(--text); font-size: 1.7rem; letter-spacing: -.05em; }
.flow-canvas { position: relative; height: 330px; margin-top: 22px; }
.flow-node {
  position: absolute;
  z-index: 2;
  width: min(230px, 46%);
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, color-mix(in srgb, var(--panel-strong) 86%, transparent), color-mix(in srgb, var(--panel) 66%, transparent));
  backdrop-filter: blur(22px);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(124,45,18,.12);
}
.flow-node strong { display: block; font-size: 1.12rem; letter-spacing: -.035em; margin-bottom: 7px; }
.flow-node span { color: var(--muted); line-height: 1.45; font-size: .92rem; }
.node-primary { left: 0; top: 16px; }
.flow-node:nth-child(2) { right: 6%; top: 58px; }
.flow-node:nth-child(3) { left: 12%; bottom: 26px; }
.node-accent { right: 0; bottom: 0; border-color: rgba(249,115,22,.32); box-shadow: 0 24px 70px rgba(249,115,22,.17); }
.connector { position: absolute; z-index: 1; height: 2px; border-radius: 999px; background: linear-gradient(90deg, rgba(249,115,22,.05), rgba(249,115,22,.72), rgba(255,184,107,.05)); transform-origin: left center; }
.c1 { width: 38%; left: 31%; top: 29%; transform: rotate(11deg); }
.c2 { width: 42%; left: 28%; top: 57%; transform: rotate(-21deg); }
.c3 { width: 36%; left: 44%; bottom: 18%; transform: rotate(-5deg); }
.signal-shell {
  position: relative;
  width: min(100%, 260px);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 20px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(160deg, rgba(255,255,255,.38), rgba(255,255,255,.08));
  backdrop-filter: blur(22px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 26px 70px rgba(124,45,18,.18);
}
:root.dark-mode .signal-shell { background: linear-gradient(160deg, rgba(38,25,17,.66), rgba(10,6,4,.24)); }
.signal-orbit { position: absolute; inset: 24px 22px auto; height: 160px; border-radius: 28px; display: grid; place-items: center; }
.signal-orbit::before { content: ""; width: 112px; height: 112px; border-radius: 50%; border: 1px solid rgba(249,115,22,.32); box-shadow: 0 0 0 28px rgba(249,115,22,.06), 0 0 70px rgba(249,115,22,.32); animation: pulseSoft 3.8s ease-in-out infinite; }
.signal-orbit span { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 22px rgba(249,115,22,.74); animation: orbitDot 7s linear infinite; }
.signal-orbit span:nth-child(2) { animation-duration: 9s; animation-delay: -2s; transform-origin: 58px 58px; }
.signal-orbit span:nth-child(3) { animation-duration: 11s; animation-delay: -4s; }
.signal-shell strong { position: relative; z-index: 1; font-size: 1.55rem; letter-spacing: -.05em; }
.signal-shell p { position: relative; z-index: 1; margin: 10px 0 0; color: var(--muted); line-height: 1.5; }
@keyframes orbFloat { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(24px,-18px,0) scale(1.08); } }
@keyframes cardFloat { from { transform: translateY(0); } to { transform: translateY(-12px); } }
@keyframes pulseSoft { 0%,100% { transform: scale(.94); opacity: .78; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes orbitDot { from { transform: rotate(0deg) translateX(66px) rotate(0deg); } to { transform: rotate(360deg) translateX(66px) rotate(-360deg); } }

@media (max-width: 900px) {
  .main-window { width: 78%; left: 7%; }
  .right-window { right: 5%; top: auto; bottom: 8%; }
  .flow-canvas { height: 360px; }
  .flow-node { width: 72%; }
  .flow-node:nth-child(2), .node-accent { right: 0; }
}
@media (max-width: 560px) {
  .aurora-stage { min-height: 420px; }
  .main-window { width: 88%; min-height: 250px; }
  .window-title { font-size: 2.25rem; }
  .mini-window { min-width: 126px; padding: 13px; }
  .left-window { left: 6%; bottom: 8%; }
  .right-window { right: 5%; bottom: 26%; }
  .flow-canvas { height: 470px; }
  .flow-node { position: relative; width: 100%; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; margin-bottom: 12px; }
  .connector { display: none; }
}

/* Cinematic hero recreation from provided reference: coded, not image-based */
:root {
  --cinema-black: #050301;
  --cinema-panel: rgba(20, 10, 4, .54);
  --cinema-border: rgba(255, 139, 37, .45);
  --cinema-glow: rgba(255, 109, 15, .58);
}
:root.dark-mode {
  --bg: #050301;
  --panel: rgba(18, 9, 4, .58);
  --panel-strong: rgba(24, 12, 5, .82);
  --text: #fffaf2;
  --muted: rgba(255, 242, 224, .72);
  --line: rgba(255, 139, 37, .22);
  --accent: #ff6f16;
  --accent-2: #ffad61;
  --accent-dark: #ffd1a3;
}
:root:not(.dark-mode) {
  --bg: #fff5e8;
  --accent: #ff7417;
  --accent-2: #ffb06a;
  --accent-dark: #9a3e0a;
}
#vanta-fog {
  background:
    radial-gradient(circle at 78% 48%, rgba(255,113,18,.55), transparent 30rem),
    radial-gradient(circle at 100% 38%, rgba(255,154,59,.32), transparent 22rem),
    linear-gradient(105deg, #050301 0%, #0a0502 35%, #211006 68%, #5a2408 100%) !important;
}
:root:not(.dark-mode) #vanta-fog {
  background:
    radial-gradient(circle at 78% 48%, rgba(255,139,37,.42), transparent 30rem),
    radial-gradient(circle at 100% 38%, rgba(255,184,107,.30), transparent 22rem),
    linear-gradient(105deg, #fff7ef 0%, #fff2e4 36%, #ffe2c7 68%, #ffc48d 100%) !important;
}
body::before {
  background:
    radial-gradient(circle at 82% 48%, rgba(255,109,15,.34), transparent 27rem),
    linear-gradient(90deg, rgba(0,0,0,.62), transparent 52%, rgba(255,109,15,.13)) !important;
}
:root:not(.dark-mode) body::before {
  background:
    radial-gradient(circle at 82% 48%, rgba(255,139,37,.26), transparent 27rem),
    linear-gradient(90deg, rgba(255,255,255,.35), transparent 52%, rgba(255,139,37,.10)) !important;
}
.site-header {
  max-width: 1080px;
  min-height: 64px;
  top: 26px;
  border-radius: 999px;
  background: rgba(7, 4, 2, .72);
  border-color: rgba(255, 139, 37, .12);
  box-shadow: 0 22px 70px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
}
:root:not(.dark-mode) .site-header {
  background: rgba(255, 248, 239, .76);
  box-shadow: 0 22px 70px rgba(124,45,18,.16), inset 0 1px 0 rgba(255,255,255,.58);
}
.brand-mark {
  background: radial-gradient(circle at 32% 24%, #ffd7ae, #ff7417 58%, #9a3412 100%);
  box-shadow: 0 0 28px rgba(255,116,23,.78);
}
.hero {
  min-height: calc(100vh - 30px);
  grid-template-columns: minmax(430px, .92fr) minmax(530px, 1.08fr);
  gap: clamp(38px, 5vw, 72px);
  padding-top: 118px;
  padding-bottom: 58px;
}
.hero-copy { position: relative; z-index: 4; }
.cinematic-title {
  display: grid;
  gap: 0;
  font-size: clamp(4.25rem, 7.6vw, 7.95rem);
  line-height: .86;
  letter-spacing: -.082em;
  max-width: 610px;
  color: #fffaf2;
  text-shadow: 0 12px 0 rgba(0,0,0,.18), 0 0 24px rgba(255,255,255,.10);
}
:root:not(.dark-mode) .cinematic-title { color: #180b04; text-shadow: 0 9px 0 rgba(124,45,18,.08); }
.cinematic-title .switch-slot {
  min-width: 0;
  display: block;
  color: var(--accent);
}
.cinematic-title .switch-word {
  display: inline-block;
  color: var(--accent);
  min-width: 3.68em;
  text-shadow: 0 0 42px rgba(255,111,22,.46), 0 10px 0 rgba(0,0,0,.14);
}
.hero-text { max-width: 550px; font-size: 1.06rem; }
.hero-stats span {
  border-color: rgba(255, 139, 37, .28);
  background: rgba(7,4,2,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
:root:not(.dark-mode) .hero-stats span { background: rgba(255,255,255,.46); }
.cinematic-visual {
  position: relative;
  min-height: clamp(520px, 45vw, 650px);
  transform: translateY(var(--parallax-y, 0));
  isolation: isolate;
}
.hero-orbit {
  position: absolute;
  width: min(46vw, 650px);
  height: min(46vw, 650px);
  right: -13%;
  top: 8%;
  border-radius: 50%;
  z-index: 0;
  filter: drop-shadow(0 0 70px rgba(255,109,15,.34));
  animation: orbitDrift 9s ease-in-out infinite alternate;
}
.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  background: radial-gradient(circle at 57% 50%, rgba(255,116,23,.68), rgba(255,116,23,.20) 34%, rgba(255,116,23,.06) 55%, transparent 71%);
  filter: blur(7px);
}
.hero-orbit span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.4px solid rgba(255,116,23,.42);
  box-shadow: inset 0 0 40px rgba(255,116,23,.08), 0 0 36px rgba(255,116,23,.18);
  animation: slowSpin 18s linear infinite;
}
.hero-orbit span:nth-child(2) { inset: 13%; opacity: .92; animation-duration: 22s; animation-direction: reverse; }
.hero-orbit span:nth-child(3) { inset: 29%; opacity: .72; animation-duration: 28s; }
.halo-card,
.phone-halo-card {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--cinema-border);
  background:
    radial-gradient(circle at 86% 11%, rgba(255, 139, 37, .20), transparent 18rem),
    linear-gradient(160deg, rgba(38,18,7,.74), rgba(8,4,2,.54));
  backdrop-filter: blur(26px) saturate(1.2);
  box-shadow:
    0 28px 90px rgba(0,0,0,.45),
    0 0 54px rgba(255,109,15,.18),
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 0 0 1px rgba(255,255,255,.03);
}
:root:not(.dark-mode) .halo-card,
:root:not(.dark-mode) .phone-halo-card {
  background:
    radial-gradient(circle at 86% 11%, rgba(255, 139, 37, .24), transparent 18rem),
    linear-gradient(160deg, rgba(255,248,240,.72), rgba(255,231,205,.44));
  box-shadow:
    0 28px 90px rgba(124,45,18,.18),
    0 0 54px rgba(255,109,15,.16),
    inset 0 1px 0 rgba(255,255,255,.66);
}
.main-halo-card {
  left: 4%;
  top: 19%;
  width: min(430px, 62%);
  min-height: 510px;
  border-radius: 32px;
  padding: 34px 38px;
}
.main-halo-card::before,
.phone-halo-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,198,139,.56), transparent 18%, transparent 74%, rgba(255,109,15,.44));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding: 1px;
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}
.halo-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
  color: var(--accent-2);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .22em;
}
.halo-card-top i,
.phone-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 22%, #ffd8ad, #ff7417 62%, #9a3412);
  box-shadow: 0 0 22px rgba(255,116,23,.9);
}
.main-halo-card h2 {
  margin: 0;
  color: #fffaf2;
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  line-height: .94;
  letter-spacing: -.078em;
  font-weight: 900;
  text-shadow: 0 8px 0 rgba(0,0,0,.17);
}
:root:not(.dark-mode) .main-halo-card h2 { color: #180b04; text-shadow: none; }
.card-divider {
  width: 155px;
  height: 2px;
  margin: 32px 0 20px;
  background: linear-gradient(90deg, rgba(255,255,255,.28), rgba(255,255,255,.05));
}
:root:not(.dark-mode) .card-divider { background: linear-gradient(90deg, rgba(67,20,7,.28), rgba(67,20,7,.05)); }
.main-halo-card p {
  max-width: 330px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.micro-link { display: inline-flex; align-items: center; gap: 14px; color: var(--muted); font-weight: 800; }
.micro-link b { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 28px rgba(255,116,23,.38); }
.phone-halo-card {
  right: 4%;
  bottom: 14%;
  width: 170px;
  min-height: 370px;
  border-radius: 34px;
  padding: 48px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  animation: phoneFloat 7.2s ease-in-out infinite alternate;
}
.phone-dot { position: absolute; top: 54px; left: 34px; width: 10px; height: 10px; }
.phone-halo-card strong {
  color: #fffaf2;
  font-size: 1.35rem;
  line-height: 1.03;
  letter-spacing: -.055em;
  margin-bottom: 24px;
}
:root:not(.dark-mode) .phone-halo-card strong { color: #180b04; }
.phone-halo-card p { color: var(--muted); line-height: 1.62; margin: 0 0 50px; }
.phone-bar { width: 52px; height: 7px; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); box-shadow: 0 0 22px rgba(255,116,23,.48); }
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes orbitDrift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-18px, 8px, 0) scale(1.03); } }
@keyframes phoneFloat { from { transform: translateY(0); } to { transform: translateY(-14px); } }
@media (min-width: 1180px) {
  :root { --max: 1180px; }
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 96px; }
  .cinematic-title { max-width: 760px; }
  .cinematic-visual { min-height: 560px; }
  .main-halo-card { left: 2%; width: min(500px, 72%); }
  .phone-halo-card { right: 2%; }
  .hero-orbit { right: -7%; width: 620px; height: 620px; }
}
@media (max-width: 560px) {
  .site-header { top: 10px; }
  .hero { padding-top: 78px; }
  .cinematic-title { font-size: clamp(3.2rem, 15vw, 5rem); }
  .cinematic-visual { min-height: 620px; }
  .hero-orbit { width: 520px; height: 520px; right: -180px; top: 62px; }
  .main-halo-card { width: 86%; min-height: 430px; padding: 26px 24px; top: 70px; }
  .halo-card-top { margin-bottom: 48px; }
  .phone-halo-card { width: 142px; min-height: 300px; right: 0; bottom: 18px; padding: 42px 20px 22px; }
}

/* Final reference-image hero + moved coded visual */
.hero-reference-frame {
  position: relative;
  z-index: 3;
  margin: 0;
  width: min(720px, 100%);
  transform: translateY(var(--parallax-y, 0));
  border-radius: 30px;
  overflow: visible;
  filter: drop-shadow(0 34px 70px rgba(0,0,0,.55));
}
.hero-reference-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 127, 27, .24);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 0 80px rgba(255, 106, 14, .18);
}
.hero-reference-frame::before {
  content: "";
  position: absolute;
  inset: -10% -18%;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 48%, rgba(255, 124, 22, .36), transparent 35%),
    radial-gradient(circle at 68% 52%, rgba(255, 85, 0, .18), transparent 50%);
  filter: blur(18px);
  animation: referenceGlowDrift 8s ease-in-out infinite alternate;
}
.reference-glow {
  position: absolute;
  right: -10%;
  top: 22%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(255, 126, 24, .32);
  box-shadow: inset 0 0 42px rgba(255, 110, 16, .12), 0 0 55px rgba(255, 103, 10, .18);
  mix-blend-mode: screen;
  animation: referenceOrbitSpin 18s linear infinite;
}
.reference-glow::before,
.reference-glow::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 1px solid rgba(255, 126, 24, .22);
  inset: 13%;
}
.reference-glow::after { inset: 28%; opacity: .65; }

.reference-showcase-visual {
  display: block;
  min-height: 620px;
}
.moved-cinematic {
  min-height: 620px;
  width: min(720px, 100%);
  margin-left: auto;
}
.moved-cinematic .hero-orbit {
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  opacity: .9;
}
.moved-cinematic .main-halo-card {
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
}
.moved-cinematic .phone-halo-card {
  right: 1%;
  top: 50%;
  transform: translateY(-38%);
}
@keyframes referenceOrbitSpin {
  from { transform: rotate(0deg) translate3d(0,0,0); }
  to { transform: rotate(360deg) translate3d(0,0,0); }
}
@keyframes referenceGlowDrift {
  from { transform: translate3d(-8px, 4px, 0) scale(.98); opacity: .72; }
  to { transform: translate3d(12px, -10px, 0) scale(1.04); opacity: 1; }
}
@media (max-width: 980px) {
  .hero-reference-frame { margin-inline: auto; width: min(680px, 100%); }
  .reference-showcase-visual { min-height: 560px; }
  .moved-cinematic { min-height: 560px; }
}
@media (max-width: 640px) {
  .hero-reference-frame { border-radius: 22px; }
  .hero-reference-frame img { border-radius: 20px; }
  .reference-glow { opacity: .55; right: -22%; width: 72%; }
  .reference-showcase-visual { min-height: 520px; }
  .moved-cinematic { min-height: 520px; }
  .moved-cinematic .main-halo-card { left: 0; width: min(330px, 82vw); }
  .moved-cinematic .phone-halo-card { right: -6px; width: 132px; }
}

/* Exact coded reference hero — built as HTML/CSS, not an inserted image */
:root {
  --ref-bg: #070503;
  --ref-panel: rgba(24, 13, 7, .52);
  --ref-orange: #ff7417;
  --ref-orange-2: #ff9b3d;
  --ref-cream: #fff5ea;
}
:root.dark-mode,
:root:not(.dark-mode) {
  --bg: #070503;
  --bg-soft: rgba(7,5,3,.72);
  --panel: rgba(21,12,7,.60);
  --panel-strong: rgba(12,7,4,.70);
  --text: #fff5ea;
  --muted: rgba(255,245,234,.72);
  --line: rgba(255, 116, 23, .22);
  --accent: #ff7417;
  --accent-2: #ff9b3d;
  --accent-dark: #ff7417;
}
body {
  background:
    radial-gradient(circle at 77% 32%, rgba(255, 116, 23, .24), transparent 33rem),
    radial-gradient(circle at 62% 66%, rgba(111, 45, 11, .26), transparent 30rem),
    linear-gradient(115deg, #020201 0%, #080503 42%, #241208 100%);
}
body::before {
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 116, 23, .26), transparent 28rem),
    linear-gradient(90deg, rgba(0,0,0,.52), transparent 48%, rgba(255, 116, 23, .10));
}
#vanta-fog { opacity: .55; }
.noise { opacity: .20; mix-blend-mode: screen; }
.site-header {
  width: min(1180px, calc(100% - 64px));
  min-height: 76px;
  margin-top: 24px;
  padding: 13px 18px 13px 26px;
  background: linear-gradient(90deg, rgba(3,3,2,.74), rgba(26,13,7,.62));
  border-color: rgba(255, 116, 23, .16);
  box-shadow: 0 24px 80px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.025);
}
.brand-mark { width: 28px; height: 28px; }
.nav { gap: 18px; }
.nav a, .theme-toggle, .menu-button { color: rgba(255,245,234,.78); }
.nav-cta { padding-inline: 24px !important; }
.reference-coded-hero {
  width: min(1180px, calc(100% - 64px));
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: minmax(340px, .74fr) minmax(560px, 1fr);
  grid-template-areas:
    "copy art"
    "features features";
  column-gap: clamp(40px, 6vw, 92px);
  row-gap: 58px;
  align-items: center;
  padding: clamp(74px, 10vh, 118px) 0 62px;
}
.reference-copy { grid-area: copy; position: relative; z-index: 4; }
.reference-copy .eyebrow {
  color: var(--ref-orange);
  margin-bottom: 28px;
  letter-spacing: .42em;
  font-size: .73rem;
  text-shadow: 0 0 22px rgba(255,116,23,.28);
}
.reference-title {
  font-size: clamp(4.7rem, 7.4vw, 7.95rem);
  line-height: .99;
  letter-spacing: -.085em;
  margin-bottom: 30px;
  max-width: 560px;
  color: var(--ref-cream);
  text-shadow: 0 8px 16px rgba(0,0,0,.32), 0 0 18px rgba(255,255,255,.05);
}
.reference-title span { display: block; }
.reference-title em {
  font-style: normal;
  color: var(--ref-orange);
  text-shadow: 0 0 38px rgba(255,116,23,.36);
}
.reference-text {
  max-width: 440px;
  color: rgba(255,245,234,.72);
  font-size: 1.11rem;
  line-height: 1.75;
  margin-bottom: 42px;
}
.reference-actions { display: block; }
.reference-cta {
  min-width: 290px;
  min-height: 58px;
  justify-content: space-between;
  padding-inline: 24px 28px;
  color: #fff !important;
  background: rgba(12,7,4,.38) !important;
  border-color: rgba(255,116,23,.42) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 0 34px rgba(255,116,23,.08);
}
.reference-cta span { color: var(--ref-orange); font-size: 1.45rem; }
.reference-hero-art {
  grid-area: art;
  position: relative;
  height: min(640px, 58vw);
  min-height: 560px;
  transform: translateY(var(--parallax-y, 0));
}
.reference-hero-art::before {
  content: "";
  position: absolute;
  inset: 9% -4% 7% 4%;
  background: radial-gradient(circle at 72% 48%, rgba(255,116,23,.34), transparent 34%), radial-gradient(circle at 54% 66%, rgba(255,116,23,.14), transparent 48%);
  filter: blur(18px);
  pointer-events: none;
  animation: refAmbient 8s ease-in-out infinite alternate;
}
.reference-sun {
  position: absolute;
  right: 132px;
  top: 52%;
  width: 244px;
  height: 244px;
  border-radius: 50%;
  transform: translateY(-50%);
  border: 3px solid rgba(255,244,222,.88);
  box-shadow: 0 0 18px rgba(255,237,204,.82), 0 0 88px rgba(255,116,23,.62), inset 0 0 40px rgba(255,116,23,.16);
  opacity: .96;
  animation: refSunDrift 11s ease-in-out infinite alternate, refSunSpin 24s linear infinite;
}
.reference-sun::before,
.reference-sun::after {
  content: "";
  position: absolute;
  inset: -120px;
  border-radius: 50%;
  border: 1px solid rgba(255,116,23,.20);
  box-shadow: 0 0 24px rgba(255,116,23,.12);
}
.reference-sun::after { inset: -205px; opacity: .56; border-color: rgba(255,116,23,.13); }
.reference-card {
  position: absolute;
  left: 0;
  top: 7%;
  width: 560px;
  height: 570px;
  overflow: hidden;
  border-radius: 26px;
  padding: 74px 52px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), transparent 36%),
    radial-gradient(circle at 76% 48%, rgba(255,116,23,.28), transparent 34%),
    rgba(17, 9, 5, .50);
  border: 1px solid rgba(255,116,23,.28);
  box-shadow: 0 34px 80px rgba(0,0,0,.36), inset 0 0 0 1px rgba(255,255,255,.035);
  backdrop-filter: blur(18px) saturate(1.2);
}
.reference-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.08' numOctaves='5' seed='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23a)' opacity='.72'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.reference-card .eyebrow {
  position: relative;
  margin: 0 0 82px;
  color: var(--ref-orange);
  letter-spacing: .34em;
  font-size: .72rem;
}
.reference-card h2 {
  position: relative;
  max-width: 380px;
  color: var(--ref-cream);
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.04em;
  font-size: clamp(3rem, 4vw, 4.15rem);
  margin-bottom: 28px;
}
.reference-card > p:not(.eyebrow) {
  position: relative;
  color: rgba(255,245,234,.74);
  font-size: 1rem;
  margin-top: 28px;
}
.reference-line {
  position: relative;
  display: block;
  width: 42px;
  height: 2px;
  background: var(--ref-orange);
  box-shadow: 0 0 18px rgba(255,116,23,.6);
}
.reference-rock {
  position: absolute;
  right: -88px;
  bottom: -70px;
  width: 520px;
  height: 245px;
  transform: rotate(-14deg);
  border-radius: 56% 44% 0 0 / 85% 80% 0 0;
  background:
    radial-gradient(circle at 72% 26%, rgba(255,149,53,.22), transparent 26%),
    linear-gradient(155deg, #231409 0%, #100905 45%, #040302 100%);
  box-shadow: -24px -20px 60px rgba(255,116,23,.20), inset 0 16px 30px rgba(255,255,255,.035);
  overflow: hidden;
}
.reference-rock::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 110' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 65 C28 32 58 75 91 36 C129 -8 145 67 200 20' fill='none' stroke='%23ff7417' stroke-opacity='.18' stroke-width='1'/%3E%3Cpath d='M8 85 C47 58 79 102 119 53 C143 23 162 91 196 58' fill='none' stroke='%23fff0df' stroke-opacity='.08' stroke-width='1'/%3E%3C/svg%3E");
  opacity: .8;
}
.reference-phone-card {
  position: absolute;
  right: 4px;
  top: 33%;
  width: 160px;
  height: 382px;
  border-radius: 22px;
  padding: 42px 28px 28px;
  background: linear-gradient(155deg, rgba(38,19,10,.78), rgba(5,4,3,.84));
  border: 1px solid rgba(255,116,23,.32);
  box-shadow: 0 28px 72px rgba(0,0,0,.42), 0 0 36px rgba(255,116,23,.15), inset 0 0 0 1px rgba(255,255,255,.035);
  backdrop-filter: blur(16px);
}
.reference-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ref-orange);
  border: 1px solid var(--ref-orange);
  box-shadow: 0 0 30px rgba(255,116,23,.18);
}
.reference-phone-card h3 {
  color: var(--ref-cream);
  font-size: 1.58rem;
  line-height: 1.1;
  letter-spacing: -.06em;
  margin-bottom: 24px;
}
.reference-phone-card span,
.reference-phone-card b {
  display: block;
  height: 2px;
  background: var(--ref-orange);
  box-shadow: 0 0 18px rgba(255,116,23,.68);
  border-radius: 99px;
}
.reference-phone-card span { width: 38px; margin-bottom: 32px; }
.reference-phone-card b { position: absolute; left: 28px; right: 28px; bottom: 40px; }
.reference-phone-card p { color: rgba(255,245,234,.70); line-height: 1.7; font-size: .99rem; }
.reference-feature-strip {
  grid-area: features;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: center;
  margin-top: 10px;
}
.reference-feature-strip article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: center;
  padding: 0 54px;
  min-height: 92px;
  border-right: 1px solid rgba(255,116,23,.22);
}
.reference-feature-strip article:first-child { padding-left: 0; }
.reference-feature-strip article:last-child { border-right: 0; padding-right: 0; }
.reference-feature-strip i {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255,116,23,.40);
  display: grid;
  place-items: center;
  color: var(--ref-cream);
  font-size: 2rem;
  font-style: normal;
  background: rgba(18,10,6,.34);
  box-shadow: 0 0 34px rgba(255,116,23,.10), inset 0 0 0 1px rgba(255,255,255,.04);
}
.reference-feature-strip strong { display: block; color: var(--ref-cream); margin-bottom: 8px; }
.reference-feature-strip p { margin: 0; color: rgba(255,245,234,.68); line-height: 1.55; }
@keyframes refSunSpin { to { rotate: 360deg; } }
@keyframes refSunDrift {
  from { translate: -10px -4px; filter: brightness(.96); }
  to { translate: 14px 6px; filter: brightness(1.12); }
}
@keyframes refAmbient {
  from { opacity: .68; transform: scale(.97) translate(-10px, 8px); }
  to { opacity: 1; transform: scale(1.04) translate(12px, -10px); }
}
@media (max-width: 1120px) {
  .reference-coded-hero { grid-template-columns: 1fr; grid-template-areas: "copy" "art" "features"; }
  .reference-copy { max-width: 720px; }
  .reference-hero-art { width: min(760px, 100%); margin: 0 auto; }
}
@media (max-width: 760px) {
  .site-header, .reference-coded-hero { width: calc(100% - 24px); }
  .reference-coded-hero { padding-top: 48px; row-gap: 34px; }
  .reference-title { font-size: clamp(3.7rem, 16vw, 5.8rem); }
  .reference-text { font-size: 1rem; }
  .reference-hero-art { min-height: 620px; height: 620px; }
  .reference-card { width: 86%; left: 0; padding: 46px 28px; height: 500px; }
  .reference-card .eyebrow { margin-bottom: 54px; }
  .reference-sun { width: 190px; height: 190px; right: 42px; top: 54%; }
  .reference-phone-card { right: 0; top: 48%; width: 138px; height: 330px; padding: 30px 20px; }
  .reference-rock { width: 410px; height: 210px; right: -120px; }
  .reference-feature-strip { grid-template-columns: 1fr; gap: 20px; }
  .reference-feature-strip article { padding: 0; border-right: 0; grid-template-columns: 68px 1fr; }
  .reference-feature-strip i { width: 62px; height: 62px; font-size: 1.6rem; }
}


/* Final requested fixes: previous rotating headline, cleaner header feel, readable Lightmode */
.reference-title .switch-word {
  display: inline-block;
  min-width: 2.45em;
  color: var(--ref-orange);
  text-shadow: 0 0 38px rgba(255,116,23,.36);
}

/* Keep the navigation closer to the earlier compact premium header */
.site-header {
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin-top: 18px;
  padding: 11px 14px 11px 20px;
}
.nav { gap: 10px; }
.nav a, .theme-toggle, .menu-button { padding: 10px 13px; }
.nav-cta { padding-inline: 22px !important; }

/* Lightmode: warm, readable and not washed out */
:root:not(.dark-mode) {
  color-scheme: light;
  --bg: #f4e4d0;
  --bg-soft: rgba(244,228,208,.76);
  --panel: rgba(255,247,237,.68);
  --panel-strong: rgba(255,247,237,.84);
  --text: #1b1008;
  --muted: rgba(27,16,8,.72);
  --line: rgba(154,52,18,.25);
  --accent: #f97316;
  --accent-2: #fb923c;
  --accent-dark: #9a3412;
  --ref-cream: #1b1008;
}
:root:not(.dark-mode) body {
  background:
    radial-gradient(circle at 76% 36%, rgba(249,115,22,.28), transparent 32rem),
    radial-gradient(circle at 56% 78%, rgba(154,52,18,.16), transparent 30rem),
    linear-gradient(115deg, #fff7ed 0%, #f2dcc3 48%, #ddb58c 100%);
  color: var(--text);
}
:root:not(.dark-mode) body::before {
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 20%), rgba(249,115,22,.18), transparent 26rem),
    linear-gradient(90deg, rgba(255,255,255,.16), transparent 50%, rgba(124,45,18,.10));
}
:root:not(.dark-mode) #vanta-fog { opacity: .36; }
:root:not(.dark-mode) .noise { opacity: .075; mix-blend-mode: multiply; }
:root:not(.dark-mode) .site-header {
  background: linear-gradient(90deg, rgba(255,247,237,.72), rgba(244,214,184,.66));
  border-color: rgba(154,52,18,.20);
  box-shadow: 0 22px 70px rgba(124,45,18,.16), inset 0 0 0 1px rgba(255,255,255,.38);
}
:root:not(.dark-mode) .nav a,
:root:not(.dark-mode) .theme-toggle,
:root:not(.dark-mode) .menu-button { color: rgba(27,16,8,.72); }
:root:not(.dark-mode) .reference-copy .eyebrow,
:root:not(.dark-mode) .reference-card .eyebrow { color: #c2410c; }
:root:not(.dark-mode) .reference-title {
  color: var(--text);
  text-shadow: 0 8px 18px rgba(124,45,18,.10);
}
:root:not(.dark-mode) .reference-title .switch-word,
:root:not(.dark-mode) .reference-title em { color: #f97316; }
:root:not(.dark-mode) .reference-text,
:root:not(.dark-mode) .reference-feature-strip p,
:root:not(.dark-mode) .reference-card > p:not(.eyebrow),
:root:not(.dark-mode) .reference-phone-card p { color: rgba(27,16,8,.70); }
:root:not(.dark-mode) .reference-card,
:root:not(.dark-mode) .reference-phone-card,
:root:not(.dark-mode) .service-card,
:root:not(.dark-mode) .step,
:root:not(.dark-mode) .review-card,
:root:not(.dark-mode) .contact-panel {
  background: linear-gradient(145deg, rgba(255,247,237,.72), rgba(244,214,184,.44));
  border-color: rgba(154,52,18,.25);
  box-shadow: 0 30px 80px rgba(124,45,18,.16), inset 0 0 0 1px rgba(255,255,255,.34);
}
:root:not(.dark-mode) .reference-card h2,
:root:not(.dark-mode) .reference-phone-card h3,
:root:not(.dark-mode) .reference-feature-strip strong,
:root:not(.dark-mode) .reference-feature-strip i { color: var(--text); }
:root:not(.dark-mode) .reference-cta {
  color: var(--text) !important;
  background: rgba(255,247,237,.52) !important;
  border-color: rgba(249,115,22,.38) !important;
}
:root:not(.dark-mode) .reference-sun { opacity: .72; filter: saturate(.95); }
:root:not(.dark-mode) .reference-rock {
  background:
    radial-gradient(circle at 72% 26%, rgba(249,115,22,.20), transparent 26%),
    linear-gradient(155deg, #8a4a1e 0%, #4a2710 45%, #1f1208 100%);
}
@media (max-width: 760px) {
  .site-header { width: calc(100% - 24px); }
}

/* Final hero visual fix: use uploaded real rock asset and align Launch Ready card beside the main card */
.reference-hero-art {
  overflow: visible;
  min-width: 720px;
}
.reference-sun {
  right: 108px;
  top: 56%;
  width: 238px;
  height: 238px;
  z-index: 1;
}
.reference-card {
  left: 0;
  top: 7%;
  width: 560px;
  height: 570px;
  z-index: 3;
}
.reference-rock {
  right: -122px;
  bottom: -58px;
  width: 650px;
  height: 342px;
  transform: none;
  border-radius: 0;
  background: url("assets/hero-rock.webp") center bottom / contain no-repeat;
  box-shadow: none;
  filter: drop-shadow(-20px -20px 48px rgba(255, 116, 23, .18)) drop-shadow(0 34px 30px rgba(0,0,0,.45));
  z-index: 4;
  overflow: visible;
}
.reference-rock::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 4%;
  bottom: 4%;
  height: 44px;
  background: radial-gradient(ellipse at center, rgba(255,116,23,.28), rgba(255,116,23,.08) 42%, transparent 72%);
  filter: blur(16px);
  z-index: -1;
}
.reference-phone-card {
  left: 592px;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  width: 168px;
  height: 382px;
  z-index: 5;
}
.reference-card::after {
  content: "";
  position: absolute;
  right: 82px;
  bottom: 122px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 116, 23, .20), rgba(255,116,23,.08) 45%, transparent 70%);
  box-shadow: 0 0 70px rgba(255,116,23,.38);
  animation: refSparklePulse 3.8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 2;
}
.reference-sparkle, .reference-card .eyebrow, .reference-card h2, .reference-card > p, .reference-line { z-index: 7; }
.reference-card .eyebrow, .reference-card h2, .reference-card > p, .reference-line { position: relative; }
@keyframes refSparklePulse {
  from { opacity: .50; transform: scale(.96); filter: blur(0); }
  to { opacity: .90; transform: scale(1.03); filter: blur(2px); }
}
@media (max-width: 1120px) {
  .reference-hero-art { min-width: 0; width: min(780px, 100%); }
  .reference-phone-card { left: auto; right: 0; }
}
@media (max-width: 760px) {
  .reference-rock { width: 520px; height: 278px; right: -154px; bottom: -38px; }
  .reference-card::after { right: 42px; bottom: 112px; width: 180px; height: 180px; }
  .reference-phone-card { left: auto; right: 0; top: 50%; }
}


/* Final dark-only polish + real rock edge alignment */
:root, :root.dark-mode {
  color-scheme: dark;
}
html:not(.dark-mode) {
  color-scheme: dark;
}
.nav .theme-toggle {
  display: none !important;
}
.reference-card {
  overflow: hidden;
}
.reference-rock {
  right: -190px !important;
  bottom: -62px !important;
  width: 725px !important;
  height: 370px !important;
  background-position: right bottom !important;
  background-size: contain !important;
}
.reference-rock::before {
  right: -2%;
  left: 8%;
}
.reference-phone-card {
  left: 600px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
@media (max-width: 1120px) {
  .reference-phone-card { left: auto !important; right: 0 !important; }
  .reference-rock { right: -170px !important; }
}
@media (max-width: 760px) {
  .reference-rock { right: -150px !important; width: 560px !important; height: 300px !important; }
}


/* User final fix: remove small side template and intensify the glow behind the real rock */
.reference-phone-card {
  display: none !important;
}
.reference-hero-art {
  min-width: 0 !important;
}
.reference-sun {
  right: 98px !important;
  top: 56% !important;
  width: 272px !important;
  height: 272px !important;
  border-color: rgba(255, 246, 224, .96) !important;
  box-shadow:
    0 0 26px rgba(255, 246, 224, .95),
    0 0 88px rgba(255, 116, 23, .82),
    0 0 180px rgba(255, 116, 23, .54),
    0 0 300px rgba(255, 116, 23, .28),
    inset 0 0 52px rgba(255, 116, 23, .24) !important;
  opacity: 1 !important;
}
.reference-sun::before {
  inset: -145px !important;
  border-color: rgba(255, 116, 23, .32) !important;
  box-shadow: 0 0 54px rgba(255, 116, 23, .24) !important;
}
.reference-sun::after {
  inset: -245px !important;
  opacity: .72 !important;
  border-color: rgba(255, 116, 23, .18) !important;
  box-shadow: 0 0 90px rgba(255, 116, 23, .18) !important;
}
.reference-hero-art::before {
  inset: 2% -12% 2% -2% !important;
  background:
    radial-gradient(circle at 72% 50%, rgba(255, 116, 23, .58), transparent 31%),
    radial-gradient(circle at 67% 61%, rgba(255, 173, 93, .28), transparent 38%),
    radial-gradient(circle at 48% 70%, rgba(255, 116, 23, .20), transparent 50%) !important;
  filter: blur(22px) !important;
  opacity: 1 !important;
}
.reference-card::after {
  right: 44px !important;
  bottom: 88px !important;
  width: 330px !important;
  height: 330px !important;
  background:
    radial-gradient(circle, rgba(255, 194, 126, .34), rgba(255,116,23,.22) 38%, rgba(255,116,23,.08) 62%, transparent 74%) !important;
  box-shadow:
    0 0 80px rgba(255, 116, 23, .58),
    0 0 160px rgba(255, 116, 23, .30) !important;
  z-index: 2 !important;
}
.reference-rock {
  filter:
    drop-shadow(-26px -24px 70px rgba(255, 116, 23, .34))
    drop-shadow(-8px -6px 34px rgba(255, 197, 138, .14))
    drop-shadow(0 38px 34px rgba(0,0,0,.52)) !important;
}
.reference-rock::before {
  height: 74px !important;
  background: radial-gradient(ellipse at center, rgba(255,148,57,.48), rgba(255,116,23,.18) 42%, transparent 76%) !important;
  filter: blur(22px) !important;
}
@media (max-width: 760px) {
  .reference-sun { right: 20px !important; width: 220px !important; height: 220px !important; }
  .reference-card::after { width: 240px !important; height: 240px !important; right: 20px !important; }
}

/* Final pre-launch polish: compact mobile, trust signals, CTA clarity, lightweight micro interactions */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

.trust-row,
.contact-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}
.trust-row span,
.contact-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 170, 96, .18);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(255, 241, 225, .86);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 12px 34px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.contact-trust-row { margin: 18px 0 0; }
.contact-trust-row span { border-radius: 18px; }

.button,
.nav-cta,
.whatsapp-button {
  will-change: transform;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.button:hover,
.nav-cta:hover,
.whatsapp-button:hover {
  transform: translateY(-2px) scale(1.012);
}
.button:active,
.nav-cta:active,
.whatsapp-button:active {
  transform: translateY(0) scale(.99);
}
.whatsapp-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  color: rgba(255, 246, 237, .9);
  text-decoration: none;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.form-note {
  margin: -2px 0 0;
  color: rgba(255, 231, 214, .56);
  font-size: 12px;
  line-height: 1.45;
}
.form-note strong { color: rgba(255, 188, 124, .88); font-weight: 700; }

.reference-hero-art::after {
  content: "";
  position: absolute;
  inset: -8%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at calc((var(--mouse-x, 50vw) / 16)) 45%, rgba(255, 134, 39, .18), transparent 34%);
  filter: blur(24px);
  opacity: .85;
  transition: opacity .25s ease;
}
.reference-card { z-index: 2; }
.reference-sun { animation: sun-breathe 5.6s ease-in-out infinite; }
.reference-rock { animation: rock-float 7s ease-in-out infinite; }
@keyframes sun-breathe {
  0%, 100% { transform: translate3d(0,-50%,0) scale(1); opacity: .95; }
  50% { transform: translate3d(0,-50%,0) scale(1.035); opacity: 1; }
}
@keyframes rock-float {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-4px,-5px,0); }
}

.service-card,
.review-card,
.step,
.contact-panel,
.reference-feature-strip article {
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.service-card:hover,
.review-card:hover,
.step:hover,
.reference-feature-strip article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 146, 63, .32);
  box-shadow: 0 24px 70px rgba(0,0,0,.24), 0 0 0 1px rgba(255, 146, 63, .05);
}

/* Keep mobile compact instead of long stacked blocks */
@media (max-width: 860px) {
  .site-header {
    left: 12px !important;
    right: 12px !important;
    top: 10px !important;
    padding: 10px 12px !important;
    border-radius: 22px !important;
  }
  .brand span:last-child { font-size: 13px; }
  .hero.section-grid.reference-coded-hero {
    padding-top: 104px !important;
    gap: 22px !important;
  }
  .reference-coded-hero,
  .section-grid {
    grid-template-columns: minmax(0, .95fr) minmax(220px, 1.05fr) !important;
    align-items: center !important;
  }
  .reference-copy { min-width: 0; }
  .reference-title,
  .hero-headline {
    font-size: clamp(34px, 9vw, 58px) !important;
    line-height: .9 !important;
    letter-spacing: -.07em !important;
  }
  .reference-text,
  .hero-text {
    font-size: 14px !important;
    line-height: 1.45 !important;
    max-width: 32ch !important;
  }
  .trust-row { gap: 7px; margin-top: 14px; }
  .trust-row span {
    min-height: 28px;
    padding: 6px 8px;
    font-size: 10.5px;
  }
  .reference-actions { margin-top: 16px !important; }
  .reference-hero-art {
    min-height: 430px !important;
    transform: translateX(-8px);
  }
  .reference-card.brand-experience-card {
    width: min(100%, 330px) !important;
    min-height: 410px !important;
    padding: 24px !important;
    border-radius: 30px !important;
  }
  .reference-card h2 { font-size: clamp(28px, 7vw, 45px) !important; line-height: .9 !important; }
  .reference-rock {
    right: -155px !important;
    bottom: -56px !important;
    width: 560px !important;
    height: 300px !important;
  }
  .reference-sun {
    right: 18px !important;
    width: 210px !important;
    height: 210px !important;
  }
  .reference-feature-strip {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 8px !important;
  }
  .reference-feature-strip article {
    padding: 12px 10px !important;
    border-radius: 18px !important;
    gap: 8px !important;
  }
  .reference-feature-strip i { font-size: 14px !important; }
  .reference-feature-strip strong { font-size: 12px !important; }
  .reference-feature-strip p { display: none !important; }
  .value-grid,
  .review-grid,
  .timeline.compact {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .service-card,
  .review-card,
  .step {
    padding: 16px 12px !important;
    border-radius: 22px !important;
  }
  .service-card h3,
  .step h3 { font-size: 15px !important; }
  .service-card p,
  .step p,
  .review-card p { font-size: 11.5px !important; line-height: 1.45 !important; }
  .showcase {
    display: grid !important;
    grid-template-columns: .9fr 1.1fr !important;
    gap: 16px !important;
    align-items: center !important;
  }
  .sticky-copy { position: relative !important; top: auto !important; }
  .sticky-copy h2 { font-size: clamp(28px, 7vw, 44px) !important; }
  .moved-cinematic { min-height: 430px !important; transform: scale(.84); transform-origin: center right; }
  .contact-panel {
    display: grid !important;
    grid-template-columns: .9fr 1.1fr !important;
    gap: 18px !important;
    padding: 24px !important;
  }
}

@media (max-width: 560px) {
  body { font-size: 14px; }
  .nav.open {
    width: calc(100vw - 24px) !important;
    right: 0 !important;
  }
  .reference-coded-hero,
  .section-grid {
    grid-template-columns: .88fr 1.12fr !important;
    column-gap: 8px !important;
  }
  .reference-title,
  .hero-headline {
    font-size: clamp(29px, 8.4vw, 42px) !important;
  }
  .hero-copy .eyebrow { font-size: 10px !important; }
  .reference-text { font-size: 12px !important; max-width: 26ch !important; }
  .trust-row span:nth-child(3) { display: none; }
  .reference-cta { min-height: 42px !important; padding: 11px 13px !important; font-size: 12px !important; }
  .reference-hero-art { min-height: 350px !important; transform: translateX(-18px) scale(.92); transform-origin: center right; }
  .reference-card.brand-experience-card {
    width: 260px !important;
    min-height: 330px !important;
    padding: 18px !important;
    border-radius: 26px !important;
  }
  .reference-card h2 { font-size: 29px !important; }
  .reference-card p:not(.eyebrow) { font-size: 11px !important; }
  .reference-line { margin: 14px 0 !important; }
  .reference-rock { right: -142px !important; bottom: -48px !important; width: 450px !important; height: 250px !important; }
  .reference-sun { right: 0 !important; width: 172px !important; height: 172px !important; }
  .section { padding-block: 46px !important; }
  .section-heading { margin-bottom: 18px !important; }
  .section-heading h2 { font-size: 28px !important; }
  .value-grid,
  .review-grid,
  .timeline.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }
  .service-card,
  .review-card,
  .step { padding: 12px 8px !important; border-radius: 18px !important; }
  .card-index,
  .step b { font-size: 10px !important; }
  .service-card h3,
  .step h3 { font-size: 12px !important; margin-bottom: 6px !important; }
  .service-card p,
  .step p,
  .review-card p { font-size: 9.7px !important; line-height: 1.38 !important; }
  .stars { font-size: 11px !important; white-space: nowrap; }
  .review-author { gap: 2px !important; }
  .review-author strong { font-size: 11px !important; }
  .review-author span { font-size: 9px !important; }
  .showcase { grid-template-columns: .85fr 1.15fr !important; gap: 4px !important; }
  .sticky-copy p { font-size: 11px !important; line-height: 1.4 !important; }
  .sticky-copy .button { font-size: 11px !important; padding: 10px 12px !important; }
  .moved-cinematic { min-height: 360px !important; transform: scale(.66); transform-origin: center right; }
  .contact-panel {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 18px !important;
  }
  .contact-panel h2 { font-size: 30px !important; }
  .contact-trust-row { gap: 6px; }
  .contact-trust-row span { font-size: 10px; padding: 6px 8px; min-height: 28px; }
  .footer { padding: 22px 16px !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* Final CTA/trust/legal polish */
.hero-trust-strong {
  margin-top: 30px !important;
  gap: 12px !important;
}
.hero-trust-strong span {
  min-height: 46px;
  padding: 12px 16px !important;
  border-radius: 999px;
  border-color: rgba(255, 157, 67, .38) !important;
  background: linear-gradient(135deg, rgba(255, 139, 37, .18), rgba(20, 10, 4, .42)) !important;
  color: rgba(255, 247, 237, .92) !important;
  box-shadow: 0 16px 42px rgba(255, 112, 24, .15), inset 0 1px 0 rgba(255,255,255,.12);
}
.hero-trust-strong b {
  color: #fff4e8;
  font-weight: 900;
}
.reference-actions {
  margin-top: 34px !important;
}
.reference-cta {
  min-height: 58px !important;
  padding: 0 27px !important;
  font-size: 1.02rem !important;
  border-color: rgba(255, 157, 67, .42) !important;
  background: linear-gradient(135deg, rgba(255, 112, 24, .28), rgba(18, 9, 4, .64)) !important;
  box-shadow: 0 22px 64px rgba(255, 112, 24, .24), inset 0 1px 0 rgba(255,255,255,.13);
}
.reference-cta:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 30px 78px rgba(255, 112, 24, .32), inset 0 1px 0 rgba(255,255,255,.18);
}
.contact-trust-row span {
  border-color: rgba(255, 157, 67, .32) !important;
  background: rgba(255, 139, 37, .10) !important;
  color: rgba(255, 247, 237, .88) !important;
}
.form-note { display: none !important; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}
.footer-links a {
  color: inherit;
  padding: 8px 10px;
  border-radius: 999px;
}
.footer-links a:hover {
  color: var(--text);
  background: rgba(255, 139, 37, .10);
}
.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 132px auto 80px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 139, 37, .18);
  border-radius: 32px;
  background: rgba(12, 6, 3, .62);
  box-shadow: 0 24px 90px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(24px) saturate(1.2);
}
.legal-page h1 { font-size: clamp(2.3rem, 5vw, 4.8rem); line-height: .95; margin-bottom: 24px; letter-spacing: -.06em; }
.legal-page h2 { margin-top: 34px; margin-bottom: 10px; font-size: 1.25rem; }
.legal-page p, .legal-page li { color: var(--muted); line-height: 1.75; }
.legal-page ul { padding-left: 1.2rem; }
.legal-back { display: inline-flex; margin-bottom: 24px; color: var(--accent-2); font-weight: 800; }
@media (max-width: 720px) {
  .hero-trust-strong { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px !important; }
  .hero-trust-strong span { min-height: 40px; padding: 8px 7px !important; font-size: 10px !important; text-align: center; justify-content: center; }
  .reference-actions { margin-top: 24px !important; }
  .reference-cta { min-height: 48px !important; padding: 0 18px !important; font-size: 13px !important; }
  .footer, .footer-links { justify-content: center; text-align: center; }
}

/* Mobile readability + final responsive fix */
:root {
  --readable-body: 1.06rem;
}
body {
  font-size: var(--readable-body);
}
p, li, input, textarea, button, .button, .nav a {
  font-size: max(1rem, 16px);
}
.reference-text,
.section-heading p,
.sticky-copy p,
.contact-panel p,
.service-card p,
.step p,
.review-card p {
  font-size: 1.05rem;
}
input, textarea { font-size: 1rem; }

@media (max-width: 900px) {
  .section { width: min(100% - 24px, var(--max)); }
  .hero.section-grid.reference-coded-hero {
    width: calc(100% - 24px) !important;
    min-height: auto !important;
    padding: 92px 0 34px !important;
    grid-template-columns: minmax(0, .98fr) minmax(210px, .92fr) !important;
    grid-template-areas:
      "copy art"
      "features features" !important;
    column-gap: 14px !important;
    row-gap: 16px !important;
    align-items: center !important;
  }
  .reference-copy { grid-area: copy !important; }
  .reference-hero-art {
    grid-area: art !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 390px !important;
    min-height: 390px !important;
    transform: none !important;
    overflow: visible !important;
  }
  .reference-title, .hero-headline {
    font-size: clamp(2.65rem, 8.2vw, 4.8rem) !important;
    line-height: .92 !important;
  }
  .reference-text, .hero-text {
    font-size: 1rem !important;
    line-height: 1.58 !important;
    max-width: 34ch !important;
    margin-bottom: 0 !important;
  }
  .hero-trust-strong {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 18px !important;
  }
  .hero-trust-strong span {
    min-height: 40px !important;
    padding: 8px 9px !important;
    font-size: .78rem !important;
    text-align: center;
    justify-content: center;
  }
  .reference-actions { margin-top: 20px !important; }
  .reference-cta {
    width: auto !important;
    min-width: 0 !important;
    min-height: 52px !important;
    padding: 0 20px !important;
    font-size: .98rem !important;
  }
  .reference-card.brand-experience-card {
    left: auto !important;
    right: 0 !important;
    top: 44px !important;
    width: min(100%, 330px) !important;
    height: 340px !important;
    min-height: 340px !important;
    padding: 26px 22px !important;
    border-radius: 28px !important;
  }
  .reference-card .eyebrow { margin-bottom: 38px !important; font-size: .62rem !important; }
  .reference-card h2 { font-size: clamp(2rem, 6vw, 3.1rem) !important; line-height: .94 !important; }
  .reference-card p:not(.eyebrow) { font-size: .92rem !important; }
  .reference-line { margin: 18px 0 !important; }
  .reference-rock {
    right: -158px !important;
    bottom: -56px !important;
    width: 520px !important;
    height: 286px !important;
  }
  .reference-sun {
    right: 24px !important;
    top: 56% !important;
    width: 210px !important;
    height: 210px !important;
  }
  .reference-feature-strip {
    grid-area: features !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 0 !important;
  }
  .reference-feature-strip article { padding: 14px 12px !important; }
  .reference-feature-strip p { display: none !important; }
  .value-grid,
  .review-grid,
  .timeline.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  .timeline.compact .step:nth-child(3),
  .value-grid .service-card:nth-child(3) { grid-column: span 2; }
  .service-card,
  .step,
  .review-card { padding: 20px 18px !important; }
  .service-card p,
  .step p,
  .review-card p { font-size: .98rem !important; line-height: 1.55 !important; }
  .showcase {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .visual-showcase-grid { min-height: auto !important; }
  .moved-cinematic {
    min-height: 360px !important;
    transform: none !important;
    transform-origin: center !important;
    overflow: hidden;
    border-radius: 30px;
  }
  .moved-cinematic .main-halo-card {
    left: 4% !important;
    width: min(72%, 360px) !important;
    min-height: 315px !important;
  }
  .moved-cinematic .phone-halo-card {
    right: 4% !important;
    bottom: 24px !important;
    width: min(34%, 160px) !important;
    min-height: 290px !important;
  }
  .contact-panel {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 28px !important;
  }
  .contact-trust-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  }
  .contact-trust-row span { font-size: .82rem !important; justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
  body { font-size: 16px !important; }
  .site-header { width: calc(100% - 18px) !important; }
  .brand span:last-child { font-size: 12px !important; }
  .hero.section-grid.reference-coded-hero {
    width: calc(100% - 18px) !important;
    grid-template-columns: minmax(0, 1fr) minmax(145px, .72fr) !important;
    column-gap: 6px !important;
    padding-top: 86px !important;
  }
  .reference-title, .hero-headline { font-size: clamp(2.15rem, 9vw, 2.95rem) !important; }
  .reference-copy .eyebrow { font-size: .6rem !important; letter-spacing: .22em !important; margin-bottom: 14px !important; }
  .reference-text, .hero-text { font-size: .96rem !important; line-height: 1.5 !important; max-width: 24ch !important; }
  .hero-trust-strong { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 7px !important; }
  .hero-trust-strong span:nth-child(3) { grid-column: 1 / -1; display: inline-flex !important; }
  .hero-trust-strong span { font-size: .72rem !important; min-height: 34px !important; }
  .reference-cta { min-height: 48px !important; font-size: .92rem !important; padding-inline: 16px !important; }
  .reference-hero-art {
    height: 310px !important;
    min-height: 310px !important;
    transform: translateX(-4px) !important;
  }
  .reference-card.brand-experience-card {
    top: 36px !important;
    right: -2px !important;
    width: 205px !important;
    height: 276px !important;
    min-height: 276px !important;
    padding: 17px 14px !important;
    border-radius: 22px !important;
  }
  .reference-card .eyebrow { font-size: .48rem !important; letter-spacing: .16em !important; margin-bottom: 24px !important; }
  .reference-card h2 { font-size: 1.72rem !important; }
  .reference-card p:not(.eyebrow) { font-size: .72rem !important; line-height: 1.35 !important; }
  .reference-rock {
    right: -124px !important;
    bottom: -44px !important;
    width: 365px !important;
    height: 212px !important;
  }
  .reference-sun {
    right: 2px !important;
    top: 58% !important;
    width: 152px !important;
    height: 152px !important;
  }
  .reference-feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }
  .reference-feature-strip article { padding: 10px 7px !important; border-radius: 16px !important; }
  .reference-feature-strip strong { font-size: .72rem !important; line-height: 1.1 !important; }
  .reference-feature-strip i { display: none !important; }
  .value-grid,
  .review-grid,
  .timeline.compact {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .timeline.compact .step:nth-child(3),
  .value-grid .service-card:nth-child(3) { grid-column: auto; }
  .service-card,
  .step,
  .review-card { padding: 18px !important; }
  .section-heading h2, .sticky-copy h2, .contact-panel h2 { font-size: clamp(2rem, 11vw, 3.1rem) !important; }
  .section-heading p, .sticky-copy p, .contact-panel p { font-size: 1rem !important; }
  .moved-cinematic { min-height: 320px !important; }
  .moved-cinematic .main-halo-card { width: 70% !important; min-height: 280px !important; padding: 22px !important; }
  .moved-cinematic .phone-halo-card { width: 34% !important; min-height: 250px !important; padding: 36px 16px 18px !important; }
  .contact-trust-row { grid-template-columns: 1fr !important; }
  .contact-trust-row span { min-height: 38px !important; font-size: .92rem !important; }
  input, textarea { padding: 17px 18px !important; font-size: 1rem !important; }
  .button.primary, .whatsapp-button { min-height: 54px !important; font-size: 1rem !important; }
}

/* Final mobile/header correction — clean brand + safe responsive templates */
.velora-brand {
  gap: 12px !important;
  text-decoration: none;
  min-width: max-content;
}
.velora-wordmark-v {
  width: 36px !important;
  height: 36px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 12px !important;
  color: #fff4df !important;
  font-family: "Instrument Serif", Georgia, serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.95), rgba(255,197,125,.42) 19%, transparent 38%),
    linear-gradient(145deg, #ff9a2e 0%, #ff6b0b 46%, #190b04 100%) !important;
  box-shadow:
    0 0 22px rgba(255,111,22,.55),
    0 0 56px rgba(255,111,22,.18),
    inset 0 1px 0 rgba(255,255,255,.38) !important;
  border: 1px solid rgba(255,174,91,.38) !important;
}
.brand-copy {
  display: grid;
  gap: 0;
  line-height: .92;
  letter-spacing: -.045em;
  font-family: "Space Grotesk", "Onest", system-ui, sans-serif;
}
.brand-copy strong {
  color: #fff6ec;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: .9;
}
.brand-copy small {
  color: rgba(255,139,37,.9);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-top: 3px;
}
.site-header {
  font-family: "Space Grotesk", "Onest", system-ui, sans-serif;
}
.nav a {
  font-weight: 650;
  letter-spacing: -.025em;
}
.nav-cta {
  font-weight: 750 !important;
}

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 24px) !important;
    min-height: 66px !important;
    padding: 10px 12px !important;
    border-radius: 24px !important;
  }
  .brand-copy strong { font-size: .98rem; }
  .brand-copy small { font-size: .64rem; letter-spacing: .14em; }
  .velora-wordmark-v { width: 32px !important; height: 32px !important; font-size: 23px !important; border-radius: 10px !important; }
}

/* Phone/tablet: stop cropped templates. Keep compact, but use a safe readable stack. */
@media (max-width: 760px) {
  .site-header {
    left: 10px !important;
    right: 10px !important;
    top: 8px !important;
    width: calc(100% - 20px) !important;
  }
  .menu-button { display: inline-flex !important; }
  .nav {
    border-radius: 24px !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    width: min(340px, calc(100vw - 20px)) !important;
    padding: 14px !important;
    background: rgba(7, 4, 2, .94) !important;
    border: 1px solid rgba(255, 139, 37, .2) !important;
    box-shadow: 0 28px 86px rgba(0,0,0,.55) !important;
  }
  .hero.section-grid.reference-coded-hero {
    width: calc(100% - 22px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas: "copy" "art" "features" !important;
    padding-top: 96px !important;
    padding-bottom: 32px !important;
    row-gap: 20px !important;
    min-height: auto !important;
  }
  .reference-copy {
    grid-area: copy !important;
    max-width: 100% !important;
  }
  .reference-copy .eyebrow {
    font-size: .66rem !important;
    letter-spacing: .28em !important;
    margin-bottom: 14px !important;
  }
  .reference-title,
  .hero-headline {
    font-size: clamp(3.05rem, 13.5vw, 5.15rem) !important;
    line-height: .91 !important;
    letter-spacing: -.078em !important;
    max-width: 8.1em !important;
    margin-bottom: 16px !important;
  }
  .reference-title .switch-word { min-width: 2.45em !important; }
  .reference-text,
  .hero-text {
    font-size: 1.03rem !important;
    line-height: 1.55 !important;
    max-width: 36ch !important;
  }
  .hero-trust-strong {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
    margin-top: 18px !important;
  }
  .hero-trust-strong span {
    min-height: 40px !important;
    padding: 8px 7px !important;
    font-size: .72rem !important;
    line-height: 1.1 !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .reference-actions { margin-top: 18px !important; }
  .reference-cta {
    width: 100% !important;
    max-width: 360px !important;
    min-height: 54px !important;
    font-size: 1rem !important;
  }
  .reference-hero-art {
    grid-area: art !important;
    width: 100% !important;
    height: clamp(350px, 86vw, 500px) !important;
    min-height: 0 !important;
    overflow: visible !important;
    transform: none !important;
    margin: 0 auto !important;
  }
  .reference-card.brand-experience-card {
    top: 0 !important;
    left: 50% !important;
    right: auto !important;
    width: min(100%, 430px) !important;
    height: 100% !important;
    min-height: 0 !important;
    transform: translateX(-50%) !important;
    padding: clamp(24px, 6vw, 36px) !important;
    border-radius: 28px !important;
    overflow: hidden !important;
  }
  .reference-card .eyebrow {
    font-size: .6rem !important;
    letter-spacing: .24em !important;
    margin-bottom: clamp(42px, 13vw, 78px) !important;
  }
  .reference-card h2 {
    font-size: clamp(2.4rem, 10vw, 3.85rem) !important;
    line-height: .98 !important;
    max-width: 8.2em !important;
  }
  .reference-card p:not(.eyebrow) {
    font-size: .96rem !important;
    line-height: 1.45 !important;
  }
  .reference-line { margin: 18px 0 !important; }
  .reference-sun {
    right: clamp(12px, 8vw, 54px) !important;
    top: 58% !important;
    width: clamp(170px, 48vw, 260px) !important;
    height: clamp(170px, 48vw, 260px) !important;
  }
  .reference-rock {
    right: clamp(-160px, -24vw, -86px) !important;
    bottom: clamp(-64px, -8vw, -28px) !important;
    width: clamp(430px, 105vw, 720px) !important;
    height: clamp(230px, 56vw, 390px) !important;
    background-size: contain !important;
    background-position: right bottom !important;
  }
  .reference-card::after {
    right: clamp(10px, 8vw, 42px) !important;
    bottom: clamp(54px, 16vw, 96px) !important;
    width: clamp(210px, 58vw, 330px) !important;
    height: clamp(210px, 58vw, 330px) !important;
  }
  .reference-feature-strip {
    grid-area: features !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 6px !important;
  }
  .reference-feature-strip article {
    padding: 12px 8px !important;
    border: 1px solid rgba(255,139,37,.18) !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.045) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }
  .reference-feature-strip i { display: none !important; }
  .reference-feature-strip strong {
    font-size: .78rem !important;
    line-height: 1.12 !important;
    margin: 0 !important;
  }
  .reference-feature-strip p { display: none !important; }

  .section { width: calc(100% - 22px) !important; padding-block: 48px !important; }
  .section-heading h2,
  .sticky-copy h2,
  .contact-panel h2 { font-size: clamp(2.05rem, 9vw, 3.15rem) !important; }
  .section-heading p,
  .sticky-copy p,
  .contact-panel p,
  .service-card p,
  .step p,
  .review-card p { font-size: 1rem !important; line-height: 1.58 !important; }

  .value-grid,
  .timeline.compact,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .value-grid .service-card:nth-child(3),
  .timeline.compact .step:nth-child(3) { grid-column: 1 / -1 !important; }
  .service-card,
  .step,
  .review-card { padding: 18px !important; border-radius: 22px !important; }

  .showcase {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .sticky-copy { position: relative !important; top: auto !important; }
  .visual-showcase-grid.reference-showcase-visual {
    min-height: 360px !important;
    overflow: hidden !important;
    border-radius: 30px !important;
  }
  .moved-cinematic {
    width: 100% !important;
    min-height: 360px !important;
    height: 360px !important;
    transform: none !important;
    overflow: hidden !important;
    border-radius: 30px !important;
  }
  .moved-cinematic .main-halo-card {
    left: 4% !important;
    top: 24px !important;
    width: 70% !important;
    min-height: 315px !important;
    padding: 26px !important;
    border-radius: 28px !important;
  }
  .moved-cinematic .main-halo-card h2 { font-size: clamp(1.9rem, 8vw, 3rem) !important; }
  .moved-cinematic .main-halo-card p { font-size: .86rem !important; }
  .moved-cinematic .phone-halo-card {
    display: block !important;
    right: 4% !important;
    top: auto !important;
    bottom: 22px !important;
    width: 34% !important;
    max-width: 150px !important;
    min-height: 270px !important;
    padding: 38px 16px 18px !important;
    border-radius: 26px !important;
  }
  .contact-panel {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 24px !important;
  }
  .contact-trust-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
    gap: 7px !important;
  }
  .contact-trust-row span {
    font-size: .75rem !important;
    line-height: 1.15 !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 430px) {
  .brand-copy strong { font-size: .9rem !important; }
  .brand-copy small { font-size: .56rem !important; }
  .velora-wordmark-v { width: 30px !important; height: 30px !important; font-size: 21px !important; }
  .reference-title,
  .hero-headline { font-size: clamp(2.55rem, 12.6vw, 3.35rem) !important; }
  .hero-trust-strong { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .hero-trust-strong span:nth-child(3) { grid-column: 1 / -1 !important; display: inline-flex !important; }
  .reference-hero-art { height: 390px !important; }
  .reference-card h2 { font-size: clamp(2.2rem, 10.5vw, 3rem) !important; }
  .reference-rock { right: -138px !important; bottom: -42px !important; width: 520px !important; height: 285px !important; }
  .reference-sun { right: 8px !important; top: 58% !important; width: 188px !important; height: 188px !important; }
  .reference-feature-strip strong { font-size: .7rem !important; }
  .value-grid,
  .timeline.compact,
  .review-grid { grid-template-columns: 1fr !important; }
  .value-grid .service-card:nth-child(3),
  .timeline.compact .step:nth-child(3) { grid-column: auto !important; }
  .visual-showcase-grid.reference-showcase-visual,
  .moved-cinematic { min-height: 330px !important; height: 330px !important; }
  .moved-cinematic .main-halo-card { width: 76% !important; min-height: 286px !important; padding: 22px !important; }
  .moved-cinematic .phone-halo-card { width: 32% !important; min-height: 240px !important; padding: 34px 12px 16px !important; }
  .contact-trust-row { grid-template-columns: 1fr !important; }
}

/* Final requested mobile/showcase correction + subtle card variety */
.service-card:nth-child(1),
.step:nth-child(1),
.review-card:nth-child(1) {
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 178, 103, .13), transparent 22rem),
    linear-gradient(145deg, rgba(24, 12, 6, .74), rgba(9, 5, 3, .58)) !important;
}
.service-card:nth-child(2),
.step:nth-child(2),
.review-card:nth-child(2) {
  background:
    radial-gradient(circle at 85% 14%, rgba(255, 115, 22, .16), transparent 20rem),
    linear-gradient(145deg, rgba(30, 16, 8, .68), rgba(11, 6, 3, .58)) !important;
  border-color: rgba(255, 165, 83, .20) !important;
}
.service-card:nth-child(3),
.step:nth-child(3),
.review-card:nth-child(3) {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 208, 157, .10), transparent 18rem),
    linear-gradient(145deg, rgba(18, 10, 6, .74), rgba(7, 4, 3, .60)) !important;
  border-color: rgba(255, 116, 23, .28) !important;
}
.step b, .card-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(255, 116, 23, .10);
  border: 1px solid rgba(255, 146, 63, .22);
  box-shadow: 0 0 28px rgba(255,116,23,.10);
}
.process .section-heading p {
  max-width: 620px;
  margin-inline: auto;
}

@media (max-width: 760px) {
  /* The second showcase visual keeps both template cards visible without cropping. */
  .visual-showcase-grid.reference-showcase-visual {
    min-height: 420px !important;
    height: 420px !important;
    overflow: visible !important;
    border-radius: 30px !important;
    isolation: isolate;
  }
  .moved-cinematic {
    min-height: 420px !important;
    height: 420px !important;
    overflow: visible !important;
    border-radius: 30px !important;
  }
  .moved-cinematic .hero-orbit {
    width: 82% !important;
    height: 82% !important;
    right: -23% !important;
    top: 8% !important;
    opacity: .9 !important;
  }
  .moved-cinematic .main-halo-card {
    left: 2% !important;
    top: 34px !important;
    width: 62% !important;
    min-height: 330px !important;
    padding: 24px !important;
    border-radius: 28px !important;
    overflow: hidden !important;
  }
  .moved-cinematic .main-halo-card h2 {
    font-size: clamp(2rem, 8vw, 3.15rem) !important;
    line-height: .94 !important;
  }
  .moved-cinematic .halo-card-top {
    margin-bottom: 44px !important;
  }
  .moved-cinematic .main-halo-card p {
    font-size: .88rem !important;
    line-height: 1.45 !important;
  }
  .moved-cinematic .phone-halo-card {
    display: block !important;
    right: 2% !important;
    left: auto !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    width: 30% !important;
    max-width: 142px !important;
    min-height: 280px !important;
    padding: 34px 14px 18px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }
  .moved-cinematic .phone-halo-card strong {
    font-size: clamp(1.05rem, 4.2vw, 1.45rem) !important;
    line-height: 1.05 !important;
  }
  .moved-cinematic .phone-halo-card p {
    font-size: .78rem !important;
    line-height: 1.45 !important;
    margin-bottom: 30px !important;
  }
}

@media (max-width: 430px) {
  .visual-showcase-grid.reference-showcase-visual,
  .moved-cinematic {
    min-height: 390px !important;
    height: 390px !important;
    width: 100% !important;
  }
  .moved-cinematic .main-halo-card {
    left: 0 !important;
    top: 34px !important;
    width: 68% !important;
    min-height: 306px !important;
    padding: 20px 18px !important;
  }
  .moved-cinematic .halo-card-top {
    margin-bottom: 34px !important;
    font-size: .54rem !important;
  }
  .moved-cinematic .main-halo-card h2 {
    font-size: clamp(1.75rem, 8.2vw, 2.45rem) !important;
  }
  .moved-cinematic .main-halo-card p,
  .moved-cinematic .micro-link span {
    font-size: .72rem !important;
  }
  .moved-cinematic .card-divider { margin: 16px 0 !important; }
  .moved-cinematic .phone-halo-card {
    right: 0 !important;
    width: 31% !important;
    max-width: none !important;
    min-height: 255px !important;
    padding: 30px 10px 16px !important;
    border-radius: 24px !important;
  }
  .moved-cinematic .phone-halo-card strong { font-size: .98rem !important; }
  .moved-cinematic .phone-halo-card p { font-size: .66rem !important; margin-bottom: 20px !important; }
  .phone-bar { width: 38px !important; }
}

/* Emergency mobile showcase rebuild: keeps the two template cards below the heading, never over it. */
@media (max-width: 760px) {
  section#work.showcase {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 24px !important;
    position: relative !important;
    overflow: visible !important;
  }

  section#work .sticky-copy {
    position: relative !important;
    z-index: 10 !important;
    top: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  section#work .sticky-copy h2,
  section#work .sticky-copy p,
  section#work .sticky-copy .button {
    position: relative !important;
    z-index: 11 !important;
  }

  section#work .visual-showcase-grid.reference-showcase-visual {
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 2px 0 0 !important;
    overflow: visible !important;
    transform: none !important;
    isolation: isolate !important;
  }

  section#work .moved-cinematic {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: clamp(330px, 78vw, 430px) !important;
    min-height: clamp(330px, 78vw, 430px) !important;
    max-height: 430px !important;
    margin: 0 !important;
    transform: none !important;
    transform-origin: center !important;
    overflow: hidden !important;
    border-radius: 30px !important;
  }

  section#work .moved-cinematic .hero-orbit {
    position: absolute !important;
    width: 78% !important;
    height: 78% !important;
    right: -22% !important;
    top: 10% !important;
    opacity: .72 !important;
    pointer-events: none !important;
  }

  section#work .moved-cinematic .main-halo-card {
    position: absolute !important;
    left: 3% !important;
    top: 22px !important;
    bottom: 22px !important;
    width: 64% !important;
    min-height: 0 !important;
    height: auto !important;
    padding: clamp(18px, 4.8vw, 26px) !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    transform: none !important;
  }

  section#work .moved-cinematic .halo-card-top {
    margin-bottom: clamp(24px, 7vw, 42px) !important;
  }

  section#work .moved-cinematic .main-halo-card h2 {
    font-size: clamp(1.75rem, 7.2vw, 3rem) !important;
    line-height: .96 !important;
    margin: 0 !important;
  }

  section#work .moved-cinematic .card-divider {
    margin: clamp(14px, 4vw, 22px) 0 !important;
  }

  section#work .moved-cinematic .main-halo-card p {
    font-size: clamp(.72rem, 2.6vw, .92rem) !important;
    line-height: 1.45 !important;
    margin: 0 0 14px !important;
  }

  section#work .moved-cinematic .micro-link {
    position: absolute !important;
    left: clamp(18px, 4.8vw, 26px) !important;
    right: clamp(18px, 4.8vw, 26px) !important;
    bottom: clamp(16px, 4vw, 24px) !important;
    font-size: clamp(.72rem, 2.5vw, .9rem) !important;
  }

  section#work .moved-cinematic .phone-halo-card {
    position: absolute !important;
    display: block !important;
    right: 3% !important;
    left: auto !important;
    top: 50% !important;
    bottom: auto !important;
    width: 29% !important;
    min-width: 104px !important;
    max-width: 148px !important;
    height: 78% !important;
    min-height: 0 !important;
    padding: clamp(28px, 6vw, 38px) clamp(10px, 3vw, 16px) 16px !important;
    border-radius: 26px !important;
    transform: translateY(-50%) !important;
    overflow: hidden !important;
  }

  section#work .moved-cinematic .phone-dot {
    top: 26px !important;
    left: 20px !important;
    width: 8px !important;
    height: 8px !important;
  }

  section#work .moved-cinematic .phone-halo-card strong {
    font-size: clamp(.98rem, 4vw, 1.38rem) !important;
    line-height: 1.08 !important;
  }

  section#work .moved-cinematic .phone-halo-card p {
    font-size: clamp(.64rem, 2.4vw, .78rem) !important;
    line-height: 1.45 !important;
    margin: 20px 0 0 !important;
  }

  section#work .moved-cinematic .phone-bar {
    position: absolute !important;
    left: 16px !important;
    right: 16px !important;
    bottom: 20px !important;
    width: auto !important;
  }
}

@media (max-width: 430px) {
  section#work.showcase { gap: 20px !important; }

  section#work .moved-cinematic {
    height: 350px !important;
    min-height: 350px !important;
    border-radius: 26px !important;
  }

  section#work .moved-cinematic .main-halo-card {
    left: 2.5% !important;
    top: 20px !important;
    bottom: 20px !important;
    width: 65% !important;
    padding: 18px 16px !important;
    border-radius: 24px !important;
  }

  section#work .moved-cinematic .halo-card-top {
    margin-bottom: 26px !important;
    font-size: .52rem !important;
  }

  section#work .moved-cinematic .main-halo-card h2 {
    font-size: clamp(1.58rem, 7.7vw, 2.25rem) !important;
  }

  section#work .moved-cinematic .main-halo-card p,
  section#work .moved-cinematic .micro-link span {
    font-size: .67rem !important;
  }

  section#work .moved-cinematic .phone-halo-card {
    right: 2.5% !important;
    width: 29.5% !important;
    min-width: 96px !important;
    height: 74% !important;
    padding: 28px 9px 14px !important;
    border-radius: 22px !important;
  }

  section#work .moved-cinematic .phone-halo-card strong { font-size: .92rem !important; }
  section#work .moved-cinematic .phone-halo-card p { font-size: .6rem !important; }
}

/* Final mobile showcase fix: CTA stays outside templates; cards use real grid, never cropped. */
@media (max-width: 760px) {
  section#work.showcase {
    display: flex !important;
    flex-direction: column !important;
    gap: 22px !important;
    overflow: visible !important;
  }

  section#work .sticky-copy {
    position: relative !important;
    z-index: 20 !important;
    margin-bottom: 0 !important;
  }

  section#work .sticky-copy .button {
    margin-top: 18px !important;
    margin-bottom: 0 !important;
  }

  section#work .visual-showcase-grid.reference-showcase-visual {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    width: 100% !important;
    margin-top: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    min-height: 0 !important;
    height: auto !important;
  }

  section#work .moved-cinematic {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(104px, .42fr) !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 14px !important;
    border-radius: 30px !important;
    overflow: visible !important;
    transform: none !important;
  }

  section#work .moved-cinematic .hero-orbit {
    position: absolute !important;
    right: -20% !important;
    top: 2% !important;
    width: 82% !important;
    height: 82% !important;
    opacity: .68 !important;
    pointer-events: none !important;
    z-index: 0 !important;
  }

  section#work .moved-cinematic .main-halo-card,
  section#work .moved-cinematic .phone-halo-card {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 310px !important;
    transform: none !important;
    z-index: 2 !important;
    overflow: hidden !important;
  }

  section#work .moved-cinematic .main-halo-card {
    padding: 22px 20px !important;
    border-radius: 26px !important;
  }

  section#work .moved-cinematic .halo-card-top {
    margin-bottom: 34px !important;
  }

  section#work .moved-cinematic .main-halo-card h2 {
    font-size: clamp(2rem, 7.6vw, 3.05rem) !important;
    line-height: .95 !important;
  }

  section#work .moved-cinematic .card-divider {
    margin: 20px 0 !important;
  }

  section#work .moved-cinematic .main-halo-card p {
    font-size: clamp(.82rem, 2.7vw, .98rem) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  section#work .moved-cinematic .main-halo-card .micro-link {
    display: none !important;
  }

  section#work .moved-cinematic .phone-halo-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 22px 14px !important;
    border-radius: 24px !important;
  }

  section#work .moved-cinematic .phone-dot {
    position: absolute !important;
    top: 22px !important;
    left: 18px !important;
  }

  section#work .moved-cinematic .phone-halo-card strong {
    font-size: clamp(1rem, 3.8vw, 1.35rem) !important;
    line-height: 1.12 !important;
  }

  section#work .moved-cinematic .phone-halo-card p {
    font-size: clamp(.68rem, 2.4vw, .82rem) !important;
    line-height: 1.55 !important;
    margin-top: 22px !important;
  }

  section#work .moved-cinematic .phone-bar {
    position: absolute !important;
    left: 16px !important;
    right: 16px !important;
    bottom: 22px !important;
    width: auto !important;
  }
}

@media (max-width: 430px) {
  section#work .moved-cinematic {
    grid-template-columns: minmax(0, 1fr) 98px !important;
    gap: 10px !important;
    padding: 10px !important;
    border-radius: 24px !important;
  }

  section#work .moved-cinematic .main-halo-card,
  section#work .moved-cinematic .phone-halo-card {
    min-height: 292px !important;
  }

  section#work .moved-cinematic .main-halo-card {
    padding: 18px 15px !important;
    border-radius: 22px !important;
  }

  section#work .moved-cinematic .halo-card-top {
    margin-bottom: 28px !important;
    font-size: .5rem !important;
    letter-spacing: .16em !important;
  }

  section#work .moved-cinematic .main-halo-card h2 {
    font-size: clamp(1.58rem, 7.5vw, 2.05rem) !important;
  }

  section#work .moved-cinematic .main-halo-card p {
    font-size: .68rem !important;
  }

  section#work .moved-cinematic .phone-halo-card {
    padding: 20px 9px !important;
    border-radius: 20px !important;
  }

  section#work .moved-cinematic .phone-halo-card strong {
    font-size: .86rem !important;
  }

  section#work .moved-cinematic .phone-halo-card p {
    font-size: .58rem !important;
    margin-top: 18px !important;
  }
}

/* Final mobile fog edge fix: prevents the Vanta canvas from leaving a dark strip while the browser chrome resizes during scroll. */
html,
body {
  background:
    radial-gradient(circle at 78% 46%, rgba(255,113,18,.34), transparent 30rem),
    linear-gradient(105deg, #050301 0%, #0a0502 36%, #211006 70%, #5a2408 100%) !important;
  overscroll-behavior-x: none;
}

#vanta-fog {
  left: -2px !important;
  right: -2px !important;
  top: -2px !important;
  bottom: -2px !important;
  width: calc(100vw + 4px) !important;
  height: calc(100vh + 4px) !important;
  min-height: calc(100vh + 4px) !important;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  contain: layout paint size;
}

#vanta-fog canvas {
  position: absolute !important;
  inset: 0 !important;
  width: calc(100vw + 4px) !important;
  height: calc(100vh + 4px) !important;
  min-width: calc(100vw + 4px) !important;
  min-height: calc(100vh + 4px) !important;
  transform: translate3d(0,0,0) scale(1.012);
  transform-origin: center center;
}

@supports (height: 100dvh) {
  #vanta-fog {
    height: calc(100dvh + 4px) !important;
    min-height: calc(100dvh + 4px) !important;
  }
  #vanta-fog canvas {
    height: calc(100dvh + 4px) !important;
    min-height: calc(100dvh + 4px) !important;
  }
}

@media (max-width: 760px) {
  html,
  body,
  .page {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body::before {
    inset: -2px !important;
  }

  #vanta-fog {
    position: fixed !important;
    width: calc(100vw + 6px) !important;
    left: -3px !important;
    right: -3px !important;
  }

  #vanta-fog canvas {
    width: calc(100vw + 6px) !important;
    min-width: calc(100vw + 6px) !important;
    transform: translate3d(0,0,0) scale(1.018);
  }
}

/* AJAX contact feedback */
.form-status {
  display: none;
  margin: 2px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 188, 124, .22);
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 241, 232, .82);
  font-size: .95rem;
  line-height: 1.45;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  border-color: rgba(74, 222, 128, .32);
  background: rgba(74, 222, 128, .08);
  color: rgba(220, 252, 231, .92);
}
.form-status.is-error {
  border-color: rgba(248, 113, 113, .34);
  background: rgba(248, 113, 113, .08);
  color: rgba(254, 226, 226, .94);
}
.contact-form button[disabled] {
  cursor: wait;
  opacity: .78;
  transform: none !important;
}

/* Final additions: before/after, pricing builder, glowing analysis word, legal header cleanup */
.glow-word {
  color: #ff8b2a;
  text-shadow: 0 0 18px rgba(255, 139, 42, .65), 0 0 48px rgba(255, 116, 23, .38);
  animation: analysisPulse 3.6s ease-in-out infinite;
}
@keyframes analysisPulse {
  0%,100% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
}
.comparison-section, .pricing-section { padding-top: 52px; }
.before-after {
  --split: 50%;
  position: relative;
  min-height: clamp(300px, 48vw, 520px);
  border: 1px solid rgba(255,139,42,.2);
  border-radius: 30px;
  overflow: hidden;
  background: #080706;
  box-shadow: 0 30px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
  isolation: isolate;
}
.ba-layer { position: absolute; inset: 0; overflow: hidden; }
.ba-after {
  background:
    radial-gradient(circle at 74% 36%, rgba(255,116,23,.22), transparent 22rem),
    linear-gradient(135deg, #0c0e14, #050505 60%, #120906);
}
.ba-before {
  width: var(--split);
  background: #edeae4;
  color: #14110f;
  border-right: 2px solid rgba(255,255,255,.72);
  z-index: 2;
}
.ba-label {
  position: absolute;
  top: 16px;
  z-index: 5;
  padding: 8px 13px;
  border-radius: 9px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ba-label.before { left: 16px; background: rgba(0,0,0,.5); color: white; }
.ba-label.after { right: 16px; background: rgba(255,255,255,.08); color: white; }
.ba-clean-site, .ba-messy-site { position: absolute; inset: 56px 36px 34px; border-radius: 24px; }
.ba-clean-site {
  padding: clamp(22px, 4vw, 46px);
  background:
    radial-gradient(circle at 82% 42%, rgba(255,139,42,.32), transparent 15rem),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1);
}
.ba-clean-nav { display: flex; gap: 12px; align-items: center; color: #fffaf2; margin-bottom: clamp(42px, 8vw, 92px); }
.ba-clean-nav b { margin-right: auto; letter-spacing: .18em; font-size: .72rem; }
.ba-clean-nav span { width: 54px; height: 7px; border-radius: 99px; background: rgba(255,255,255,.22); }
.ba-clean-site h3 { color: #fffaf2; font-size: clamp(2.2rem, 5.5vw, 5rem); line-height: .92; max-width: 520px; margin: 0 0 18px; }
.ba-clean-site p { color: rgba(255,250,242,.72); max-width: 430px; }
.ba-clean-site button { border: 0; color: #fff; background: linear-gradient(135deg, #ff6d12, #ffad55); border-radius: 999px; padding: 14px 20px; font-weight: 900; }
.ba-messy-site { padding: 18px; background: #f3f1eb; border: 1px solid rgba(0,0,0,.08); max-width: 330px; right: auto; }
.messy-bar { height: 58px; background: #fb914d; margin-bottom: 12px; }
.messy-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.messy-tags span { background: #ddd; border-radius: 4px; padding: 5px 8px; font-size: .68rem; font-weight: 800; }
.ba-messy-site h3 { font-size: 1.25rem; line-height: 1.1; margin: 14px 0 8px; }
.ba-messy-site p { color: #444; line-height: 1.25; }
.messy-buttons { display: flex; gap: 8px; margin: 14px 0; }
.messy-buttons i { width: 70px; height: 28px; background: #1785ff; border-radius: 6px; }
.messy-buttons i:nth-child(2) { background: #ef4444; }
.messy-block { height: 58px; background: #cac8c2; border-radius: 6px; margin-top: 18px; }
.ba-range { position: absolute; inset: 0; z-index: 6; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--split); z-index: 5; transform: translateX(-50%); pointer-events: none; }
.ba-handle::before { content:""; position:absolute; top:0; bottom:0; left:50%; width:2px; background: rgba(255,255,255,.7); transform:translateX(-50%); }
.ba-handle span { position:absolute; top:50%; left:50%; width:46px; height:62px; border-radius: 18px; background: rgba(10,8,8,.74); border:1px solid rgba(255,255,255,.28); transform:translate(-50%,-50%); box-shadow:0 12px 36px rgba(0,0,0,.44); }
.ba-handle span::after { content:"↔"; position:absolute; inset:0; display:grid; place-items:center; color:#fff; font-weight:900; }
.price-builder {
  border: 1px solid rgba(255,139,42,.18);
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,139,42,.14), transparent 18rem),
    linear-gradient(180deg, rgba(27,24,32,.82), rgba(11,9,14,.82));
  box-shadow: 0 28px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
}
.price-topline { display:flex; justify-content:space-between; gap:18px; align-items:center; padding:24px; border-bottom:1px solid rgba(255,255,255,.08); }
.price-topline > div { display:flex; align-items:center; gap:12px; color:#fff; }
.status-dot { width:9px; height:9px; border-radius:50%; background:#34d399; box-shadow:0 0 18px rgba(52,211,153,.8); flex:0 0 auto; }
.price-topline b { color:#fffaf2; font-size:1.55rem; }
.builder-step { padding:24px; border-bottom:1px solid rgba(255,255,255,.08); }
.builder-step p { margin:0 0 16px; text-transform:uppercase; letter-spacing:.18em; color:var(--muted); font-weight:900; font-size:.78rem; }
.builder-step p b { display:inline-grid; place-items:center; width:22px; height:22px; border-radius:50%; background:#38bdf8; color:white; letter-spacing:0; margin-right:8px; }
.choice-tabs { display:flex; flex-wrap:wrap; gap:10px; }
.choice-tabs button, .addons-list button {
  border:1px solid rgba(255,255,255,.1);
  color:var(--text);
  background:rgba(255,255,255,.035);
  border-radius:999px;
  padding:13px 18px;
  font-weight:900;
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.choice-tabs button:hover, .addons-list button:hover { transform: translateY(-1px); border-color: rgba(255,139,42,.36); }
.choice-tabs button.active { background: linear-gradient(135deg, #38bdf8, #ffb45e); color:#fff; border-color: transparent; }
.addons-list { display:grid; gap:12px; }
.addons-list button { border-radius:18px; min-height:62px; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:12px; width:100%; text-align:left; padding:0 16px; }
.addons-list button span { display:grid; place-items:center; width:31px; height:31px; border-radius:50%; background:rgba(255,255,255,.08); color:var(--muted); font-size:1.2rem; }
.addons-list button em { color:var(--muted); font-style:normal; font-weight:900; }
.addons-list button.active { border-color: rgba(255,139,42,.56); background:rgba(255,139,42,.1); }
.addons-list button.active span { background:linear-gradient(135deg,#ff6d12,#ffb45e); color:#fff; }
.price-summary { padding:28px 24px 30px; display:grid; gap:14px; }
.price-summary span { color:var(--muted); text-transform:uppercase; letter-spacing:.16em; font-weight:800; font-size:.78rem; }
.price-summary strong { color:#fffaf2; font-size:clamp(2.1rem,4vw,3.5rem); line-height:1; }
.price-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:10px; }
.legal-page { padding-top: 140px; }
.legal-page .legal-brand-note { color: var(--muted); }
@media (max-width: 760px) {
  .before-after { min-height: 410px; border-radius: 24px; }
  .ba-clean-site, .ba-messy-site { inset: 52px 18px 24px; }
  .ba-messy-site { max-width: 46%; padding: 12px; }
  .ba-clean-nav span { width: 34px; }
  .ba-clean-site h3 { font-size: clamp(2rem, 9vw, 3.4rem); }
  .price-topline { align-items:flex-start; }
  .price-topline, .builder-step, .price-summary { padding: 18px; }
  .addons-list button { grid-template-columns:auto 1fr; }
  .addons-list button em { grid-column:2; }
  .price-actions .button { width:100%; }
}
@media (max-width: 520px) {
  .choice-tabs { display:grid; grid-template-columns:1fr 1fr; }
  .choice-tabs button { padding: 12px 10px; font-size: .9rem; }
  .before-after { min-height: 360px; }
  .ba-messy-site { max-width: 48%; }
  .ba-clean-site p, .ba-clean-site button { font-size:.82rem; }
}

/* Refined final: cleaner before/after, category-specific pricing, mobile-safe */
.ba-after {
  background:
    radial-gradient(circle at 78% 38%, rgba(255, 126, 24, .24), transparent 32%),
    linear-gradient(135deg, rgba(10,10,12,.98), rgba(18,14,12,.96) 54%, rgba(39,19,8,.93));
}
.ba-clean-site {
  overflow: hidden;
  padding: clamp(22px, 3vw, 44px);
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
    radial-gradient(circle at 75% 28%, rgba(255,121,24,.22), transparent 35%);
  box-shadow: inset 0 0 0 1px rgba(255,137,45,.08), 0 32px 90px rgba(0,0,0,.42);
}
.ba-clean-site::before {
  content:"";
  position:absolute;
  right:-10%; top:8%;
  width:52%; aspect-ratio:1;
  border:1px solid rgba(255,139,42,.4);
  border-radius:50%;
  box-shadow:0 0 70px rgba(255,102,18,.28);
  opacity:.85;
}
.ba-clean-site::after {
  content:"";
  position:absolute;
  right:8%; bottom:-10%;
  width:45%; height:52%;
  border-radius:34px 34px 0 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.02)),
    linear-gradient(160deg, rgba(255,126,24,.12), rgba(0,0,0,.56));
  transform: rotate(-5deg);
  border:1px solid rgba(255,255,255,.12);
}
.ba-clean-nav,
.ba-clean-badge,
.ba-clean-site h3,
.ba-clean-site p,
.ba-clean-actions,
.ba-clean-cards { position: relative; z-index:2; }
.ba-clean-nav { margin-bottom: clamp(24px, 5vw, 56px); }
.ba-clean-badge {
  display:inline-flex;
  padding:8px 12px;
  border:1px solid rgba(255,139,42,.26);
  border-radius:999px;
  color:#ffb06a;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:900;
  font-size:.68rem;
  margin-bottom:18px;
  background:rgba(255,139,42,.07);
}
.ba-clean-site h3 {
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  max-width: 610px;
  letter-spacing:-.07em;
  text-shadow:0 18px 42px rgba(0,0,0,.55);
}
.ba-clean-actions { display:flex; gap:12px; align-items:center; margin-top:18px; flex-wrap:wrap; }
.ba-clean-actions i { font-style:normal; color:rgba(255,250,242,.7); font-weight:800; font-size:.9rem; }
.ba-clean-cards { display:flex; gap:10px; margin-top: clamp(20px, 3vw, 42px); max-width:420px; }
.ba-clean-cards span { flex:1; height:48px; border-radius:16px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10); }
.before-after { min-height: clamp(360px, 44vw, 560px); }

.choice-tabs button { white-space: nowrap; }
.addons-list button strong { line-height: 1.25; }
.price-builder { overflow:hidden; }

@media (max-width: 760px) {
  .comparison-section, .pricing-section { padding-top: 38px; }
  .before-after { min-height: 430px; border-radius: 26px; }
  .ba-clean-site, .ba-messy-site { inset: 48px 14px 22px; border-radius: 20px; }
  .ba-clean-site { padding:18px; }
  .ba-clean-site::before { width:70%; right:-28%; top:16%; }
  .ba-clean-site::after { width:55%; right:-8%; height:42%; bottom:-4%; opacity:.78; }
  .ba-clean-nav { gap:7px; margin-bottom:22px; }
  .ba-clean-nav b { font-size:.62rem; }
  .ba-clean-nav span { width:22px; height:5px; }
  .ba-clean-badge { font-size:.56rem; padding:6px 8px; margin-bottom:12px; }
  .ba-clean-site h3 { font-size: clamp(1.85rem, 10vw, 3rem); max-width: 80%; }
  .ba-clean-site p { max-width:70%; font-size:.85rem; }
  .ba-clean-actions button { padding:10px 14px; font-size:.78rem; }
  .ba-clean-actions i { font-size:.76rem; }
  .ba-clean-cards { max-width: 64%; margin-top:16px; }
  .ba-clean-cards span { height:34px; border-radius:12px; }
  .ba-messy-site { max-width: 47%; padding:10px; }
  .ba-messy-site h3 { font-size:1rem; }
  .ba-messy-site p { font-size:.74rem; }
  .choice-tabs { display:flex; gap:10px; overflow-x:auto; padding-bottom:6px; scrollbar-width:none; }
  .choice-tabs::-webkit-scrollbar { display:none; }
  .choice-tabs button { flex:0 0 auto; }
  .addons-list button { min-height:68px; padding:12px 14px; }
}

@media (max-width: 430px) {
  .before-after { min-height: 390px; }
  .ba-clean-site h3 { max-width: 88%; }
  .ba-clean-site p { max-width: 76%; }
  .ba-clean-cards { max-width: 74%; }
  .ba-handle span { width:40px; height:54px; }
}

/* Final downloadable patch: clean clickable before/after CTA */
.ba-range {
  display: none !important;
  pointer-events: none !important;
}
.before-after {
  touch-action: pan-y;
}
.ba-handle {
  z-index: 8 !important;
  pointer-events: auto !important;
  cursor: ew-resize;
}
.ba-clean-actions {
  position: relative !important;
  z-index: 12 !important;
  pointer-events: auto !important;
  max-width: min(100%, 520px);
}
.ba-clean-cta,
.ba-clean-site button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(135deg, #ff6d12, #ffad55);
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(255, 109, 18, .32);
  pointer-events: auto !important;
  white-space: nowrap;
}
.ba-clean-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 55px rgba(255, 109, 18, .42);
}
.ba-clean-site {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.ba-clean-site p {
  margin-bottom: 0;
}
.ba-clean-cards {
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .before-after {
    min-height: 470px !important;
    overflow: hidden;
  }
  .ba-clean-site,
  .ba-messy-site {
    inset: 50px 12px 24px !important;
  }
  .ba-clean-site {
    padding: 18px !important;
  }
  .ba-clean-nav {
    margin-bottom: 18px !important;
  }
  .ba-clean-badge {
    margin-bottom: 12px !important;
  }
  .ba-clean-site h3 {
    font-size: clamp(1.7rem, 8.6vw, 2.55rem) !important;
    line-height: .96 !important;
    max-width: 86% !important;
    margin-bottom: 12px !important;
  }
  .ba-clean-site p {
    max-width: 82% !important;
    font-size: .82rem !important;
    line-height: 1.45 !important;
  }
  .ba-clean-actions {
    gap: 8px !important;
    margin-top: 14px !important;
  }
  .ba-clean-cta {
    padding: 10px 13px !important;
    font-size: .76rem !important;
  }
  .ba-clean-actions i {
    font-size: .73rem !important;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
  }
  .ba-clean-cards {
    max-width: 84% !important;
    gap: 7px !important;
    margin-top: 16px !important;
  }
  .ba-clean-cards span {
    height: 30px !important;
    border-radius: 10px !important;
  }
  .ba-clean-site::after {
    width: 44% !important;
    height: 34% !important;
    right: -4% !important;
    bottom: -2% !important;
  }
  .ba-clean-site::before {
    width: 56% !important;
    right: -28% !important;
    top: 18% !important;
  }
  .ba-messy-site {
    max-width: 48% !important;
  }
}
@media (max-width: 430px) {
  .before-after {
    min-height: 455px !important;
  }
  .ba-clean-site h3 {
    font-size: clamp(1.55rem, 8.2vw, 2.25rem) !important;
    max-width: 92% !important;
  }
  .ba-clean-site p {
    max-width: 90% !important;
  }
  .ba-clean-cards {
    max-width: 90% !important;
  }
  .ba-handle span {
    width: 38px !important;
    height: 52px !important;
  }
}

/* FINAL FIX: simple, clean, non-overlapping before/after window */
.ba-static-comparison,
.before-after.ba-static-comparison {
  --split: 50%;
  display: grid !important;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr) !important;
  gap: 18px !important;
  min-height: auto !important;
  padding: 18px !important;
  overflow: visible !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  touch-action: auto !important;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 125, 26, .18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    #070605 !important;
}
.ba-static-comparison .ba-layer {
  position: relative !important;
  inset: auto !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: clamp(360px, 36vw, 500px) !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}
.ba-static-comparison .ba-before {
  z-index: 1 !important;
  border-right: 1px solid rgba(255,255,255,.10) !important;
  background: linear-gradient(135deg, #f1eee7, #d8d3c8) !important;
  color: #14110f !important;
}
.ba-static-comparison .ba-after {
  z-index: 1 !important;
  background:
    radial-gradient(circle at 78% 34%, rgba(255, 126, 24, .28), transparent 32%),
    linear-gradient(135deg, rgba(10,10,12,.98), rgba(18,14,12,.96) 54%, rgba(39,19,8,.93)) !important;
}
.ba-static-comparison .ba-label {
  top: 16px !important;
  z-index: 10 !important;
}
.ba-static-comparison .ba-label.before { left: 16px !important; right: auto !important; }
.ba-static-comparison .ba-label.after { left: 16px !important; right: auto !important; }
.ba-static-comparison .ba-messy-site,
.ba-static-comparison .ba-clean-site {
  position: absolute !important;
  inset: 58px 18px 18px !important;
  max-width: none !important;
  width: auto !important;
  border-radius: 20px !important;
}
.ba-static-comparison .ba-messy-site {
  padding: 18px !important;
  background: rgba(255,255,255,.78) !important;
  border: 1px solid rgba(0,0,0,.08) !important;
}
.ba-static-comparison .ba-clean-site {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: clamp(22px, 3vw, 38px) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.082), rgba(255,255,255,.022)),
    radial-gradient(circle at 78% 25%, rgba(255,121,24,.22), transparent 35%) !important;
  overflow: hidden !important;
}
.ba-static-comparison .ba-clean-nav { margin-bottom: 18px !important; }
.ba-static-comparison .ba-clean-badge { margin-bottom: 16px !important; align-self: flex-start !important; }
.ba-static-comparison .ba-clean-site h3 {
  font-size: clamp(2.25rem, 4.5vw, 4.25rem) !important;
  line-height: .95 !important;
  max-width: 620px !important;
  margin: 0 0 14px !important;
  letter-spacing: -.065em !important;
}
.ba-static-comparison .ba-clean-site p {
  max-width: 470px !important;
  margin: 0 !important;
  line-height: 1.45 !important;
}
.ba-static-comparison .ba-clean-actions {
  margin-top: 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  z-index: 15 !important;
}
.ba-static-comparison .ba-clean-actions i {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 42px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  white-space: nowrap !important;
}
.ba-static-comparison .ba-clean-cta {
  position: relative !important;
  z-index: 20 !important;
  pointer-events: auto !important;
}
.ba-static-comparison .ba-clean-cards {
  margin-top: 20px !important;
  max-width: 470px !important;
}
.ba-static-comparison .ba-handle,
.ba-static-comparison .ba-range {
  display: none !important;
}
.ba-static-comparison .ba-clean-site::before { width: 44% !important; right: -18% !important; top: 10% !important; }
.ba-static-comparison .ba-clean-site::after { width: 34% !important; height: 38% !important; right: 2% !important; bottom: -8% !important; opacity: .62 !important; }

@media (max-width: 860px) {
  .ba-static-comparison,
  .before-after.ba-static-comparison {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 14px !important;
    overflow: visible !important;
  }
  .ba-static-comparison .ba-layer {
    min-height: 330px !important;
    border-radius: 22px !important;
  }
  .ba-static-comparison .ba-messy-site,
  .ba-static-comparison .ba-clean-site {
    inset: 54px 14px 14px !important;
  }
  .ba-static-comparison .ba-clean-site {
    padding: 18px !important;
  }
  .ba-static-comparison .ba-clean-site h3 {
    font-size: clamp(2rem, 9vw, 3rem) !important;
    max-width: 92% !important;
  }
  .ba-static-comparison .ba-clean-site p {
    max-width: 92% !important;
    font-size: .92rem !important;
  }
  .ba-static-comparison .ba-clean-actions i {
    min-height: 38px !important;
    font-size: .78rem !important;
  }
  .ba-static-comparison .ba-clean-cards {
    max-width: 92% !important;
  }
}

@media (max-width: 430px) {
  .ba-static-comparison .ba-layer {
    min-height: 345px !important;
  }
  .ba-static-comparison .ba-clean-site h3 {
    font-size: clamp(1.8rem, 8vw, 2.35rem) !important;
  }
  .ba-static-comparison .ba-clean-actions {
    align-items: flex-start !important;
  }
  .ba-static-comparison .ba-clean-cta,
  .ba-static-comparison .ba-clean-actions i {
    min-height: 38px !important;
    font-size: .76rem !important;
    padding: 9px 12px !important;
  }
}

/* FINAL REAL BEFORE/AFTER SLIDER FIX */
.before-after.ba-live-slider,
.before-after.ba-live-slider * {
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-user-drag: none !important;
  box-sizing: border-box;
}
.before-after.ba-live-slider {
  --split: 50%;
  position: relative !important;
  min-height: clamp(340px, 43vw, 520px) !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  cursor: ew-resize;
  background: #08070b !important;
  border: 1px solid rgba(255,255,255,.11) !important;
  box-shadow: 0 28px 90px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08) !important;
  isolation: isolate;
}
.before-after.ba-live-slider .ba-layer {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  border-radius: inherit !important;
}
.before-after.ba-live-slider .ba-after {
  width: 100% !important;
  z-index: 1 !important;
  background:
    radial-gradient(circle at 78% 42%, rgba(255,119,26,.20), transparent 24rem),
    linear-gradient(135deg, #0d0d15 0%, #07070b 48%, #140a07 100%) !important;
}
.before-after.ba-live-slider .ba-before {
  width: var(--split) !important;
  z-index: 2 !important;
  color: #15120f !important;
  background: #ece9e2 !important;
  border-right: 2px solid rgba(255,255,255,.82) !important;
}
.before-after.ba-live-slider .ba-label {
  position: absolute !important;
  top: 18px !important;
  z-index: 10 !important;
  padding: 8px 13px !important;
  border-radius: 10px !important;
  font-size: .74rem !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  letter-spacing: .05em !important;
  backdrop-filter: blur(10px) !important;
}
.before-after.ba-live-slider .ba-label.before { left: 18px !important; right: auto !important; background: rgba(0,0,0,.52) !important; color: #fff !important; }
.before-after.ba-live-slider .ba-label.after { right: 18px !important; left: auto !important; background: rgba(0,0,0,.62) !important; color: #fff !important; }
.before-after.ba-live-slider .ba-handle {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: var(--split) !important;
  z-index: 12 !important;
  transform: translateX(-50%) !important;
  pointer-events: none !important;
}
.before-after.ba-live-slider .ba-handle::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 2px !important;
  transform: translateX(-50%) !important;
  background: rgba(255,255,255,.78) !important;
  box-shadow: 0 0 22px rgba(255,255,255,.20) !important;
}
.before-after.ba-live-slider .ba-handle span {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 46px !important;
  height: 62px !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 18px !important;
  background: rgba(18,16,24,.88) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.1) !important;
}
.before-after.ba-live-slider .ba-handle span::after {
  content: "Ⅱ" !important;
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
  color: rgba(255,255,255,.74) !important;
  font-size: 1.1rem !important;
  letter-spacing: -.12em !important;
  padding-right: 2px !important;
}
.ba-before-preview {
  position: absolute !important;
  top: 52px !important;
  left: 22px !important;
  width: min(360px, calc(100vw - 68px)) !important;
  bottom: 24px !important;
  border-radius: 0 0 18px 18px !important;
  background: #f3f0ea !important;
  overflow: hidden !important;
  padding: 20px !important;
  color: #17130f !important;
}
.old-top { height: 66px; border-radius: 4px; background: linear-gradient(90deg,#ff9a4e,#eb4f8a); margin: 0 0 14px; }
.old-nav { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:12px; white-space:nowrap; }
.old-nav span { padding:5px 8px; border-radius:4px; background:#d8d6d0; font-size:.62rem; font-weight:900; color:#333; }
.old-buttons { display:flex; gap:9px; margin-bottom:14px; }
.old-buttons i { width:66px; height:28px; border-radius:6px; background:#1d7cff; }
.old-buttons i:nth-child(2){ background:#ef4444; }
.old-buttons i:nth-child(3){ background:#22c55e; }
.ba-before-preview h3 { margin:0 0 8px; font-size:1.18rem; line-height:1.05; color:#17130f; font-weight:900; }
.ba-before-preview p { margin:0; color:#34302c; font-size:.82rem; line-height:1.35; max-width:250px; }
.old-blocks { position:absolute; left:20px; right:20px; bottom:20px; display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.old-blocks span { height:56px; border-radius:6px; background:#c9c7c1; }
.ba-after-preview {
  position: absolute !important;
  inset: 52px 26px 26px !important;
  border-radius: 24px !important;
  padding: clamp(22px, 4vw, 46px) !important;
  background:
    radial-gradient(circle at 84% 42%, rgba(255,129,33,.36), transparent 16rem),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025)) !important;
  border: 1px solid rgba(255,255,255,.11) !important;
  overflow: hidden !important;
}
.ba-after-preview::before {
  content:"";
  position:absolute;
  right:-10%; top:8%; width:48%; aspect-ratio:1; border-radius:50%;
  border:1px solid rgba(255,139,42,.38);
  box-shadow:0 0 90px rgba(255,106,22,.24);
}
.ba-after-preview::after {
  content:"";
  position:absolute;
  right:6%; bottom:-10%; width:42%; height:44%; border-radius:26px 26px 0 0;
  background:linear-gradient(140deg, rgba(255,255,255,.09), rgba(255,120,30,.10), rgba(0,0,0,.42));
  border:1px solid rgba(255,255,255,.10);
  transform:rotate(-5deg);
}
.ba-browser-dots,
.ba-after-top,
.ba-mini,
.ba-after-preview h3,
.ba-after-preview .ba-copy,
.ba-after-preview .ba-clean-actions,
.ba-after-grid { position:relative; z-index:2; }
.ba-browser-dots { position:absolute; left:18px; top:16px; display:flex; gap:7px; }
.ba-browser-dots i { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.22); }
.ba-after-top { display:flex; gap:12px; align-items:center; margin: 4px 0 clamp(22px, 4.8vw, 56px); color:#fffaf2; }
.ba-after-top b { margin-right:auto; letter-spacing:.18em; font-size:.72rem; }
.ba-after-top span { width:50px; height:6px; border-radius:99px; background:rgba(255,255,255,.18); }
.ba-mini { display:inline-flex; margin:0 0 14px; color:#ffab65; text-transform:uppercase; letter-spacing:.16em; font-size:.68rem; font-weight:950; }
.ba-after-preview h3 { margin:0 0 14px; max-width:560px; color:#fffaf2; font-size:clamp(2rem,4.6vw,4.2rem); line-height:.94; letter-spacing:-.065em; text-shadow:0 18px 40px rgba(0,0,0,.45); }
.ba-after-preview .ba-copy { margin:0; color:rgba(255,250,242,.72); max-width:420px; font-size:clamp(.92rem,1.3vw,1rem); line-height:1.55; }
.ba-clean-actions { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:16px !important; }
.ba-clean-cta { display:inline-flex !important; align-items:center; justify-content:center; min-height:44px; padding:0 18px !important; border-radius:999px !important; background:linear-gradient(135deg,#ff6d12,#ffad55) !important; color:#fff !important; font-weight:950 !important; text-decoration:none !important; box-shadow:0 14px 34px rgba(255,109,18,.22) !important; cursor:pointer !important; }
.ba-clean-actions i { font-style:normal; color:rgba(255,250,242,.72); font-weight:850; font-size:.9rem; }
.ba-after-grid { display:flex; gap:10px; margin-top:clamp(18px,3vw,34px); max-width:410px; }
.ba-after-grid span { flex:1; height:42px; border-radius:14px; background:rgba(255,255,255,.065); border:1px solid rgba(255,255,255,.10); }
@media (max-width: 760px) {
  .before-after.ba-live-slider { min-height: 390px !important; border-radius: 24px !important; }
  .before-after.ba-live-slider .ba-label { top: 12px !important; font-size: .64rem !important; padding: 7px 10px !important; }
  .before-after.ba-live-slider .ba-label.before { left: 12px !important; }
  .before-after.ba-live-slider .ba-label.after { right: 12px !important; }
  .ba-before-preview { top: 44px !important; left: 12px !important; width: 290px !important; bottom: 14px !important; padding: 14px !important; }
  .old-top { height: 48px; }
  .old-nav span { font-size:.5rem; padding:4px 6px; }
  .old-buttons i { width:48px; height:24px; }
  .ba-before-preview h3 { font-size:.96rem; }
  .ba-before-preview p { font-size:.68rem; max-width:210px; }
  .old-blocks span { height:42px; }
  .ba-after-preview { inset: 44px 12px 14px !important; border-radius: 20px !important; padding: 18px !important; }
  .ba-browser-dots { display:none; }
  .ba-after-top { margin-bottom: 20px; gap:7px; }
  .ba-after-top b { font-size:.62rem; }
  .ba-after-top span { width:34px; height:5px; }
  .ba-mini { font-size:.56rem; margin-bottom:10px; }
  .ba-after-preview h3 { font-size: clamp(1.55rem, 8vw, 2.15rem); max-width: 78%; line-height: .98; }
  .ba-after-preview .ba-copy { font-size:.78rem; max-width: 78%; line-height:1.4; }
  .ba-clean-actions { margin-top: 12px !important; gap:8px; max-width: 78%; }
  .ba-clean-cta { min-height: 38px; padding:0 14px !important; font-size:.78rem; }
  .ba-clean-actions i { font-size:.7rem; }
  .ba-after-grid { max-width: 72%; margin-top: 14px; }
  .ba-after-grid span { height: 30px; }
  .before-after.ba-live-slider .ba-handle span { width: 38px !important; height: 52px !important; border-radius: 15px !important; }
}

/* Final requested polish: compact mobile pricing + safer before/after CTA spacing */
.before-after.ba-live-slider {
  min-height: clamp(430px, 42vw, 520px) !important;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.ba-after-preview {
  padding-top: clamp(26px, 3.2vw, 42px) !important;
}
.ba-after-preview h3 {
  max-width: 520px !important;
  font-size: clamp(1.9rem, 4vw, 3.65rem) !important;
}
.ba-after-preview .ba-copy {
  max-width: 390px !important;
}
.ba-clean-actions {
  margin-top: 10px !important;
  transform: translateY(-4px);
  position: relative;
  z-index: 8;
}
.ba-clean-cta {
  pointer-events: auto !important;
  position: relative;
  z-index: 9;
}
.ba-after-grid {
  margin-top: 14px !important;
}

@media (max-width: 760px) {
  .pricing-section .section-heading { margin-bottom: 20px; }
  .price-builder { border-radius: 24px; }
  .price-topline {
    padding: 14px 14px !important;
    gap: 10px;
    align-items: center;
  }
  .price-topline div {
    font-size: .88rem;
    line-height: 1.28;
  }
  .price-topline b {
    font-size: 1.65rem;
    white-space: nowrap;
  }
  .builder-step {
    padding: 14px !important;
  }
  .builder-step p {
    margin-bottom: 10px !important;
    font-size: .68rem !important;
    letter-spacing: .13em !important;
  }
  .builder-step p b {
    width: 20px !important;
    height: 20px !important;
    font-size: .72rem;
    margin-right: 6px !important;
  }
  .choice-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }
  .choice-tabs button {
    min-height: 39px;
    padding: 0 10px !important;
    font-size: .78rem !important;
    white-space: normal !important;
    line-height: 1.05;
  }
  .addons-list {
    gap: 8px !important;
  }
  .addons-list button {
    min-height: 48px !important;
    grid-template-columns: 26px 1fr auto !important;
    gap: 8px !important;
    padding: 8px 10px !important;
    border-radius: 15px !important;
  }
  .addons-list button span {
    width: 25px !important;
    height: 25px !important;
    font-size: .95rem !important;
  }
  .addons-list button strong {
    font-size: .82rem !important;
    line-height: 1.12 !important;
  }
  .addons-list button em {
    grid-column: auto !important;
    font-size: .78rem !important;
    white-space: nowrap;
  }
  .price-summary {
    padding: 16px 14px 18px !important;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 12px !important;
  }
  .price-summary span {
    font-size: .62rem !important;
    letter-spacing: .12em !important;
  }
  .price-summary strong {
    font-size: 2rem !important;
    justify-self: end;
  }
  .price-actions {
    grid-column: 1 / -1;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .price-actions .button {
    min-height: 44px;
    padding: 0 12px !important;
    font-size: .82rem !important;
  }

  .before-after.ba-live-slider {
    min-height: 430px !important;
  }
  .ba-after-preview {
    padding: 17px !important;
  }
  .ba-after-top { margin-bottom: 14px !important; }
  .ba-after-preview h3 {
    max-width: 70% !important;
    font-size: clamp(1.42rem, 7vw, 2rem) !important;
    margin-bottom: 8px !important;
  }
  .ba-after-preview .ba-copy {
    max-width: 69% !important;
    font-size: .74rem !important;
    line-height: 1.34 !important;
  }
  .ba-clean-actions {
    max-width: 70% !important;
    margin-top: 8px !important;
    transform: translateY(-2px);
  }
  .ba-clean-cta {
    min-height: 36px !important;
    padding: 0 12px !important;
    font-size: .72rem !important;
  }
  .ba-clean-actions i {
    font-size: .66rem !important;
  }
}

@media (max-width: 420px) {
  .choice-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .addons-list button {
    grid-template-columns: 24px 1fr !important;
  }
  .addons-list button em {
    grid-column: 2 !important;
    margin-top: -3px;
  }
  .price-actions { grid-template-columns: 1fr !important; }
  .before-after.ba-live-slider { min-height: 455px !important; }
  .ba-after-preview h3 { max-width: 76% !important; }
  .ba-after-preview .ba-copy { max-width: 74% !important; }
  .ba-clean-actions { max-width: 74% !important; }
  .ba-after-grid { max-width: 68% !important; }
}

/* Final image-based before/after comparison using uploaded GartenNatur screenshots */
.before-after.ba-live-slider.ba-image-comparison,
.before-after.ba-live-slider.ba-image-comparison * {
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-user-drag: none !important;
}
.before-after.ba-live-slider.ba-image-comparison {
  --split: 50%;
  position: relative !important;
  width: min(1120px, 100%) !important;
  aspect-ratio: 16 / 8.8 !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 30px !important;
  background: #07070b !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: 0 28px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08) !important;
  cursor: ew-resize !important;
  touch-action: pan-y !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-layer {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  border-radius: inherit !important;
  background: transparent !important;
  border: 0 !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-after {
  z-index: 1 !important;
  clip-path: none !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-before {
  z-index: 2 !important;
  width: 100% !important;
  clip-path: inset(0 calc(100% - var(--split)) 0 0) !important;
  border-right: 0 !important;
  color: inherit !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-comparison-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  pointer-events: none !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-label {
  position: absolute !important;
  top: 18px !important;
  z-index: 14 !important;
  padding: 8px 13px !important;
  border-radius: 10px !important;
  font-size: .74rem !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  letter-spacing: .05em !important;
  color: #fff !important;
  background: rgba(0,0,0,.68) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.28) !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-label.before {
  left: 18px !important;
  right: auto !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-label.after {
  right: 18px !important;
  left: auto !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-handle {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: var(--split) !important;
  z-index: 12 !important;
  transform: translateX(-50%) !important;
  pointer-events: none !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-handle::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 2px !important;
  transform: translateX(-50%) !important;
  background: rgba(255,255,255,.88) !important;
  box-shadow: 0 0 20px rgba(255,255,255,.32) !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-handle span {
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 46px !important;
  height: 62px !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 18px !important;
  background: rgba(18,16,24,.9) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.1) !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-handle span::after {
  content: "Ⅱ" !important;
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 1.08rem !important;
  letter-spacing: -.12em !important;
  padding-right: 2px !important;
}

@media (max-width: 760px) {
  .before-after.ba-live-slider.ba-image-comparison {
    aspect-ratio: 16 / 10.8 !important;
    border-radius: 24px !important;
  }
  .before-after.ba-live-slider.ba-image-comparison .ba-label {
    top: 12px !important;
    padding: 7px 10px !important;
    font-size: .64rem !important;
  }
  .before-after.ba-live-slider.ba-image-comparison .ba-label.before { left: 12px !important; }
  .before-after.ba-live-slider.ba-image-comparison .ba-label.after { right: 12px !important; }
  .before-after.ba-live-slider.ba-image-comparison .ba-handle span {
    width: 38px !important;
    height: 52px !important;
    border-radius: 15px !important;
  }
}

@media (max-width: 430px) {
  .before-after.ba-live-slider.ba-image-comparison {
    aspect-ratio: 16 / 12.5 !important;
  }
  .before-after.ba-live-slider.ba-image-comparison .ba-comparison-img {
    object-fit: cover !important;
  }
}


/* Final fix: true edge-to-edge before/after slider, no bleed, no selection */
.before-after.ba-live-slider.ba-image-comparison {
  overflow: hidden !important;
  -webkit-tap-highlight-color: transparent !important;
}
.before-after.ba-live-slider.ba-image-comparison,
.before-after.ba-live-slider.ba-image-comparison * {
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-user-drag: none !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-after {
  z-index: 1 !important;
  inset: 0 !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-before {
  z-index: 2 !important;
  inset: 0 !important;
  width: 100% !important;
  clip-path: inset(0 calc(100% - var(--split)) 0 0) !important;
  will-change: clip-path !important;
  transform: translateZ(0) !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-comparison-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  pointer-events: none !important;
  transform: translateZ(0) !important;
}
.before-after.ba-live-slider.ba-image-comparison .ba-handle {
  left: min(100%, max(0%, var(--split))) !important;
}
@media (max-width: 760px) {
  .before-after.ba-live-slider.ba-image-comparison {
    aspect-ratio: 16 / 11 !important;
  }
}
