/* ==========================================================================
   AI Operations Launch — one-page site
   Implementation of "AI Operations Launch.dc.html" (Claude Design handoff)
   — the v5 premium pass: restraint, type contrast, proof, micro-interactions.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg: #08080c;
  --text: #f4f4f6;
  --text-70: rgba(244, 244, 246, 0.7);
  --text-62: rgba(244, 244, 246, 0.62);
  --text-60: rgba(244, 244, 246, 0.6);
  --text-50: rgba(244, 244, 246, 0.5);
  --text-45: rgba(244, 244, 246, 0.45);
  --text-40: rgba(244, 244, 246, 0.4);
  --text-35: rgba(244, 244, 246, 0.35);

  --purple: #8b5cf6;
  --indigo: #6366f1;
  --lilac: #a78bfa;
  --lilac-light: #c4b5fd;
  --emerald: #34d399;
  --mint: #a7f3d0;

  --brand-gradient: linear-gradient(135deg, #8b5cf6, #6366f1);
  --panel: linear-gradient(180deg, rgba(18, 18, 27, 0.94), rgba(11, 11, 17, 0.94));
  --card: linear-gradient(180deg, rgba(18, 18, 26, 0.7), rgba(11, 11, 17, 0.7));
  --hairline: rgba(255, 255, 255, 0.08);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --shell: 1140px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--lilac); text-decoration: none; }
a:hover { color: var(--lilac-light); }

::selection { background: rgba(139, 92, 246, 0.35); color: #fff; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; }
p { margin: 0; }
blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

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

/* --------------------------------------------------------------------------
   3. Keyframes
   -------------------------------------------------------------------------- */
@keyframes aurora {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(6%, -4%, 0) scale(1.15); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes aurora2 {
  0%   { transform: translate3d(0, 0, 0) scale(1.1); }
  50%  { transform: translate3d(-8%, 5%, 0) scale(1); }
  100% { transform: translate3d(0, 0, 0) scale(1.1); }
}
@keyframes flow  { to { stroke-dashoffset: -200; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
@keyframes spin  { to { transform: rotate(360deg); } }
/* Two identical pill sets separated by a 10px gap: shifting by half the track
   plus half a gap makes the loop seamless. */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 5px)); }
}

/* --------------------------------------------------------------------------
   4. Shell + ambient background
   -------------------------------------------------------------------------- */
.page {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ambient__blob {
  position: absolute;
  border-radius: 50%;
}
.ambient__blob--1 {
  top: -20%; left: 50%;
  width: 900px; height: 900px;
  margin-left: -450px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 60%);
  filter: blur(40px);
  animation: aurora 18s ease-in-out infinite;
}
.ambient__blob--2 {
  top: 34%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.09), transparent 60%);
  filter: blur(50px);
  animation: aurora2 22s ease-in-out infinite;
}
.ambient__blob--3 {
  bottom: -10%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 60%);
  filter: blur(50px);
  animation: aurora 26s ease-in-out infinite;
}
.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 100% 55% at 50% 0%, #000, transparent 75%);
          mask-image: radial-gradient(ellipse 100% 55% at 50% 0%, #000, transparent 75%);
}

/* --------------------------------------------------------------------------
   5. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  background: rgba(8, 8, 12, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
}
.brand:hover { color: var(--text); }
.brand__mark {
  position: relative;
  display: inline-flex;
  width: 27px; height: 27px;
  border-radius: 8px;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.35);
}
.brand__mark::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 4px;
  background: var(--bg);
}
.brand__mark::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4b5fd, #818cf8);
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
}

.nav__right { display: flex; align-items: center; gap: 30px; }
.nav__links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  color: var(--text-60);
}
.nav__links a { color: inherit; }
.nav__links a:hover { color: var(--text); }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
}
.btn--primary {
  color: #fff;
  background: var(--brand-gradient);
  transition: transform 0.2s, box-shadow 0.2s;
}
[data-magnetic] { transition: transform 0.25s ease-out, box-shadow 0.25s; }
.btn--primary:hover { color: #fff; }
.btn--ghost {
  color: #e5e3ee;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s, border-color 0.2s;
}
.btn--ghost:hover {
  color: #e5e3ee;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
}

/* nav-sized */
.btn--nav {
  gap: 7px;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 6px 22px rgba(124, 58, 237, 0.3);
}
.btn--nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

/* hero-sized */
.btn--hero {
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 16px;
  box-shadow: 0 10px 34px rgba(124, 58, 237, 0.32);
}
.btn--hero:hover { box-shadow: 0 16px 44px rgba(124, 58, 237, 0.4); }
.btn--hero-ghost {
  gap: 8px;
  padding: 15px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
}

/* final CTA */
.btn--xl {
  padding: 17px 34px;
  border-radius: 13px;
  font-size: 17px;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.38);
}
.btn--xl:hover { box-shadow: 0 18px 52px rgba(124, 58, 237, 0.42); }
.btn__arrow { font-size: 17px; }
.btn--xl .btn__arrow { font-size: 18px; }

/* package buttons */
.btn--pkg {
  margin-top: 26px;
  padding: 13px;
  border-radius: 11px;
  font-size: 15px;
  gap: 0;
}
.btn--pkg.btn--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  transition: background 0.2s;
}
.btn--pkg.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }
.btn--pkg.btn--primary {
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.45);
  transition: transform 0.2s;
}
.btn--pkg.btn--primary:hover { transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   7. Section scaffolding
   -------------------------------------------------------------------------- */
.section {
  position: relative;
  z-index: 1;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 110px 40px 40px;
}
.section--center { text-align: center; }
.section__head { text-align: center; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  color: var(--text-45);
  margin-bottom: 16px;
}
.eyebrow__n { color: var(--lilac); }
.eyebrow__sep { margin: 0 10px; color: rgba(255, 255, 255, 0.18); }
.section-title {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 auto;
}
.section-title--how { line-height: 1.08; max-width: 780px; }
.lede {
  margin: 20px auto 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-60);
}

/* Chrome shared by the hero command center and the flow diagram */
.window { position: relative; }
.window__glow {
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(99, 102, 241, 0.12), transparent);
  filter: blur(2px);
}
.window__frame {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--panel);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.window__dot { width: 11px; height: 11px; border-radius: 50%; }
.window__dot--r { background: #ff5f57; }
.window__dot--y { background: #febc2e; }
.window__dot--g { background: #28c840; }
.window__title {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-40);
}
.window__status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--emerald);
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: blink 1.6s infinite;
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1080px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent);
          mask-image: linear-gradient(180deg, #000 62%, transparent);
}

.hero {
  position: relative;
  z-index: 1;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 172px 40px 60px;
  text-align: center;
}

/* Live activity ticker */
.ticker {
  position: relative;
  margin: 0 auto 30px;
  max-width: 600px;
  overflow: hidden;
  border-radius: 100px;
  padding: 2px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.ticker__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.ticker__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  font-size: 12.5px;
  color: rgba(244, 244, 246, 0.72);
}
.ticker__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dot, var(--lilac));
}
.ticker__time {
  color: rgba(244, 244, 246, 0.38);
  font-family: var(--font-mono);
  font-size: 11px;
}
.ticker__pill--paid {
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.22);
  color: var(--mint);
}
.ticker__pill--paid .ticker__time { color: rgba(167, 243, 208, 0.5); }

.hero__title {
  font-size: clamp(46px, 7.2vw, 102px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 auto;
  max-width: 960px;
  background: linear-gradient(180deg, #ffffff, #b9b6c8);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero__sub {
  max-width: 700px;
  margin: 26px auto 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-62);
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.08);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mint);
}

/* Command center */
.command {
  margin: 64px auto 0;
  max-width: 980px;
}
.command__body {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.command__col {
  background: #0c0c12;
  padding: 22px 24px;
  text-align: left;
}
.command__label {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--text-40);
  margin-bottom: 16px;
}
.feed { display: flex; flex-direction: column; gap: 11px; }
.feed__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.feed__row--accent {
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.18);
}
.feed__badge {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.feed__badge--wa  { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.feed__badge--ig  { background: rgba(225, 48, 108, 0.15); color: #f472b6; font-size: 12px; }
.feed__badge--tel { background: rgba(52, 211, 153, 0.15); color: var(--emerald); }
.feed__badge--web { background: rgba(167, 139, 250, 0.15); color: var(--lilac); font-size: 12px; }
.feed__body { flex: 1; }
.feed__msg { font-size: 13.5px; color: #e9e7f0; }
.feed__meta { font-size: 11.5px; color: var(--text-40); }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat {
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.stat--green { background: rgba(52, 211, 153, 0.06); border-color: rgba(52, 211, 153, 0.18); }
.stat--purple { background: rgba(139, 92, 246, 0.08); border-color: rgba(139, 92, 246, 0.22); }
.stat__value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}
.stat--green .stat__value { color: var(--emerald); }
.stat--purple .stat__value { color: var(--lilac-light); }
.stat__label {
  font-size: 11.5px;
  color: var(--text-45);
  margin-top: 2px;
}

.command__label--channels {
  margin-top: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.bars { display: flex; flex-direction: column; gap: 9px; }
.bar { display: flex; align-items: center; gap: 10px; }
.bar__name { width: 64px; font-size: 12px; color: #cbd5e1; }
.bar__track {
  flex: 1;
  height: 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.bar__fill { height: 100%; border-radius: 5px; }
.bar__fill--wa    { width: 88%; background: linear-gradient(90deg, #25D366, #1aa34a); }
.bar__fill--phone { width: 64%; background: linear-gradient(90deg, #34d399, #10b981); }
.bar__fill--ig    { width: 52%; background: linear-gradient(90deg, #e1306c, #c13584); }

/* --------------------------------------------------------------------------
   9. How it works — flow diagram
   -------------------------------------------------------------------------- */
.flow-window {
  margin: 56px auto 0;
  max-width: 1000px;
}
.flow__stage { position: relative; padding: 22px; }
.flow__glow {
  position: absolute;
  top: -30%; left: 50%;
  width: 520px; height: 520px;
  margin-left: -260px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.flow__svg {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}
.flow-dash {
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 5 195;
  animation: flow 2.2s linear infinite;
}
.flow-orbit {
  transform-origin: 480px 210px;
  animation: spin 34s linear infinite;
}

/* --------------------------------------------------------------------------
   10. AI workforce
   -------------------------------------------------------------------------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.agent {
  position: relative;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: var(--card);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.agent:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.22);
}
.agent--featured {
  border-color: rgba(139, 92, 246, 0.25);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(11, 11, 17, 0.6));
}
.agent--featured:hover {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
}
.agent__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
}
.agent__name {
  font-size: 17px;
  margin: 16px 0 6px;
}
.agent__copy {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-60);
}
.agent--featured .agent__copy { color: rgba(244, 244, 246, 0.68); }

/* --------------------------------------------------------------------------
   11. Journey pipeline
   -------------------------------------------------------------------------- */
.journey {
  margin-top: 52px;
  border-radius: 22px;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(16, 16, 24, 0.7), rgba(10, 10, 16, 0.7));
  padding: 36px 28px;
}
.journey__inner {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}
.journey__rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.jstep {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 3px;
}
.jstep__conn {
  position: absolute;
  top: 22px; left: 50%;
  width: 100%; height: 2px;
  background: rgba(255, 255, 255, 0.09);
  transition: background 0.45s, box-shadow 0.45s;
  z-index: 0;
}
.jstep.is-linked .jstep__conn {
  background: var(--brand-gradient);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
}
.jstep__node {
  position: relative;
  z-index: 1;
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-50);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.45s;
}
.jstep.is-active .jstep__node {
  color: #fff;
  background: var(--brand-gradient);
  border-color: rgba(196, 181, 253, 0.6);
  box-shadow: 0 6px 22px rgba(124, 58, 237, 0.3);
}
.jstep.is-current .jstep__node { transform: translateY(-4px) scale(1.06); }
.jstep__label {
  margin-top: 13px;
  font-size: 12.5px;
  line-height: 1.3;
  min-height: 33px;
  color: var(--text-50);
  transition: color 0.45s;
}
.jstep.is-active .jstep__label { color: #e9e7f0; }

/* --------------------------------------------------------------------------
   12. Industries
   -------------------------------------------------------------------------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}
.tab {
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  transition: all 0.25s;
  color: rgba(244, 244, 246, 0.65);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tab:hover { border-color: rgba(196, 181, 253, 0.3); }
.tab[aria-selected='true'] {
  color: #fff;
  background: var(--brand-gradient);
  border-color: rgba(196, 181, 253, 0.5);
}

.industry {
  position: relative;
  margin-top: 32px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(18, 18, 26, 0.9), rgba(11, 11, 17, 0.9));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.industry__tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background: radial-gradient(130% 70% at 50% 0%, var(--tint-glow, rgba(167, 139, 250, 0.16)), transparent 55%);
  transition: background 0.55s ease;
}
.industry__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 5;
  background: linear-gradient(90deg, transparent, var(--tint, var(--lilac)), transparent);
  transition: background 0.55s ease;
}
.industry__body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.industry__col {
  background: #0d0d14;
  padding: 34px 32px;
}
.industry__kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--lilac);
}
.industry__headline {
  font-size: 24px;
  margin: 10px 0 26px;
  letter-spacing: -0.02em;
}
.jrny { display: flex; flex-direction: column; gap: 0; }
.jrny__row { display: flex; gap: 16px; align-items: flex-start; }
.jrny__gutter {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}
.jrny__num {
  width: 32px; height: 32px;
  flex: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: var(--brand-gradient);
  border: 1px solid rgba(196, 181, 253, 0.5);
}
.jrny__line {
  width: 1px;
  flex: 1;
  min-height: 22px;
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.5), rgba(167, 139, 250, 0.12));
}
.jrny__text { padding-bottom: 20px; }
.jrny__label { font-size: 15.5px; font-weight: 500; color: #e9e7f0; }
.jrny__sub { font-size: 13px; color: var(--text-50); margin-top: 3px; }

.industry__dashhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.industry__dashtitle {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--text-40);
}
.industry__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--emerald);
}
.metric {
  padding: 16px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.metric--green {
  background: rgba(52, 211, 153, 0.07);
  border-color: rgba(52, 211, 153, 0.2);
}
.metric__value {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
}
.metric__label { font-size: 11.5px; color: var(--text-50); margin-top: 3px; }
.industry__outcome {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 13px;
  background: rgba(52, 211, 153, 0.07);
  border: 1px solid rgba(52, 211, 153, 0.2);
  font-size: 13.5px;
  line-height: 1.45;
  color: #d1fae5;
}

/* --------------------------------------------------------------------------
   13. Why speed = money
   -------------------------------------------------------------------------- */
.bigstat {
  padding: 32px 22px;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: var(--card);
  text-align: left;
}
.bigstat--accent {
  border-color: rgba(139, 92, 246, 0.25);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(11, 11, 17, 0.6));
}
.bigstat__value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #c4b5fd, #818cf8);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.bigstat--accent .bigstat__value {
  background: none;
  -webkit-background-clip: border-box;
          background-clip: border-box;
  color: #fff;
}
.bigstat__copy {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--text-70);
}
.bigstat--accent .bigstat__copy { color: rgba(244, 244, 246, 0.75); }
.footnote {
  margin-top: 22px;
  font-size: 12px;
  color: var(--text-35);
}

/* --------------------------------------------------------------------------
   14. Testimonials
   -------------------------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.quote {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-radius: 20px;
  border: 1px solid var(--hairline);
  background: var(--card);
}
.quote--accent {
  border-color: rgba(139, 92, 246, 0.3);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(11, 11, 17, 0.7));
}
.quote__stars { color: var(--lilac-light); font-size: 15px; letter-spacing: 2px; }
.quote__body {
  font-size: 16px;
  line-height: 1.6;
  color: #e9e7f0;
  margin: 16px 0 24px;
  flex: 1;
}
.quote--accent .quote__body { color: var(--text); }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--brand-gradient);
}
.quote__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
}
.quote__role { font-size: 12.5px; color: var(--text-50); }
.disclaimer {
  margin-top: 22px;
  font-size: 12px;
  color: rgba(244, 244, 246, 0.32);
  text-align: center;
}

/* --------------------------------------------------------------------------
   15. 30 days to live
   -------------------------------------------------------------------------- */
.timeline { position: relative; }
.timeline__rail {
  position: absolute;
  top: 44px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.4), transparent);
}
.phase {
  position: relative;
  padding: 26px 22px;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: rgba(14, 14, 20, 0.8);
}
.phase--final {
  border-color: rgba(52, 211, 153, 0.3);
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.1), rgba(14, 14, 20, 0.8));
}
.phase__num {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}
.phase--final .phase__num {
  color: #062e21;
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.5);
}
.phase__week {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--lilac);
}
.phase--final .phase__week { color: var(--emerald); }
.phase__title { font-size: 19px; margin: 8px 0; }
.phase__copy { font-size: 14px; line-height: 1.5; color: var(--text-60); }

/* --------------------------------------------------------------------------
   16. Statement + value grid
   -------------------------------------------------------------------------- */
.statement {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 130px 40px;
  text-align: center;
}
.statement__title {
  font-size: clamp(34px, 5.6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.gradient-text {
  background: linear-gradient(135deg, #c4b5fd, #818cf8);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.value {
  position: relative;
  z-index: 1;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 40px 40px;
}
.value__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value__card {
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: rgba(14, 14, 20, 0.7);
}
.value__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
}
.value__copy {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-60);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   17. Packages
   -------------------------------------------------------------------------- */
.pkg {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid var(--hairline);
  background: var(--card);
}
.pkg--popular {
  position: relative;
  border-color: rgba(139, 92, 246, 0.4);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.14), rgba(11, 11, 17, 0.7));
  box-shadow: 0 24px 70px rgba(124, 58, 237, 0.22);
}
.pkg__flag {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--lilac-light);
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
}
.pkg__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-40);
}
.pkg--popular .pkg__index { color: rgba(196, 181, 253, 0.7); }
.pkg__name { font-size: 26px; margin: 10px 0 4px; }
.pkg__tagline { font-size: 15px; color: var(--text-60); margin-bottom: 16px; }
.pkg--popular .pkg__tagline { color: rgba(244, 244, 246, 0.68); }
.pkg__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
.pkg--popular .pkg__price { border-bottom-color: rgba(255, 255, 255, 0.1); }
.pkg__from { font-size: 13px; color: var(--text-50); }
.pkg--popular .pkg__from { color: rgba(244, 244, 246, 0.55); }
.pkg__amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 34px;
  color: #fff;
}
.pkg__unit { font-size: 14px; color: var(--text-50); }
.pkg--popular .pkg__unit { color: rgba(244, 244, 246, 0.55); }
.pkg__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(244, 244, 246, 0.75);
  margin: 0;
  padding: 0;
  list-style: none;
}
.pkg--popular .pkg__list { color: rgba(244, 244, 246, 0.8); }
.pkg__list li { display: flex; gap: 10px; }
.pkg__check { color: var(--emerald); }

/* --------------------------------------------------------------------------
   18. Final CTA
   -------------------------------------------------------------------------- */
.book { padding: 80px 40px 110px; }
.book__panel {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(99, 102, 241, 0.08), rgba(11, 11, 17, 0.9));
  overflow: hidden;
  padding: 84px 40px;
  text-align: center;
}
.book__glow {
  position: absolute;
  top: -40%; left: 50%;
  width: 700px; height: 700px;
  margin-left: -350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.book__inner { position: relative; }
.book__title {
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 auto;
  max-width: 760px;
  background: linear-gradient(180deg, #ffffff, #c9c6d6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.book__sub {
  max-width: 580px;
  margin: 22px auto 0;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(244, 244, 246, 0.68);
}
.book__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.guarantee--xl {
  gap: 10px;
  margin-top: 34px;
  padding: 12px 22px;
  border-radius: 14px;
  border-color: rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.1);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}
.book__assurances {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--text-50);
  list-style: none;
  padding: 0;
}

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 40px 0;
}
.footer__cols {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  text-align: left;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer__mark {
  position: relative;
  display: inline-flex;
  width: 23px; height: 23px;
  border-radius: 7px;
  background: linear-gradient(135deg, #a855f7, #6366f1);
}
.footer__mark::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 3px;
  background: var(--bg);
}
.footer__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.footer__blurb {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-45);
}
.footer__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.06);
  font-size: 12.5px;
  color: var(--mint);
}
.footer__heading {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--text-35);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
}
.footer__links a { color: var(--text-60); }
.footer__links a:hover { color: var(--text); }
.footer__links a.is-accent { color: var(--lilac-light); }
.footer__links a.is-accent:hover { color: #ddd6fe; }
.footer__note { color: var(--text-45); }
.footer__legal {
  max-width: var(--shell);
  margin: 48px auto 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-35);
}
.footer__legal-links { display: flex; gap: 22px; }
.footer__legal-links a { color: inherit; }
.footer__legal-links a:hover { color: var(--text); }

/* --------------------------------------------------------------------------
   20. Scroll reveal
   -------------------------------------------------------------------------- */
[data-reveal].is-hidden {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(7px);
}
[data-reveal][data-card].is-hidden { transform: translateY(22px) scale(0.975); }
[data-reveal].is-armed {
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease),
    filter 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

/* --------------------------------------------------------------------------
   20b. Scroll progress
   -------------------------------------------------------------------------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  z-index: 60;
  background: var(--brand-gradient);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   20c. "Deployed across" proof strip
   -------------------------------------------------------------------------- */
.deployed { margin-top: 48px; }
.deployed__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  color: rgba(244, 244, 246, 0.32);
  margin-bottom: 18px;
}
.deployed__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 30px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15.5px;
  color: rgba(244, 244, 246, 0.42);
}
.deployed__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------------------------------
   20d. Testimonial result chip
   -------------------------------------------------------------------------- */
.quote__result {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  background: rgba(139, 92, 246, 0.08);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--lilac-light);
}

/* --------------------------------------------------------------------------
   21. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 920px) {
  .nav { padding-left: 20px; padding-right: 20px; }
  .nav__links { display: none; }

  .hero,
  .section,
  .statement,
  .value,
  .footer { padding-left: 20px; padding-right: 20px; }

  .hero { padding-top: 128px; }

  .grid-4,
  .command__body,
  .industry__body,
  .grid-3,
  .value__grid,
  .footer__cols { grid-template-columns: 1fr; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .journey__rail {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 22px;
  }
  .jstep__conn { display: none; }
  .timeline__rail { display: none; }
}

@media (max-width: 560px) {
  /* Keep the bar a single line — brand and CTA both wrap otherwise. */
  .nav { padding: 14px 16px; }
  .nav__right { gap: 12px; }
  .brand { gap: 9px; }
  .brand__name { font-size: 13.5px; white-space: nowrap; }
  .btn--nav {
    padding: 8px 13px;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
  }

  .grid-4 { grid-template-columns: 1fr; }
  .journey__rail { grid-template-columns: repeat(2, 1fr); }
  .book__panel { padding: 56px 24px; }
  .industry__col { padding: 28px 22px; }
}

@media (max-width: 430px) {
  /* Below this the wordmark and the CTA can't both fit. The CTA is the more
     valuable of the two, so the logo carries the brand on its own — the link
     keeps its accessible name via aria-label. */
  .brand__name { display: none; }
  .btn--nav { padding: 9px 16px; font-size: 13.5px; }
}

/* --------------------------------------------------------------------------
   22. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ambient__blob,
  .ticker__track,
  .live-dot,
  .flow-dash,
  .flow-orbit { animation: none !important; }
  [data-reveal].is-hidden { opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   17. Strategy-call modal (Form F-02)
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 9, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(139, 92, 246, 0.12);
  padding: 28px 28px 26px;
  animation: modalIn 0.28s var(--ease) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .modal__panel { animation: none; } }
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.modal__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--lilac-light);
}
.modal__close {
  appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--text-70);
  font-size: 16px;
  line-height: 1;
  padding: 8px 11px;
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.modal__close:hover { background: rgba(255, 255, 255, 0.12); color: var(--text); }
.modal__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 6px 0 6px;
}
.modal__sub { color: var(--text-60); font-size: 14.5px; line-height: 1.6; margin: 0 0 20px; }
.bookform { display: grid; gap: 14px; }
.bookform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .bookform__row { grid-template-columns: 1fr; } }
.bookform label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--text-50);
  margin-bottom: 7px;
  text-transform: uppercase;
}
.bookform input,
.bookform select,
.bookform textarea {
  width: 100%;
  font: 500 14.5px var(--font-body);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 11px 13px;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.bookform input::placeholder, .bookform textarea::placeholder { color: var(--text-35); }
.bookform select { appearance: none; }
.bookform select option { background: #12121b; color: var(--text); }
.bookform input:focus-visible, .bookform select:focus-visible, .bookform textarea:focus-visible {
  outline: none;
  border-color: rgba(167, 139, 250, 0.65);
  background: rgba(139, 92, 246, 0.08);
}
.bookform textarea { min-height: 84px; resize: vertical; }
.bookform .btn { width: 100%; justify-content: center; }
.bookform__note {
  font-size: 12.5px;
  color: var(--text-45);
  text-align: center;
  margin: 2px 0 0;
}
.bookform__err {
  font-size: 13.5px;
  color: #fca5a5;
  text-align: center;
  margin: 0;
}
.bookform__err[hidden] { display: none; }
.modal__ok { text-align: center; padding: 26px 6px 12px; }
.modal__ok[hidden] { display: none; }
.modal__ok-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--emerald);
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.modal__ok-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
}
.modal__ok-copy { color: var(--text-60); font-size: 14.5px; line-height: 1.65; margin: 0; }
.hp-field {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
body.modal-open { overflow: hidden; }
