

:root {
  color-scheme: dark;
  --bg: #09090c;
  --bg-soft: #101118;
  --bg-elevated: rgba(18, 19, 27, 0.76);
  --bg-elevated-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f6f4ef;
  --muted: rgba(246, 244, 239, 0.72);
  --muted-soft: rgba(246, 244, 239, 0.52);
  --ember: #ff6a13;
  --ember-soft: rgba(255, 106, 19, 0.16);
  --ember-glow: rgba(255, 106, 19, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-deep: 0 28px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.26);
  --blur: blur(22px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 106, 19, 0.16), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 70% 72%, rgba(255, 106, 19, 0.09), transparent 24%),
    linear-gradient(180deg, #07070a 0%, #0b0c11 48%, #09090c 100%);
  color: var(--text);
  font-family: "Instrument Sans", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
}

img {
  display: block;
  max-width: 100%;
}

strong,
b {
  color: var(--text);
}

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

.page-shell {
  position: relative;
}

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

.hero-wide {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0 0;
  transition: padding 220ms ease, background-color 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
}

.topbar.is-scrolled {
  padding: 12px 0 10px;
  background: rgba(8, 8, 11, 0.58);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 16px;
  background: none;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted-soft);
  font-size: 0.86rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a,
.footer-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 180ms ease;
}

.nav-links a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--ember), transparent);
  transition: transform 180ms ease;
}

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

.nav-links a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.hero {
  margin-top: 0;
  padding: 18px 0 24px;
}

.page-hero {
  padding: 42px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

.hero-main,
.hero-side,
.page-hero-card,
.detail-card,
.visual-card,
.pricing-strip,
.cta-band,
.instructions-card,
.legal-card,
.route-card,
.glass-panel {
  position: relative;
}

.hero-main {
  position: relative;
  min-height: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-deep);
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.2), rgba(5, 5, 8, 0.44)),
    linear-gradient(120deg, rgba(255, 106, 19, 0.12), transparent 34%),
    #09090c;
}

.hero-media {
  position: absolute;
  inset: -10% -5% -4%;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.04), rgba(5, 5, 8, 0.82)),
    linear-gradient(110deg, rgba(255, 106, 19, 0.18), transparent 38%),
    url('https://d2xsxph8kpxj0f.cloudfront.net/310519663527961465/kcpEFr6X7ZicuoXLQDMPMA/everest-hero-01_2f288bbc.png') center top / cover no-repeat;
  transform: translateY(-10%) scale(1.26);
  transform-origin: center top;
}

.hero-main::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(56vw, 560px);
  height: min(56vw, 560px);
  background: radial-gradient(circle, rgba(255, 106, 19, 0.24), transparent 62%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 48px);
}

.eyebrow,
.section-label,
.kicker,
.notice-pill,
.tiny-meta,
.card-index {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  backdrop-filter: blur(16px);
}

.hero-copy h1,
.page-title,
.section-title {
  margin: 18px 0 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.1rem, 7vw, 6.1rem);
}

.hero-copy p,
.lead,
.section-copy,
.card-copy,
.instructions-copy,
.legal-copy,
.footer-note {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-copy p {
  max-width: 41rem;
  margin: 22px 0 0;
  font-size: 1.12rem;
}

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

.cta,
.cta-secondary,
.cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.cta {
  background: linear-gradient(135deg, #ff812f 0%, #ff5e00 100%);
  color: #160d08;
  box-shadow: 0 18px 42px rgba(255, 106, 19, 0.28);
}

.cta:hover,
.cta-secondary:hover,
.cta-ghost:hover {
  transform: translateY(-2px);
}

.cta:hover {
  box-shadow: 0 22px 46px rgba(255, 106, 19, 0.36);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.cta-secondary:hover,
.cta-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.cta-ghost {
  background: transparent;
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted-soft);
  font-size: 0.95rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.meta-chip {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 11, 0.52);
  backdrop-filter: blur(16px);
}

.meta-chip > span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 214, 191, 0.72);
}

.meta-chip strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.4;
}

.payment-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 154, 96, 0.22);
  background: rgba(255, 106, 19, 0.1);
  color: rgba(255, 240, 231, 0.96);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.notice-pill {
  color: var(--text);
  background: rgba(255, 106, 19, 0.12);
  border-color: rgba(255, 106, 19, 0.25);
}

.hero-side {
  display: grid;
  gap: 24px;
  grid-template-rows: minmax(0, 1fr) auto;
}

.hero-side-single {
  grid-template-rows: 1fr;
}

@media (min-width: 1081px) {
  .hero-side-single {
    max-width: none;
    justify-self: stretch;
    width: 100%;
  }

  .hero-panel-tall {
    min-height: 340px;
  }

  .panel-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

.glass-panel,
.route-card,
.detail-card,
.visual-card,
.pricing-strip,
.cta-band,
.instructions-card,
.legal-card,
.page-hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  box-shadow: var(--shadow-soft);
  backdrop-filter: var(--blur);
}

.glass-panel {
  min-height: 420px;
}

.hero-panel-tall {
  min-height: 720px;
}

.glass-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,9,12,0.14), rgba(9,9,12,0.65)),
    url('https://d2xsxph8kpxj0f.cloudfront.net/310519663527961465/kcpEFr6X7ZicuoXLQDMPMA/everest-features-02_6d2051ba.png') center/cover no-repeat;
  transform: scale(1.02);
}

.glass-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 56%;
  background: linear-gradient(180deg, transparent, rgba(7,7,10,0.88));
}

.panel-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.panel-metrics {
  display: grid;
  gap: 14px;
}

.metric {
  display: grid;
  gap: 6px;
  border-radius: 22px;
  background: rgba(7, 7, 10, 0.52);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 18px 16px;
}

.metric strong,
.pricing-col strong,
.route-step strong,
.instructions-step h2,
.legal-card h2,
.card-title {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.metric strong {
  font-size: 1.2rem;
}

.metric span,
.pricing-col span,
.route-tag,
.small-copy {
  color: var(--muted-soft);
}

.route-card,
.detail-card,
.instructions-card,
.legal-card,
.pricing-strip,
.cta-band,
.activation-band {
  padding: 28px;
}

.route-card {
  display: grid;
  gap: 16px;
}

.route-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

.route-line:first-of-type {
  border-top: 0;
  padding-top: 4px;
}

.route-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.route-index,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 106, 19, 0.22), rgba(255,255,255,0.06));
  border: 1px solid rgba(255, 106, 19, 0.34);
  color: #ffd6bf;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.86rem;
}

.section {
  padding: 46px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 26px;
}

.section-title {
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
}

.section-copy {
  margin: 0;
  line-height: 1.8;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.stagger-stack,
.instructions-list,
.legal-list {
  display: grid;
  gap: 20px;
}

.detail-card {
  padding: 28px;
}

.card-title {
  margin: 18px 0 0;
  font-size: 1.5rem;
  line-height: 1.18;
}

.card-copy {
  margin: 14px 0 0;
}

.visual-card {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(8,8,11,0.18), rgba(8,8,11,0.84)),
    url('https://d2xsxph8kpxj0f.cloudfront.net/310519663527961465/kcpEFr6X7ZicuoXLQDMPMA/everest-features-02_6d2051ba.png') center/cover no-repeat;
}

.visual-overlay {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}

.price-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: rgba(255, 106, 19, 0.14);
  border: 1px solid rgba(255, 106, 19, 0.28);
  padding: 12px 16px;
}

.price-chip strong {
  font-family: "JetBrains Mono", monospace;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.activation-section {
  padding-top: 12px;
}

.activation-inline {
  display: grid;
  grid-template-columns: minmax(110px, 0.24fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.activation-inline--simple {
  display: block;
  width: 100%;
  max-width: none;
}

.activation-route {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  padding-top: 6px;
}

.activation-route::after {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 129, 61, 0), rgba(255, 129, 61, 0.7) 24%, rgba(255, 129, 61, 0.16) 100%);
}

.activation-route-label,
.activation-route-minutes {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding-left: 52px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.activation-route-label {
  font-size: 0.74rem;
  color: rgba(246, 244, 239, 0.58);
}

.activation-route-minutes {
  font-size: 0.88rem;
  color: rgba(246, 244, 239, 0.72);
}

.activation-route strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: 0.92;
  color: var(--text);
}

.activation-route strong::before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 1px solid rgba(255, 129, 61, 0.38);
  background: radial-gradient(circle at 30% 30%, rgba(255, 129, 61, 0.36), rgba(255, 129, 61, 0.08));
  box-shadow: 0 0 0 10px rgba(255, 129, 61, 0.08);
}

.activation-content {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0;
}

.activation-content--simple {
  width: 100%;
  max-width: none;
  padding-top: 0;
}

.activation-content--simple .section-label,
.activation-content--simple .section-title,
.activation-content--simple .section-copy,
.activation-content--simple .activation-actions {
  width: 100%;
  max-width: none;
}

.activation-content::before,
.activation-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 129, 61, 0.6), rgba(255, 255, 255, 0.07));
}

.activation-content::before {
  margin: 0 0 24px;
}

.activation-content::after {
  margin: 22px 0 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 129, 61, 0.38));
}

.activation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding-top: 22px;
}

.activation-cta {
  width: fit-content;
  max-width: 100%;
  justify-content: center;
}

.activation-note {
  color: var(--muted);
  line-height: 1.7;
}

.pricing-col {
  display: grid;
  gap: 10px;
  border-radius: 22px;
  background: rgba(7,7,10,0.34);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(255, 106, 19, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.mobile-cta {
  display: none !important;
}

.mobile-cta > * {
  flex: 1;
}

.page-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.66fr);
  gap: 0;
}

.page-hero-copy {
  padding: clamp(28px, 4vw, 42px);
}

.page-title {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
}

.page-hero-visual {
  min-height: 420px;
  background-position: center;
  background-size: cover;
}

.instruction-flow {
  display: grid;
  gap: 20px;
}

.instruction-card-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 272px);
  gap: 18px;
  align-items: start;
}

.shot-placeholder {
  min-height: 220px;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    linear-gradient(135deg, rgba(255, 106, 19, 0.08), transparent 58%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  color: var(--muted-soft);
}

.shot-placeholder strong {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.instructions-layout,
.legal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.instructions-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.instructions-step h2,
.legal-card h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.16;
}

.instructions-step h2 {
  margin-bottom: 12px;
}

.legal-card h2 {
  margin-bottom: 10px;
}

.list-points {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.list-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 6px rgba(255, 106, 19, 0.12);
}

.footer {
  padding: 34px 0 52px;
}

.footer-shell {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  flex-wrap: wrap;
}

.footer-brandline {
  min-width: 0;
  flex: 1 1 34rem;
  display: flex;
  align-items: center;
  gap: 18px 20px;
  flex-wrap: wrap;
}

.footer-brand {
  gap: 14px;
  flex: 0 0 auto;
}

.footer-brand .brand-copy span {
  color: rgba(246, 244, 239, 0.7);
}

.footer-note {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
}

.footer-links a,
.footer-meta {
  color: var(--muted);
}

.footer-links a {
  transition: color 180ms ease, opacity 180ms ease;
}

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

.footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.footer-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.footer-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 19, 0.28);
  background: rgba(255, 106, 19, 0.1);
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  align-items: center;
}

.footer-meta {
  font-size: 0.9rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: min(420px, calc(100% - 28px));
  border-radius: 18px;
  border: 1px solid rgba(255, 106, 19, 0.22);
  background: rgba(8, 8, 11, 0.84);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  padding: 15px 18px;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: transform 200ms ease, opacity 200ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1080px) {
  .hero-grid,
  .section-grid,
  .section-head,
  .pricing-grid,
  .page-hero-card,
  .instructions-layout,
  .instruction-card-split,
  .legal-layout,
  .footer-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .activation-inline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .activation-inline--simple {
    max-width: none;
  }

  .activation-route {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "label minutes"
      "number number";
    align-items: end;
    gap: 8px 14px;
    padding-top: 0;
  }

  .activation-route::after {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: none;
    opacity: 0.82;
  }

  .activation-route-label,
  .activation-route-minutes {
    padding-left: 0;
    padding-right: 0;
    background: linear-gradient(180deg, rgba(9, 9, 12, 0.94), rgba(9, 9, 12, 0.72));
  }

  .activation-route-label {
    grid-area: label;
  }

  .activation-route-minutes {
    grid-area: minutes;
    justify-self: end;
  }

  .activation-route strong {
    grid-area: number;
    font-size: clamp(2.9rem, 18vw, 4.1rem);
    padding: 0 0 10px;
    background: none;
  }

  .activation-route strong::before {
    width: 42px;
    height: 42px;
  }

  .activation-content {
    padding-top: 0;
  }

  .activation-content--simple {
    padding-top: 0;
  }

  .activation-actions {
    gap: 12px;
    margin-top: 22px;
    padding-top: 18px;
  }

  .activation-cta {
    width: 100%;
  }

  .page-hero-card {
  min-height: 620px;
  }

  .hero-panel-tall {
    min-height: 420px;
  }

  .page-hero-visual {
    min-height: 300px;
  }

  .footer-row {
    align-items: flex-start;
  }

  .footer-brandline,
  .footer-links,
  .footer-actions {
    width: 100%;
  }

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

  .footer-actions {
    margin-left: 0;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    position: relative;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 11, 0.92);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero,
  .page-hero {
    padding-top: 18px;
  }

  .hero-wide {
    width: min(100% - 20px, 1180px);
  }

  .hero-main {
    min-height: 520px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .page-title,
  .section-title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .route-line,
  .instructions-step {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .route-line {
    display: grid;
  }

  .footer {
    padding-bottom: 48px;
  }

  .footer-shell {
    border-radius: 26px;
    padding: 24px 20px 20px;
  }

  .footer-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    padding: 14px 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .hero-main,
  .glass-panel,
  .route-card,
  .detail-card,
  .visual-card,
  .pricing-strip,
  .cta-band,
  .instructions-card,
  .legal-card,
  .page-hero-card {
    border-radius: 24px;
  }

  .route-card,
  .detail-card,
  .instructions-card,
  .legal-card,
  .pricing-strip,
  .cta-band,
  .activation-band,
  .visual-overlay {
    padding: 22px;
  }

  .activation-side {
    padding: 22px;
  }

  .activation-section {
    padding-top: 4px;
  }

  .activation-inline {
    gap: 14px;
  }

  .activation-inline--simple {
    width: 100%;
    max-width: none;
    gap: 0;
  }

  .activation-content {
    padding-top: 0;
  }

  .activation-content::before,
  .activation-content::after {
    position: static;
    display: block;
    width: 100%;
  }

  .activation-content::before {
    margin: 0 0 24px;
  }

  .activation-content::after {
    margin: 22px 0 0;
  }

  .activation-content--simple {
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .activation-content--simple > * {
    width: 100%;
    max-width: none;
  }

  .activation-route {
    grid-template-columns: auto auto minmax(0, 1fr);
    grid-template-areas:
      "label label label"
      "number minutes .";
    align-items: end;
    justify-content: start;
    gap: 4px 10px;
    padding-bottom: 14px;
  }

  .activation-route::after {
    left: 0;
    right: 0;
    width: auto;
  }

  .activation-route-label,
  .activation-route-minutes {
    padding: 0;
    background: none;
  }

  .activation-route-label {
    margin-bottom: 4px;
    font-size: 0.66rem;
  }

  .activation-route-minutes {
    justify-self: start;
    align-self: end;
    padding-bottom: 7px;
    font-size: 0.82rem;
  }

  .activation-route strong {
    gap: 12px;
    padding-bottom: 4px;
    font-size: clamp(2.4rem, 17vw, 3.2rem);
  }

  .activation-route strong::before {
    width: 34px;
    height: 34px;
    box-shadow: 0 0 0 7px rgba(255, 129, 61, 0.08);
  }

  .activation-content .section-label {
    max-width: 24ch;
    line-height: 1.35;
  }

  .activation-content .section-title {
    margin-top: 12px;
    max-width: 13ch;
    font-size: clamp(1.56rem, 7.8vw, 2rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .activation-content .section-copy {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .activation-content--simple .section-label {
    max-width: none;
    margin-top: 0;
  }

  .activation-content--simple .section-title {
    width: 100%;
    max-width: none;
    margin-top: 14px;
    font-size: clamp(1.5rem, 7.4vw, 1.9rem);
    line-height: 1.08;
  }

  .activation-content--simple .section-copy {
    width: 100%;
    max-width: none;
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .activation-content--simple::before {
    left: 0;
    right: 0;
  }

  .activation-actions {
    margin-top: 18px;
    padding-top: 16px;
  }

  .hero-copy {
    padding: 24px;
  }

  .cta,
  .cta-secondary,
  .cta-ghost {
    width: 100%;
  }

  .hero-note {
    font-size: 0.9rem;
  }

  .meta-chip {
    width: 100%;
    min-width: 0;
  }

  .route-index,
  .step-number {
    width: 42px;
    height: 42px;
  }

  .toast {
    right: 10px;
    left: 10px;
    bottom: 10px;
    max-width: none;
  }
}

@media (max-width: 390px) {
  .activation-inline--simple,
  .activation-content--simple,
  .activation-content--simple .section-label,
  .activation-content--simple .section-title,
  .activation-content--simple .section-copy,
  .activation-actions {
    width: 100%;
    max-width: none;
  }

  .activation-route {
    gap: 4px 9px;
  }

  .activation-route strong {
    font-size: clamp(2.2rem, 16vw, 2.8rem);
  }

  .activation-route-minutes {
    padding-bottom: 6px;
  }

  .activation-content .section-title {
    max-width: 12.5ch;
    font-size: clamp(1.48rem, 7.6vw, 1.82rem);
  }

  .activation-content .section-copy {
    font-size: 0.93rem;
    line-height: 1.62;
  }

  .activation-content--simple .section-title {
    max-width: none;
    font-size: clamp(1.42rem, 7.2vw, 1.74rem);
    line-height: 1.1;
  }

  .activation-content--simple .section-copy {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

.instruction-hero-card {
  overflow: hidden;
  grid-template-columns: 1fr;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 84% 12%, rgba(255, 106, 19, 0.18), transparent 36%);
}

.instruction-hero-card .page-hero-copy {
  max-width: 900px;
}

.instruction-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.instruction-platforms span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.instruction-step-body {
  display: grid;
  gap: 14px;
}

.instructions-copy {
  max-width: 62ch;
}

.instructions-copy a {
  color: #ffb17d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.instructions-copy strong,
.instruction-note strong {
  color: var(--text);
}

.instruction-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 106, 19, 0.14);
  background: linear-gradient(180deg, rgba(255, 106, 19, 0.1), rgba(255, 106, 19, 0.04));
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.instruction-shot-shell {
  position: relative;
  min-height: 100%;
  width: min(100%, 272px);
  margin: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  border: none;
  background: none;
  overflow: visible;
  box-shadow: none;
}

.instruction-shot-shell::after {
  content: none;
}

.instruction-shot-shell img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 456px;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  border: none;
  box-shadow: none;
}

.instruction-shot-shell figcaption {
  position: relative;
  z-index: 1;
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.instruction-finish-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 100% 0, rgba(255, 106, 19, 0.18), transparent 42%);
}

@media (max-width: 1080px) {
  .instruction-card-split {
    grid-template-columns: 1fr;
  }

  .instruction-shot-shell {
    width: min(100%, 304px);
    margin: 0 auto;
    justify-self: center;
  }
}

@media (max-width: 820px) {
  .instruction-platforms span {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 560px) {
  .instruction-platforms {
    gap: 8px;
  }

  .instruction-platforms span {
    flex: 1 1 calc(50% - 8px);
    min-height: 38px;
    font-size: 0.84rem;
  }

  .instruction-shot-shell {
    width: min(100%, 304px);
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
  }

  .instruction-shot-shell img {
    max-height: 392px;
    border-radius: 16px;
  }

  .instruction-note {
    font-size: 0.92rem;
  }
}

.access-helper-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 106, 19, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.access-helper-intro {
  display: grid;
  gap: 12px;
}

.access-helper-kicker,
.access-modal-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 19, 0.2);
  background: rgba(255, 106, 19, 0.08);
  color: #ffd5bf;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.access-helper-intro h2,
.access-inline-state h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.access-helper-intro h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
}

.access-helper-button {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  color: var(--text);
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.access-helper-button:hover,
.access-helper-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 19, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(0, 0, 0, 0.16);
}

.access-helper-button-copy {
  display: grid;
  gap: 5px;
}

.access-helper-button-copy strong {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.access-helper-button-copy small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.access-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}

.access-modal[hidden] {
  display: none;
}

.access-modal.is-open {
  animation: accessModalFade 220ms ease;
}

.access-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 9, 0.6);
  backdrop-filter: blur(4px);
}

.access-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100vw - 28px));
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(20, 21, 27, 0.98), rgba(12, 13, 18, 0.98));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: accessModalRise 220ms ease;
}

.access-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.access-modal-close:hover,
.access-modal-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 19, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.access-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 241, 232, 0.92);
}

.access-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.access-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.access-modal-content {
  display: grid;
  padding-right: 34px;
}

.access-inline-state {
  display: grid;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.access-inline-state h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.access-loader {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.access-loader span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb17d 0%, #ff6a13 100%);
  box-shadow: 0 10px 24px rgba(255, 106, 19, 0.28);
  animation: accessPulse 1.2s ease-in-out infinite;
}

.access-loader span:nth-child(2) {
  animation-delay: 0.15s;
}

.access-loader span:nth-child(3) {
  animation-delay: 0.3s;
}

.access-loader-copy {
  margin: 0;
  color: #ffe4d4;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.95rem;
}

.access-link-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: center;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.access-link-meta {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.access-link-label {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-link-value {
  display: block;
  overflow-wrap: anywhere;
  margin: 0 auto;
  max-width: min(100%, 34rem);
  text-align: center;
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.94rem;
  line-height: 1.7;
}

.access-copy-button {
  min-width: 220px;
}

body.access-modal-open {
  overflow: hidden;
}

@keyframes accessPulse {
  0%,
  100% {
    transform: translateY(0) scale(0.92);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-3px) scale(1);
    opacity: 1;
  }
}

@keyframes accessModalFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes accessModalRise {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 820px) {
  .access-link-card {
    grid-template-columns: 1fr;
  }

  .access-copy-button,
  .access-helper-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .access-helper-card,
  .access-modal-dialog {
    padding: 22px 18px;
    border-radius: 26px;
  }

  .access-modal-content {
    padding-right: 0;
    padding-top: 34px;
  }

  .access-modal-close {
    width: 38px;
    height: 38px;
  }
}

.legal-document-page-shell {
  min-height: 100vh;
}

.legal-document-page {
  padding: 28px 0 34px;
}

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

.legal-document-header {
  padding: clamp(16px, 2vw, 24px) 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-document-title {
  margin: 18px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.legal-document-lead {
  max-width: 56rem;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
}

.legal-document-meta {
  margin-top: 22px;
}

.legal-document-body {
  padding: 22px 0 8px;
}

.legal-document-body section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-document-body section:last-child {
  border-bottom: 0;
}

.legal-document-body h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.legal-document-body p,
.legal-document-body li {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.84;
}

.legal-document-body p + p,
.legal-document-body p + ul,
.legal-document-body ul + p,
.legal-document-body ul + ul,
.legal-document-body ol + p,
.legal-document-body p + ol,
.legal-document-body li + li {
  margin-top: 14px;
}

.legal-document-body ul,
.legal-document-body ol {
  margin: 14px 0 0;
  padding-left: 1.2rem;
}

.legal-document-body a {
  color: #ffd4b8;
  text-decoration: underline;
  text-decoration-color: rgba(255, 106, 19, 0.45);
  text-underline-offset: 0.18em;
}

.legal-document-body a:hover {
  color: var(--text);
  text-decoration-color: rgba(255, 106, 19, 0.9);
}

@media (max-width: 820px) {
  .legal-document-page {
    padding: 18px 0 24px;
  }

  .legal-document-shell {
    width: min(920px, calc(100% - 28px));
  }

  .legal-document-header {
    padding-bottom: 22px;
  }

  .legal-document-body section {
    padding: 22px 0;
  }

  .legal-document-body p,
  .legal-document-body li,
  .legal-document-lead {
    font-size: 0.97rem;
    line-height: 1.74;
  }
}
