/* ==========================================================================
   Live Event Activation — liveeventactivation.com
   "After-dark electric" design system · Merch Troop · 2026
   ========================================================================== */

:root {
  --bg: #07070F;
  --bg-raise: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #F4F2FF;
  --muted: #9D98B3;
  --violet: #7C3AED;
  --magenta: #E11D8F;
  --cyan: #22D3EE;
  --grad: linear-gradient(100deg, #7C3AED 0%, #E11D8F 52%, #22D3EE 100%);
  --grad-soft: linear-gradient(100deg, rgba(124,58,237,.35), rgba(225,29,143,.35), rgba(34,211,238,.35));
  --glow: 0 0 60px rgba(124, 58, 237, 0.25);
  --glow-pink: 0 0 60px rgba(225, 29, 143, 0.22);
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
  --radius: 18px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: none; }
p a, li a, .prose a { color: var(--cyan); text-decoration: underline; text-decoration-color: rgba(34,211,238,.4); text-underline-offset: 3px; transition: text-decoration-color .2s; }
p a:hover, li a:hover, .prose a:hover { text-decoration-color: var(--cyan); }
::selection { background: rgba(225, 29, 143, 0.45); color: #fff; }
button { font-family: inherit; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; margin: 0 0 0.6em; }
h4, h5 { font-family: var(--font-body); font-weight: 650; margin: 0 0 0.5em; }
h1 { font-size: clamp(2rem, 5.4vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
p { margin: 0 0 1.1em; }

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

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 300;
  background: var(--grad); color: #fff; font-weight: 650;
  padding: 10px 18px; border-radius: 10px; transition: top .2s;
}
.skip-link:focus { top: 14px; }

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.wrap-wide { width: min(1320px, calc(100% - 40px)); margin-inline: auto; }

/* ---------- Grain + mesh atmosphere ---------- */
.grain {
  position: fixed; inset: -100px; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}
.blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; will-change: transform; }
.blob-violet { background: radial-gradient(circle, rgba(124,58,237,.55), transparent 65%); }
.blob-pink   { background: radial-gradient(circle, rgba(225,29,143,.42), transparent 65%); }
.blob-cyan   { background: radial-gradient(circle, rgba(34,211,238,.34), transparent 65%); }
@keyframes blobDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(40px, -50px, 0) scale(1.12); }
  100% { transform: translate3d(-30px, 30px, 0) scale(0.96); }
}
.blob { animation: blobDrift 16s ease-in-out infinite alternate; }
.blob:nth-child(2) { animation-duration: 21s; animation-delay: -6s; }
.blob:nth-child(3) { animation-duration: 26s; animation-delay: -12s; }

/* ---------- Type accents ---------- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 650; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--grad); flex: none;
}

/* Section heading wipe-in */
.sec-title { position: relative; }
.sec-title .wipe {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--ease-out) 0.15s;
}
.sec-title.is-in .wipe { clip-path: inset(0 0 0 0); }

/* ---------- Reveal system ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 650; font-size: 1rem; line-height: 1;
  padding: 17px 30px; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform .3s var(--ease-out), box-shadow .3s, background-position .45s;
  will-change: transform;
}
.btn-primary {
  background: var(--grad); background-size: 160% 100%; background-position: 0% 0;
  color: #fff;
  box-shadow: 0 8px 30px rgba(225, 29, 143, 0.28);
}
.btn-primary:hover { background-position: 95% 0; box-shadow: 0 10px 44px rgba(124, 58, 237, 0.45); }
.btn-ghost {
  position: relative; color: var(--text); background: rgba(255,255,255,.03);
}
.btn-ghost::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.07); box-shadow: var(--glow); }
.btn .arrow { transition: transform .3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 7, 15, 0.72);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; width: min(1320px, calc(100% - 40px)); margin-inline: auto; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand svg { width: 40px; height: 40px; flex: none; filter: drop-shadow(0 0 14px rgba(124,58,237,.5)); }
.brand-word { display: flex; flex-direction: column; line-height: 1.02; font-family: var(--font-display); letter-spacing: .04em; }
.brand-word .l1 { font-size: .82rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-word .l2 { font-size: .62rem; font-weight: 600; color: var(--muted); letter-spacing: .3em; }
.main-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.main-nav a:not(.btn) {
  font-size: .95rem; font-weight: 500; color: var(--muted);
  transition: color .2s; position: relative; padding: 6px 0;
}
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--grad); transition: right .3s var(--ease-out); border-radius: 2px;
}
.main-nav a:not(.btn):hover { color: var(--text); }
.main-nav a:not(.btn):hover::after { right: 0; }
.main-nav .btn { padding: 12px 22px; font-size: .92rem; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px; border-radius: 12px; position: relative; z-index: 260;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px auto; border-radius: 2px;
  background: var(--text); transition: transform .35s var(--ease-out), opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(7, 7, 15, 0.92);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center; padding: 90px 36px 48px;
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility 0s .4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transition: opacity .4s; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 7vw, 2.6rem); padding: 12px 0;
  opacity: 0; transform: translateY(28px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.mobile-menu.is-open a { opacity: 1; transform: none; transition-delay: var(--md, 0s); }
.mobile-menu a:hover { color: var(--cyan); }
.mobile-menu .menu-cta { margin-top: 18px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mobile-menu .menu-contact { margin-top: auto; font-family: var(--font-body); font-size: 1rem; color: var(--muted); opacity: 0; transition: opacity .5s .45s; }
.mobile-menu.is-open .menu-contact { opacity: 1; }
.mobile-menu .menu-contact a { font-family: var(--font-body); font-size: 1rem; padding: 0; opacity: 1; transform: none; color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 40px) 0 90px;
  overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,7,15,.62) 0%, rgba(7,7,15,.4) 38%, rgba(7,7,15,.86) 82%, var(--bg) 100%),
    radial-gradient(85% 70% at 18% 78%, rgba(124,58,237,.32), transparent 60%),
    radial-gradient(60% 55% at 86% 22%, rgba(34,211,238,.16), transparent 65%);
}
.hero .wrap { position: relative; }
.live-badge {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(7,7,15,.5); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 9px 18px 9px 14px; font-size: .8rem; font-weight: 650;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 30px;
}
.live-dot { position: relative; width: 10px; height: 10px; flex: none; }
.live-dot::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--magenta); box-shadow: 0 0 12px var(--magenta);
}
.live-dot::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 1.5px solid var(--magenta);
  animation: livePing 1.8s var(--ease-out) infinite;
}
@keyframes livePing {
  0% { transform: scale(.6); opacity: 1; }
  80%, 100% { transform: scale(2.4); opacity: 0; }
}
.hero h1 { max-width: 13ch; margin-bottom: 26px; text-wrap: balance; }
.hero h1 .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; }
.hero h1 .w > span {
  display: inline-block; transform: translateY(110%);
  transition: transform .9s var(--ease-out);
  transition-delay: calc(var(--wi) * 70ms + 150ms);
}
.hero.is-in h1 .w > span { transform: none; }
.hero-sub {
  max-width: 56ch; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--muted);
  margin-bottom: 38px; font-weight: 500;
  opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease-out) .7s, transform .8s var(--ease-out) .7s;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease-out) .9s, transform .8s var(--ease-out) .9s; }
.hero.is-in .hero-sub, .hero.is-in .hero-ctas { opacity: 1; transform: none; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 1.5px; height: 56px; overflow: hidden; border-radius: 2px;
  background: rgba(255,255,255,.12);
}
.scroll-cue::after {
  content: ""; position: absolute; inset: 0;
  background: var(--grad);
  animation: cueDrop 2.1s var(--ease-out) infinite;
}
@keyframes cueDrop {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(0); }
  100% { transform: translateY(102%); }
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding: 20px 0; overflow: hidden; position: relative;
  background: rgba(255,255,255,.015);
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-seg { display: flex; align-items: center; flex: none; }
.marquee-seg span {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  letter-spacing: .24em; color: var(--muted); white-space: nowrap; padding: 0 18px;
}
.marquee-seg i {
  font-style: normal; background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: 1rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { position: relative; padding: 110px 0; }
.section-tight { padding: 80px 0; }
.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head p { color: var(--muted); font-size: 1.06rem; }
.lede { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--muted); font-weight: 500; }

/* Intro / SEO block */
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.intro-grid .prose-mini p { color: var(--muted); }
.intro-grid .prose-mini p strong { color: var(--text); }
.intro-figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--glow); border: 1px solid var(--line); }
.intro-figure img { width: 100%; height: auto; }
.intro-figure figcaption {
  position: absolute; inset: auto 0 0 0; padding: 36px 22px 16px;
  background: linear-gradient(transparent, rgba(7,7,15,.88));
  font-size: .85rem; color: var(--muted);
}

/* ---------- Formats rail ---------- */
.rail-section { position: relative; }
.rail-sticky { position: relative; }
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.rail-head p { max-width: 52ch; color: var(--muted); margin: 0; }
.rail-viewport { overflow: hidden; }
.rail-track { display: flex; gap: 24px; will-change: transform; }
.format-card {
  position: relative; flex: none; width: clamp(300px, 30vw, 420px);
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-raise); border: 1px solid var(--line);
  transition: border-color .3s, box-shadow .3s, transform .45s var(--ease-out);
  display: flex; flex-direction: column;
}
.format-card:hover { border-color: rgba(124,58,237,.5); box-shadow: var(--glow); transform: translateY(-6px); }
.format-card .fc-img { aspect-ratio: 4 / 3; overflow: hidden; }
.format-card .fc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.format-card:hover .fc-img img { transform: scale(1.06); }
.format-card .fc-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.format-card .fc-tag {
  font-size: .7rem; font-weight: 650; letter-spacing: .2em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}
.format-card h3 { margin-bottom: 8px; }
.format-card p { font-size: .94rem; color: var(--muted); margin-bottom: 18px; }
.fc-link { margin-top: auto; font-weight: 650; font-size: .92rem; display: inline-flex; gap: 8px; align-items: center; color: var(--cyan); }
.fc-link .arrow { transition: transform .3s var(--ease-out); }
.format-card:hover .fc-link .arrow { transform: translateX(5px); }
.format-card > a.fc-cover { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }

@media (min-width: 1024px) {
  .rail-section.rail-on { height: 320vh; }
  .rail-section.rail-on .rail-sticky {
    position: sticky; top: 0; height: 100vh;
    display: flex; flex-direction: column; justify-content: center; overflow: hidden;
  }
}
@media (max-width: 1023.5px) {
  .rail-track { flex-wrap: wrap; }
  .format-card { width: 100%; }
  @supports (display: grid) {
    .rail-track { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
  }
}

/* ---------- Stats ---------- */
.stats-band { border-block: 1px solid var(--line); background: rgba(255,255,255,.015); position: relative; overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 70px 0; position: relative; }
.stat .stat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 10px; font-variant-numeric: tabular-nums;
}
.stat .stat-label { color: var(--muted); font-size: .95rem; font-weight: 500; }

/* ---------- Process timeline ---------- */
.process { position: relative; }
.timeline { position: relative; margin-top: 30px; }
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%);
  background: rgba(255,255,255,.07); border-radius: 2px; overflow: hidden;
}
.timeline-line i {
  position: absolute; inset: 0; background: var(--grad);
  transform-origin: top; transform: scaleY(0); display: block;
}
.step {
  position: relative; width: calc(50% - 56px); padding: 30px 30px 32px;
  background: var(--bg-raise); border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 56px;
}
.step:nth-child(odd) { margin-right: auto; }
.step:nth-child(even) { margin-left: auto; }
.step:last-child { margin-bottom: 0; }
.step::before {
  content: ""; position: absolute; top: 38px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad); box-shadow: 0 0 18px rgba(225,29,143,.7);
}
.step:nth-child(odd)::before { right: -63px; }
.step:nth-child(even)::before { left: -63px; }
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: .8rem; letter-spacing: .2em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; margin: 0; }
@media (max-width: 820px) {
  .timeline-line { left: 8px; }
  .step, .step:nth-child(odd), .step:nth-child(even) { width: auto; margin-left: 40px; margin-right: 0; }
  .step:nth-child(odd)::before, .step:nth-child(even)::before { left: -39px; right: auto; }
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.g-col { display: grid; gap: 22px; will-change: transform; }
.g-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-raise);
  transition: box-shadow .35s, border-color .35s;
}
.g-item img { width: 100%; height: auto; transition: transform .65s var(--ease-out); }
.g-item:hover { box-shadow: var(--glow-pink); border-color: rgba(225,29,143,.45); }
.g-item:hover img { transform: scale(1.045); }
.g-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 44px 18px 14px;
  background: linear-gradient(transparent, rgba(7,7,15,.92));
  font-size: .84rem; color: var(--muted); line-height: 1.45;
  opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s var(--ease-out);
}
.g-item:hover figcaption, .g-item:focus-within figcaption { opacity: 1; transform: none; }
.gallery-cta { text-align: center; margin-top: 48px; }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .g-col { gap: 14px; }
  .g-item figcaption { opacity: 1; transform: none; }
}
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Why live / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-figure { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--glow); }
.split-figure img { width: 100%; height: auto; }
.check-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 16px; }
.check-list li { position: relative; padding-left: 38px; color: var(--muted); }
.check-list li strong { color: var(--text); display: block; margin-bottom: 2px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 22px; height: 22px; border-radius: 7px;
  background: linear-gradient(135deg, rgba(124,58,237,.25), rgba(34,211,238,.25));
  border: 1px solid rgba(124,58,237,.45);
}
.check-list li::after {
  content: ""; position: absolute; left: 7px; top: 10px; width: 8px; height: 5px;
  border-left: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); transform: rotate(-45deg);
}

/* ---------- Service area strip ---------- */
.area-strip {
  border-block: 1px solid var(--line); background: rgba(255,255,255,.015);
  padding: 64px 0; position: relative; overflow: hidden;
}
.area-strip .area-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.area-strip h2 { margin-bottom: 10px; }
.area-strip p { color: var(--muted); margin: 0; }
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.city-chips a {
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 9px 18px;
  font-size: .9rem; font-weight: 500; color: var(--muted);
  transition: color .25s, border-color .25s, box-shadow .25s, background .25s;
}
.city-chips a:hover { color: var(--text); border-color: rgba(34,211,238,.6); box-shadow: 0 0 24px rgba(34,211,238,.18); background: rgba(34,211,238,.06); }
.city-chips a.chip-home { border-color: rgba(225,29,143,.5); color: var(--text); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  background: none; border: 0; color: var(--text); text-align: left; cursor: pointer;
  font-size: 1.06rem; font-weight: 650; padding: 22px 4px; font-family: var(--font-body);
}
.faq-q .faq-icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%; position: relative;
  border: 1px solid var(--line-strong); transition: transform .4s var(--ease-out), border-color .3s;
}
.faq-q .faq-icon::before, .faq-q .faq-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--cyan); border-radius: 2px;
}
.faq-q .faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .faq-icon::after { width: 2px; height: 12px; transform: translate(-50%, -50%); transition: opacity .25s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); border-color: var(--magenta); }
.faq-q[aria-expanded="true"] .faq-icon::after { opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease-out); }
.faq-a p { color: var(--muted); padding: 0 44px 24px 4px; margin: 0; }
.faq-a p + p { padding-top: 0; margin-top: -12px; }

/* ---------- Quote / form ---------- */
.quote-section { position: relative; overflow: hidden; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; position: relative; }
.quote-pitch .price-anchor {
  display: inline-block; margin: 18px 0 22px; padding: 14px 22px; border-radius: 14px;
  background: linear-gradient(120deg, rgba(124,58,237,.16), rgba(225,29,143,.14), rgba(34,211,238,.12));
  border: 1px solid rgba(124,58,237,.4); font-weight: 650; font-size: 1.05rem;
}
.contact-lines { display: grid; gap: 12px; margin-top: 26px; }
.contact-lines a {
  display: inline-flex; align-items: center; gap: 12px; font-weight: 650; width: fit-content;
  color: var(--text); transition: color .2s;
}
.contact-lines a:hover { color: var(--cyan); }
.contact-lines .ci {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-raise); border: 1px solid var(--line);
}
.form-card {
  border-radius: 22px; border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.045);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: var(--glow), 0 30px 80px rgba(0,0,0,.5);
  overflow: hidden;
}
.form-card-head {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 26px; border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(124,58,237,.2), rgba(225,29,143,.16), rgba(34,211,238,.12));
}
.form-card-head strong { font-family: var(--font-display); font-size: .92rem; font-weight: 600; letter-spacing: .06em; }
.form-card-head span { font-size: .78rem; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }
.lead-form { padding: 26px; display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .82rem; font-weight: 650; letter-spacing: .04em; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(7,7,15,.55); color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 13px 15px; font: inherit; font-size: .97rem;
  transition: border-color .25s, box-shadow .25s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(157,152,179,.6); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,58,237,.25);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field textarea { min-height: 110px; resize: vertical; }
.field input[type="date"] { color-scheme: dark; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.details-toggle {
  background: none; border: 0; cursor: pointer; color: var(--cyan);
  font-weight: 650; font-size: .92rem; display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 0; width: fit-content;
}
.details-toggle .chev { transition: transform .35s var(--ease-out); display: inline-block; }
.details-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.extra-fields { display: grid; gap: 16px; overflow: hidden; max-height: 0; opacity: 0; transition: max-height .55s var(--ease-out), opacity .4s; }
.extra-fields.is-open { max-height: 760px; opacity: 1; }
.form-submit {
  margin-top: 4px; width: 100%; border: 0; cursor: pointer;
  background: var(--grad); background-size: 160% 100%;
  color: #fff; font-weight: 650; font-size: 1.02rem;
  padding: 17px 26px; border-radius: 999px;
  box-shadow: 0 8px 30px rgba(225,29,143,.3);
  transition: background-position .45s, box-shadow .3s, transform .3s var(--ease-out), opacity .3s;
}
.form-submit:hover:not(:disabled) { background-position: 95% 0; box-shadow: 0 10px 44px rgba(124,58,237,.45); }
.form-submit:disabled { opacity: .7; cursor: default; }
.form-note { font-size: .85rem; color: var(--muted); text-align: center; margin: 2px 0 0; min-height: 1.3em; }
.lead-form.is-success .form-submit { background: linear-gradient(100deg, #16a34a, #22d3ee); }
.lead-form.is-success input, .lead-form.is-success select, .lead-form.is-success textarea { opacity: .55; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 72px 0 36px; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
.footer-brand p { color: var(--muted); font-size: .94rem; max-width: 34ch; }
.footer-col h4 { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-contact { display: grid; gap: 8px; margin-top: 14px; font-size: .95rem; }
.footer-contact a { color: var(--text); font-weight: 500; }
.footer-contact a:hover { color: var(--cyan); }
.family-row { border-top: 1px solid var(--line); padding: 26px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; }
.family-row .family-label { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.family-row a { font-size: .88rem; color: var(--muted); transition: color .2s; }
.family-row a:hover { color: var(--text); }
.copyright { margin-top: 26px; font-size: .85rem; color: rgba(157,152,179,.7); }

/* ---------- Subpage scaffolding ---------- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 72px) 0 64px; overflow: hidden; isolation: isolate;
}
.page-hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.5), rgba(34,211,238,.4), transparent);
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .85rem; color: var(--muted); margin-bottom: 22px; position: relative; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb [aria-current] { color: var(--text); font-weight: 500; }
.page-hero h1 { max-width: 21ch; position: relative; }
.page-hero .lede { max-width: 62ch; position: relative; margin-bottom: 0; }

.prose { max-width: 780px; }
.prose h2 { margin-top: 1.9em; position: relative; padding-top: 18px; }
.prose h2::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 3px; border-radius: 3px; background: var(--grad); }
.prose h3 { margin-top: 1.6em; }
.prose p, .prose li { color: var(--muted); }
.prose li { margin-bottom: .5em; }
.prose strong { color: var(--text); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.2em; }
.prose figure { margin: 2.2em 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--glow); }
.prose figure img { width: 100%; height: auto; }
.prose figure figcaption { padding: 12px 18px; font-size: .85rem; color: var(--muted); background: var(--bg-raise); border-top: 1px solid var(--line); }
.callout {
  margin: 2em 0; padding: 24px 26px; border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(124,58,237,.13), rgba(225,29,143,.1), rgba(34,211,238,.08));
  border: 1px solid rgba(124,58,237,.38); color: var(--text);
}
.callout p { color: var(--text); margin: 0; }
.callout p + p { margin-top: .6em; }

.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin: 2em 0; }
.fact-card { padding: 20px 22px; border-radius: 14px; background: var(--bg-raise); border: 1px solid var(--line); }
.fact-card .f-num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 6px; }
.fact-card .f-label { font-size: .88rem; color: var(--muted); }

.link-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.link-card {
  display: flex; flex-direction: column; gap: 6px; padding: 22px 24px;
  border-radius: 14px; background: var(--bg-raise); border: 1px solid var(--line);
  transition: border-color .3s, box-shadow .3s, transform .35s var(--ease-out);
}
.link-card:hover { border-color: rgba(34,211,238,.5); box-shadow: 0 0 36px rgba(34,211,238,.14); transform: translateY(-4px); }
.link-card strong { font-size: 1.02rem; }
.link-card span { font-size: .88rem; color: var(--muted); }
.link-card .lc-arrow { margin-top: 6px; color: var(--cyan); font-weight: 650; font-size: .9rem; }

.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.hub-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-raise); border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: border-color .3s, box-shadow .3s, transform .4s var(--ease-out);
}
.hub-card:hover { border-color: rgba(124,58,237,.5); box-shadow: var(--glow); transform: translateY(-6px); }
.hub-card .hc-img { aspect-ratio: 16 / 10; overflow: hidden; }
.hub-card .hc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.hub-card:hover .hc-img img { transform: scale(1.05); }
.hub-card .hc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.hub-card h2, .hub-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.hub-card p { font-size: .93rem; color: var(--muted); margin-bottom: 16px; }
.hub-card .fc-link { margin-top: auto; }

.cta-banner {
  position: relative; margin: 90px 0 0; border-radius: 26px; overflow: hidden; isolation: isolate;
  padding: clamp(40px, 6vw, 72px); text-align: center;
  background:
    radial-gradient(120% 160% at 12% 0%, rgba(124,58,237,.4), transparent 55%),
    radial-gradient(110% 150% at 88% 100%, rgba(34,211,238,.28), transparent 55%),
    radial-gradient(90% 130% at 60% 50%, rgba(225,29,143,.22), transparent 60%),
    var(--bg-raise);
  border: 1px solid var(--line-strong);
  box-shadow: var(--glow);
}
.cta-banner h2 { max-width: 22ch; margin-inline: auto; }
.cta-banner p { color: var(--muted); max-width: 56ch; margin: 0 auto 30px; }
.post-meta { display: flex; gap: 14px; align-items: center; color: var(--muted); font-size: .88rem; margin-bottom: 18px; position: relative; }
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--magenta); }

/* ---------- Cursor orb ---------- */
.cursor-orb {
  position: fixed; left: 0; top: 0; width: 380px; height: 380px; border-radius: 50%;
  pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(124,58,237,.16) 0%, rgba(225,29,143,.07) 38%, transparent 68%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity .6s;
  will-change: transform;
}
.cursor-orb.is-on { opacity: 1; }
@media (pointer: coarse) { .cursor-orb { display: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .intro-grid, .split, .quote-grid, .area-strip .area-inner { grid-template-columns: 1fr; gap: 40px; }
  .split.split-rev .split-figure { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 54px 0; }
  .section { padding: 84px 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .lead-form { padding: 20px; }
  .wrap { width: calc(100% - 36px); }
  .hero-ctas .btn { width: 100%; }
  .stats-grid { gap: 22px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero h1 .w > span { transform: none; }
  .hero-sub, .hero-ctas { opacity: 1; transform: none; }
  .sec-title .wipe { clip-path: inset(0 0 0 0); }
  .marquee-track { animation: none; transform: none; }
  .blob { animation: none; }
  .timeline-line i { transform: scaleY(1); }
  .scroll-cue::after { animation: none; transform: none; }
  .live-dot::after { animation: none; opacity: 0; }
  .cursor-orb { display: none; }
  .extra-fields, .faq-a { transition: none; }
  .g-col { transform: none !important; }
  .rail-section.rail-on { height: auto !important; }
}
