:root {
  --page-inline: max(1.5rem, env(safe-area-inset-left, 0px));
  --page-inline-right: max(1.5rem, env(safe-area-inset-right, 0px));
  --accent: #64cefb;
}

@font-face {
  font-family: 'Styrene A LC';
  src: url('../fonts/styrenealc-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Styrene A LC';
  src: url('../fonts/styrenealc-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Styrene A LC';
  src: url('../fonts/styrenealc-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Styrene A LC';
  src: url('../fonts/styrenealc-black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Styrene A LC', Inter, sans-serif;
  letter-spacing: -0.03em;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(100, 206, 251, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(100, 206, 251, 0.08), transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #000 40%);
}

.page-shell {
  width: min(52rem, 100%);
  margin: 0 auto;
  padding: 1.25rem var(--page-inline-right) 4rem var(--page-inline);
}

.page-top {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding-top: 0.35rem;
  padding-right: 3.25rem;
}

.page-back {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  backdrop-filter: blur(14px) saturate(1.15);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.page-back .material-symbols-outlined {
  font-size: 1.35rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.18s ease;
}

.page-back:hover {
  color: #fff;
  border-color: rgba(100, 206, 251, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.page-back:hover .material-symbols-outlined {
  transform: translateX(-2px);
}

.page-back:active {
  transform: scale(0.98);
}

.page-menu-btn {
  position: fixed;
  top: max(0.75rem, env(safe-area-inset-top));
  right: max(0.75rem, env(safe-area-inset-right));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
  color: #fff;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  -webkit-tap-highlight-color: transparent;
}

.page-menu-btn .material-symbols-outlined {
  font-size: 1.125rem;
  line-height: 1;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

body.has-overlay-open {
  overflow: hidden;
}

.sections-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.sections-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sections-overlay-panel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 70% 45% at 15% 0%, rgba(100, 206, 251, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(100, 206, 251, 0.08), transparent 50%),
    #050505;
  padding:
    max(1.25rem, env(safe-area-inset-top))
    max(1.5rem, env(safe-area-inset-right))
    max(2rem, env(safe-area-inset-bottom))
    max(1.5rem, env(safe-area-inset-left));
  transform: translate3d(0, 0.75rem, 0);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}

.sections-overlay.is-open .sections-overlay-panel {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.sections-overlay-close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.sections-overlay-panel nav {
  display: flex;
  flex-direction: column;
  max-width: 36rem;
  width: 100%;
  margin: 0;
  padding-top: 0.25rem;
  padding-right: 3.25rem;
}

.sections-overlay-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Styrene A LC', Inter, sans-serif;
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: color 0.15s ease;
}

.sections-overlay-link:hover {
  color: var(--accent);
}

.sections-overlay-link-sub {
  padding: 0.55rem 0.15rem 0.55rem 0.35rem;
  font-size: clamp(1rem, 3.2vw, 1.25rem);
  font-weight: 600;
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

.sections-overlay-link:last-child {
  border-bottom: 0;
}

.menu-wip-crane {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.sections-overlay-link-sub .menu-wip-crane {
  font-size: 0.75rem;
}

.menu-wip-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.22rem 0.45rem;
  border-radius: 0.25rem;
  background: #f5c518;
  color: #111;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  transform: rotate(-6deg);
}

.page-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.page-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.page-nav a:hover,
.page-nav a.is-active {
  color: #001f2a;
  background: var(--accent);
  border-color: var(--accent);
}

.page-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-title {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
}

.page-lead {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.page-price {
  margin: 1.75rem 0 0;
  font-family: 'Styrene A LC', Inter, sans-serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.page-meta {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.page-block {
  margin-top: 2.25rem;
}

.page-block h2 {
  margin: 0 0 0.85rem;
  font-size: 1.125rem;
  font-weight: 800;
}

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

.page-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 1.1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.page-list li strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #fff;
  font-weight: 700;
}

.track-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .track-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.track-link {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.35rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.track-link:hover {
  border-color: rgba(100, 206, 251, 0.4);
  background: rgba(100, 206, 251, 0.06);
  transform: translateY(-1px);
}

.track-link-num {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--accent);
}

.track-link h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.track-link p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.track-link-price {
  margin-top: 0.35rem;
  font-family: 'Styrene A LC', Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}

.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.page-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 9999px;
  background: var(--accent);
  color: #001f2a;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.subnav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.subnav::-webkit-scrollbar {
  display: none;
}

.subnav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.subnav a:hover {
  color: #fff;
}

.subnav a.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(228, 228, 231, 0.16) 48%,
    rgba(161, 161, 170, 0.12) 100%
  );
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  backdrop-filter: blur(14px) saturate(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 2px 12px rgba(0, 0, 0, 0.12),
    0 6px 22px rgba(0, 0, 0, 0.16);
}

.outcomes-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.outcome-card {
  display: flex;
  gap: 0.9rem;
  padding: 1.1rem 1.15rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.outcome-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: rgba(100, 206, 251, 0.1);
  color: var(--accent);
}

.outcome-icon .material-symbols-outlined {
  font-size: 1.25rem !important;
}

.outcome-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.outcome-card p {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.legal-prose {
  margin-top: 2rem;
}

.legal-prose section + section {
  margin-top: 2.25rem;
}

.legal-prose h2 {
  margin: 0 0 0.85rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.legal-prose p,
.legal-prose li {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.legal-prose ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.legal-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(100, 206, 251, 0.4);
}

.legal-prose a:hover {
  color: #8ddcf9;
}

.legal-prose code {
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 0.25rem;
}

.legal-updated {
  margin-top: 2.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.site-footer-nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer-nav a:hover,
.site-footer-nav a[aria-current="page"] {
  color: var(--accent);
}
