:root {
  --bg: #06111f;
  --bg-soft: rgba(11, 22, 39, 0.92);
  --panel: rgba(12, 24, 42, 0.92);
  --panel-strong: rgba(17, 31, 55, 0.98);
  --border: rgba(148, 163, 184, 0.16);
  --text: #f6fbff;
  --muted: #a9b7c8;
  --primary: #ff6a18;
  --primary-strong: #ff8c4a;
  --accent: #37c8ff;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 24, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(55, 200, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #050c17 0%, #091629 45%, #050b15 100%);
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.ambient {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.42;
  pointer-events: none;
}

.ambient-left {
  top: -140px;
  left: -120px;
  background: rgba(255, 106, 24, 0.26);
}

.ambient-right {
  top: 120px;
  right: -140px;
  background: rgba(55, 200, 255, 0.2);
}

.download-nav,
.download-layout {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.download-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 8px;
}

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

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(255, 106, 24, 0.28);
}

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

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span,
.nav-link,
.download-status,
.download-note,
.package-copy p,
.feature-list,
.package-stat .stat-label,
.stat-card p,
.step-card p {
  color: var(--muted);
}

.nav-link {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  border-color: rgba(55, 200, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.download-layout {
  padding: 28px 0 64px;
}

.hero-panel,
.content-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(11, 22, 39, 0.92) 0%, rgba(8, 17, 30, 0.96) 100%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 30px;
  padding: 34px;
  border-radius: 32px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.success-pill,
.download-badge,
.eyebrow,
.stat-label,
.step-number {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.success-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(55, 200, 255, 0.24);
  border-radius: 999px;
  background: rgba(55, 200, 255, 0.08);
  color: #d4f6ff;
}

.success-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #31e883;
  box-shadow: 0 0 16px rgba(49, 232, 131, 0.7);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #d9e7f3;
}

.download-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.download-badge {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  color: #dbefff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trial-trail-warn {
  margin: 0 0 16px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 150, 80, 0.45);
  background: rgba(255, 120, 40, 0.1);
  color: #ffe8d4;
  font-size: 0.95rem;
  line-height: 1.55;
}

.trial-trail-warn strong {
  color: #ffb090;
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
  align-items: center;
}

.trial-windows-soon {
  margin: 0;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 200, 120, 0.35);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
  width: 100%;
  max-width: 100%;
  flex: 1 1 100%;
}

.trial-windows-soon strong {
  color: #ffd8a8;
  font-weight: 700;
}

@media (min-width: 700px) {
  .trial-windows-soon {
    flex: 0 1 auto;
    width: auto;
  }
}

.stat-card--muted {
  opacity: 0.8;
}

.download-button {
  min-width: 220px;
  padding: 16px 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.download-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #08111d;
  box-shadow: 0 18px 36px rgba(255, 106, 24, 0.26);
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(255, 106, 24, 0.32);
}

.download-button--outline {
  background: rgba(55, 200, 255, 0.08);
  border-color: rgba(55, 200, 255, 0.35);
  color: #e8f7ff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.download-button--outline:hover {
  transform: translateY(-2px);
  border-color: rgba(55, 200, 255, 0.55);
  background: rgba(55, 200, 255, 0.14);
  box-shadow: 0 18px 36px rgba(55, 200, 255, 0.12);
}

.download-button.is-disabled,
span.download-button.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
  filter: grayscale(0.2);
  box-shadow: none;
}

.download-button.is-disabled:hover,
span.download-button.is-disabled:hover {
  transform: none;
}

.download-status,
.download-note {
  line-height: 1.7;
}

.download-note--legacy {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.download-status {
  margin-bottom: 10px;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-image-card,
.stat-card,
.package-stat,
.step-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.hero-image-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 20px;
  border-radius: 28px;
}

.hero-image {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}

.hero-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat-card {
  padding: 20px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.stat-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.52;
}

.stat-card p + p {
  margin-top: 0.5rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.content-card {
  padding: 28px;
  border-radius: 28px;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  letter-spacing: -0.04em;
}

.package-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.package-grid {
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: start;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.8;
}

.package-stats {
  display: grid;
  gap: 14px;
}

.package-stat {
  padding: 18px;
  border-radius: 20px;
}

.package-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
}

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

.step-card {
  padding: 22px;
  border-radius: 22px;
}

.step-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
}

.step-card h3 {
  margin-bottom: 10px;
}

@media (max-width: 960px) {
  .hero-panel,
  .content-grid,
  .package-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    min-height: 300px;
  }
}

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

.nav-link--quiet {
  border-style: dashed;
  opacity: 0.92;
}

.nav-link--quiet:hover {
  opacity: 1;
}

.hero-panel--hub {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
  margin: 0 auto;
}

.hero-copy--hub {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.lead--hub {
  max-width: 520px;
}

.hero-visual--hub {
  max-width: 400px;
  margin: 0 auto;
}

.hero-visual--hub .hero-image-card {
  min-height: 260px;
}

.platform-pick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 640px;
  margin-top: 8px;
}

.platform-pick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 22px 20px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.platform-pick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 24, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.platform-pick-card--alt:hover {
  border-color: rgba(55, 200, 255, 0.45);
}

.platform-pick-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.platform-pick-card--alt .platform-pick-label {
  color: var(--primary-strong);
}

.platform-pick-title {
  font-size: 1.15rem;
  color: var(--text);
}

.platform-pick-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.platform-pick-cta {
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

.platform-pick-card--alt .platform-pick-cta {
  color: var(--primary-strong);
}

.download-note--hub {
  margin-top: 28px;
  max-width: 480px;
}

.package-copy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.package-copy a:hover {
  color: var(--primary-strong);
}

@media (max-width: 640px) {
  .platform-pick-grid {
    grid-template-columns: 1fr;
  }

  .download-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .download-layout {
    padding-top: 20px;
  }

  .hero-panel,
  .content-card {
    padding: 22px;
    border-radius: 24px;
  }

  .cta-row {
    width: 100%;
  }

  .download-button {
    width: 100%;
    min-width: 0;
  }
}
