/* Voyage AI landing page production stylesheet */

:root {
  --bg: #05070f;
  --bg-deep: #070c1a;
  --surface: rgba(7, 14, 28, 0.86);
  --surface-strong: rgba(7, 12, 24, 0.96);
  --surface-soft: rgba(12, 22, 43, 0.76);
  --line: rgba(109, 151, 230, 0.18);
  --line-strong: rgba(99, 162, 255, 0.34);
  --text: #f6f8ff;
  --muted: #99a7c8;
  --blue: #2b88ff;
  --cyan: #38d6ff;
  --gold: #f2b452;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1220px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(56, 214, 255, 0.11), transparent 20%),
    radial-gradient(circle at 86% 14%, rgba(43, 136, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 76%, rgba(242, 180, 82, 0.09), transparent 20%),
    linear-gradient(180deg, #04070f 0%, #07101d 44%, #05070f 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: black;
  color: #03111f;
  font-weight: 800;
  transform: translateY(-120%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

button,
a,
img,
video {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.ambient {
  position: fixed;
  z-index: -3;
  pointer-events: none;
  filter: blur(52px);
  opacity: 0.9;
}

.ambient-one {
  top: 120px;
  left: -110px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(43, 136, 255, 0.24), transparent 68%);
  animation: float-cloud 18s ease-in-out infinite;
}

.ambient-two {
  right: -110px;
  bottom: 100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(242, 180, 82, 0.18), transparent 68%);
  animation: float-cloud 20s ease-in-out infinite reverse;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(112, 145, 210, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 145, 210, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 50% 22%, rgba(0, 0, 0, 0.96), transparent 76%);
}

.site-header,
.section,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(120, 152, 216, 0.15);
  border-radius: 999px;
  background: rgba(5, 10, 20, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(56, 214, 255, 0.78);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #03111f;
  background: linear-gradient(135deg, #f2bf64 0%, #38d6ff 48%, #2b88ff 100%);
  box-shadow: 0 16px 34px rgba(43, 136, 255, 0.22);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border-color: rgba(118, 150, 214, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost {
  min-height: 42px;
  padding: 0 16px;
}

.section {
  padding: 110px 0;
}

.section[id],
#main-content {
  scroll-margin-top: 132px;
}

.error-page {
  display: grid;
  min-height: calc(100vh - 136px);
  place-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.error-shell {
  position: relative;
  width: min(760px, 100%);
  padding: 48px;
  overflow: hidden;
  border: 1px solid rgba(118, 150, 214, 0.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(56, 214, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(8, 15, 29, 0.92), rgba(5, 9, 19, 0.96));
  box-shadow: var(--shadow);
  text-align: center;
}

.error-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.error-orbit-one {
  top: -86px;
  left: -34px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(56, 214, 255, 0.22);
}

.error-orbit-two {
  right: -88px;
  bottom: -96px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(242, 180, 82, 0.18);
}

.error-code {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, rgba(242, 191, 100, 0.96), rgba(56, 214, 255, 0.98), rgba(43, 136, 255, 0.96));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-shell h1 {
  margin: 18px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.error-text {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.74;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.error-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.error-meta span {
  padding: 10px 14px;
  border: 1px solid rgba(118, 150, 214, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #dbe7ff;
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .error-shell {
    padding: 34px 22px;
  }

  .error-page {
    min-height: calc(100vh - 112px);
    padding-top: 36px;
  }
}

.hero {
  min-height: calc(100vh - 110px);
  padding-top: 74px;
}

.hero-shell {
  position: relative;
  display: grid;
  gap: 54px;
  padding: 0;
}

.hero-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-intro .eyebrow {
  justify-content: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 18px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(116, 149, 214, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #d8e8ff;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #c8dcff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(56, 214, 255, 0.9), rgba(242, 180, 82, 0.82));
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.analysis-card h3,
.testimonial-card h3,
.journey-card h3,
.download-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 11ch;
  margin-inline: auto;
  font-size: clamp(3.8rem, 7vw, 7rem);
  line-height: 0.92;
}

.hero-text,
.section-heading p,
.showcase-copy p,
.journey-card p,
.analysis-card p,
.testimonial-card p,
.download-copy p,
.detail-item span,
.screen-card figcaption {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 760px;
  margin: 22px 0 0;
  margin-inline: auto;
  font-size: 1.08rem;
  text-align: center;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(115, 148, 213, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #dde8ff;
  font-size: 0.9rem;
}

.download-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.download-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(115, 148, 213, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #dde8ff;
  font-size: 0.92rem;
}

.hero-stage {
  position: relative;
  min-height: auto;
  margin-top: 0;
  padding: 0;
}

.hero-stage-surface,
.journey-card,
.screen-card,
.analysis-card,
.testimonial-card,
.faq-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(112, 146, 214, 0.15);
  background:
    linear-gradient(180deg, rgba(14, 25, 48, 0.34), rgba(7, 12, 24, 0.92)),
    rgba(7, 12, 24, 0.9);
  box-shadow: var(--shadow);
}

.hero-stage-surface {
  --mouse-x: 72%;
  --mouse-y: 24%;
  --track-x: 0px;
  --track-y: 0px;
  width: min(1120px, calc(100% - 48px));
  min-height: 650px;
  margin: 0 auto;
  border-radius: 42px;
}

.hero-stage-surface::before,
.journey-card::before,
.analysis-card::before,
.testimonial-card::before,
.faq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56, 214, 255, 0.08), transparent 44%, rgba(242, 180, 82, 0.06));
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.08) brightness(0.94);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 14, 0.1), rgba(4, 7, 14, 0.82)),
    linear-gradient(90deg, rgba(4, 7, 14, 0.46) 0%, rgba(4, 7, 14, 0.1) 46%, rgba(4, 7, 14, 0.32) 100%),
    radial-gradient(circle at 82% 20%, rgba(56, 214, 255, 0.22), transparent 26%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.16;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.8));
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(56, 214, 255, 0.22), transparent 13%),
    radial-gradient(circle at calc(var(--mouse-x) + 10%) calc(var(--mouse-y) + 10%), rgba(242, 180, 82, 0.1), transparent 16%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

.hero-video-caption,
.hero-command,
.hero-panel {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(120, 153, 216, 0.16);
  background: rgba(6, 10, 20, 0.7);
  backdrop-filter: blur(16px);
}

.hero-video-caption {
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #deebff;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-stage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #62f2ff, #2b88ff);
  box-shadow: 0 0 0 6px rgba(56, 214, 255, 0.12);
}

.hero-panel {
  display: grid;
  gap: 8px;
  width: min(240px, calc(100% - 64px));
  padding: 16px 18px;
  border-radius: 24px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
}

.hero-panel-label {
  color: #aecaee;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-panel small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-panel-left {
  left: 28px;
  top: 96px;
  transform: translate(calc(var(--track-x) * -0.08), calc(var(--track-y) * 0.04));
}

.hero-panel-right {
  right: 28px;
  top: 72px;
  transform: translate(calc(var(--track-x) * 0.08), calc(var(--track-y) * -0.06));
}

.hero-command {
  left: 50%;
  top: 46%;
  width: min(620px, calc(100% - 140px));
  padding: 16px;
  border-radius: 26px;
  transform: translate(-50%, -50%) translate(calc(var(--track-x) * 0.18), calc(var(--track-y) * 0.18));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.hero-command-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-command-brand,
.hero-command-key {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(121, 154, 219, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.hero-command-brand {
  color: #dbe9ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-command-key {
  color: #b9d2ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-command-search {
  display: flex;
  align-items: center;
  min-height: 68px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(121, 154, 219, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.hero-command-placeholder {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.hero-command-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.hero-command-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(121, 154, 219, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.hero-command-row.is-active {
  background: linear-gradient(135deg, rgba(56, 214, 255, 0.14), rgba(43, 136, 255, 0.12));
  border-color: rgba(121, 154, 219, 0.24);
}

.hero-command-text strong,
.journey-card h3,
.detail-item strong,
.download-copy h2,
.analysis-card h3 {
  display: block;
}

.hero-command-text strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-command-text small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-command-row kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid rgba(121, 154, 219, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #dbe8ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-metric-rail {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-metric-card {
  min-height: 112px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(120, 153, 216, 0.16);
  background: rgba(6, 10, 20, 0.64);
  backdrop-filter: blur(16px);
}

.hero-metric-card span {
  color: #aecaee;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-metric-card strong {
  display: block;
  margin-top: 10px;
  color: #eef4ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.hero-stage-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 14px;
  color: #dbe9ff;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-stage-chip-left {
  left: 32px;
  top: 50%;
  transform: translate(calc(var(--track-x) * -0.08), calc(var(--track-y) * 0.1));
}

.hero-stage-chip-right {
  right: 32px;
  top: 34%;
  transform: translate(calc(var(--track-x) * -0.08), calc(var(--track-y) * -0.1));
}

.hero-stage-chip-bottom {
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 0) translate(calc(var(--track-x) * 0.08), calc(var(--track-y) * -0.08));
}

.hero-key-row {
  position: absolute;
  left: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 40px));
}

.hero-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(121, 154, 219, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #d3e5ff;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-key-row-top {
  top: 0;
}

.hero-key-row-bottom {
  bottom: 34px;
}

.hero-stage-note {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 180px;
  color: #dce9ff;
}

.hero-stage-note strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  line-height: 1;
}

.hero-stage-note span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-stage-note-left {
  left: 0;
  text-align: left;
}

.hero-stage-note-right {
  right: 0;
  text-align: right;
}

.hero-stage-note-top {
  top: 138px;
}

.hero-stage-note-bottom {
  bottom: 120px;
}

.screen-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 40%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.screen-card img,
.journey-media img,
.analysis-media img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 22px;
}

.screen-card figcaption {
  padding: 12px 6px 0;
  font-size: 0.9rem;
}

.section-block {
  position: relative;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.showcase-copy h2,
.download-copy h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 1;
}

.section-heading p,
.showcase-copy p,
.download-copy p {
  margin-top: 18px;
  max-width: 640px;
}

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

.journey-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 430px;
  padding: 24px;
  border-radius: 32px;
}

.journey-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56, 214, 255, 0.18), rgba(43, 136, 255, 0.34));
  color: #e7f6ff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.journey-card h3 {
  max-width: 14ch;
  font-size: clamp(1.48rem, 2.3vw, 2rem);
  line-height: 1.02;
}

.journey-card p {
  max-width: 36ch;
  margin: 0;
}

.journey-visual {
  position: relative;
  display: grid;
  align-items: center;
  margin-top: auto;
  min-height: 220px;
  border-radius: 26px;
  border: 1px solid rgba(114, 148, 214, 0.12);
  background:
    radial-gradient(circle at 18% 16%, rgba(56, 214, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(11, 21, 42, 0.72), rgba(6, 10, 22, 0.94)),
    rgba(7, 12, 24, 0.94);
  overflow: hidden;
}

.journey-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(56, 214, 255, 0.06), transparent 42%),
    radial-gradient(circle at 82% 26%, rgba(242, 180, 82, 0.08), transparent 24%);
  pointer-events: none;
}

.journey-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px solid rgba(124, 157, 222, 0.09);
  pointer-events: none;
}

.journey-visual-modes {
  place-items: center;
}

.journey-visual-modes::after {
  inset: 26px;
  border-style: dashed;
  border-radius: 50%;
}

.journey-logo-orb {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  padding: 10px;
  border-radius: 32px;
  border: 1px solid rgba(124, 157, 222, 0.16);
  background:
    linear-gradient(180deg, rgba(17, 31, 58, 0.8), rgba(7, 12, 24, 0.92)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.22);
}

.journey-logo-orb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

.journey-module-pill {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(124, 157, 222, 0.16);
  background: rgba(7, 14, 28, 0.74);
  color: #e8f1ff;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  animation: journey-drift 8s ease-in-out infinite;
}

.journey-module-pill-top {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.journey-module-pill-right {
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  animation-delay: -2s;
}

.journey-module-pill-bottom {
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -4s;
}

.journey-module-pill-left {
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  animation-delay: -6s;
}

.journey-visual-practice {
  padding: 18px;
}

.journey-session-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(17, 31, 58, 0.78), rgba(7, 12, 24, 0.9)),
    rgba(255, 255, 255, 0.03);
}

.journey-session-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.journey-session-chip,
.journey-session-timer {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 157, 222, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #dce8ff;
  font-size: 0.8rem;
}

.journey-session-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(120px, 0.72fr);
  gap: 14px;
  align-items: stretch;
}

.journey-session-panel,
.journey-session-stack span {
  border: 1px solid rgba(124, 157, 222, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.journey-session-panel {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 118px;
  padding: 18px;
  border-radius: 20px;
}

.journey-line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 214, 255, 0.72), rgba(80, 116, 255, 0.18));
}

.journey-line-long {
  width: 82%;
}

.journey-line-mid {
  width: 66%;
}

.journey-line-short {
  width: 48%;
}

.journey-session-stack {
  display: grid;
  gap: 10px;
  align-content: start;
}

.journey-session-stack span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  color: #e5efff;
  font-size: 0.82rem;
}

.journey-wave {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 52px;
}

.journey-wave span {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(56, 214, 255, 0.9), rgba(43, 136, 255, 0.32));
  transform-origin: center bottom;
  animation: pulse-bars 1.4s ease-in-out infinite;
}

.journey-wave span:nth-child(1),
.journey-wave span:nth-child(9) {
  height: 24%;
}

.journey-wave span:nth-child(2),
.journey-wave span:nth-child(8) {
  height: 46%;
  animation-delay: -0.1s;
}

.journey-wave span:nth-child(3),
.journey-wave span:nth-child(7) {
  height: 68%;
  animation-delay: -0.2s;
}

.journey-wave span:nth-child(4),
.journey-wave span:nth-child(6) {
  height: 40%;
  animation-delay: -0.3s;
}

.journey-wave span:nth-child(5) {
  height: 86%;
  animation-delay: -0.4s;
}

.journey-visual-feedback {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.journey-score-ring {
  position: relative;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: conic-gradient(from 220deg, rgba(56, 214, 255, 0.95), rgba(43, 136, 255, 0.86) 58%, rgba(255, 255, 255, 0.08) 58%);
  box-shadow: 0 0 0 10px rgba(56, 214, 255, 0.05);
  animation: journey-glow 4.8s ease-in-out infinite;
}

.journey-score-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: rgba(7, 12, 24, 0.96);
  border: 1px solid rgba(124, 157, 222, 0.14);
}

.journey-score-core {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 4px;
  text-align: center;
}

.journey-score-core strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.journey-score-core span {
  color: #aecaee;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-diagnostic-list {
  display: grid;
  gap: 12px;
}

.journey-diagnostic-item {
  display: grid;
  gap: 6px;
}

.journey-diagnostic-item span {
  color: #dce8ff;
  font-size: 0.84rem;
}

.journey-diagnostic-track {
  position: relative;
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.journey-diagnostic-track::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--track-width, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(56, 214, 255, 0.9), rgba(43, 136, 255, 0.34));
}

.track-high {
  --track-width: 82%;
}

.track-medium {
  --track-width: 66%;
}

.track-low {
  --track-width: 48%;
}

.journey-feedback-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.journey-feedback-tags span,
.journey-momentum-row span,
.journey-awards span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 157, 222, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #dce8ff;
  font-size: 0.8rem;
}

.journey-visual-momentum {
  align-content: center;
  gap: 18px;
  padding: 20px;
}

.journey-streak-display {
  display: inline-grid;
  justify-self: start;
  gap: 2px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(124, 157, 222, 0.14);
  background:
    linear-gradient(180deg, rgba(17, 31, 58, 0.82), rgba(7, 12, 24, 0.9)),
    rgba(255, 255, 255, 0.04);
}

.journey-streak-display strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.journey-streak-display span {
  color: #aecaee;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.journey-week-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 118px;
  padding: 16px 14px;
  border-radius: 22px;
  border: 1px solid rgba(124, 157, 222, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.journey-week-bars span {
  flex: 1;
  height: var(--bar-height);
  min-height: 24px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(56, 214, 255, 0.95), rgba(43, 136, 255, 0.24));
  box-shadow: inset 0 -10px 18px rgba(255, 255, 255, 0.08);
}

.journey-momentum-row,
.journey-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: center;
}

.ielts-section {
  --ielts-shift: 40px;
  display: grid;
  gap: 34px;
  align-items: start;
}

.ielts-section[data-ielts-direction="prev"] {
  --ielts-shift: -40px;
}

.visa-section {
  --visa-shift: 40px;
  display: grid;
  gap: 34px;
  align-items: start;
}

.visa-section[data-visa-direction="prev"] {
  --visa-shift: -40px;
}

.detail-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.detail-item {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(114, 148, 214, 0.13);
  background: rgba(255, 255, 255, 0.03);
}

.detail-item strong {
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.screen-grid {
  display: grid;
  gap: 18px;
}

.screen-grid-quad {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screen-card {
  padding: 10px 10px 14px;
  border-radius: 28px;
}

.ielts-heading {
  max-width: 820px;
}

.ielts-studio {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 390px);
  gap: 28px;
  align-items: center;
}

.ielts-studio::before {
  content: "";
  position: absolute;
  inset: 8% 18% 12% 8%;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 34%, rgba(56, 214, 255, 0.16), transparent 28%),
    radial-gradient(circle at 72% 58%, rgba(242, 180, 82, 0.12), transparent 24%);
  filter: blur(28px);
}

.ielts-copy-pane {
  display: grid;
  gap: 18px;
  align-content: start;
}

.ielts-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ielts-tab {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 108px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(114, 148, 214, 0.14);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.ielts-tab::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 214, 255, 0.92), rgba(43, 136, 255, 0.2));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.ielts-tab:hover,
.ielts-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(124, 157, 222, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.ielts-tab.is-active {
  border-color: rgba(124, 157, 222, 0.28);
  background:
    linear-gradient(180deg, rgba(17, 31, 58, 0.46), rgba(7, 12, 24, 0.9)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.ielts-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.ielts-tab-kicker {
  color: #9ebce5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ielts-tab strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.14rem;
  line-height: 1;
  color: white;
}

.ielts-tab small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.ielts-detail-shell {
  position: relative;
  min-height: 280px;
}

.ielts-detail-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(114, 148, 214, 0.16);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(16, 28, 52, 0.42), rgba(7, 12, 24, 0.9)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translate3d(var(--ielts-shift), 0, 0) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.ielts-detail-card.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.ielts-detail-step {
  color: #aecaee;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ielts-detail-card strong {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.62rem;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.ielts-detail-card > span {
  color: var(--muted);
  line-height: 1.72;
}

.ielts-detail-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.ielts-detail-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 157, 222, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #dce8ff;
  font-size: 0.8rem;
}

.ielts-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px;
}

.ielts-controls-copy {
  margin: 0;
  max-width: 350px;
  color: var(--muted);
  line-height: 1.72;
}

.ielts-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ielts-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(124, 157, 222, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #eef4ff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.ielts-arrow:hover,
.ielts-arrow:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(124, 157, 222, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.ielts-arrow svg {
  width: 24px;
  height: 24px;
}

.ielts-stage-shell {
  position: relative;
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 390px;
  margin-inline: auto;
}

.ielts-stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 8px;
}

.ielts-stage-header span,
.ielts-stage-header strong {
  color: #aec4e8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ielts-stage {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 0.61 / 1;
  padding: 10px;
  border: 1px solid rgba(114, 148, 214, 0.13);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(14, 25, 48, 0.34), rgba(7, 12, 24, 0.92)),
    rgba(7, 12, 24, 0.9);
  box-shadow: var(--shadow);
}

.ielts-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(56, 214, 255, 0.08), transparent 44%, rgba(242, 180, 82, 0.05));
  pointer-events: none;
}

.ielts-slide {
  grid-area: 1 / 1;
  height: 100%;
  padding: 0;
  margin: 0;
  border-radius: 24px;
  opacity: 0;
  transform: translate3d(var(--ielts-shift), 0, 0) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.ielts-slide::before {
  display: none;
}

.ielts-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.ielts-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
}

.ielts-slide figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 8px;
  padding: 14px 15px;
  border: 1px solid rgba(124, 157, 222, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(12, 22, 42, 0.8), rgba(7, 12, 24, 0.92)),
    rgba(7, 12, 24, 0.88);
  backdrop-filter: blur(18px);
}

.ielts-slide figcaption span {
  color: #b4c8ea;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ielts-slide figcaption strong {
  display: block;
  color: #eef4ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.visa-heading {
  max-width: 820px;
}

.visa-module {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.56fr) minmax(300px, 360px) minmax(240px, 0.62fr);
  gap: 20px;
  align-items: center;
}

.visa-module::before {
  content: "";
  position: absolute;
  inset: 8% 12% 12% 16%;
  z-index: -1;
  background:
    radial-gradient(circle at 32% 28%, rgba(56, 214, 255, 0.18), transparent 26%),
    radial-gradient(circle at 68% 66%, rgba(242, 180, 82, 0.12), transparent 22%);
  filter: blur(26px);
}

.visa-tabs {
  display: grid;
  gap: 12px;
  align-content: start;
  align-self: center;
}

.visa-step-tab {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(114, 148, 214, 0.14);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.visa-step-tab:hover,
.visa-step-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(124, 157, 222, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.visa-step-tab.is-active {
  border-color: rgba(124, 157, 222, 0.28);
  background:
    linear-gradient(180deg, rgba(17, 31, 58, 0.46), rgba(7, 12, 24, 0.9)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.visa-step-tab-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(56, 214, 255, 0.18), rgba(43, 136, 255, 0.3));
  color: #ebf6ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.visa-step-tab-copy strong,
.visa-step-tab-copy small {
  display: block;
}

.visa-step-tab-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  color: white;
}

.visa-step-tab-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.visa-stage-shell {
  position: relative;
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  justify-self: center;
}

.visa-stage-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 8px;
}

.visa-stage-toolbar span,
.visa-stage-toolbar strong {
  color: #aec4e8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visa-stage {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 0.58 / 1;
  padding: 10px;
  border: 1px solid rgba(114, 148, 214, 0.13);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(14, 25, 48, 0.34), rgba(7, 12, 24, 0.92)),
    rgba(7, 12, 24, 0.9);
  box-shadow: var(--shadow);
}

.visa-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(56, 214, 255, 0.08), transparent 44%, rgba(242, 180, 82, 0.06));
  pointer-events: none;
}

.visa-slide {
  grid-area: 1 / 1;
  height: 100%;
  padding: 0;
  margin: 0;
  border-radius: 24px;
  opacity: 0;
  transform: translate3d(var(--visa-shift), 0, 0) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.visa-slide::before {
  display: none;
}

.visa-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.visa-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
}

.visa-slide figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 8px;
  padding: 14px 15px;
  border: 1px solid rgba(124, 157, 222, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(12, 22, 42, 0.8), rgba(7, 12, 24, 0.92)),
    rgba(7, 12, 24, 0.88);
  backdrop-filter: blur(18px);
}

.visa-slide figcaption span {
  color: #b4c8ea;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.visa-slide figcaption strong {
  display: block;
  color: #eef4ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.visa-panel {
  display: grid;
  align-content: stretch;
  gap: 18px;
  max-width: 400px;
  align-self: center;
}

.visa-detail-shell {
  position: relative;
  min-height: 330px;
}

.visa-detail-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(114, 148, 214, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(16, 28, 52, 0.42), rgba(7, 12, 24, 0.88)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translate3d(calc(var(--visa-shift) * 0.55), 0, 0);
  transition:
    opacity 420ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.visa-detail-card.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.visa-detail-step {
  color: #aecaee;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.visa-detail-card strong {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.56rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.visa-detail-card > span {
  color: var(--muted);
  line-height: 1.72;
}

.visa-detail-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.visa-detail-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 157, 222, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #dce8ff;
  font-size: 0.8rem;
}

.visa-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 6px;
}

.visa-controls-copy {
  margin: 0;
  max-width: 280px;
  color: var(--muted);
  line-height: 1.7;
}

.visa-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.visa-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(124, 157, 222, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #eef4ff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.visa-arrow:hover,
.visa-arrow:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(124, 157, 222, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.visa-arrow svg {
  width: 24px;
  height: 24px;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.analysis-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 30px;
}

.testimonial-shell {
  position: relative;
  margin-top: 38px;
}

.testimonial-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.testimonial-caption {
  margin: 0;
  max-width: 480px;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(124, 157, 222, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #eef4ff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(124, 157, 222, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.testimonial-arrow:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.testimonial-arrow svg {
  width: 24px;
  height: 24px;
}

.testimonial-viewport {
  overflow-x: auto;
  padding: 12px 6px 14px 0;
  margin-right: -6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.testimonial-card {
  display: grid;
  gap: 22px;
  flex: 0 0 min(460px, calc(100% - 48px));
  min-height: 380px;
  padding: 28px;
  border-radius: 34px;
  scroll-snap-align: start;
}

.testimonial-card::after {
  content: "“";
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(212, 224, 248, 0.12);
  font-family: "Space Grotesk", sans-serif;
  font-size: 6rem;
  line-height: 1;
}

.testimonial-card.is-featured {
  border-color: rgba(124, 157, 222, 0.22);
  background:
    linear-gradient(180deg, rgba(22, 37, 69, 0.46), rgba(7, 12, 24, 0.92)),
    rgba(7, 12, 24, 0.94);
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.analysis-card h3 {
  font-size: 1.5rem;
  line-height: 1.06;
}

.analysis-card p {
  margin: 12px 0 0;
}

.testimonial-rating {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
}

.testimonial-text {
  margin: 0;
  color: #eef4ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.testimonial-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 157, 222, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #deebff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(121, 154, 219, 0.12);
}

.testimonial-avatar {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(124, 157, 222, 0.18);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  color: #eef4ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.testimonial-avatar-cyan {
  background: linear-gradient(135deg, rgba(56, 214, 255, 0.94), rgba(43, 136, 255, 0.42));
}

.testimonial-avatar-blue {
  background: linear-gradient(135deg, rgba(43, 136, 255, 0.92), rgba(21, 54, 124, 0.56));
}

.testimonial-avatar-amber {
  background: linear-gradient(135deg, rgba(242, 180, 82, 0.94), rgba(43, 136, 255, 0.38));
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(56, 214, 255, 0.18), rgba(43, 136, 255, 0.28));
  color: #eaf6ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.testimonial-person strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
}

.testimonial-person span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

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

.faq-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: 26px;
  border-radius: 32px;
}

.faq-card h3 {
  margin: 0;
  color: #eef4ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.42rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.download-section {
  isolation: isolate;
}

.download-section::before {
  content: "";
  position: absolute;
  inset: 130px 10% 80px;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 38%, rgba(56, 214, 255, 0.18), transparent 22%),
    radial-gradient(circle at 50% 56%, rgba(43, 136, 255, 0.12), transparent 30%),
    radial-gradient(circle at 50% 68%, rgba(242, 180, 82, 0.1), transparent 26%);
  filter: blur(32px);
  opacity: 0.92;
  pointer-events: none;
}

.download-panel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
  text-align: center;
}

.download-panel::before {
  content: none;
}

.download-header {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 860px;
}

.download-heading {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.download-header > .eyebrow {
  justify-content: center;
}

.download-kicker {
  margin: 0;
  color: rgba(174, 198, 238, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.download-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  max-width: 11ch;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.download-intro {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.download-sculpture {
  position: relative;
  width: min(100%, 1080px);
  min-height: 780px;
  margin-top: 8px;
  display: grid;
  place-items: center;
}

.download-sculpture::before,
.download-sculpture::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.download-sculpture::before {
  width: min(520px, 56vw);
  height: min(520px, 56vw);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(56, 214, 255, 0.22), rgba(43, 136, 255, 0.08) 52%, transparent 74%);
  filter: blur(8px);
}

.download-sculpture::after {
  width: min(860px, 96vw);
  height: min(520px, 62vw);
  border-radius: 50%;
  border: 1px solid rgba(124, 157, 222, 0.1);
}

.download-sculpture-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.download-sculpture-ring-one {
  width: min(720px, 82vw);
  height: min(720px, 82vw);
  border: 1px solid rgba(124, 157, 222, 0.14);
}

.download-sculpture-ring-two {
  width: min(980px, 100%);
  height: min(560px, 72vw);
  border: 1px dashed rgba(124, 157, 222, 0.12);
  opacity: 0.7;
}

.download-device {
  position: relative;
  width: min(340px, 34vw);
  padding: 14px;
  border: 1px solid rgba(142, 174, 234, 0.24);
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(8, 15, 28, 0.76);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  --base-transform: translate3d(0, 0, 0) rotate(-3deg);
}

.download-device::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 96px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(-50%);
}

.download-device::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(56, 214, 255, 0.06), transparent 36%, rgba(242, 180, 82, 0.05));
  pointer-events: none;
}

.download-device-screen {
  position: relative;
  min-height: 590px;
  padding: 70px 24px 26px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(56, 214, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(8, 16, 31, 0.96), rgba(6, 11, 21, 0.84));
}

.download-device-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 157, 222, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #deebff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.download-device-screen strong {
  display: block;
  margin-top: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.download-device-screen p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.download-device-wave {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 78px;
  margin-top: 34px;
}

.download-device-wave span {
  flex: 1;
  border-radius: 999px 999px 18px 18px;
  background: linear-gradient(180deg, rgba(56, 214, 255, 0.92), rgba(43, 136, 255, 0.18));
  transform-origin: center bottom;
  animation: pulse-bars 3.8s ease-in-out infinite;
}

.download-device-wave span:nth-child(1) {
  height: 34%;
  animation-delay: 0s;
}

.download-device-wave span:nth-child(2) {
  height: 62%;
  animation-delay: 0.18s;
}

.download-device-wave span:nth-child(3) {
  height: 100%;
  animation-delay: 0.36s;
}

.download-device-wave span:nth-child(4) {
  height: 72%;
  animation-delay: 0.54s;
}

.download-device-wave span:nth-child(5) {
  height: 46%;
  animation-delay: 0.72s;
}

.download-device-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.download-device-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 157, 222, 0.14);
  color: #dce8ff;
  font-size: 0.82rem;
}

.download-device-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 30px;
  color: #dce8ff;
  font-size: 0.86rem;
}

.download-device-metrics span {
  position: relative;
  padding-left: 14px;
}

.download-device-metrics span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--amber));
}

.download-node-cloud {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.download-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(124, 157, 222, 0.18);
  background: rgba(7, 14, 28, 0.72);
  color: #e5efff;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.download-node-one {
  left: 8%;
  top: 16%;
}

.download-node-two {
  right: 7%;
  top: 22%;
}

.download-node-three {
  right: 12%;
  bottom: 24%;
}

.download-node-four {
  left: 10%;
  bottom: 27%;
}

.download-node-five {
  left: 18%;
  top: 66%;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  opacity: 0.9;
}

.store-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(124, 157, 222, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.store-icon svg {
  width: 24px;
  height: 24px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  margin-top: 0;
}

.store-copy {
  display: grid;
  gap: 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(124, 157, 222, 0.18);
}

.store-copy span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.download-meta {
  width: min(100%, 860px);
  display: grid;
  justify-items: center;
  gap: 24px;
  padding-top: 0;
  border-top: 0;
}

.download-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 24px;
  margin-top: 0;
}

.download-points span {
  position: relative;
  min-width: auto;
  padding: 0 0 0 16px;
  border: 0;
  border-radius: 0;
  background: none;
  color: #dbe7ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.download-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--amber));
}

.download-footnote {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(153, 167, 200, 0.84);
  font-size: 0.9rem;
  line-height: 1.65;
}

.site-footer {
  display: none;
}

.download-footer {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(120, 153, 216, 0.14);
}

.download-footer-brand {
  max-width: none;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.download-footer-logo {
  margin-bottom: 0;
}

.download-footer-brand p {
  margin: 0;
  max-width: 620px;
  justify-self: end;
  color: var(--muted);
  line-height: 1.72;
  text-align: right;
}

.download-footer-rail {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(120, 153, 216, 0.12);
  border-bottom: 1px solid rgba(120, 153, 216, 0.12);
  padding: 18px 0;
}

.download-footer-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.download-footer-label {
  color: #eef4ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-footer-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.download-footer-inline-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.download-footer-inline-links a:hover,
.download-footer-inline-links a:focus-visible {
  color: var(--text);
}

.download-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 0;
  border-top: 0;
}

.download-footer-bottom p {
  margin: 0;
  color: rgba(153, 167, 200, 0.88);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

[data-tilt] {
  --base-transform: translate3d(0, 0, 0);
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --lift: 0px;
  transform-style: preserve-3d;
  transform:
    var(--base-transform)
    perspective(1200px)
    rotateX(var(--rotate-x))
    rotateY(var(--rotate-y))
    translateY(var(--lift));
  transition: transform 180ms ease;
}

@keyframes float-cloud {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(20px, -22px, 0) scale(1.05);
  }
}

@keyframes pulse-bars {
  0%,
  100% {
    transform: scaleY(0.9);
  }

  50% {
    transform: scaleY(1.08);
  }
}

@keyframes journey-drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes journey-glow {
  0%,
  100% {
    box-shadow: 0 0 0 10px rgba(56, 214, 255, 0.05);
  }

  50% {
    box-shadow:
      0 0 0 14px rgba(56, 214, 255, 0.08),
      0 14px 42px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 1180px) {
  .showcase-section,
  .journey-grid,
  .analysis-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid,
  .analysis-grid,
  .faq-grid {
    gap: 18px;
  }

  .journey-card {
    min-height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: auto;
    padding: 0;
  }

  .hero-stage-surface {
    width: calc(100% - 32px);
    min-height: 620px;
  }

  .hero-stage-note {
    display: none;
  }

  .hero-command {
    width: min(580px, calc(100% - 88px));
  }

  .hero-metric-rail {
    left: 20px;
    right: 20px;
    bottom: 20px;
    grid-template-columns: 1fr;
  }

  .showcase-section,
  .ielts-section,
  .visa-section {
    gap: 28px;
  }

  .ielts-studio {
    grid-template-columns: 1fr;
  }

  .ielts-stage-shell {
    order: -1;
    width: min(100%, 390px);
  }

  .ielts-stage {
    aspect-ratio: 0.61 / 1;
  }

  .ielts-controls {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .visa-module {
    grid-template-columns: 1fr;
  }

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

  .visa-stage-shell {
    width: min(100%, 360px);
  }

  .visa-stage {
    aspect-ratio: 0.58 / 1;
  }

  .visa-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    max-width: none;
    width: 100%;
  }

  .visa-detail-shell {
    min-height: 240px;
  }

  .visa-controls {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .download-sculpture {
    min-height: 720px;
  }

  .download-device {
    width: min(340px, 40vw);
  }

  .download-node-one {
    left: 2%;
  }

  .download-node-two {
    right: 2%;
  }

  .download-node-five {
    left: 10%;
  }

  .testimonial-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-card {
    flex-basis: min(420px, calc(100% - 36px));
  }

  .download-meta,
  .download-footer-brand,
  .download-footer-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .download-footer-brand p {
    justify-self: center;
    text-align: center;
  }

  .download-footer-inline-links {
    justify-content: center;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 28px, 100%);
  }

  .site-header {
    top: 10px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
  }

  .site-nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-subline {
    font-size: 0.82rem;
  }

  .hero-stage {
    min-height: auto;
    margin-top: 0;
    padding: 0;
  }

  .hero-stage-surface,
  .download-device {
    width: 100%;
    --base-transform: translate3d(0, 0, 0);
  }

  .hero-stage-surface {
    position: relative;
    min-height: 620px;
    border-radius: 28px;
  }

  .download-device {
    position: static;
  }

  .hero-video {
    min-height: 620px;
  }

  .hero-stage,
  .download-sculpture {
    display: grid;
    gap: 18px;
  }

  .hero-command {
    width: calc(100% - 32px);
    padding: 14px;
  }

  .hero-command-placeholder {
    font-size: 1rem;
  }

  .hero-command-row {
    padding: 12px 14px;
  }

  .hero-key-row,
  .hero-stage-note,
  .hero-stage-chip-left,
  .hero-stage-chip-right {
    display: none;
  }

  .hero-panel {
    display: none;
  }

  .hero-video-caption {
    top: 16px;
    left: 16px;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span {
    min-height: 36px;
    font-size: 0.82rem;
  }

  .hero-metric-rail {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
  }

  .hero-metric-card {
    min-height: auto;
    padding: 14px 16px 16px;
  }

  .screen-grid-quad {
    grid-template-columns: 1fr;
  }

  .download-panel {
    gap: 28px;
  }

  .testimonial-toolbar {
    gap: 14px;
  }

  .testimonial-caption {
    max-width: none;
  }

  .testimonial-card {
    flex-basis: calc(100% - 18px);
    min-height: auto;
    padding: 24px;
  }

  .testimonial-card-top,
  .testimonial-meta {
    gap: 12px;
  }

  .testimonial-text {
    font-size: 1.08rem;
  }

  .journey-card {
    padding: 22px;
  }

  .journey-visual {
    min-height: 200px;
  }

  .journey-logo-orb {
    width: 88px;
    height: 88px;
    border-radius: 24px;
  }

  .journey-module-pill {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.8rem;
  }

  .journey-session-body,
  .journey-visual-feedback {
    grid-template-columns: 1fr;
  }

  .journey-score-ring {
    width: 118px;
    height: 118px;
  }

  .journey-score-core strong {
    font-size: 1.72rem;
  }

  .journey-week-bars {
    gap: 8px;
    min-height: 98px;
  }

  .ielts-tabs {
    grid-template-columns: 1fr;
  }

  .ielts-tab {
    min-height: auto;
    padding: 14px;
  }

  .ielts-stage-header {
    padding: 0 2px;
  }

  .ielts-stage-shell {
    width: min(100%, 330px);
  }

  .ielts-stage {
    aspect-ratio: 0.58 / 1;
    padding: 8px;
    border-radius: 30px;
  }

  .ielts-slide figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 13px 14px;
  }

  .ielts-detail-shell {
    min-height: 312px;
  }

  .ielts-detail-card {
    padding: 22px 20px;
  }

  .ielts-detail-card strong {
    font-size: 1.28rem;
  }

  .ielts-controls {
    padding: 0;
  }

  .ielts-controls-copy {
    max-width: none;
  }

  .visa-tabs {
    grid-template-columns: 1fr;
  }

  .visa-step-tab {
    padding: 14px;
  }

  .visa-stage-toolbar {
    padding: 0 2px;
  }

  .visa-stage-shell {
    width: min(100%, 330px);
  }

  .visa-stage {
    aspect-ratio: 0.56 / 1;
    padding: 8px;
    border-radius: 30px;
  }

  .visa-slide figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 13px 14px;
  }

  .visa-panel {
    grid-template-columns: 1fr;
  }

  .visa-detail-shell {
    min-height: 260px;
  }

  .visa-detail-card {
    padding: 22px 20px;
  }

  .visa-detail-card strong {
    font-size: 1.28rem;
  }

  .visa-controls {
    padding: 0;
  }

  .visa-controls-copy {
    max-width: none;
  }

  .download-section::before {
    inset: 160px 0 120px;
  }

  .download-header {
    gap: 14px;
  }

  .download-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .download-intro {
    max-width: none;
  }

  .download-sculpture {
    min-height: auto;
    padding: 32px 0 0;
  }

  .download-sculpture::before {
    width: min(320px, 70vw);
    height: min(320px, 70vw);
  }

  .download-sculpture::after {
    width: min(520px, 100%);
    height: min(520px, 100%);
  }

  .download-sculpture-ring-one {
    width: min(420px, 94vw);
    height: min(420px, 94vw);
  }

  .download-sculpture-ring-two {
    width: min(560px, 118vw);
    height: min(560px, 118vw);
  }

  .download-device {
    width: min(320px, 82vw);
    --base-transform: translate3d(0, 0, 0) rotate(-2deg);
  }

  .download-device-screen {
    min-height: 560px;
    padding-inline: 22px;
  }

  .download-device-tags,
  .download-device-metrics {
    justify-content: center;
  }

  .download-node-cloud {
    position: relative;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: min(560px, 100%);
    margin-top: -8px;
  }

  .download-node {
    position: static;
    min-height: 38px;
    padding: 0 15px;
  }

  .download-meta {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 0;
    border-top: 0;
    justify-items: center;
  }

  .store-badges {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .download-points {
    justify-content: center;
    gap: 12px;
  }

  .download-points span {
    padding: 14px 0 0;
    min-width: 0;
    text-align: center;
  }

  .download-points span::before {
    left: 50%;
    top: 0;
    width: 38px;
    height: 2px;
    border-radius: 999px;
    transform: translateX(-50%);
  }

  .store-badge {
    justify-content: center;
  }

  .download-footer-brand p {
    justify-self: center;
    text-align: center;
  }

  .download-footer-item {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .download-footer-inline-links {
    justify-content: center;
  }

  .download-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
