:root {
  color-scheme: dark;
  --bg: #04060d;
  --surface: rgba(11, 15, 27, 0.9);
  --border: rgba(122, 140, 202, 0.2);
  --border-strong: rgba(141, 164, 243, 0.3);
  --text: #f4f7ff;
  --text-muted: #93a1c0;
  --text-soft: #cad4ee;
  --primary: #69a4ff;
  --primary-strong: #8d6cff;
  --primary-soft: rgba(105, 164, 255, 0.16);
  --accent: #9d88ff;
  --success: #31d1a3;
  --danger: #ff9d67;
  --shadow: 0 28px 100px rgba(1, 4, 12, 0.55);
  --max-width: 1180px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font-sans: "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Segoe UI Variable Display", "Aptos Display", "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --grid-line: rgba(136, 150, 208, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 14% 12%, rgba(105, 164, 255, 0.16), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(157, 136, 255, 0.22), transparent 28%),
    radial-gradient(circle at 68% 38%, rgba(49, 209, 163, 0.08), transparent 22%),
    linear-gradient(180deg, #04060d 0%, #050914 28%, #070d1b 62%, #04060d 100%);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
  overscroll-behavior-y: contain;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

main {
  overflow: clip;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--primary);
  color: #02110c;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 2000;
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: calc(1rem + var(--safe-top)) 1rem 0;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0 1rem auto;
  height: calc(100% - 1rem);
  background:
    linear-gradient(180deg, rgba(9, 14, 28, 0.9), rgba(8, 13, 24, 0.78)),
    radial-gradient(circle at top right, rgba(105, 164, 255, 0.12), transparent 34%);
  border: 1px solid rgba(130, 149, 214, 0.14);
  backdrop-filter: blur(22px);
  border-radius: 999px;
  z-index: -1;
}

.header-shell,
.section-shell,
.footer-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 1rem;
  background: url("/icons/icon-192.svg") center / contain no-repeat;
  filter: drop-shadow(0 8px 18px rgba(255, 255, 255, 0.08)) drop-shadow(0 10px 24px rgba(58, 92, 186, 0.18));
}

.brand-mark::before,
.brand-mark::after {
  content: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
}

.brand-copy span {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
}

.site-nav a,
.header-actions .button-ghost {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.header-actions .button-ghost:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 2.85rem;
  height: 2.85rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  margin-left: auto;
}

.menu-toggle span {
  width: 1rem;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.9rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #f8fbff;
  box-shadow: 0 14px 34px rgba(105, 164, 255, 0.24);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(122, 140, 202, 0.2);
  color: var(--text);
}

.hero-section {
  position: relative;
  padding: 6.2rem 0 3.8rem;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(52px);
}

.hero-section::before {
  top: 0;
  right: -7%;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(105, 164, 255, 0.22), rgba(105, 164, 255, 0));
}

.hero-section::after {
  top: 6rem;
  left: -9%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(157, 136, 255, 0.2), rgba(157, 136, 255, 0));
}

.hero-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 3rem;
  align-items: start;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.eyebrow,
.trust-label,
.pricing-label,
.session-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-copy h1,
.section-intro h2,
.final-cta-shell h2 {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 5.4vw, 5.7rem);
  max-width: 12ch;
  letter-spacing: -0.075em;
}

.hero-text,
.section-intro p,
.solution-card p,
.pricing-card p,
.site-footer p,
.architecture-node p,
.pillar-card p,
.timeline-list p,
.surface-footnote,
.auth-copy p,
.session-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, #f4f7ff 12%, #85bcff 46%, #b39cff 78%, #dbebff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-signal-row span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 142, 204, 0.18);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-stat-grid,
.visual-grid,
.dashboard-preview,
.solution-grid,
.pricing-grid,
.pillar-grid,
.architecture-grid,
.metrics-grid {
  display: grid;
  gap: 1rem;
}

.hero-stat-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stat-grid li,
.pillar-card,
.solution-card,
.pricing-card,
.architecture-node,
.surface-card,
.session-card {
  background:
    linear-gradient(180deg, rgba(14, 20, 34, 0.9), rgba(9, 13, 24, 0.96)),
    radial-gradient(circle at top right, rgba(105, 164, 255, 0.06), transparent 34%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-stat-grid li,
.pillar-card,
.solution-card,
.pricing-card,
.architecture-node {
  padding: 1.2rem;
}

.hero-stat-grid strong,
.pillar-card h3,
.solution-card h3,
.pricing-card h3,
.timeline-list h3,
.session-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 3% 6% auto;
  height: 82%;
  background: radial-gradient(circle, rgba(105, 164, 255, 0.18), rgba(157, 136, 255, 0.04) 54%, rgba(105, 164, 255, 0));
  filter: blur(48px);
  pointer-events: none;
}

.visual-frame {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(12, 18, 33, 0.94), rgba(5, 8, 18, 0.98)),
    radial-gradient(circle at top right, rgba(105, 164, 255, 0.14), transparent 38%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 100%);
  pointer-events: none;
}

.visual-header,
.section-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.visual-label,
.section-title-row span,
.code-meta span {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.status-pill {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(49, 209, 163, 0.1);
  border: 1px solid rgba(49, 209, 163, 0.24);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 800;
}

.visual-kpis {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.15rem;
}

.visual-kpis article,
.metrics-grid article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(140, 170, 194, 0.14);
}

.visual-kpis strong,
.metrics-grid strong {
  display: block;
  margin: 0.5rem 0 0.25rem;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

.visual-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.surface-card {
  padding: 1.15rem;
}

.live-feed-card {
  grid-row: span 2;
}

.event-list,
.leaderboard-list,
.feature-list,
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.event-list li,
.leaderboard-list li {
  display: grid;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(140, 170, 194, 0.12);
}

.event-list li {
  grid-template-columns: auto 1fr auto;
}

.leaderboard-list li {
  grid-template-columns: 1fr auto;
}

.event-list li:first-child,
.leaderboard-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  min-height: 1.9rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(140, 170, 194, 0.1);
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

.event-badge-success {
  background: rgba(21, 184, 122, 0.12);
  color: var(--accent);
}

.event-badge-warning {
  background: rgba(255, 157, 103, 0.14);
  color: var(--danger);
}

.territory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.territory-item {
  min-height: 6.5rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15, 30, 45, 0.95), rgba(10, 19, 28, 0.95));
  border: 1px solid rgba(140, 170, 194, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.territory-strong {
  border-color: rgba(21, 184, 122, 0.3);
  background: linear-gradient(180deg, rgba(12, 42, 34, 0.72), rgba(8, 22, 21, 0.92));
}

.progress-copy {
  margin-top: 1rem;
}

.progress-copy > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.progress-bar {
  margin-top: 0.55rem;
  width: 100%;
  height: 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.progress-bar span,
.bar-chart strong {
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #49e7b5);
}

.progress-bar span {
  height: 100%;
}

.chip-row,
.trust-row,
.footer-links,
.code-meta,
.session-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip-row,
.territory-grid {
  margin-top: 1rem;
}

.chip-row span,
.trust-row span,
.code-meta span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(140, 170, 194, 0.14);
}

.trust-section,
.content-section,
.final-cta,
.site-footer {
  padding: 1.4rem 0 5rem;
}

.content-section-alt,
.trust-section {
  background: linear-gradient(180deg, rgba(7, 19, 30, 0.4), rgba(7, 19, 30, 0));
}

.content-section:not(:first-of-type),
.final-cta,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-intro {
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 1.8rem;
}

.section-intro h2,
.final-cta-shell h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.pillar-grid,
.solution-grid,
.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.timeline-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(11, 23, 34, 0.78);
  border: 1px solid rgba(140, 170, 194, 0.12);
}

.timeline-list li > span {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--primary-soft);
  border: 1px solid rgba(105, 164, 255, 0.25);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.architecture-node-active,
.pricing-card-featured {
  border-color: rgba(105, 164, 255, 0.32);
  background: linear-gradient(180deg, rgba(18, 28, 56, 0.84), rgba(10, 14, 28, 0.98));
}

.dashboard-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bar-chart {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.bar-chart strong {
  height: 0.8rem;
}

.developer-shell,
.access-shell,
.demo-request-shell,
.final-cta-shell {
  display: grid;
  gap: 1rem;
}

.developer-shell {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
}

.access-shell {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 27rem);
  align-items: center;
}

.access-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.demo-request-shell {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: start;
}

.demo-request-card,
.demo-request-sidecard {
  padding: 1.2rem;
}

.demo-request-card {
  display: grid;
  gap: 1rem;
}

.demo-form {
  display: grid;
  gap: 0.95rem;
}

.demo-form label {
  display: grid;
  gap: 0.45rem;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(140, 170, 194, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.demo-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.demo-notes {
  grid-column: 1 / -1;
}

.access-option {
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(14, 20, 34, 0.9), rgba(9, 13, 24, 0.96)),
    radial-gradient(circle at top right, rgba(105, 164, 255, 0.06), transparent 34%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.access-label {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
}

.access-option h3 {
  margin: 0 0 0.55rem;
  font-size: 1.14rem;
  letter-spacing: -0.04em;
}

.access-option p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.site-header.lp-nav {
  padding-top: calc(1.25rem + var(--safe-top));
}

.site-header.lp-nav::after {
  inset: 0.55rem 1rem auto;
  height: calc(100% - 0.55rem);
  background: rgba(13, 17, 23, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}

.lp-nav-inner {
  gap: 1.4rem;
}

.lp-logo {
  gap: 0.8rem;
}

.lp-logo-mark {
  width: 2.9rem;
  height: 2.9rem;
  padding: 0.48rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #ffffff, #d8deec);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  filter: none;
}

.lp-logo-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lp-nav .brand-copy strong {
  font-size: 1.08rem;
}

.lp-nav .brand-copy span {
  color: rgba(255, 255, 255, 0.56);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.lp-nav-links {
  gap: 1.75rem;
}

.lp-nav-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 600;
}

.lp-nav-links a:hover,
.lp-btn-signin:hover {
  color: #ffffff;
}

.lp-nav-actions {
  gap: 0.9rem;
}

.lp-btn-signin {
  background: transparent;
  border-color: transparent;
  color: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.lp-btn-primary {
  background: linear-gradient(135deg, #4facfe 0%, #58a6ff 50%, #7c3aed 100%);
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.24);
}

.lp-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-section.lp-hero {
  padding-top: 7rem;
  padding-bottom: 4.4rem;
}

.lp-hero-glow {
  position: absolute;
  inset: 7rem 0 auto;
  width: 46rem;
  height: 46rem;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(88, 166, 255, 0.1), rgba(124, 58, 237, 0.08) 36%, rgba(0, 0, 0, 0) 72%);
  filter: blur(60px);
  pointer-events: none;
}

.lp-hero-grid {
  align-items: center;
  gap: 3.4rem;
}

.lp-hero .hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 6vw, 5.9rem);
  line-height: 0.94;
}

.lp-hero-desc {
  max-width: 33rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.08rem;
}

.lp-hero-btns .button {
  min-height: 3.2rem;
  border-radius: 0.95rem;
  padding-inline: 1.45rem;
}

.lp-terminal {
  position: relative;
}

.lp-terminal-inner {
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(15, 19, 26, 0.98), rgba(7, 10, 17, 0.98)),
    radial-gradient(circle at top right, rgba(88, 166, 255, 0.12), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.46);
}

.lp-terminal-header-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lp-terminal-dots {
  display: flex;
  gap: 0.38rem;
}

.lp-terminal-dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.lp-terminal-title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-family: ui-monospace, "Cascadia Code", "SFMono-Regular", "JetBrains Mono", monospace;
  text-transform: none;
  letter-spacing: 0.04em;
}

.lp-footer {
  padding-top: 1.6rem;
}

.lp-footer-inner {
  gap: 1.3rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer-top {
  align-items: center;
}

.lp-footer-brand {
  gap: 0.85rem;
}

.lp-footer-brand-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffffff, #d8deec);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.lp-footer-brand-text strong {
  font-size: 1rem;
}

.lp-footer-brand-text p {
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.lp-footer-links {
  gap: 1rem;
}

.lp-footer-links a {
  color: rgba(255, 255, 255, 0.56);
}

.lp-footer-links a:hover {
  color: #58a6ff;
}

.lp-footer-bottom {
  padding-top: 0.2rem;
}

.lp-footer-copy {
  color: #6f7787;
  font-size: 0.78rem;
}

.lp-footer .footer-meta {
  gap: 0.7rem;
}

.lp-footer .footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.86rem;
}

.final-cta-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(122, 140, 202, 0.18);
  background:
    radial-gradient(circle at top right, rgba(105, 164, 255, 0.18), transparent 30%),
    radial-gradient(circle at 30% 30%, rgba(157, 136, 255, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(12, 18, 34, 0.98), rgba(7, 11, 21, 0.98));
}

.code-card,
.session-card {
  padding: 1.25rem;
}

.code-card pre {
  margin: 0;
  overflow: auto;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #d7f3e8;
}

.site-footer {
  padding-bottom: calc(6.5rem + var(--safe-bottom));
}

.footer-shell {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(122, 140, 202, 0.16);
}

.footer-top,
.footer-bottom,
.footer-brand,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  justify-content: flex-start;
}

.footer-brand-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.06rem;
  letter-spacing: -0.04em;
}

.footer-brand-copy p {
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(122, 140, 202, 0.12);
}

.footer-copy {
  color: #687393;
  font-size: 0.86rem;
}

.footer-pill {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(122, 140, 202, 0.18);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-note {
  margin: 0;
  color: #edf4ff;
  font-size: 0.84rem;
  font-weight: 700;
}

.mobile-actionbar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1rem + var(--safe-bottom));
  z-index: 60;
  display: none;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 1.35rem;
  background: rgba(7, 18, 28, 0.94);
  border: 1px solid rgba(140, 170, 194, 0.16);
  backdrop-filter: blur(18px);
}

.mobile-actionbar .button {
  flex: 1;
}

.auth-dialog {
  width: min(34rem, calc(100% - 1rem));
  margin: auto;
  border: 0;
  padding: 0;
  background: transparent;
}

.auth-dialog::backdrop {
  background: rgba(2, 7, 12, 0.76);
  backdrop-filter: blur(14px);
}

.auth-shell {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(12, 22, 32, 0.98), rgba(8, 15, 23, 0.98));
  border: 1px solid rgba(140, 170, 194, 0.16);
  box-shadow: var(--shadow);
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 2.5rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(140, 170, 194, 0.16);
  color: var(--text-soft);
}

.auth-tabs {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(140, 170, 194, 0.14);
}

.auth-tab {
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: var(--text-soft);
  background: transparent;
  font-weight: 700;
}

.auth-tab-active {
  background: rgba(21, 184, 122, 0.12);
  color: var(--text);
}

.auth-panel {
  display: none;
  gap: 0.9rem;
}

.auth-panel-active {
  display: grid;
}

.auth-panel label {
  display: grid;
  gap: 0.45rem;
}

.auth-panel input,
.auth-panel textarea,
.auth-panel select {
  min-height: 3rem;
  padding: 0 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(140, 170, 194, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.auth-status {
  min-height: 1.4rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.auth-test-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.test-access-actions {
  margin-top: 0.15rem;
}

@media (max-width: 1080px) {
  .hero-shell,
  .developer-shell,
  .access-shell,
  .demo-request-shell,
  .final-cta-shell {
    grid-template-columns: 1fr;
  }

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

  .architecture-grid,
  .dashboard-preview,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .live-feed-card {
    grid-row: auto;
  }
}

@media (max-width: 860px) {
  .site-header::after {
    border-radius: 1.6rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .header-shell {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
  }

  .hero-shell,
  .hero-stat-grid,
  .visual-kpis,
  .pillar-grid,
  .solution-grid,
  .architecture-grid,
  .dashboard-preview,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom,
  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .mobile-actionbar {
    display: flex;
  }

  .site-footer {
    padding-bottom: calc(9rem + var(--safe-bottom));
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-actions-row,
  .session-actions,
  .hero-signal-row,
  .footer-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes holoSweep {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Classic homepage face restored from the March 1, 2026 visual system. */
body.classic-home {
  --text: #f0f6fc;
  --text-muted: rgba(255, 255, 255, 0.52);
  --text-soft: rgba(255, 255, 255, 0.74);
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);
  --primary: #4facfe;
  --primary-strong: #736efe;
  --accent: #a78bfa;
  --success: #34d399;
  background:
    radial-gradient(circle at 86% 10%, rgba(79, 172, 254, 0.12), transparent 24%),
    radial-gradient(circle at 15% 18%, rgba(240, 147, 251, 0.08), transparent 24%),
    linear-gradient(180deg, #030308 0%, #06060d 100%);
  color: #e6edf3;
}

body.classic-home main {
  overflow-x: clip;
  overflow-y: visible;
}

body.classic-home .header-shell,
body.classic-home .section-shell,
body.classic-home .footer-shell {
  width: min(calc(100% - 3rem), 1200px);
}

body.classic-home .site-header.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: calc(1rem + var(--safe-top)) 0 0;
}

body.classic-home .site-header.lp-nav::after {
  inset: 0;
  height: calc(100% + 0.2rem);
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: rgba(3, 3, 8, 0);
  backdrop-filter: blur(0);
  opacity: 0;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    backdrop-filter 0.2s ease;
}

body.classic-home .site-header.lp-nav.is-scrolled::after,
body.classic-home .site-header.lp-nav.is-open::after {
  opacity: 1;
  background: rgba(3, 3, 8, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}

body.classic-home .header-shell {
  min-height: auto;
  padding: 0 0 0.85rem;
  gap: 1.5rem;
}

body.classic-home .brand {
  gap: 0.75rem;
}

body.classic-home .lp-logo-mark {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.15), 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.classic-home .brand-copy strong {
  font-size: 1.12rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
}

body.classic-home .brand-copy span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

body.classic-home .site-nav {
  gap: 1.75rem;
}

body.classic-home .site-nav a,
body.classic-home .header-actions .button-ghost {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 600;
}

body.classic-home .site-nav a:hover,
body.classic-home .header-actions .button-ghost:hover,
body.classic-home .lp-btn-signin:hover {
  color: #ffffff;
}

body.classic-home .menu-toggle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.classic-home .button {
  min-height: 2.85rem;
  border-radius: 12px;
  font-size: 0.92rem;
}

body.classic-home .button-primary,
body.classic-home .lp-btn-primary {
  background: linear-gradient(135deg, #4facfe, #736efe);
  box-shadow: 0 4px 16px rgba(79, 172, 254, 0.25);
}

body.classic-home .button-primary:hover,
body.classic-home .lp-btn-primary:hover {
  box-shadow: 0 6px 24px rgba(79, 172, 254, 0.35);
}

body.classic-home .button-secondary,
body.classic-home .button-ghost,
body.classic-home .lp-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

body.classic-home .hero-section.lp-hero {
  padding: 140px 0 84px;
}

body.classic-home .hero-section.lp-hero::before {
  top: -8rem;
  right: -8rem;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.14), rgba(79, 172, 254, 0));
  filter: blur(80px);
}

body.classic-home .hero-section.lp-hero::after {
  top: 6rem;
  left: -7rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(240, 147, 251, 0.1), rgba(240, 147, 251, 0));
  filter: blur(64px);
}

body.classic-home .hero-shell {
  width: min(calc(100% - 3rem), 1200px);
  gap: 3rem;
  align-items: center;
}

body.classic-home .hero-copy h1 {
  margin: 0 0 1.15rem;
  max-width: 10.5ch;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.08em;
}

body.classic-home .lp-holo-text {
  background: linear-gradient(135deg, #00f2fe, #4facfe, #f093fb, #736efe, #00f2fe);
  background-size: 200% auto;
  animation: holoSweep 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.classic-home .hero-text,
body.classic-home .section-intro p,
body.classic-home .solution-card p,
body.classic-home .pricing-card p,
body.classic-home .site-footer p,
body.classic-home .architecture-node p,
body.classic-home .pillar-card p,
body.classic-home .timeline-list p,
body.classic-home .surface-footnote,
body.classic-home .auth-copy p,
body.classic-home .session-card p,
body.classic-home .access-option p {
  color: rgba(255, 255, 255, 0.52);
}

body.classic-home .lp-hero-desc {
  max-width: 30rem;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

body.classic-home .eyebrow,
body.classic-home .trust-label,
body.classic-home .pricing-label,
body.classic-home .session-kicker,
body.classic-home .access-label {
  color: #8b949e;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

body.classic-home .hero-signal-row span,
body.classic-home .chip-row span,
body.classic-home .trust-row span,
body.classic-home .code-meta span {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.classic-home .hero-actions-row {
  gap: 0.75rem;
}

body.classic-home .lp-hero-btns .button {
  min-height: 3rem;
  padding: 0.95rem 1.5rem;
  border-radius: 14px;
}

body.classic-home .hero-stat-grid li,
body.classic-home .pillar-card,
body.classic-home .solution-card,
body.classic-home .pricing-card,
body.classic-home .architecture-node,
body.classic-home .surface-card,
body.classic-home .session-card,
body.classic-home .access-option,
body.classic-home .timeline-list li,
body.classic-home .final-cta-shell,
body.classic-home .code-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  box-shadow: none;
}

body.classic-home .pillar-card,
body.classic-home .solution-card,
body.classic-home .pricing-card,
body.classic-home .architecture-node,
body.classic-home .access-option,
body.classic-home .timeline-list li,
body.classic-home .surface-card {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

body.classic-home .pillar-card:hover,
body.classic-home .solution-card:hover,
body.classic-home .pricing-card:hover,
body.classic-home .architecture-node:hover,
body.classic-home .access-option:hover,
body.classic-home .timeline-list li:hover,
body.classic-home .surface-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

body.classic-home .hero-visual::before {
  inset: 8% 4% auto;
  height: 78%;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.18), rgba(240, 147, 251, 0.06) 54%, rgba(79, 172, 254, 0));
  filter: blur(42px);
}

body.classic-home .visual-frame,
body.classic-home .lp-terminal-inner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

body.classic-home .visual-frame::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

body.classic-home .visual-frame::after {
  opacity: 0.28;
  background-size: 42px 42px;
}

body.classic-home .visual-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.classic-home .visual-kpis article,
body.classic-home .metrics-grid article,
body.classic-home .territory-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

body.classic-home .territory-strong,
body.classic-home .architecture-node-active,
body.classic-home .pricing-card-featured {
  background:
    linear-gradient(180deg, rgba(79, 172, 254, 0.12), rgba(115, 110, 254, 0.06)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(79, 172, 254, 0.22);
}

body.classic-home .status-pill {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.22);
  color: #34d399;
}

body.classic-home .event-badge {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

body.classic-home .event-badge-success {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
}

body.classic-home .event-badge-warning {
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
}

body.classic-home .content-section,
body.classic-home .final-cta,
body.classic-home .site-footer {
  padding: 5rem 0;
}

body.classic-home .trust-section {
  padding: 0 0 4.5rem;
}

body.classic-home .content-section-alt,
body.classic-home .trust-section {
  background: transparent;
}

body.classic-home .section-intro {
  max-width: 34rem;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

body.classic-home .section-intro h2,
body.classic-home .final-cta-shell h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

body.classic-home .timeline-list li > span {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #4facfe, #736efe);
  color: #ffffff;
}

body.classic-home .developer-shell,
body.classic-home .access-shell,
body.classic-home .final-cta-shell {
  gap: 1.5rem;
  align-items: center;
}

body.classic-home .final-cta-shell {
  padding: 2rem;
}

body.classic-home .code-card pre {
  color: rgba(255, 255, 255, 0.82);
}

body.classic-home .footer-links,
body.classic-home .footer-meta,
body.classic-home .lp-footer-links {
  gap: 1rem;
}

body.classic-home .site-footer.lp-footer {
  padding: 3rem 0 calc(6rem + var(--safe-bottom));
  background: #161b22;
  border-top: 1px solid #30363d;
}

body.classic-home .lp-footer-inner {
  gap: 2rem;
  padding-top: 0;
  border-top: 0;
}

body.classic-home .lp-footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

body.classic-home .lp-footer-brand {
  gap: 0.75rem;
}

body.classic-home .lp-footer-brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #f0f6fc;
  box-shadow: none;
}

body.classic-home .lp-footer-brand-text strong {
  font-size: 1rem;
}

body.classic-home .lp-footer-brand-text p {
  color: #8b949e;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.classic-home .lp-footer-links {
  justify-content: center;
}

body.classic-home .lp-footer-links a,
body.classic-home .footer-links a {
  color: #8b949e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.classic-home .lp-footer-links a:hover,
body.classic-home .footer-links a:hover {
  color: #58a6ff;
}

body.classic-home .lp-footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #30363d;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

body.classic-home .lp-footer-copy {
  color: #484f58;
  font-size: 0.75rem;
}

body.classic-home .footer-pill {
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  background: transparent;
  border: 1px solid #30363d;
  color: #8b949e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.classic-home .footer-note {
  color: #8b949e;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.classic-home .mobile-actionbar {
  background: rgba(13, 17, 23, 0.94);
  border: 1px solid #30363d;
  border-radius: 1rem;
}

body.classic-home .auth-dialog::backdrop {
  background: rgba(3, 3, 8, 0.84);
  backdrop-filter: blur(20px);
}

body.classic-home .auth-shell {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

body.classic-home .dialog-close,
body.classic-home .auth-tabs,
body.classic-home .auth-panel input {
  border-color: rgba(255, 255, 255, 0.08);
}

body.classic-home .dialog-close {
  border-radius: 12px;
}

body.classic-home .auth-tabs {
  border-radius: 16px;
}

body.classic-home .auth-tab {
  min-height: 2.75rem;
  border-radius: 12px;
}

body.classic-home .auth-tab-active {
  background: rgba(79, 172, 254, 0.12);
}

body.classic-home .auth-panel input {
  min-height: 3.25rem;
  border-radius: 14px;
}

@media (min-width: 768px) {
  body.classic-home .lp-footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  body.classic-home .lp-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 860px) {
  body.classic-home .header-shell,
  body.classic-home .section-shell,
  body.classic-home .footer-shell {
    width: min(calc(100% - 2rem), 1200px);
  }

  body.classic-home .site-header.is-open .header-shell {
    padding-bottom: 1rem;
  }

  body.classic-home .site-header.is-open .site-nav,
  body.classic-home .site-header.is-open .header-actions {
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  body.classic-home .hero-section.lp-hero {
    padding: 7.5rem 0 4.5rem;
  }

  body.classic-home .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 12vw, 3.5rem);
  }

  body.classic-home .trust-row span,
  body.classic-home .code-meta span,
  body.classic-home .footer-pill {
    justify-content: center;
  }

  body.classic-home .site-footer.lp-footer {
    padding-bottom: calc(9.5rem + var(--safe-bottom));
  }

  body.classic-home .lp-footer-top,
  body.classic-home .lp-footer-bottom {
    align-items: flex-start;
  }
}

.portal-install-banner {
  position: fixed;
  left: 50%;
  bottom: calc(94px + var(--safe-bottom));
  z-index: 80;
  width: min(calc(100vw - 24px), 28rem);
  display: grid;
  gap: 0.9rem;
  transform: translateX(-50%);
  padding: 1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(130, 149, 214, 0.16);
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.96), rgba(8, 13, 24, 0.88)),
    radial-gradient(circle at top left, rgba(105, 164, 255, 0.14), transparent 32%);
  box-shadow: 0 24px 60px rgba(1, 4, 12, 0.58);
  backdrop-filter: blur(22px);
}

.portal-install-banner__eyebrow {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9d88ff;
}

.portal-install-banner__copy {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.portal-install-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.portal-install-banner__primary,
.portal-install-banner__secondary,
.portal-install-banner__hint {
  min-height: 46px;
}

.portal-install-banner__hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(130, 149, 214, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  font-weight: 700;
}

.app-standalone .site-header {
  padding-top: calc(1.15rem + var(--safe-top));
}

@media (min-width: 860px) {
  .portal-install-banner {
    left: auto;
    right: 24px;
    transform: none;
    width: min(24rem, calc(100vw - 48px));
    bottom: 24px;
  }
}
