:root {
  --font-sans: 'Inter', sans-serif;
  --preview-banner-h: 44px;
  --aura-account-banner-h: 0px;
  --aura-bg: #0a0a0b;
  --aura-bg-elevated: #111114;
}
body {
  font-family: var(--font-sans);
  background-color: var(--aura-bg);
  background-image: none;
  background-attachment: fixed;
  color: #f5f5f6;
  overflow-x: hidden;
}
#aura-starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
main, .page-shell, .demo-stage, .co-shell { position: relative; z-index: 1; }
.aura-fx { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.aura-orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  opacity: 0.68; animation: orb-float 22s ease-in-out infinite;
}
.aura-orb-a { width: 520px; height: 520px; background: rgba(255, 255, 255, 0.06); top: -16%; left: 18%; }
.aura-orb-b { width: 380px; height: 380px; background: rgba(255, 255, 255, 0.04); bottom: 4%; right: -6%; animation-delay: -7s; }
.aura-orb-c { width: 300px; height: 300px; background: rgba(255, 255, 255, 0.035); top: 42%; left: -10%; animation-delay: -13s; }
@keyframes orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(40px, -28px, 0) scale(1.08); }
}
.aura-grain {
  position: absolute; inset: 0; opacity: 0.2; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.aura-cursor {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px; margin: -230px 0 0 -230px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 64%);
  pointer-events: none; will-change: transform;
}
.hero-glow {
  position: absolute; inset: 0 8% auto; height: 380px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.10), transparent 68%);
  filter: blur(28px); pointer-events: none; z-index: -1;
}
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(99,102,241,0.3); background: rgba(99,102,241,0.1);
  color: #a5b4fc; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.live-pill .dot {
  position: relative; width: 8px; height: 8px;
}
.live-pill .dot::before, .live-pill .dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%; background: #818cf8;
}
.live-pill .dot::before { animation: ping 1.6s cubic-bezier(0,0,.2,1) infinite; opacity: .7; }
@keyframes ping { 75%, 100% { transform: scale(2.2); opacity: 0; } }
.cinematic-h {
  font-size: clamp(34px, 5.4vw, 64px); font-weight: 600; letter-spacing: -0.045em;
  line-height: 1.08; color: #fff; margin: 0 0 16px;
}
.cinematic-h span { color: #a3a3a8; font-weight: 500; }
.aura-steps {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 36px; padding: 0; list-style: none;
}
.aura-steps li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #71717a; padding: 8px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03);
}
.aura-steps li.done { color: #bbf7d0; border-color: rgba(34,197,94,0.25); background: rgba(34,197,94,0.08); }
.aura-steps li.now { color: #c7d2fe; border-color: rgba(99,102,241,0.35); background: rgba(99,102,241,0.12); }
.plan-orb {
  position: relative; overflow: hidden;
}
.plan-orb::before {
  content: ''; position: absolute; inset: auto -20% -40%; height: 70%;
  background: radial-gradient(circle at 50% 0, rgba(99,102,241,0.35), transparent 70%);
  pointer-events: none;
}
.due-num { font-size: clamp(40px, 6vw, 72px); font-weight: 700; letter-spacing: -0.05em; color: #fff; line-height: 1; }
.ps-orb {
  width: 92px; height: 92px; margin: 0 auto 22px; position: relative;
  display: grid; place-items: center;
}
.ps-orb::before, .ps-orb::after {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.25); animation: ring 2.8s ease-out infinite;
}
.ps-orb::after { inset: -22px; animation-delay: .7s; opacity: .6; }
@keyframes ring { 0% { transform: scale(.7); opacity: .8; } 100% { transform: scale(1.15); opacity: 0; } }
.ps-core {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, #6366f1, #1d4ed8);
  box-shadow: 0 12px 40px rgba(79,70,229,0.45);
  position: relative; z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .aura-orb, .shiny-cta, .shiny-cta::after, .live-pill .dot::before, .ps-orb::before, .ps-orb::after { animation: none; }
  #aura-starfield { opacity: 0.7; }
}
.text-neutral-300 { color: #d4d4d8 !important; }
.text-neutral-400 { color: #c6c6cb !important; }
.text-neutral-500 { color: #a3a3a8 !important; }
@property --gradient-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --gradient-angle-offset { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --gradient-percent { syntax: "<percentage>"; initial-value: 20%; inherits: false; }
@property --gradient-shine { syntax: "<color>"; initial-value: #8484ff; inherits: false; }
.shiny-cta {
  --gradient-angle: 0deg;
  --gradient-angle-offset: 0deg;
  --gradient-percent: 20%;
  --gradient-shine: #8484ff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
  min-width: min-content;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(#000, #000) padding-box,
    conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)), transparent 0%, #1d4ed8 5%, var(--gradient-shine) 15%, #1d4ed8 30%, transparent 40%, transparent 100%) border-box;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px #1a1818;
  cursor: pointer;
  isolation: isolate;
  font-family: Inter, sans-serif;
  z-index: 0;
  animation: border-spin 2.5s linear infinite;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
@keyframes border-spin { to { --gradient-angle: 360deg; } }
.shiny-cta:active { transform: translateY(1px); }
.shiny-cta::before {
  content: ''; pointer-events: none; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); z-index: 0;
  --size: calc(100% - 6px); width: var(--size); height: var(--size);
  background: radial-gradient(circle at 2px 2px, white 0.5px, transparent 0) padding-box;
  background-size: 4px 4px; background-repeat: space;
  mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg), black, transparent 10% 90%, black);
  border-radius: inherit; opacity: 0.4;
}
.shiny-cta::after {
  content: ''; pointer-events: none; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); z-index: 1;
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, #1d4ed8, transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6; animation: shimmer 4s linear infinite;
}
.shiny-cta::before,
.shiny-cta::after { max-width: 100%; max-height: 100%; }
.shiny-cta span { position: relative; z-index: 2; display: inline-block; max-width: none; min-width: max-content; text-align: center; white-space: nowrap; flex: 0 0 auto; overflow: visible; }
@keyframes shimmer { to { transform: translate(-50%, -50%) rotate(360deg); } }
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 18px 50px rgba(0,0,0,0.28);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card.lift:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 24px 60px rgba(0,0,0,0.34);
}
.glass-card.featured {
  border-color: rgba(99,102,241,0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 0 0 1px rgba(99,102,241,0.25), 0 24px 60px rgba(0,0,0,0.35);
}
.glass-band {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.glass-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.glass-btn:hover { background: rgba(255,255,255,0.1); }
.preview-banner {
  position: sticky; top: 0; z-index: 80;
  background: #1d4ed8; color: #fff;
  font-size: 12px; letter-spacing: 0.04em;
  min-height: var(--preview-banner-h);
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 6px;
  text-align: center;
  box-sizing: border-box;
}
.preview-banner a {
  color: #fff; text-decoration: underline; font-weight: 600;
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 8px;
}
.aura-header.fixed { top: calc(var(--preview-banner-h) + var(--aura-account-banner-h, 0px)) !important; }

/* Session CTAs — zero-flash (class set from sessionStorage in head) */
html:not(.aura-session-ready) #btnLpGetStarted,
html:not(.aura-session-ready) #btnLpPortal,
html:not(.aura-session-ready) #btnLpLogout,
html:not(.aura-session-ready) .nav-onboarding,
html:not(.aura-session-ready) .aura-header a.header-started,
html:not(.aura-session-ready) .aura-header a[href="/portal"],
html:not(.aura-session-ready) .aura-header a[href="/preview/aura-portal"],
html:not(.aura-session-ready) .aura-header a[href="/onboarding"],
html:not(.aura-session-ready) .aura-header a[href="/preview/aura-onboarding"],
html:not(.aura-session-ready) .aura-header a[href="/login"],
html:not(.aura-session-ready) #mobile-menu a[href="/portal"],
html:not(.aura-session-ready) #mobile-menu a[href="/preview/aura-portal"],
html:not(.aura-session-ready) #mobile-menu a[href="/onboarding"],
html:not(.aura-session-ready) #mobile-menu a[href="/preview/aura-onboarding"],
html:not(.aura-session-ready) #mobile-menu a[href="/login"],
html:not(.aura-session-ready) #mobile-menu #btnLpLogoutMobile {
  display: none !important;
}
html.aura-session-guest #btnLpPortal,
html.aura-session-guest #btnLpLogout,
html.aura-session-guest .nav-onboarding,
html.aura-session-guest .aura-header a[href="/portal"],
html.aura-session-guest .aura-header a[href="/preview/aura-portal"],
html.aura-session-guest .aura-header a[href="/onboarding"],
html.aura-session-guest .aura-header a[href="/preview/aura-onboarding"],
html.aura-session-guest #mobile-menu a[href="/portal"],
html.aura-session-guest #mobile-menu a[href="/preview/aura-portal"],
html.aura-session-guest #mobile-menu a[href="/onboarding"],
html.aura-session-guest #mobile-menu a[href="/preview/aura-onboarding"],
html.aura-session-guest #mobile-menu #btnLpLogoutMobile {
  display: none !important;
}
html.aura-session-no-plan #btnLpGetStarted,
html.aura-session-no-plan .aura-header a.header-started,
html.aura-session-no-plan #mobile-menu a.header-started,
html.aura-session-no-plan #mobile-menu a[href="/login"],
html.aura-session-no-plan #mobile-menu a[href="/login?mode=signup"] {
  display: none !important;
}
html.aura-session-no-plan #btnLpPortal,
html.aura-session-no-plan .nav-onboarding,
html.aura-session-no-plan .aura-header a[href="/portal"],
html.aura-session-no-plan .aura-header a[href="/preview/aura-portal"],
html.aura-session-no-plan .aura-header a[href="/onboarding"],
html.aura-session-no-plan .aura-header a[href="/preview/aura-onboarding"] {
  opacity: 0.42 !important;
  color: #737373 !important;
  cursor: not-allowed !important;
}
html.aura-session-paid #btnLpGetStarted,
html.aura-session-paid .aura-header a.header-started,
html.aura-session-paid #mobile-menu a.header-started,
html.aura-session-paid #mobile-menu a[href="/login"],
html.aura-session-paid #mobile-menu a[href="/login?mode=signup"] {
  display: none !important;
}
/* Zero-flash portal label: CSS picks label from html.aura-session-* (set in <head>) */
#btnLpPortal .lp-portal-open { display: none; }
#btnLpPortal .lp-portal-locked { display: inline; }
html.aura-session-paid #btnLpPortal .lp-portal-locked { display: none; }
html.aura-session-paid #btnLpPortal .lp-portal-open { display: inline; }
.da-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.da-logo-text { display: flex; align-items: baseline; gap: 6px; line-height: 1; }
.da-logo-ai { font-family: Poppins, Inter, sans-serif; font-weight: 800; font-size: 26px; letter-spacing: -0.03em; }
.da-logo-agent { font-family: Inter, sans-serif; font-weight: 600; font-size: 22px; letter-spacing: -0.02em; }
.da-mark {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  width: 38px; height: 38px; font-size: 11px; font-weight: 800;
  line-height: 1; color: #fff;
}
.da-mark span { display: flex; align-items: center; justify-content: center; background: #111; color: #fff; }
.aura-header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15,15,15,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.aura-header .da-logo-ai, .aura-header .da-logo-agent { color: #111; }
.aura-header nav a, .aura-header .header-login, .aura-header .header-started { color: #3f3f46; }
.aura-header nav a:hover, .aura-header .header-login:hover, .aura-header .header-started:hover, .aura-header nav a.active { color: #111; }
.aura-header nav a.active { font-weight: 700; }
/* Log out is a text link — match Open portal (no UA button chrome) */
#btnLpLogout,
.aura-header-logout {
  display: inline;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: inherit;
  color: #3f3f46;
  cursor: pointer;
  text-decoration: none !important;
  vertical-align: baseline;
}
#btnLpLogout:hover,
.aura-header-logout:hover {
  color: #111;
  background: transparent !important;
}
.aura-header .menu-btn {
  color: #111;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  flex-shrink: 0;
}
.aura-header .menu-btn svg { width: 22px; height: 22px; }
.aura-header #mobile-menu { background: rgba(255,255,255,0.96); border-color: rgba(15,15,15,0.08); }
.aura-header #mobile-menu a { color: #3f3f46; }
.page-shell { padding-top: 8.5rem; padding-bottom: 5rem; position: relative; z-index: 1; }
.price { font-size: 2.75rem; font-weight: 700; letter-spacing: -0.04em; }
.price span { font-size: 1rem; font-weight: 500; color: #a3a3a8; }
.feat { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #c6c6cb; margin-bottom: 10px; }
.feat i { color: #818cf8; font-style: normal; font-weight: 700; }
.badge-pop {
  display: inline-flex; align-items: center;
  background: rgba(99,102,241,0.18); color: #c7d2fe;
  border: 1px solid rgba(129,140,248,0.35);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.demo-stage {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 40px);
  padding: 8.5rem 24px 5rem;
  z-index: 1;
}
.demo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .demo-stage { padding-left: 16px; padding-right: 16px; overflow-x: hidden; }
  .demo-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .demo-copy,
  .demo-form-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 22px 16px;
  }
  .demo-point { align-items: flex-start; white-space: normal; }
  .cinematic-h { overflow-wrap: break-word; }
  .shiny-cta { padding: 0.75rem 1rem; font-size: 0.9rem; width: 100%; }
  .co-card { min-width: 0; max-width: 100%; box-sizing: border-box; }
  .ms-bar { display: none !important; }
  .demo-form-card { overflow: hidden; }
}
.demo-copy,
.demo-form-card {
  border-radius: 22px;
  padding: 32px 28px;
  height: auto;
  min-width: 0;
}
.demo-copy {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(99, 102, 241, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(34, 211, 238, 0.1), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}
.demo-point {
  display: flex; align-items: center; gap: 12px;
  color: #e8e8ec; font-size: 14.5px; font-weight: 600; padding: 10px 0;
}
.demo-point .ic {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(99, 102, 241, 0.2);
  color: #c7d2fe;
}
.demo-trust {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.demo-form-card h3 { color: #fff; font-size: 22px; font-weight: 700; margin: 0 0 4px; }
.demo-form-card .sub { color: #a3a3a8; font-size: 13px; margin-bottom: 22px; }
.demo-form-card .btn-back {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #e8e8ec;
  border-radius: 12px;
  padding: 13px 18px;
  font-weight: 600;
}
.demo-form-card .btn-next {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #4f46e5, #1d4ed8);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(29, 78, 216, 0.28);
}
.demo-form-card .btn-next:hover { transform: translateY(-1px); }
.phone-row { display: flex; gap: 10px; align-items: stretch; }
.phone-row > input[type="tel"] { flex: 1; min-width: 0; }
.phone-code-combo {
  position: relative;
  flex: 0 0 112px;
  width: 112px;
}
.phone-code-input {
  width: 100%;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 10px;
  padding: 12px 24px 12px 10px !important;
  font-size: 14px;
  box-sizing: border-box;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a3a3a8' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 14px 14px;
}
.phone-code-input:focus {
  border-color: rgba(99,102,241,0.7);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.18);
  outline: none;
}
.phone-code-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 280px;
  max-height: 260px;
  overflow-y: auto;
  background: #1a1a1f;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
  z-index: 80;
  padding: 4px;
}
.phone-code-dropdown.open { display: block; }
.phone-code-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  color: #e4e4e7;
}
.phone-code-opt:hover { background: rgba(99,102,241,0.16); }
.phone-code-opt .pc-flag { font-size: 15px; }
.phone-code-opt .pc-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-code-opt .pc-dial { color: #a3a3a8; font-weight: 600; }
.phone-code-empty { padding: 10px; color: #a3a3a8; font-size: 13px; text-align: center; }
.ms-progress { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.ms-step { display: flex; align-items: center; gap: 8px; color: #a3a3a8; font-size: 12px; font-weight: 600; }
.ms-step .circle {
  width: 28px; height: 28px; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}
.ms-step.active { color: #fff; }
.ms-step.active .circle { background: #4f46e5; border-color: #6366f1; }
.ms-step.done .circle { background: #22d3ee; border-color: #22d3ee; color: #0a0a0a; }
.ms-bar { flex: 1; height: 2px; min-width: 12px; background: rgba(255,255,255,0.1); }
.ms-bar.filled { background: #6366f1; }
.ms-panel { display: none; }
.ms-panel.active { display: block; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .field-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 12px; font-weight: 700; color: #d4d4d8; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 10px;
  padding: 12px 13px;
  outline: none;
  font-size: 14px;
  box-sizing: border-box;
}
.field input[type="checkbox"],
.field input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  accent-color: #818cf8;
  border-radius: 4px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(99,102,241,0.7);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.18);
}
.field textarea { min-height: 110px; resize: vertical; }
.field select option { background: #222226; }
.ms-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; }
.rv-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; }
.rv-row .k { color: #a3a3a8; }
.rv-row .v { color: #fff; text-align: right; }
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #111; color: #fff; border: 1px solid rgba(255,255,255,0.14);
  padding: 10px 16px; border-radius: 10px; z-index: 90; display: none;
}

/* Request-a-Demo: real-time stage overlay (SSE-backed, not a fake bar) */
.demo-form-card { position: relative; overflow: hidden; }
.demo-form-card:has(.demo-load.is-open) { min-height: 540px; }
.demo-load[hidden] { display: none !important; }
.demo-load {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 8;
  border-radius: inherit;
  padding: 28px 22px 24px;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(99, 102, 241, 0.28), transparent 58%),
    linear-gradient(180deg, rgba(18, 16, 28, 0.96), rgba(12, 11, 18, 0.98));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  overflow-y: auto;
}
.demo-load.is-open { display: flex; }
.demo-load-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 8px;
}
.demo-load-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  min-height: 1.5em;
  transition: opacity 180ms ease;
}
.demo-load-sub {
  color: #c6c6cb;
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 22px;
}
.demo-load-orbit {
  position: relative;
  width: 52px;
  height: 52px;
  margin: 0 0 22px;
}
.demo-load-orbit::before,
.demo-load-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #818cf8;
  border-right-color: rgba(34, 211, 238, 0.45);
  animation: demo-orbit 1.4s linear infinite;
}
.demo-load-orbit::after {
  inset: 8px;
  border-top-color: #22d3ee;
  border-right-color: transparent;
  animation-duration: 2.1s;
  animation-direction: reverse;
}
.demo-load-stages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.demo-load-stage {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  color: #71717a;
  transition: color 180ms ease, opacity 180ms ease;
}
.demo-load-stage .mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  position: relative;
}
.demo-load-stage.is-active { color: #f5f5f6; }
.demo-load-stage.is-active .mark {
  border-color: #818cf8;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
}
.demo-load-stage.is-active .mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #818cf8;
  animation: demo-pulse 1.1s ease-in-out infinite;
}
.demo-load-stage.is-done { color: #a5f3fc; }
.demo-load-stage.is-done .mark {
  border-color: #22d3ee;
  background: #22d3ee;
}
.demo-load-stage.is-done .mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #0a0a0a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  animation: none;
}
.demo-load-stage.is-failed { color: #fda4af; }
.demo-load-stage.is-failed .mark {
  border-color: #f43f5e;
  background: rgba(244, 63, 94, 0.2);
}
.demo-web-status {
  min-height: 1.35em;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #a3a3a8;
  line-height: 1.4;
}
.demo-web-status.is-ok { color: #67e8f9; }
.demo-web-status.is-warn { color: #fbbf24; }
.demo-web-status.is-err { color: #fb7185; }
.demo-inbox-hint {
  color: #c6c6cb !important;
  font-size: 13.5px !important;
  line-height: 1.55;
  margin: 10px auto 22px !important;
  max-width: 28rem;
}
#demoSuccess h3 { margin-bottom: 8px; }
@keyframes demo-orbit {
  to { transform: rotate(360deg); }
}
@keyframes demo-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.72); }
  50% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .demo-load-orbit::before,
  .demo-load-orbit::after,
  .demo-load-stage.is-active .mark::after {
    animation: none;
  }
}
.cb-group {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  box-sizing: border-box;
}
.cb-group label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: #d4d4d8;
  cursor: pointer;
}
.cb-group label:last-child { margin-bottom: 0; }
.legal-card,
.legal-card.glass-card {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 22px;
  padding: 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 5px solid #6366f1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 18px 50px rgba(0,0,0,0.28);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}
@media (max-width: 600px) {
  .legal-card, .legal-card.glass-card { padding: 28px 20px 48px; border-radius: 16px; }
  .legal-card h1 { font-size: 26px; }
  .legal-card h2 { font-size: 18px; }
}
.legal-card h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-align: center;
  margin: 0 0 10px;
}
.legal-card .lede { color: #e8e8ec; font-size: 18px; line-height: 1.6; margin: 0 0 30px; }
.legal-card h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.legal-card p, .legal-card li { color: #c6c6cb; font-size: 16px; line-height: 1.8; text-align: left; }
.legal-card strong { color: #fff; font-weight: 700; }
.legal-card ul { margin: 10px 0 20px; padding-left: 20px; list-style: disc; }
.legal-card li { margin-bottom: 8px; }
.legal-card a { color: #a5b4fc; text-decoration: none; font-weight: 600; }
.legal-card a:hover { text-decoration: underline; }
.legal-card .legal-callout {
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(129,140,248,0.28);
  border-left: 4px solid #6366f1;
  border-radius: 12px;
  padding: 20px;
  margin: 16px 0 20px;
}
.legal-card .legal-callout p, .legal-card .legal-callout li { color: #d4d4d8; }
.legal-card .legal-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 20px;
  margin-top: 15px;
  color: #e8e8ec;
  font-size: 16px;
  line-height: 1.7;
}
.aura-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(15,15,15,0.08);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  padding: 16px 0 12px;
}
.aura-footer-inner { max-width: 80rem; margin: 0 auto; padding: 0 24px; }
.aura-footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
}
.aura-footer-brand p { display: none; }
.aura-footer .da-mark { width: 26px; height: 26px; font-size: 8px; gap: 1.5px; }
.aura-footer .da-mark span,
.aura-footer .da-mark span:nth-child(2),
.aura-footer .da-mark span:nth-child(3),
.aura-footer .da-mark span:nth-child(4) {
  background: #111;
  color: #fff;
}
.aura-footer .da-logo-ai { color: #111; font-size: 18px; }
.aura-footer .da-logo-agent { color: #111; font-size: 15px; }
.aura-footer h4 {
  color: #111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.aura-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0 14px; }
.aura-footer li { margin: 0; }
.aura-footer a {
  color: #3f3f46; font-size: 13px; text-decoration: none;
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 10px 6px;
}
.aura-footer a:hover { color: #111; }
.aura-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(15,15,15,0.08);
  color: #52525b;
  font-size: 12px;
}
.aura-social { display: flex; gap: 6px; }
.aura-social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(15,15,15,0.12);
  background: rgba(15,15,15,0.04);
  color: #111; font-size: 10px; font-weight: 700;
  min-height: 44px; padding: 0;
}
.aura-social a:hover { background: rgba(15,15,15,0.08); }
@media (max-width: 900px) {
  .aura-footer-grid { justify-content: flex-start; }
}

/* Checkout funnel (signup → pay → success) */
.co-page { max-width: 1060px; margin: 0 auto; }
.co-back { color: #c7d2fe; font-size: 14px; text-decoration: none; display: inline-block; margin-bottom: 14px; }
.co-back:hover { color: #fff; }
.co-title { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; color: #fff; margin: 0 0 8px; }
.co-sub { color: #a3a3a8; margin: 0 0 28px; font-size: 15px; line-height: 1.55; }
.co-grid { display: grid; grid-template-columns: 1.55fr 0.9fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .co-grid { grid-template-columns: 1fr; } }
.co-card { border-radius: 22px; padding: 28px 24px; }
.co-req { color: #f87171; }
.co-step-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #a3a3a8; margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.co-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
.co-dot.now { background: #6366f1; box-shadow: 0 0 0 3px rgba(99,102,241,0.22); }
.co-sum-item { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: #c6c6cb; padding: 8px 0; }
.co-sum-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 18px; color: #fff; font-weight: 700;
  margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1);
}
.co-brand-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.co-brand-chip {
  font-size: 11px; font-weight: 600; padding: 5px 9px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12); color: #d4d4d8;
}
.co-pay-note { font-size: 13px; color: #c6c6cb; line-height: 1.55; margin: 0 0 18px; }
.co-pay-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.co-btn-cancel {
  background: transparent; border: 1px solid rgba(255,255,255,0.16); color: #e8e8ec;
  border-radius: 999px; padding: 12px 18px; font-weight: 600; cursor: pointer;
}
.co-merchant { font-size: 12px; color: #a3a3a8; margin: 14px 0 0; line-height: 1.5; }
.co-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.co-trust span {
  font-size: 11px; color: #a3a3a8; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; padding: 5px 9px;
}
.co-edit { color: #c7d2fe; font-size: 13px; font-weight: 600; text-decoration: none; }
.co-edit:hover { color: #fff; }
.header-help { color: #3f3f46; font-size: 13px; font-weight: 600; text-decoration: none; }
.header-help:hover { color: #111; }
#paddleCheckoutError { display: none; color: #fca5a5; font-size: 13px; margin-top: 12px; }
.ps-stage { position: relative; }
.ps-stage .hero-glow {
  inset: -40px 0 auto;
  height: 520px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(99,102,241,0.32), transparent 62%),
    radial-gradient(ellipse at 72% 18%, rgba(34,211,238,0.12), transparent 50%);
  filter: blur(20px);
}
.ps-hero { text-align: center; max-width: 820px; margin: 0 auto 48px; }
.ps-hero .cinematic-h { font-size: clamp(40px, 6.4vw, 76px); margin-bottom: 20px; }
.ps-sub { color: #c6c6cb; font-size: 18px; line-height: 1.7; margin: 0 auto; max-width: 34rem; }
.ps-cta {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px; margin: 32px 0 0;
}
.ps-orb { width: 118px; height: 118px; margin: 0 auto 28px; }
.ps-core {
  width: 88px; height: 88px;
  box-shadow: 0 18px 60px rgba(79,70,229,0.55), 0 0 0 1px rgba(255,255,255,0.12);
}
.ps-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 720px; margin: 48px auto 0; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 700px) { .ps-stats { grid-template-columns: 1fr; gap: 16px; } }
.ps-stats strong { display: block; color: #fff; font-size: 22px; letter-spacing: -0.03em; }
.ps-stats span { display: block; margin-top: 4px; color: #a3a3a8; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.ps-chapters {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  max-width: 1100px; margin: 56px auto 0; padding: 28px 24px;
  border-radius: 22px;
}
@media (max-width: 900px) { .ps-chapters { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ps-chapters { grid-template-columns: 1fr; } }
.ps-chapter { text-align: left; padding: 8px 4px; }
.ps-chapter h3 { margin: 10px 0 6px; font-size: 15px; color: #fff; font-weight: 600; }
.ps-chapter p { margin: 0; font-size: 13px; color: #a3a3a8; line-height: 1.5; }
.ps-dot {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  font-size: 12px; font-weight: 700; background: rgba(255,255,255,0.08); color: #d4d4d8;
}
.ps-chapter.done .ps-dot { background: #22c55e; color: #052e16; }
.ps-chapter.active .ps-dot { background: #6366f1; color: #fff; box-shadow: 0 0 0 4px rgba(99,102,241,0.2); }
.ps-return {
  background: none; border: 0; color: #c7d2fe; font-size: 13px; font-weight: 600;
  cursor: pointer; padding: 8px 12px;
}
.ps-support { font-size: 13px; color: #a3a3a8; margin-top: 28px; line-height: 1.55; }
.ps-support a { color: #c7d2fe; }

@media (max-width: 900px) {
  .ms-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 6px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-items: start;
    justify-items: stretch;
  }
  .ms-bar { display: none !important; }
  .ms-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    min-width: 0;
    max-width: none;
    overflow: visible;
    text-align: center;
    white-space: normal;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
  }
  .ms-step .circle {
    flex-shrink: 0;
  }
  .shiny-cta { padding: 0.75rem 1rem; font-size: 0.9rem; width: 100%; }
}
@media (max-width: 767px) {
  .demo-form-card h3,
  .demo-form-card .sub {
    text-align: center;
  }
  .demo-form-card .sub { margin-left: auto; margin-right: auto; }
  .ms-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  .demo-form-card .btn-next,
  .demo-form-card .btn-back {
    width: 100%;
    flex: none;
    text-align: center;
  }
}

/* DepthCarousel (React Bits JS+CSS) — mobile pricing rail only.
   Canonical CSS: voice-agent-ui/components/DepthCarousel.css */
.depth-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: var(--dc-perspective, 1400px);
  perspective-origin: 50% 50%;
  touch-action: pan-y;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}
.depth-carousel:active { cursor: grabbing; }
.depth-carousel:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
  border-radius: 12px;
}
.depth-carousel__stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.depth-carousel__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  overflow: hidden;
  background: #0b0d12;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.65),
    0 8px 20px -10px rgba(0, 0, 0, 0.5);
  will-change: transform, opacity, filter;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.depth-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.depth-carousel__tint {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.depth-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3000;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(18, 20, 26, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.depth-carousel__arrow:hover {
  background: rgba(28, 31, 40, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
}
.depth-carousel__arrow:active { transform: translateY(-50%) scale(0.94); }
.depth-carousel__arrow--prev { left: 8px; }
.depth-carousel__arrow--next { right: 8px; }
.depth-carousel__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 16, 22, 0.4);
  backdrop-filter: blur(6px);
}
.depth-carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.depth-carousel__dot.is-active {
  width: 20px;
  background: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .depth-carousel__card { will-change: auto; }
  .depth-carousel__arrow,
  .depth-carousel__dot { transition: none; }
}

/* Desktop / tablet (Tailwind md = 768px): keep the 3-column price grid. */
@media (min-width: 768px) {
  .price-depth-carousel.depth-carousel {
    display: block;
    height: auto;
    min-height: 0;
    perspective: none;
    cursor: default;
    touch-action: auto;
    user-select: auto;
    -webkit-user-select: auto;
  }
  .price-depth-carousel .depth-carousel__stage {
    position: static;
    inset: auto;
    transform: none;
    display: grid;
  }
  .price-depth-carousel .depth-carousel__card {
    position: static;
    top: auto;
    left: auto;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    filter: none !important;
    opacity: 1 !important;
    z-index: auto !important;
    pointer-events: auto !important;
    overflow: visible;
    cursor: default;
    will-change: auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 18px 50px rgba(0,0,0,0.28);
  }
  .price-depth-carousel .depth-carousel__tint,
  .price-depth-carousel .depth-carousel__arrow,
  .price-depth-carousel .depth-carousel__dots {
    display: none;
  }
}

@media (max-width: 767px) {
  .price-depth-carousel.depth-carousel {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    grid-template-areas:
      "stage stage stage"
      "prev dots next";
    align-items: center;
    gap: 12px 8px;
    height: auto;
    min-height: 0;
    width: 100%;
    margin: 0;
    perspective: none;
    cursor: default;
    touch-action: auto;
    user-select: auto;
  }
  .price-depth-carousel .depth-carousel__stage {
    grid-area: stage;
    position: relative;
    inset: auto;
    display: flex !important;
    flex-wrap: nowrap;
    gap: 0 !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transform: none;
    transform-style: flat;
    perspective: none;
  }
  .price-depth-carousel .depth-carousel__stage::-webkit-scrollbar { display: none; }
  .price-depth-carousel .depth-carousel__card {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100% !important;
    height: auto !important;
    min-height: 0;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    z-index: auto !important;
    overflow: visible;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 22px 20px 20px !important;
    cursor: default;
    will-change: auto;
    transition: none;
    background:
      radial-gradient(ellipse 90% 55% at 50% -18%, rgba(99, 102, 241, 0.32), transparent 58%),
      linear-gradient(180deg, #1a1730 0%, #0b0d12 72%);
  }
  .price-depth-carousel .depth-carousel__card.featured {
    border-color: rgba(99, 102, 241, 0.5);
  }
  .price-depth-carousel .depth-carousel__tint { display: none; }
  .price-depth-carousel .depth-carousel__arrow {
    position: static;
    transform: none;
    width: 44px;
    height: 44px;
  }
  .price-depth-carousel .depth-carousel__arrow--prev { grid-area: prev; }
  .price-depth-carousel .depth-carousel__arrow--next { grid-area: next; }
  .price-depth-carousel .depth-carousel__arrow:active { transform: scale(0.94); }
  .price-depth-carousel .depth-carousel__dots {
    grid-area: dots;
    position: static;
    transform: none;
    margin: 0 auto;
    width: fit-content;
  }
  .price-depth-carousel .glass-card.lift:hover {
    transform: none;
  }
  .price-depth-carousel .badge-pop {
    position: static;
    align-self: flex-start;
    margin-bottom: 8px;
  }
  .price-depth-carousel .price {
    font-size: 2.15rem;
  }
  .price-depth-carousel .feat {
    font-size: 13px;
    margin-bottom: 7px;
  }
  .price-depth-carousel .glass-btn,
  .price-depth-carousel .shiny-cta {
    width: 100%;
    margin-bottom: 14px !important;
  }
}
