:root {
  --bg: #03050b;
  --bg-soft: #080c17;
  --panel: rgba(13, 19, 35, 0.78);
  --panel-solid: #0d1323;
  --line: rgba(166, 186, 255, 0.16);
  --line-bright: rgba(138, 171, 255, 0.42);
  --text: #f6f8ff;
  --soft: #b3bdd7;
  --muted: #76809d;
  --blue: #6fa4ff;
  --cyan: #6ce8ff;
  --purple: #9c7bff;
  --green: #65e5a0;
  --gold: #f5d17d;
  --max: 1240px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 8%, rgba(60, 112, 255, 0.18), transparent 28%),
    radial-gradient(circle at 88% 15%, rgba(139, 83, 255, 0.16), transparent 30%),
    var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(124, 147, 225, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 147, 225, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(3, 5, 11, 0.78);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-orb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
  box-shadow:
    0 0 18px rgba(92, 145, 255, 0.9),
    0 0 45px rgba(139, 91, 255, 0.45);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 720;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: white;
}

.nav-cta {
  padding: 10px 17px;
  color: #07101f !important;
  border-radius: 999px;
  background: linear-gradient(135deg, white, #bdd4ff);
}

.menu-button {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 70px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 70px 0 90px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(58px, 7.4vw, 108px);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.hero h1 span,
.page-hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, white, #80b8ff 48%, #a88aff);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy,
.page-hero-copy {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 820;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #07101e;
  background: linear-gradient(135deg, white, #bcd4ff);
  box-shadow: 0 18px 48px rgba(73, 117, 255, 0.24);
}

.button-secondary {
  border-color: var(--line-bright);
  background: rgba(255,255,255,0.03);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255,255,255,0.025);
  font-size: 11px;
  font-weight: 750;
}

.hero-stage,
.product-stage {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 42px;
  background:
    radial-gradient(circle at 78% 12%, rgba(98, 115, 255, 0.35), transparent 34%),
    linear-gradient(150deg, #17254f, #090d1e 68%);
  box-shadow:
    0 55px 150px rgba(0,0,0,0.48),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-stage::before,
.product-stage::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
}

.stage-top {
  position: absolute;
  top: 30px;
  right: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(101,229,160,0.95);
}

.stage-status {
  margin-left: auto;
  color: var(--green);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.stage-center {
  position: absolute;
  top: 50%;
  right: 38px;
  left: 38px;
  transform: translateY(-50%);
}

.stage-center strong {
  display: block;
  max-width: 470px;
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.stage-line {
  margin-top: 28px;
  padding: 17px 19px;
  border: 1px solid rgba(180,199,255,0.18);
  border-radius: 17px;
  color: #e9edff;
  background: rgba(5,9,23,0.55);
  font-size: 14px;
  backdrop-filter: blur(14px);
}

.stage-label {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5.3vw, 69px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-heading p {
  margin: 23px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 420px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18,28,58,0.82), rgba(7,11,25,0.9));
  transition:
    transform 200ms ease,
    border-color 200ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-bright);
}

.product-card::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(91,130,255,0.13);
  filter: blur(20px);
}

.product-card.featured {
  border-color: rgba(106,161,255,0.55);
  background:
    radial-gradient(circle at 95% 0%, rgba(77,126,255,0.25), transparent 42%),
    linear-gradient(145deg, rgba(21,42,91,0.92), rgba(7,11,25,0.94));
}

.product-index {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.product-card h3 {
  max-width: 520px;
  margin: 115px 0 14px;
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.product-card p {
  max-width: 560px;
  margin: 0;
  color: var(--soft);
}

.explore {
  display: inline-block;
  margin-top: 28px;
  color: white;
  font-weight: 800;
}

.split-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.showcase-copy h2 {
  margin: 0;
  font-size: clamp(41px, 5vw, 67px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.showcase-copy p {
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.8;
}

.mini-list {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.mini-list div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--soft);
  background: rgba(255,255,255,0.02);
}

.page-hero {
  padding: 115px 0 80px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(55px, 7vw, 96px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(245,209,125,0.07);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.detail-card {
  min-height: 275px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background:
    linear-gradient(145deg, rgba(18,27,54,0.76), rgba(7,11,24,0.88));
}

.detail-card span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.detail-card h3 {
  margin: 58px 0 11px;
  font-size: 24px;
  line-height: 1.13;
}

.detail-card p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow article {
  min-height: 245px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.018);
}

.flow article:last-child {
  border-right: 0;
}

.flow strong {
  color: var(--blue);
  font-size: 12px;
}

.flow h3 {
  margin: 52px 0 10px;
  font-size: 22px;
}

.flow p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
}

.connection-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: center;
  padding: 46px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(88,131,255,0.2), transparent 42%),
    rgba(10,15,32,0.88);
}

.connection-product {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(255,255,255,0.025);
}

.connection-product h3 {
  margin: 65px 0 10px;
  font-size: 31px;
}

.connection-product p {
  margin: 0;
  color: var(--soft);
}

.connection-arrow {
  color: var(--blue);
  font-size: 32px;
}

.quote-panel {
  padding: 60px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(104,121,255,0.22), transparent 40%),
    rgba(11,16,34,0.9);
}

.quote-panel blockquote {
  max-width: 960px;
  margin: 0;
  font-size: clamp(31px, 4vw, 54px);
  font-weight: 820;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.notice {
  margin-top: 25px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 44px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(94,134,255,0.22), transparent 40%),
    rgba(10,15,32,0.9);
}

.cta-panel h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(31px, 4vw, 49px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 35px;
  align-items: start;
  padding: 48px 5vw;
  border-top: 1px solid var(--line);
  background: rgba(2,4,10,0.8);
}

.footer p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 720;
}

.footer-right {
  text-align: right;
}

@media (max-width: 1060px) {
  .nav {
    gap: 13px;
    font-size: 11px;
  }

  .hero,
  .page-hero-grid,
  .split-showcase {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .product-stage {
    max-width: 720px;
  }

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

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

  .flow article {
    border-bottom: 1px solid var(--line);
  }

  .flow article:nth-child(2n) {
    border-right: 0;
  }

  .flow article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(5,8,18,0.98);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .product-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .connection-panel {
    grid-template-columns: 1fr;
  }

  .connection-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-right {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 22px, var(--max));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 54px;
  }

  .hero-copy,
  .page-hero-copy {
    font-size: 17px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stage,
  .product-stage {
    min-height: 500px;
    border-radius: 28px;
  }

  .product-card {
    min-height: 380px;
    padding: 25px;
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .flow article,
  .flow article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow article:last-child {
    grid-column: auto;
  }

  .quote-panel {
    padding: 35px 25px;
  }

  .connection-panel,
  .cta-panel {
    padding: 26px;
  }
}

/* =========================================================
   LIVESHOPPING + LIVEPAY PRODUCT PAGES
   ========================================================= */

.livepay-stage {
  background:
    radial-gradient(
      circle at 82% 10%,
      rgba(62, 225, 160, 0.27),
      transparent 35%
    ),
    radial-gradient(
      circle at 15% 88%,
      rgba(74, 125, 255, 0.24),
      transparent 38%
    ),
    linear-gradient(
      150deg,
      #112d35,
      #0a1020 68%
    );
}

.shopping-stage {
  background:
    radial-gradient(
      circle at 82% 10%,
      rgba(108, 232, 255, 0.27),
      transparent 35%
    ),
    radial-gradient(
      circle at 15% 88%,
      rgba(142, 91, 255, 0.22),
      transparent 38%
    ),
    linear-gradient(
      150deg,
      #162b4c,
      #090d1e 68%
    );
}

.split-feature-showcase {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  align-items: stretch;
}

.split-total-card,
.split-breakdown {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(
      145deg,
      rgba(17, 34, 56, 0.9),
      rgba(6, 12, 25, 0.94)
    );
}

.split-total-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  border-color: rgba(101, 229, 160, 0.38);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(101, 229, 160, 0.2),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(15, 46, 51, 0.92),
      rgba(6, 12, 25, 0.95)
    );
}

.split-label {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.split-total-card strong {
  display: block;
  margin-top: 36px;
  font-size: clamp(58px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.split-total-card p {
  max-width: 430px;
  margin: 26px 0 0;
  color: var(--soft);
  font-size: 16px;
}

.split-breakdown {
  display: grid;
  gap: 13px;
}

.split-breakdown article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 18px 21px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}

.split-breakdown article div {
  display: grid;
  gap: 4px;
}

.split-breakdown article span {
  font-weight: 800;
}

.split-breakdown article small {
  color: var(--muted);
}

.split-breakdown article strong {
  font-size: 24px;
}

.split-complete {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  padding: 18px 21px;
  border: 1px solid rgba(101, 229, 160, 0.35);
  border-radius: 17px;
  color: var(--green);
  background: rgba(101, 229, 160, 0.07);
}

.use-scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.use-scenario-grid article {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(18, 27, 54, 0.76),
      rgba(7, 11, 24, 0.9)
    );
}

.use-scenario-grid article span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.use-scenario-grid article h3 {
  margin: 90px 0 12px;
  font-size: 27px;
  line-height: 1.1;
}

.use-scenario-grid article p {
  margin: 0;
  color: var(--soft);
}

.shopping-pay-journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
}

.shopping-pay-journey article {
  min-height: 295px;
  padding: 27px;
  border-right: 1px solid var(--line);
}

.shopping-pay-journey article:last-child {
  border-right: 0;
}

.shopping-pay-journey span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.shopping-pay-journey h3 {
  margin: 63px 0 11px;
  font-size: 21px;
  line-height: 1.15;
}

.shopping-pay-journey p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
}

.shopping-connection {
  border-color: rgba(108, 232, 255, 0.25);
}

.pay-connection {
  border-color: rgba(101, 229, 160, 0.28);
}

@media (max-width: 1000px) {
  .shopping-pay-journey {
    grid-template-columns: repeat(2, 1fr);
  }

  .shopping-pay-journey article {
    border-bottom: 1px solid var(--line);
  }

  .shopping-pay-journey article:nth-child(2n) {
    border-right: 0;
  }

  .shopping-pay-journey article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

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

  .split-total-card {
    min-height: 350px;
  }

  .use-scenario-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .split-total-card,
  .split-breakdown {
    padding: 23px;
  }

  .split-total-card strong {
    font-size: 59px;
  }

  .split-breakdown article,
  .split-complete {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .shopping-pay-journey {
    grid-template-columns: 1fr;
  }

  .shopping-pay-journey article,
  .shopping-pay-journey article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shopping-pay-journey article:last-child {
    grid-column: auto;
  }
}

/* =========================================================
   FAQ, PRIVACY, DISCLOSURES
   ========================================================= */

.compact-page-hero {
  max-width: 1030px;
  min-height: auto;
  padding-bottom: 45px;
}

.legal-date {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.faq-layout,
.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.faq-sidebar,
.legal-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 5px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.018);
}

.faq-sidebar .eyebrow,
.legal-sidebar .eyebrow {
  margin-bottom: 14px;
}

.faq-sidebar a,
.legal-sidebar a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 720;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.faq-sidebar a:hover,
.legal-sidebar a:hover {
  color: white;
  background: rgba(255,255,255,0.045);
}

.faq-content,
.legal-content {
  min-width: 0;
}

.faq-group {
  padding-bottom: 80px;
}

.faq-group + .faq-group {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.faq-group h2,
.legal-content h2 {
  margin: 0 0 27px;
  font-size: clamp(31px, 4vw, 49px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.faq-group details {
  border-top: 1px solid var(--line);
}

.faq-group details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-group summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 790;
}

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

.faq-group summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 7px;
  color: var(--blue);
  font-size: 27px;
  font-weight: 400;
}

.faq-group details[open] summary::after {
  content: "−";
}

.faq-group details p {
  max-width: 780px;
  margin: -5px 0 26px;
  color: var(--soft);
  line-height: 1.8;
}

.faq-group details a,
.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content section {
  padding-bottom: 52px;
}

.legal-content section + section {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 33px;
}

.legal-content p,
.legal-content li {
  color: var(--soft);
  font-size: 15px;
  line-height: 1.85;
}

.legal-content ul {
  padding-left: 21px;
}

.legal-content li {
  margin-bottom: 10px;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.disclosure-card {
  min-height: 315px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(18,27,54,0.78),
      rgba(7,11,24,0.91)
    );
}

.disclosure-featured {
  border-color: rgba(111,164,255,0.48);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(92,140,255,0.22),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(21,40,84,0.9),
      rgba(7,11,24,0.94)
    );
}

.disclosure-card span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.disclosure-card h2 {
  margin: 72px 0 14px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.disclosure-card p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.75;
}

.disclosure-actions {
  margin-top: 0;
}

@media (max-width: 1000px) {
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-sidebar,
  .legal-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-sidebar .eyebrow,
  .legal-sidebar .eyebrow {
    grid-column: 1 / -1;
  }

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

@media (max-width: 620px) {
  .faq-sidebar,
  .legal-sidebar,
  .disclosure-grid {
    grid-template-columns: 1fr;
  }

  .faq-sidebar .eyebrow,
  .legal-sidebar .eyebrow {
    grid-column: auto;
  }

  .faq-group summary {
    font-size: 16px;
  }

  .disclosure-card {
    min-height: auto;
  }

  .disclosure-card h2 {
    margin-top: 50px;
  }
}

/* =========================================================
   ASK LIVEMIND FLOATING CHAT
   ========================================================= */

.ask-livemind-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(130, 170, 255, 0.48);
  border-radius: 999px;
  color: #07101f;
  background:
    linear-gradient(
      135deg,
      #ffffff,
      #bfd7ff 55%,
      #bcaeff
    );
  box-shadow:
    0 22px 60px rgba(53, 94, 255, 0.35),
    0 0 45px rgba(117, 84, 255, 0.16);
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.ask-livemind-launcher:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 75px rgba(53, 94, 255, 0.44),
    0 0 55px rgba(117, 84, 255, 0.22);
}

.ask-livemind-launcher-orb {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--cyan),
      var(--blue),
      var(--purple)
    );
  box-shadow:
    0 0 18px rgba(92, 145, 255, 0.95);
}

.ask-livemind-panel {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 9999;
  display: none;
  flex-direction: column;
  width: min(410px, calc(100vw - 30px));
  height: min(650px, calc(100vh - 130px));
  overflow: hidden;
  border: 1px solid rgba(132, 168, 255, 0.34);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(94, 128, 255, 0.22),
      transparent 38%
    ),
    rgba(6, 10, 23, 0.97);
  box-shadow:
    0 35px 120px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}

.ask-livemind-panel.open {
  display: flex;
}

.ask-livemind-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ask-livemind-avatar {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(132, 168, 255, 0.36);
  border-radius: 13px;
  color: var(--blue);
  background:
    linear-gradient(
      145deg,
      rgba(77, 126, 255, 0.18),
      rgba(133, 79, 255, 0.12)
    );
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ask-livemind-header-copy {
  min-width: 0;
}

.ask-livemind-header-copy strong {
  display: block;
  font-size: 15px;
}

.ask-livemind-header-copy span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.ask-livemind-close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  font-size: 22px;
  cursor: pointer;
}

.ask-livemind-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.ask-livemind-scope {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.018);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.ask-livemind-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  scroll-behavior: smooth;
}

.ask-livemind-message {
  max-width: 86%;
  margin-bottom: 13px;
  padding: 12px 14px;
  border-radius: 17px;
  font-size: 13px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.ask-livemind-message.bot {
  margin-right: auto;
  border: 1px solid rgba(131, 165, 255, 0.18);
  border-bottom-left-radius: 5px;
  color: #eaf0ff;
  background:
    linear-gradient(
      145deg,
      rgba(28, 42, 83, 0.82),
      rgba(13, 20, 41, 0.88)
    );
}

.ask-livemind-message.user {
  margin-left: auto;
  border-bottom-right-radius: 5px;
  color: #07101d;
  background:
    linear-gradient(
      135deg,
      #ffffff,
      #bfd6ff
    );
}

.ask-livemind-suggestions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 13px;
  scrollbar-width: none;
}

.ask-livemind-suggestions::-webkit-scrollbar {
  display: none;
}

.ask-livemind-suggestion {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(127, 162, 255, 0.22);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  cursor: pointer;
}

.ask-livemind-suggestion:hover {
  color: white;
  border-color: rgba(127, 162, 255, 0.45);
}

.ask-livemind-form {
  display: flex;
  gap: 9px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 19, 0.86);
}

.ask-livemind-input {
  min-width: 0;
  flex: 1;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(129, 162, 255, 0.2);
  border-radius: 15px;
  outline: none;
  color: white;
  background: rgba(255, 255, 255, 0.035);
}

.ask-livemind-input:focus {
  border-color: var(--blue);
}

.ask-livemind-send {
  width: 49px;
  height: 49px;
  border: 0;
  border-radius: 15px;
  color: #07101f;
  background:
    linear-gradient(
      135deg,
      #ffffff,
      #bfd5ff
    );
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.ask-livemind-send:hover {
  transform: translateY(-1px);
}

@media (max-width: 620px) {
  .ask-livemind-launcher {
    right: 14px;
    bottom: 14px;
    min-height: 53px;
    padding: 0 18px;
  }

  .ask-livemind-panel {
    right: 10px;
    bottom: 78px;
    left: 10px;
    width: auto;
    height: min(650px, calc(100vh - 95px));
  }
}
