/* Nirvana ICP — Modern Market Review visual system */

:root {
  --ink: #0B1B33;
  --body: rgb(70, 84, 108);
  --soft: rgb(120, 136, 160);
  --line: rgba(0, 64, 193, .16);
  --surface: #F4F7FC;
  --surface-2: #E8EEF8;
  --brand: #0040C1;
  --navy: #1E3A5F;
  --gold: #3B82F6;
  --tint: #EEF4FF;
  --green: #16A34A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 84px; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #F7F9FD;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
svg { display: block; }

.canvas {
  position: relative;
  width: 100%;
  max-width: 1250px;
  min-width: 0;
  margin: 0 auto;
}
.pad { padding: 100px 64px; }
.outer { padding: 0 20px; }
@media (max-width: 809px) {
  .pad { padding: 56px 24px; }
  .outer { padding: 0 16px; }
}

.grid-pattern {
  background-image: url("assets/grid.svg");
  background-size: 189px auto;
  background-repeat: repeat;
}

/* Quiet blue plate */
.frame {
  pointer-events: none; position: absolute; inset: 10px; z-index: 0;
  border: 1px solid rgba(0,64,193,.14);
  border-radius: 8px;
}
.frame > * { display: none; }

/* Glass nav */
.nav-wrap {
  pointer-events: none;
  position: fixed; inset: 0 0 auto; z-index: 50;
  padding: 12px 12px 0;
}
.nav {
  pointer-events: auto;
  max-width: 1250px; margin: 0 auto; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.18));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 8px 32px rgba(0,0,0,.08);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}
.nav-logo { height: 28px; width: auto; }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  pointer-events: auto;
}
.nav-mark { width: 26px; height: 26px; flex-shrink: 0; display: block; }
.nav-word {
  font-size: 16px; font-weight: 400; letter-spacing: -.04em; color: #111;
  white-space: nowrap;
}
.nav-word b { font-weight: 700; }
.nav-links { display: flex; gap: 8px; }
.nav-links a {
  border-radius: 30px; padding: 8px 12px;
  font-size: 16px; font-weight: 500;
}
.nav-links a:hover { background: rgba(255,255,255,.55); }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 50%; }
.nav-panel {
  display: none; pointer-events: auto;
  max-width: 1250px; margin: 8px auto 0; border-radius: 16px; padding: 8px 20px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.18));
  backdrop-filter: blur(28px) saturate(180%);
}
.nav-panel a { display: block; padding: 12px 0; font-size: 18px; font-weight: 500; }
@media (max-width: 809px) {
  .nav { padding: 0 16px; }
  .nav-links, .nav .btn { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-panel.open { display: block; }
}

/* Black pill CTA */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; border-radius: 40px;
  font-size: 16px; font-weight: 500; letter-spacing: -.48px; color: #fff;
  background: var(--brand); box-shadow: 0 2px 12px rgba(0,64,193,.28);
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: scale(1.03); background: #0036A3; box-shadow: 0 4px 16px rgba(0,64,193,.32); }

/* Type */
.h1 {
  font-size: 54px; line-height: 64.8px; font-weight: 500; letter-spacing: -2.16px;
  text-wrap: balance;
}
.h2 {
  font-size: 40px; line-height: 48px; font-weight: 500; letter-spacing: -1.6px;
  text-wrap: balance;
}
.lede {
  font-size: 18px; line-height: 25.2px; letter-spacing: -.54px; color: var(--body);
}
.hero-copy .lede {
  max-width: 540px;
  color: #1E3A5F;
  font-weight: 500;
  line-height: 1.65;
}
.kicker {
  font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #6b6b6b;
}
@media (max-width: 809px) {
  .h1 { font-size: 32px; line-height: 1.28; letter-spacing: -1.2px; }
  .h2 { font-size: 28px; line-height: 1.3; letter-spacing: -1.1px; }
  .lede { line-height: 1.6; }
}

/* Hero */
.hero {
  position: relative;
  display: flex; justify-content: center;
  padding: 88px 20px 24px;
  overflow: clip;
}
.hero-inner {
  position: relative;
  width: 100%; max-width: 1250px; min-width: 0;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  align-items: center;
  padding: 88px 56px 56px;
  gap: 48px;
}
.hero-art, .hero-grid {
  position: absolute; inset: 10px 16px 14px;
  pointer-events: none; overflow: hidden;
  border-radius: 8px;
}
.hero-grid { opacity: .03; inset: 0; }
.hero-art img {
  width: 100%; height: 100%; object-fit: cover; object-position: center right;
  filter: sepia(.18) hue-rotate(188deg) saturate(.7) brightness(1.06);
}
.hero .hero-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(247,249,253,.97) 0%, rgba(247,249,253,.82) 38%, rgba(0,64,193,.18) 100%);
}
.hero-copy {
  position: relative; z-index: 1;
  width: 100%; margin-top: 0;
  display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 22px;
  animation: fadein .7s ease both;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line); background: rgba(255,255,255,.8);
  border-radius: 100px; padding: 6px 12px;
  font-size: 12px; font-weight: 500; letter-spacing: -.02em; color: var(--body);
  backdrop-filter: blur(8px);
}
.eyebrow svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 2; }
.plan {
  position: relative; z-index: 1;
  width: 100%; max-width: none; min-width: 0; margin-top: 0;
  background: rgba(255,255,255,.92);
  border-radius: 20px; padding: 22px 20px 20px;
  box-shadow: 0 16px 48px rgba(0,64,193,.12);
  border: 1px solid rgba(0,64,193,.12);
  backdrop-filter: blur(12px);
}
.plan-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.illust {
  flex-shrink: 0; border: 1px solid var(--line); border-radius: 100px;
  padding: 3px 8px; font-size: 11px; color: var(--soft); line-height: 1.4;
}

.agenda {
  list-style: none; position: relative;
  margin-top: 14px;
}
.agenda::before {
  content: ""; position: absolute;
  left: 70px; top: 16px; bottom: 16px; width: 1px;
  background: var(--line);
}
.agenda li {
  display: grid; grid-template-columns: 44px 12px minmax(0, 1fr);
  gap: 12px; align-items: start;
  padding: 9px 8px; border-radius: 12px;
  cursor: pointer;
  transition: background .4s ease;
}
.agenda li em {
  font-style: normal; font-size: 11px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase; color: var(--soft);
  padding-top: 2px; font-variant-numeric: tabular-nums;
}
.agenda .dot {
  width: 10px; height: 10px; margin-top: 5px; border-radius: 50%;
  background: #fff; border: 2px solid var(--line);
  position: relative; z-index: 1;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.agenda li div { min-width: 0; }
.agenda strong { display: block; font-size: 15px; font-weight: 500; letter-spacing: -.02em; }
.agenda span { display: block; margin-top: 2px; font-size: 13px; color: var(--body); line-height: 1.35; }
.agenda li.on { background: var(--tint); }
.agenda li.on .dot {
  background: var(--navy); border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(30,58,95,.14);
}
.agenda li.on em { color: var(--navy); }

.state { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.state-kicker { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--soft); }
.state-kicker::before {
  content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 6px;
  border-radius: 50%; background: var(--gold); vertical-align: 1px;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.seg {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  margin-top: 10px; padding: 4px; border-radius: 100px;
  background: var(--surface);
}
.seg-thumb {
  position: absolute; top: 4px; bottom: 4px; left: 4px;
  width: calc((100% - 8px) / 3);
  border-radius: 100px; background: var(--navy);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.seg[data-active="1"] .seg-thumb { transform: translateX(100%); }
.seg[data-active="2"] .seg-thumb { transform: translateX(200%); }
.seg button {
  position: relative; z-index: 1;
  padding: 8px 4px; border-radius: 100px;
  font-size: 12px; font-weight: 500; color: var(--body);
  background: none;
  transition: color .3s ease;
}
.seg button.is-on { color: #fff; }
.state-note {
  margin-top: 10px; min-height: 2.7em;
  font-size: 12px; line-height: 1.4; color: var(--body);
  transition: opacity .25s ease;
}

.book { height: 100%; display: flex; flex-direction: column; }
.book-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.book-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; color: var(--soft);
}
.book-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.book-rows { list-style: none; margin-top: 8px; }
.book-rows li {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto;
  gap: 10px; align-items: baseline;
  padding: 13px 4px; border-top: 1px solid var(--line);
  font-size: 14px; border-radius: 10px;
  transition: background .35s ease;
}
.book-rows li:first-child { border-top: 0; }
.book-rows b { font-weight: 500; letter-spacing: -.02em; }
.book-rows span { color: var(--body); }
.book-rows em { font-style: normal; font-size: 12px; color: var(--soft); }
.book-rows li.on {
  background: var(--tint);
  padding-left: 12px; padding-right: 12px; margin: 0 -8px;
  border-top-color: transparent;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 16px; }
.chip { background: var(--surface); border-radius: 100px; padding: 6px 12px; font-size: 13px; color: var(--body); }

@media (max-width: 809px) {
  .hero { padding: 76px 16px 20px; }
  .hero-inner {
    display: flex; flex-direction: column; align-items: center;
    min-height: 0; padding: 36px 18px 40px; gap: 36px;
  }
  .hero-copy {
    margin-top: 12px; gap: 28px; align-items: center; text-align: center;
    padding: 0 8px;
  }
  .hero-copy .lede { text-align: center; font-size: 16px; line-height: 1.7; max-width: 34em; }
  .hero .hero-art::after {
    background: linear-gradient(180deg, rgba(247,249,253,.94) 0%, rgba(247,249,253,.72) 28%, rgba(0,64,193,.22) 70%, rgba(247,249,253,.92) 100%);
  }
  .hero-art img { object-position: center bottom; }
  .plan { padding: 18px 14px 16px; margin-top: 0; }
  .agenda li { padding: 8px 4px; gap: 10px; }
  .agenda::before { left: 62px; }
  .seg button { font-size: 11px; padding: 8px 2px; }
  .book-rows li { grid-template-columns: 1fr auto; }
  .book-rows span { grid-column: 1 / -1; grid-row: 2; font-size: 13px; }
  .book-rows em { grid-column: 2; grid-row: 1; }
}

/* Logo strip */
.logos { display: flex; justify-content: center; padding: 0 20px; overflow: hidden; }
.logos-inner {
  position: relative; width: 100%; max-width: 1250px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  padding: 76px 64px 100px;
}
.logo-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-row img { height: 24px; width: auto; object-fit: contain; opacity: .8; filter: grayscale(1) sepia(.35) hue-rotate(190deg) saturate(.6); }
@media (max-width: 809px) {
  .logos-inner { padding: 40px 24px 36px; gap: 18px; }
  .logo-row { gap: 20px 28px; }
  .logo-row img { height: 14px; }
}

/* Feature band */
.feature-intro { max-width: 650px; }
.feature-intro p {
  font-size: 28px; line-height: 1.4; letter-spacing: -.04em; color: var(--body);
}
.feature-intro p em { font-style: normal; color: var(--ink); }
.feature-row {
  display: flex; align-items: center; gap: 64px;
  margin-top: 64px; min-height: 450px;
}
.viewport {
  position: relative; flex: 1 1 651px; max-width: 651px;
  height: 450px; background: var(--tint); overflow: hidden;
  border-radius: 0 16px 16px 0;
}
.viewport .mock {
  position: absolute; left: 32px; right: 0; top: 32px; bottom: 0;
  background: #fff; border-radius: 12px 0 0 0;
  box-shadow: -2px 5px 10px rgba(0,0,0,.08);
  overflow: hidden;
}
.tabs { flex: 0 0 340px; display: flex; flex-direction: column; }
.tab {
  text-align: left; padding: 18px 0 18px 14px;
  border-bottom: 1px solid var(--line);
  border-left: 2px solid transparent;
  background: none; box-shadow: none; border-radius: 0;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}
.tab:hover h3 { color: var(--ink); }
.tab h3 {
  font-size: 18px; font-weight: 500; letter-spacing: -.03em; margin: 0;
  color: var(--body); transition: color .25s ease;
}
.tab p {
  font-size: 15px; line-height: 1.45; color: var(--body);
  max-height: 0; opacity: 0; overflow: hidden; margin: 0;
  transition: max-height .35s ease, opacity .3s ease, margin .35s ease;
}
.tab.is-on h3 { color: var(--ink); }
.tab.is-on p { max-height: 140px; opacity: 1; margin-top: 10px; }
.tab.is-on { background: var(--tint); box-shadow: none; border-left-color: var(--brand); border-radius: 0 10px 10px 0; }
.pane { display: none; height: 100%; }
.pane.is-on { display: block; animation: fadein .4s ease; }
@keyframes fadein {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.mock-pad { padding: 32px; }
@media (max-width: 809px) {
  .feature-intro { padding: 4px 4px 8px; }
  .feature-intro p { font-size: 20px; line-height: 1.55; }
  .feature-row { flex-direction: column; min-height: 0; gap: 20px; margin-top: 40px; }
  .viewport {
    display: block; width: 100%; max-width: none; flex: none;
    height: auto; overflow: visible; background: var(--surface-2);
    border-radius: 16px;
  }
  .viewport .mock {
    position: relative; inset: auto; left: auto; right: auto; top: auto; bottom: auto;
    border-radius: 16px; width: 100%; box-shadow: none;
  }
  .pane { height: auto; }
  .mock-pad { padding: 18px 16px; }
  .tabs { flex: none; width: 100%; }
}

/* Proof */
.proof { position: relative; display: flex; justify-content: center; padding: 0 20px; }
.proof-inner { position: relative; width: 100%; max-width: 1250px; padding: 40px 64px 80px; }
.proof-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.proof-banner { height: 200px; overflow: hidden; background: var(--navy); position: relative; }
.proof-banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  filter: sepia(.2) hue-rotate(188deg) saturate(.65) brightness(.95);
}
.proof-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,64,193,.22), rgba(30,58,95,.5));
}
.proof-body { padding: 28px 28px 32px; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.metric b { display: block; font-size: 32px; font-weight: 500; letter-spacing: -.04em; color: var(--navy); }
.metric span { font-size: 13px; color: var(--body); }
.fine { margin-top: 16px; font-size: 12px; line-height: 1.5; color: #5a5a5a; }
.proof-body .btn { margin-top: 24px; }
@media (max-width: 809px) {
  .proof { padding: 0 16px; }
  .proof-inner { padding: 12px 0 48px; }
  .proof-banner { height: 140px; }
  .proof-body { padding: 24px 20px 28px; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .metric b { font-size: 26px; }
  .fine { margin-top: 20px; line-height: 1.65; }
  .proof-body .btn { display: none; }
}

/* Custody */
.custody { display: flex; align-items: center; gap: 48px; }
.custody-copy { flex: 1; max-width: 500px; }
.steps { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step b {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: 13px; font-weight: 500;
  display: grid; place-items: center;
}
.account-card {
  flex: 1; min-width: 0; max-width: 420px;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 24px; box-shadow: 0 8px 32px rgba(0,64,193,.08);
}
.account-title { font-size: 22px; font-weight: 500; letter-spacing: -.04em; margin: 8px 0 18px; }
.account-rows { list-style: none; }
.account-rows li {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  padding: 12px 0; border-top: 1px solid var(--line);
  font-size: 14px;
}
.account-rows li span { color: var(--body); }
.account-rows li strong { font-weight: 500; }
.account-card .btn { margin-top: 20px; width: 100%; }
@media (max-width: 809px) {
  .custody { flex-direction: column; align-items: stretch; }
  .account-card { max-width: none; }
}

/* Reviews marquee */
.marquee {
  overflow: hidden; max-width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 16px; width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.quote-card {
  width: 340px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 24px;
}
.quote-card p { font-size: 15px; line-height: 1.5; letter-spacing: -.02em; }
.quote-card cite { display: block; margin-top: 16px; font-style: normal; font-size: 13px; font-weight: 500; }
.quote-note { margin-top: 16px; font-size: 12px; color: #5a5a5a; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Guarantee */
.g-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 36px 40px;
  box-shadow: 0 8px 32px rgba(0,64,193,.08);
}
.g-card .h2 { max-width: 640px; }
.g-card .lede { margin-top: 14px; max-width: 640px; }
.g-terms {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px;
  margin-top: 28px; padding-top: 8px;
}
.g-terms li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px; color: var(--body);
}
.g-card .btn { margin-top: 24px; }
@media (max-width: 809px) {
  .g-card { padding: 24px 18px; }
  .g-terms { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-item { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; gap: 16px;
  padding: 22px 0; text-align: left; font-size: 18px; font-weight: 500; letter-spacing: -.03em;
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--soft); fill: none; stroke-width: 1.5; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 48px 22px 0; font-size: 16px; line-height: 1.55; color: var(--body); }
.faq-item.open .faq-a { display: block; }

/* Footer */
.foot { padding: 40px 20px 32px; }
.foot-inner {
  max-width: 1250px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.foot a, .foot p { font-size: 13px; color: var(--soft); }
.foot-links { display: flex; gap: 20px; }
.disclaimer { max-width: 1250px; margin: 16px auto 0; font-size: 11px; line-height: 1.6; color: #5a5a5a; }

.sticky {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 12px 16px; background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.sticky .btn { width: 100%; }
@media (max-width: 809px) {
  .sticky { display: block; }
  .foot { padding-bottom: 96px; }
}

.flow { display: flex; flex-direction: column; align-items: center; }
.flow-node {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  background: #fff; box-shadow: 0 1px 20px rgba(0,0,0,.05);
}
.flow-node em { font-style: normal; font-size: 12px; color: var(--body); background: var(--surface-2); border-radius: 20px; padding: 4px 10px; }
.flow-line { width: 2px; height: 28px; background: linear-gradient(#dadada, transparent); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat { background: var(--surface); border-radius: 12px; padding: 16px; }
.stat b { display: block; font-size: 28px; font-weight: 500; letter-spacing: -.03em; color: var(--navy); }
.stat span { font-size: 12px; color: var(--body); }

.close-copy {
  position: relative; z-index: 1; max-width: 600px;
  background: rgba(247,249,253,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,64,193,.14);
  border-radius: 16px; padding: 28px 24px;
}
.canvas.pad .hero-art img {
  filter: sepia(.2) hue-rotate(188deg) saturate(.7) brightness(1.02);
}
.outer .hero-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(247,249,253,.88), rgba(0,64,193,.28));
}

.float-demo {
  position: fixed; right: 22px; bottom: 22px; z-index: 45;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 40px;
  font-size: 15px; font-weight: 500; color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 28px rgba(0,64,193,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-demo:hover { transform: scale(1.04); box-shadow: 0 10px 32px rgba(0,64,193,.4); }
.float-demo svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
@media (max-width: 809px) {
  .float-demo { display: none; }
}

.viewport img, .mock-pad img {
  filter: sepia(.18) hue-rotate(188deg) saturate(.7) brightness(1.04);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s ease;
}
@media (prefers-reduced-motion: reduce), (scripting: none) {
  .reveal { opacity: 1; transform: none; }
  .pane.is-on { animation: none; }
  .hero-copy { animation: none; }
  .seg-thumb, .agenda li, .agenda .dot, .book-rows li { transition: none; }
  .state-kicker::before, .book-live::before { animation: none; }
  .marquee-track { animation: none; }
}
@media (max-width: 809px) {
  .outer { padding: 0 16px; }
  .pad { padding: 56px 24px; }
  .close-copy { padding: 24px 20px; max-width: none; }
  .faq-q { font-size: 16px; }
  .faq-a { padding-right: 8px; }
  .nav { padding: 0 12px; }
  .nav-wrap { padding: 10px 16px 0; }
  .logos { padding: 0 16px; }
}
