:root {
  --aun-red: #b01d2f;
  --aun-blue-950: #020a2b;
  --aun-blue-900: #05133f;
  --aun-blue-800: #0a236a;
  --aun-blue-700: #12348b;
  --aun-blue-500: #2f7be2;
  --aun-green: #1a9b54;
  --aun-white: #ffffff;
  --text: #132f61;
  --muted: #5c7398;
  --line: rgba(10, 42, 109, 0.14);
  --radius-lg: 16px;
  --shadow-soft: 0 18px 38px rgba(7, 28, 76, 0.12);
  --shadow-strong: 0 28px 70px rgba(5, 24, 69, 0.2);
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.18, 0.89, 0.32, 1.16);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

[id] {
  scroll-margin-top: 112px;
}

.site {
  width: 100%;
  padding-left: 0;
  position: relative;
  isolation: isolate;
}

.container-wide {
  width: min(1200px, calc(100vw - clamp(24px, 4vw, 64px)));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: 3px;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress, 0));
  background: linear-gradient(90deg, #72d88f 0%, #5aa7ff 48%, #d84d62 100%);
  box-shadow: 0 0 18px rgba(47, 123, 226, 0.35);
}

.hero {
  position: relative;
  min-height: clamp(900px, 110svh, 1120px);
  color: var(--aun-white);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(176, 29, 47, 0.3), rgba(176, 29, 47, 0) 34%),
    radial-gradient(circle at 12% 88%, rgba(26, 155, 84, 0.24), rgba(26, 155, 84, 0) 40%),
    linear-gradient(140deg, var(--aun-blue-950) 0%, var(--aun-blue-900) 42%, var(--aun-blue-800) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 36px 36px;
  opacity: 0.45;
  animation: heroGridShift 22s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  left: -14%;
  right: -14%;
  bottom: -220px;
  height: 390px;
  border-radius: 50%;
  background: #ffffff;
  filter: blur(2px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 94vw);
  min-height: inherit;
  margin: 0 auto;
  padding: 112px 0 418px;
}

.topbar {
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  z-index: 60;
  display: block;
  width: min(1140px, 94vw);
  opacity: 1;
  transition:
    opacity 0.35s var(--ease-standard),
    transform 0.35s var(--ease-standard),
    filter 0.35s var(--ease-standard);
  will-change: transform, opacity;
}

.topbar.is-scrolled {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
  filter: saturate(1.06);
}

.topbar.is-scrolled:hover,
.topbar.nav-open {
  opacity: 1;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 88px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

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

.brand span {
  display: none;
}

.topnav {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 56px;
  padding: 10px 16px 10px 112px;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(193, 210, 237, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(8, 28, 76, 0.18);
  transition:
    box-shadow 0.35s var(--ease-standard),
    background-color 0.35s var(--ease-standard),
    border-color 0.35s var(--ease-standard),
    transform 0.35s var(--ease-standard);
}

.topnav a {
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  color: #1a4485;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 999px;
  text-align: center;
  padding: 7px 12px;
  transition:
    background-color 0.24s var(--ease-standard),
    color 0.24s var(--ease-standard),
    transform 0.24s var(--ease-standard),
    box-shadow 0.24s var(--ease-standard);
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 123, 226, 0.9), rgba(26, 155, 84, 0.9));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--ease-standard);
}

.topnav a:hover,
.topnav a:focus-visible {
  color: #0f356e;
  background: rgba(47, 123, 226, 0.14);
  transform: translateY(-1px);
}

.topnav a:hover::after,
.topnav a:focus-visible::after,
.topnav a.is-active::after {
  transform: scaleX(1);
}

.topnav a.is-active {
  color: #0d356d;
  background:
    linear-gradient(135deg, rgba(47, 123, 226, 0.16), rgba(26, 155, 84, 0.1));
  box-shadow: inset 0 0 0 1px rgba(47, 123, 226, 0.16);
}

@media (min-width: 981px) {
  .topbar.is-scrolled .topnav {
    box-shadow: 0 14px 26px rgba(8, 28, 76, 0.14);
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(193, 210, 237, 1);
  }
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition:
    background-color 0.24s var(--ease-standard),
    border-color 0.24s var(--ease-standard),
    transform 0.24s var(--ease-standard);
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #e5edff;
  transition: transform 0.24s var(--ease-standard), opacity 0.24s var(--ease-standard);
}

.hero-copy {
  position: relative;
  z-index: 6;
  max-width: 1060px;
  margin: clamp(56px, 9vh, 104px) auto 0;
  text-align: center;
  transform: translate3d(0, var(--hero-copy-shift, 0px), 0);
  transition: transform 0.4s var(--ease-standard);
}

.hero-copy h1 {
  margin: 0 auto;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 22ch;
  text-wrap: balance;
}

.hero-copy h1 .hero-title-main,
.hero-copy h1 .uni-name {
  display: block;
  font-size: 1em;
  font-weight: 700;
}

.hero-copy h1 .hero-title-main {
  font-size: 0.82em;
  color: #ffffff;
}

.hero-copy h1 .uni-name {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: #ffffff;
  text-shadow:
    0 10px 28px rgba(59, 124, 226, 0.24),
    0 0 20px rgba(167, 244, 210, 0.16);
}

.hero-copy p {
  margin: 16px auto 0;
  max-width: 92ch;
  color: #d4e2ff;
  font-size: 0.9rem;
}

.hero-copy .hero-services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  color: #e4efff;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.35;
}

.hero-copy .service-item {
  white-space: nowrap;
  position: relative;
}

.hero-copy .service-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.78rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(186, 216, 255, 0.68);
  transform: translateY(-50%);
}

.hero-copy strong {
  color: #ffffff;
}

.store-intro {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.store-buttons {
  margin-top: 20px;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-badge {
  min-width: 184px;
  text-decoration: none;
  border-radius: 10px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  line-height: 1.1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: #0c1018;
  box-shadow: 0 10px 18px rgba(3, 10, 29, 0.28);
  transition:
    transform 0.28s var(--ease-standard),
    box-shadow 0.28s var(--ease-standard),
    border-color 0.28s var(--ease-standard),
    filter 0.28s var(--ease-standard);
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 16px 28px rgba(3, 10, 29, 0.34);
  border-color: rgba(255, 255, 255, 0.62);
  filter: saturate(1.08);
}

.store-badge-text {
  display: inline-grid;
  justify-items: start;
}

.store-icon {
  width: 1.42rem;
  height: 1.42rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.store-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.apple-icon {
  color: #ffffff;
}

.store-badge-small {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
  font-weight: 700;
}

.store-badge-large {
  margin-top: 2px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.store-badge.app-store {
  background: linear-gradient(180deg, #090d14 0%, #0e1521 100%);
}

.store-badge.play-store {
  background: linear-gradient(180deg, #0b1423 0%, #10243f 100%);
  border-color: rgba(54, 132, 255, 0.55);
}

.store-buttons a {
  text-decoration: none;
  color: #ffffff;
}

.store-buttons a:last-child {
  border-color: rgba(54, 132, 255, 0.55);
  background: linear-gradient(180deg, #0b1423 0%, #10243f 100%);
}

.rating {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #d8e5ff;
  font-size: 0.81rem;
  font-weight: 600;
}

.stars {
  color: #ffdb6d;
  letter-spacing: 0.09em;
}

.phones {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translate3d(-50%, var(--phones-shift, 0px), 0);
  z-index: 4;
  width: min(720px, calc(100% - 32px));
  display: flex;
  align-items: end;
  justify-content: center;
  transition: transform 0.45s var(--ease-standard);
}

.phone {
  position: relative;
  width: min(34%, 252px);
  max-width: 252px;
  flex: 0 1 252px;
  --phone-x: 0px;
  --phone-y: 0px;
  --phone-scale: 1;
  --phone-scroll: 0px;
  --phone-pointer-x: 0px;
  --phone-pointer-y: 0px;
  animation: heroPhoneFloat 6.8s ease-in-out infinite;
  will-change: transform, opacity, filter;
}

.phone:nth-child(1) {
  --phone-x: 14px;
  --phone-scale: 0.98;
  animation-delay: 0.35s;
  z-index: 1;
}

.phone:nth-child(2) {
  margin-inline: -74px;
  --phone-y: -34px;
  --phone-scale: 1.06;
  z-index: 3;
}

.phone:nth-child(3) {
  --phone-x: -14px;
  --phone-scale: 0.98;
  animation-delay: 0.7s;
  z-index: 2;
}

.phone-visual {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 22px rgba(4, 19, 56, 0.22));
  transform-origin: center bottom;
  animation: heroPhoneVisualPulse 6.8s ease-in-out infinite;
  transition: filter 0.35s var(--ease-standard);
}

.phone:nth-child(1) .phone-visual {
  animation-delay: 0.2s;
}

.phone:nth-child(2) .phone-visual {
  animation-delay: 0.45s;
}

.phone:nth-child(3) .phone-visual {
  animation-delay: 0.8s;
}

.feature-stream {
  background: #ffffff;
  border-top: 1px solid #dbe4f2;
  border-bottom: 1px solid #dbe4f2;
  padding: 16px 0;
  overflow: hidden;
}

.stream-row:hover .stream-line,
.stream-row:focus-within .stream-line {
  animation-play-state: paused;
}

.feature-fullscreen {
  --feature-pad-y: 46px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(320px, 38svh, 480px);
  display: flex;
  align-items: center;
  padding: var(--feature-pad-y) 0;
  border-top: 1px solid rgba(10, 42, 109, 0.08);
  transition: transform 0.5s var(--ease-standard);
}

.feature-fullscreen > .container-wide {
  position: relative;
  z-index: 2;
}

.feature-fullscreen--shop {
  background: linear-gradient(140deg, #7f1120 0%, var(--aun-red) 56%, #cb3d51 100%);
}

.feature-fullscreen--ride {
  background: linear-gradient(140deg, #0a2a63 0%, #123f8f 56%, #1f63ca 100%);
}

.feature-fullscreen--academics {
  --feature-pad-y: 34px;
  background: linear-gradient(180deg, #f6fbff 0%, #eef6ff 100%);
  min-height: auto;
  padding: var(--feature-pad-y) 0;
}

.feature-fullscreen--wallet {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.feature-fullscreen--connect {
  background: linear-gradient(180deg, #fbfdff 0%, #f1f8ff 56%, #eefbf5 100%);
}

.feature-fullscreen::before,
.feature-fullscreen::after {
  content: "";
  position: absolute;
  inset: -18% -10%;
  pointer-events: none;
  z-index: 1;
}

.feature-fullscreen--shop::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 80% 72%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 46%),
    radial-gradient(circle at 72% 14%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 34%);
  animation: sectionBlobDrift 16s ease-in-out infinite;
}

.feature-fullscreen--shop::after {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  opacity: 0.5;
  animation: sectionGridSlide 22s linear infinite;
}

.feature-fullscreen--ride::before {
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 84% 78%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 46%),
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 34%);
  animation: sectionBlobDrift 17s ease-in-out infinite;
}

.feature-fullscreen--ride::after {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  opacity: 0.46;
  animation: sectionGridSlide 24s linear infinite reverse;
}

.feature-fullscreen--academics::before {
  background:
    radial-gradient(circle at 16% 20%, rgba(47, 123, 226, 0.14), rgba(47, 123, 226, 0) 42%),
    radial-gradient(circle at 82% 78%, rgba(26, 155, 84, 0.12), rgba(26, 155, 84, 0) 42%),
    radial-gradient(circle at 74% 12%, rgba(176, 29, 47, 0.08), rgba(176, 29, 47, 0) 36%);
  animation: sectionBlobDrift 16s ease-in-out infinite;
}

.feature-fullscreen--academics::after {
  background:
    linear-gradient(110deg, rgba(19, 58, 119, 0.05) 0%, rgba(19, 58, 119, 0) 56%),
    linear-gradient(90deg, rgba(19, 58, 119, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(19, 58, 119, 0.05) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: 0.48;
  animation: sectionGridSlide 25s linear infinite;
}

.feature-fullscreen--academics .screenshot-shell {
  min-height: 360px;
}

.feature-fullscreen--academics .screenshot-shell.screenshot-shell--image {
  min-height: auto;
  width: 100%;
}

.feature-fullscreen--shop .screenshot-shell.screenshot-shell--image {
  min-height: auto;
  width: 100%;
  border: none;
  background: transparent;
}

.feature-fullscreen--wallet::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(47, 123, 226, 0.16), rgba(47, 123, 226, 0) 42%),
    radial-gradient(circle at 78% 82%, rgba(26, 155, 84, 0.16), rgba(26, 155, 84, 0) 44%),
    radial-gradient(circle at 74% 14%, rgba(176, 29, 47, 0.1), rgba(176, 29, 47, 0) 36%);
  animation: sectionBlobDrift 14s ease-in-out infinite reverse;
}

.feature-fullscreen--wallet::after {
  background:
    linear-gradient(110deg, rgba(19, 58, 119, 0.06) 0%, rgba(19, 58, 119, 0) 55%),
    linear-gradient(90deg, rgba(19, 58, 119, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(19, 58, 119, 0.06) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: 0.55;
  animation: sectionGridSlide 24s linear infinite reverse;
}

.feature-fullscreen--connect::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 123, 226, 0.14), rgba(47, 123, 226, 0) 42%),
    radial-gradient(circle at 82% 78%, rgba(26, 155, 84, 0.12), rgba(26, 155, 84, 0) 44%),
    radial-gradient(circle at 74% 12%, rgba(18, 51, 154, 0.08), rgba(18, 51, 154, 0) 34%);
  animation: sectionBlobDrift 15s ease-in-out infinite reverse;
}

.feature-fullscreen--connect::after {
  background:
    linear-gradient(112deg, rgba(19, 58, 119, 0.05) 0%, rgba(19, 58, 119, 0) 56%),
    linear-gradient(90deg, rgba(19, 58, 119, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(19, 58, 119, 0.05) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: 0.5;
  animation: sectionGridSlide 23s linear infinite reverse;
}

.feature-fullscreen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.feature-fullscreen--reverse .feature-fullscreen-copy {
  order: 2;
}

.feature-fullscreen--reverse .feature-screenshot {
  order: 1;
}

.feature-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--aun-green);
}

.feature-fullscreen-copy h2 {
  margin: 10px 0 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #123a77;
  max-width: 16ch;
}

.feature-fullscreen-copy > p {
  margin: 14px 0 0;
  color: #556f95;
  font-size: 1rem;
  max-width: 52ch;
}

.feature-fullscreen-copy {
  transition: transform 0.55s var(--ease-standard);
}

.feature-points {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.feature-points span {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  padding: 11px 13px;
  color: #22477f;
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-screenshot {
  display: flex;
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.feature-screenshot > .screenshot-shell {
  flex: 1 1 auto;
  max-width: none;
}

.feature-screenshot--bleed {
  align-self: stretch;
  width: 100%;
  margin-block: calc(var(--feature-pad-y) * -1);
  align-items: center;
  justify-content: flex-end;
}

.feature-fullscreen--reverse .feature-screenshot--bleed {
  justify-content: flex-start;
}

.screenshot-shell {
  width: 100%;
  min-height: 460px;
  border-radius: 24px;
  border: 1.5px dashed transparent;
  background: transparent;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 0;
}

.screenshot-shell--slot {
  padding: 20px;
}

.screenshot-shell--image {
  width: 100%;
  min-height: auto;
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
}

.screenshot-visual {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 18px 34px rgba(8, 34, 91, 0.16));
  transition: transform 0.6s var(--ease-standard), filter 0.6s var(--ease-standard);
}

.feature-fullscreen:hover .feature-fullscreen-copy,
.feature-fullscreen:focus-within .feature-fullscreen-copy {
  transform: translateY(-6px);
}

.feature-fullscreen:hover .screenshot-visual,
.feature-fullscreen:focus-within .screenshot-visual {
  transform: translateY(-10px) scale(1.02);
  filter: drop-shadow(0 28px 44px rgba(8, 34, 91, 0.22));
}

.slot-title {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.14rem;
  color: #163f7f;
}

.slot-meta {
  margin: 8px 0 0;
  color: #557199;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.feature-fullscreen--shop .feature-fullscreen-copy h2,
.feature-fullscreen--shop .feature-fullscreen-copy > p,
.feature-fullscreen--ride .feature-fullscreen-copy h2,
.feature-fullscreen--ride .feature-fullscreen-copy > p {
  color: #d7e7ff;
}

.feature-fullscreen--shop .feature-kicker,
.feature-fullscreen--ride .feature-kicker {
  color: #72d88f;
}

.feature-fullscreen--shop .feature-points span,
.feature-fullscreen--ride .feature-points span {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #dfeaff;
}

.feature-fullscreen--shop .screenshot-shell,
.feature-fullscreen--ride .screenshot-shell {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    radial-gradient(circle at 24% 14%, rgba(176, 29, 47, 0.2), rgba(176, 29, 47, 0)),
    radial-gradient(circle at 80% 86%, rgba(26, 155, 84, 0.24), rgba(26, 155, 84, 0)),
    rgba(255, 255, 255, 0.08);
}

.feature-fullscreen .screenshot-shell.screenshot-shell--image {
  border-color: transparent;
  background: transparent;
}

.feature-fullscreen--shop .slot-title,
.feature-fullscreen--shop .slot-meta,
.feature-fullscreen--ride .slot-title,
.feature-fullscreen--ride .slot-meta {
  color: #e2eeff;
}

.stream-row {
  overflow: hidden;
  white-space: nowrap;
}

.stream-line {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  padding: 9px 0;
  will-change: transform;
}

.stream-line span {
  position: relative;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #173f7f;
  letter-spacing: -0.01em;
  padding-right: 18px;
}

.stream-line span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--aun-blue-500), var(--aun-green));
}

.stream-forward {
  animation: streamForward 32s linear infinite;
}

.stream-reverse {
  animation: streamReverse 34s linear infinite;
}

.overview,
.testimonials,
.visuals {
  padding: 74px 0;
  background: #ffffff;
}

.feature-orbit-section {
  min-height: 70svh;
  padding: clamp(28px, 4svh, 42px) 0;
  background: linear-gradient(180deg, #f1f8ff 0%, #f7fbff 100%);
  border-top: 1px solid rgba(10, 42, 109, 0.08);
  border-bottom: 1px solid rgba(10, 42, 109, 0.08);
  display: flex;
  align-items: center;
}

.orbit-wrap {
  width: 100%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 28px;
}

.section-header h2,
.feature-orbit-section h2,
.testimonials h2,
.app-flow-copy h2 {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.section-header p {
  margin: 0;
  max-width: 44ch;
  color: var(--muted);
  font-size: 0.95rem;
}

.overview {
  background:
    radial-gradient(circle at 86% 14%, rgba(47, 123, 226, 0.1), rgba(47, 123, 226, 0)),
    radial-gradient(circle at 16% 88%, rgba(26, 155, 84, 0.1), rgba(26, 155, 84, 0)),
    #ffffff;
}

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

.overview-head h2 {
  margin: 8px auto 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #143c7a;
  max-width: 18ch;
}

.overview-head p {
  margin: 14px auto 0;
  max-width: 62ch;
  color: #567099;
  font-size: 0.97rem;
}

.overview-media-slot {
  margin: 24px auto 0;
  width: 100%;
  min-height: 190px;
  border: 1.5px dashed transparent;
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  background: transparent;
}

.overview-media-slot p {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1.06rem;
  color: #173f7f;
}

.overview-media-slot span {
  margin-top: 8px;
  color: #54709a;
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.5;
}

.overview-showcase-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}

.showcase-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(9, 32, 84, 0.08);
}

.showcase-panel-primary {
  background:
    radial-gradient(circle at 86% 14%, rgba(47, 123, 226, 0.16), rgba(47, 123, 226, 0)),
    radial-gradient(circle at 12% 84%, rgba(26, 155, 84, 0.14), rgba(26, 155, 84, 0)),
    #ffffff;
}

.showcase-panel h3,
.visual-card h3 {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  color: #183d7d;
}

.showcase-panel p,
.quote-grid blockquote,
.visual-card p {
  margin: 8px 0 0;
  color: #546d92;
  font-size: 0.9rem;
}

.showcase-list {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.showcase-list span {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f9fbff;
  padding: 9px 11px;
  color: #23487f;
  font-size: 0.84rem;
  font-weight: 600;
}

.showcase-pillar-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.showcase-pillar-grid span {
  border-radius: 999px;
  padding: 7px 10px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #19407d;
  background: #edf4ff;
  border: 1px solid rgba(25, 64, 125, 0.15);
}

.showcase-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.showcase-tags span {
  border-radius: 999px;
  border: 1px solid rgba(26, 155, 84, 0.34);
  background: rgba(26, 155, 84, 0.08);
  color: #176a44;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 6px 10px;
}

.section-kicker {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--aun-green);
}

.orbit-wrap h2 {
  margin: 8px auto 0;
  text-align: center;
  max-width: 18ch;
}

.orbit-stage {
  --orbit-bubble-size: 152px;
  --orbit-bubble-half: 76px;
  position: relative;
  margin: 22px auto 0;
  width: min(1100px, 100%);
  height: clamp(520px, 54svh, 640px);
}

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

.orbit-stage::before {
  width: clamp(440px, 42svh, 560px);
  height: clamp(440px, 42svh, 560px);
  border: 1.5px dashed rgba(25, 94, 196, 0.22);
  animation: explorerSpin 36s linear infinite;
}

.orbit-stage::after {
  width: clamp(300px, 31svh, 400px);
  height: clamp(300px, 31svh, 400px);
  border: 1px solid rgba(25, 94, 196, 0.16);
}

.center-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(250px, 24vw);
  animation: heroPulse 5.8s ease-in-out infinite;
  z-index: 6;
}

.center-phone-visual {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 38px rgba(8, 34, 91, 0.22));
}

.explore-bubble {
  position: absolute;
  width: var(--orbit-bubble-size);
  height: var(--orbit-bubble-size);
  border-radius: 50%;
  border: 1px solid rgba(19, 58, 119, 0.16);
  padding: 14px;
  box-shadow: 0 14px 26px rgba(11, 36, 94, 0.12);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
  animation: bubbleFloat 8s ease-in-out infinite;
  transition:
    transform 0.35s var(--ease-standard),
    box-shadow 0.35s var(--ease-standard),
    border-color 0.35s var(--ease-standard);
}

.explore-bubble:hover,
.explore-bubble:focus-within {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 22px 34px rgba(11, 36, 94, 0.16);
  border-color: rgba(19, 58, 119, 0.26);
}

.bubble-title {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #173f7f;
  font-weight: 700;
}

.bubble-subtitle {
  font-size: 0.74rem;
  color: #4f6f99;
  font-weight: 700;
  line-height: 1.25;
}

.bubble-1,
.bubble-5,
.bubble-9 {
  background:
    radial-gradient(circle at 20% 18%, rgba(47, 123, 226, 0.28), rgba(47, 123, 226, 0)),
    #f2f8ff;
}

.bubble-2,
.bubble-6,
.bubble-10 {
  background:
    radial-gradient(circle at 76% 24%, rgba(26, 155, 84, 0.25), rgba(26, 155, 84, 0)),
    #f1fbf6;
}

.bubble-3,
.bubble-7 {
  background:
    radial-gradient(circle at 24% 20%, rgba(176, 29, 47, 0.22), rgba(176, 29, 47, 0)),
    #fff4f6;
}

.bubble-4,
.bubble-8 {
  background:
    radial-gradient(circle at 74% 26%, rgba(32, 78, 171, 0.2), rgba(32, 78, 171, 0)),
    #f4f8ff;
}

.bubble-1 {
  top: 0;
  left: calc(50% - var(--orbit-bubble-half));
  animation-delay: 0.1s;
}

.bubble-2 {
  top: 11%;
  right: 11%;
  animation-delay: 0.4s;
}

.bubble-3 {
  top: 40%;
  right: 1%;
  animation-delay: 0.9s;
}

.bubble-4 {
  bottom: 11%;
  right: 11%;
  animation-delay: 1.2s;
}

.bubble-5 {
  bottom: 0;
  left: calc(50% - var(--orbit-bubble-half));
  animation-delay: 1.6s;
}

.bubble-6 {
  bottom: 11%;
  left: 11%;
  animation-delay: 1s;
}

.bubble-7 {
  top: 40%;
  left: 1%;
  animation-delay: 0.6s;
}

.bubble-8 {
  top: 11%;
  left: 11%;
  animation-delay: 1.4s;
}

.bubble-9 {
  top: 24%;
  left: 21%;
  animation-delay: 0.2s;
}

.bubble-10 {
  top: 24%;
  right: 21%;
  animation-delay: 0.8s;
}

.testimonials {
  padding-top: 72px;
}

.testimonials h2 {
  margin: 10px auto 0;
  text-align: center;
}

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

.quote-grid blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbff;
  padding: 16px;
}

.quote-grid cite {
  display: block;
  margin-top: 9px;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
  color: #183d7d;
}

.app-flow {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(176, 29, 47, 0.28), rgba(176, 29, 47, 0) 36%),
    radial-gradient(circle at 10% 88%, rgba(26, 155, 84, 0.25), rgba(26, 155, 84, 0) 40%),
    linear-gradient(140deg, var(--aun-blue-950) 0%, var(--aun-blue-900) 42%, var(--aun-blue-700) 100%);
}

.app-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.app-flow-copy h2 {
  color: #ffffff;
  max-width: 13ch;
}

.app-flow-copy p {
  margin: 14px 0 0;
  color: #d4e4ff;
  max-width: 54ch;
  font-size: 0.98rem;
}

.app-flow-visual {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-flow-visual::before,
.app-flow-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.app-flow-visual::before {
  width: 340px;
  height: 340px;
  top: 24px;
  left: 22%;
  background:
    radial-gradient(circle at 40% 40%, rgba(47, 123, 226, 0.34), rgba(47, 123, 226, 0.02) 72%);
  filter: blur(6px);
}

.app-flow-visual::after {
  width: 280px;
  height: 280px;
  right: 6%;
  bottom: 26px;
  background:
    radial-gradient(circle at 45% 45%, rgba(26, 155, 84, 0.28), rgba(26, 155, 84, 0.02) 72%);
  filter: blur(8px);
}

.app-flow-phone-stack {
  width: min(320px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: softFloat 6.4s ease-in-out infinite;
}

.app-flow-visual-phone {
  width: clamp(220px, 24vw, 290px);
  height: auto;
  filter: drop-shadow(0 26px 42px rgba(3, 18, 54, 0.42));
  transition: transform 0.55s var(--ease-standard), filter 0.55s var(--ease-standard);
}

.app-flow:hover .app-flow-visual-phone,
.app-flow:focus-within .app-flow-visual-phone {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 34px 52px rgba(3, 18, 54, 0.48));
}

.visuals {
  border-top: 1px solid rgba(10, 42, 109, 0.08);
}

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

.visual-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 16px;
  transition:
    transform 0.35s var(--ease-standard),
    box-shadow 0.35s var(--ease-standard),
    border-color 0.35s var(--ease-standard);
}

.visual-slot {
  margin-top: 10px;
  min-height: 146px;
  border: 1.5px dashed transparent;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #506a94;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  background: transparent;
}

.overview-media-slot,
.visual-slot {
  transition:
    transform 0.35s var(--ease-standard),
    box-shadow 0.35s var(--ease-standard),
    border-color 0.35s var(--ease-standard);
}

.overview-media-slot:hover,
.overview-media-slot:focus-within,
.visual-card:hover,
.visual-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(47, 123, 226, 0.12), rgba(47, 123, 226, 0) 34%),
    radial-gradient(circle at 88% 86%, rgba(26, 155, 84, 0.12), rgba(26, 155, 84, 0) 34%),
    linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
  border-top: 1px solid rgba(10, 42, 109, 0.08);
}

.footer-inner {
  width: 100%;
  margin: 0;
  padding: 0;
}

.footer-card {
  position: relative;
  border: 1px solid rgba(19, 58, 119, 0.1);
  border-inline: 0;
  border-radius: 0;
  padding: clamp(24px, 3.4vw, 34px) clamp(16px, 3.4vw, 40px) 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96)),
    #ffffff;
  box-shadow: 0 24px 54px rgba(8, 28, 76, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(19, 58, 119, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(19, 58, 119, 0.04) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
  opacity: 0.5;
  pointer-events: none;
}

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 26px;
  align-items: stretch;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 57, 118, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: #4b678f;
  font-size: 0.84rem;
}

.footer-brand-block {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-brand {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 14px 24px rgba(7, 28, 76, 0.14);
}

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

.footer-title,
.footer-subtitle,
.footer-bottom p,
.footer-label,
.footer-cta-copy {
  margin: 0;
}

.footer-title {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: #123b77;
  letter-spacing: -0.02em;
}

.footer-subtitle {
  max-width: 40ch;
  color: #56729b;
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-pill-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 57, 118, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 22px rgba(8, 28, 76, 0.06);
  color: #1e477f;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-cta-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(18, 57, 118, 0.12);
  background:
    radial-gradient(circle at 82% 16%, rgba(47, 123, 226, 0.12), rgba(47, 123, 226, 0) 34%),
    radial-gradient(circle at 16% 88%, rgba(26, 155, 84, 0.12), rgba(26, 155, 84, 0) 36%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(8, 28, 76, 0.08);
}

.footer-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 800;
  color: #1a9654;
}

.footer-cta-copy {
  color: #56729b;
  font-size: 0.92rem;
  line-height: 1.6;
}

.store-buttons--footer {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  gap: 10px;
}

.store-buttons--footer .store-badge {
  min-width: 176px;
  width: auto;
  flex: 0 0 auto;
  padding: 10px 12px;
  box-shadow: 0 8px 16px rgba(3, 10, 29, 0.18);
}

.store-buttons--footer .store-badge-small {
  font-size: 0.53rem;
}

.store-buttons--footer .store-badge-large {
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 57, 118, 0.1);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  color: #123976;
  transition: color 0.24s var(--ease-standard), transform 0.24s var(--ease-standard);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--aun-red);
  transform: translateY(-1px);
}

.footer-bottom p {
  color: #5a7398;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.9s var(--ease-standard),
    transform 0.9s var(--ease-standard),
    filter 0.9s var(--ease-standard);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
}

.hero.reveal,
.hero.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.hero.reveal .topbar,
.hero.reveal .hero-copy > *,
.hero.reveal .phone,
.overview.reveal .overview-head > *,
.overview.reveal .overview-media-slot,
.feature-fullscreen.reveal .feature-kicker,
.feature-fullscreen.reveal .feature-fullscreen-copy h2,
.feature-fullscreen.reveal .feature-fullscreen-copy > p:not(.feature-kicker),
.feature-fullscreen.reveal .feature-screenshot,
.feature-orbit-section.reveal .orbit-wrap > h2,
.feature-orbit-section.reveal .center-phone,
.feature-orbit-section.reveal .explore-bubble,
.app-flow.reveal .app-flow-copy > *,
.app-flow.reveal .app-flow-phone-stack {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 0.85s var(--ease-standard),
    transform 0.85s var(--ease-standard),
    filter 0.85s var(--ease-standard);
}

.hero.reveal .topbar {
  transform: translateX(-50%) translateY(-22px);
}

.hero.reveal .hero-copy > * {
  transform: translateY(24px);
}

.hero.reveal .phone {
  filter: blur(14px) saturate(0.88);
}

.hero.reveal.is-visible .topbar,
.hero.reveal.is-visible .hero-copy > *,
.hero.reveal.is-visible .phone {
  opacity: 1;
  filter: none;
}

.hero.reveal.is-visible .hero-copy > * {
  transform: translateY(0);
}

.hero.reveal.is-visible .topbar {
  transform: translateX(-50%) translateY(0);
  transition-delay: 0.06s;
}

.hero.reveal.is-visible .hero-copy h1 {
  transition-delay: 0.14s;
}

.hero.reveal.is-visible .hero-copy .hero-services {
  transition-delay: 0.24s;
}

.hero.reveal.is-visible .hero-copy .store-intro {
  transition-delay: 0.32s;
}

.hero.reveal.is-visible .hero-copy .store-buttons {
  transition-delay: 0.42s;
}

.hero.reveal.is-visible .phone:nth-child(1) {
  transition-delay: 0.36s;
}

.hero.reveal.is-visible .phone:nth-child(2) {
  transition-delay: 0.48s;
}

.hero.reveal.is-visible .phone:nth-child(3) {
  transition-delay: 0.6s;
}

.overview.reveal .overview-head > *,
.overview.reveal .overview-media-slot,
.app-flow.reveal .app-flow-copy > *,
.app-flow.reveal .app-flow-phone-stack {
  transform: translateY(24px);
}

.overview.reveal.is-visible .overview-head > *,
.overview.reveal.is-visible .overview-media-slot,
.app-flow.reveal.is-visible .app-flow-copy > *,
.app-flow.reveal.is-visible .app-flow-phone-stack {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.overview.reveal.is-visible .section-kicker,
.app-flow.reveal.is-visible .app-flow-copy h2 {
  transition-delay: 0.08s;
}

.overview.reveal.is-visible .overview-head h2,
.app-flow.reveal.is-visible .app-flow-copy p {
  transition-delay: 0.18s;
}

.overview.reveal.is-visible .overview-head p,
.app-flow.reveal.is-visible .app-flow-phone-stack {
  transition-delay: 0.28s;
}

.overview.reveal.is-visible .overview-media-slot {
  transition-delay: 0.32s;
}

.feature-fullscreen.reveal .feature-kicker,
.feature-fullscreen.reveal .feature-fullscreen-copy h2,
.feature-fullscreen.reveal .feature-fullscreen-copy > p:not(.feature-kicker) {
  transform: translateY(24px);
}

.feature-fullscreen.reveal .feature-screenshot {
  transform: translateX(42px) scale(0.96);
}

.feature-fullscreen--reverse.reveal .feature-screenshot {
  transform: translateX(-42px) scale(0.96);
}

.feature-fullscreen.reveal.is-visible .feature-kicker,
.feature-fullscreen.reveal.is-visible .feature-fullscreen-copy h2,
.feature-fullscreen.reveal.is-visible .feature-fullscreen-copy > p:not(.feature-kicker),
.feature-fullscreen.reveal.is-visible .feature-screenshot {
  opacity: 1;
  transform: none;
  filter: none;
}

.feature-fullscreen.reveal.is-visible .feature-kicker {
  transition-delay: 0.08s;
}

.feature-fullscreen.reveal.is-visible .feature-fullscreen-copy h2 {
  transition-delay: 0.18s;
}

.feature-fullscreen.reveal.is-visible .feature-fullscreen-copy > p:not(.feature-kicker) {
  transition-delay: 0.28s;
}

.feature-fullscreen.reveal.is-visible .feature-screenshot {
  transition-delay: 0.22s;
}

.feature-orbit-section.reveal .orbit-wrap > h2 {
  transform: translateY(24px);
}

.feature-orbit-section.reveal .center-phone {
  transform: translate(-50%, -50%) scale(0.92);
}

.feature-orbit-section.reveal .explore-bubble {
  transform: scale(0.88);
}

.feature-orbit-section.reveal.is-visible .orbit-wrap > h2,
.feature-orbit-section.reveal.is-visible .center-phone,
.feature-orbit-section.reveal.is-visible .explore-bubble {
  opacity: 1;
  filter: none;
}

.feature-orbit-section.reveal.is-visible .orbit-wrap > h2 {
  transform: translateY(0);
  transition-delay: 0.08s;
}

.feature-orbit-section.reveal.is-visible .center-phone {
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 0.16s;
}

.feature-orbit-section.reveal.is-visible .explore-bubble:nth-of-type(1) {
  transition-delay: 0.18s;
}

.feature-orbit-section.reveal.is-visible .explore-bubble:nth-of-type(2) {
  transition-delay: 0.24s;
}

.feature-orbit-section.reveal.is-visible .explore-bubble:nth-of-type(3) {
  transition-delay: 0.3s;
}

.feature-orbit-section.reveal.is-visible .explore-bubble:nth-of-type(4) {
  transition-delay: 0.36s;
}

.feature-orbit-section.reveal.is-visible .explore-bubble:nth-of-type(5) {
  transition-delay: 0.42s;
}

.feature-orbit-section.reveal.is-visible .explore-bubble:nth-of-type(6) {
  transition-delay: 0.48s;
}

.feature-orbit-section.reveal.is-visible .explore-bubble:nth-of-type(7) {
  transition-delay: 0.54s;
}

.feature-orbit-section.reveal.is-visible .explore-bubble:nth-of-type(8) {
  transition-delay: 0.6s;
}

.feature-orbit-section.reveal.is-visible .explore-bubble:nth-of-type(9) {
  transition-delay: 0.66s;
}

.feature-orbit-section.reveal.is-visible .explore-bubble:nth-of-type(10) {
  transition-delay: 0.72s;
}

@keyframes heroPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.02);
  }
}

@keyframes heroPhoneFloat {
  0%,
  100% {
    transform:
      translate(
        calc(var(--phone-x) + var(--phone-pointer-x)),
        calc(var(--phone-y) + var(--phone-scroll) + var(--phone-pointer-y))
      )
      scale(var(--phone-scale));
  }

  50% {
    transform:
      translate(
        calc(var(--phone-x) + var(--phone-pointer-x)),
        calc(var(--phone-y) + var(--phone-scroll) + var(--phone-pointer-y) - 12px)
      )
      scale(var(--phone-scale));
  }
}

@keyframes heroPhoneVisualPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 14px 22px rgba(4, 19, 56, 0.22));
  }

  50% {
    transform: scale(1.02);
    filter: drop-shadow(0 18px 28px rgba(4, 19, 56, 0.28));
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes explorerSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes bubbleFloatMobile {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

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

  50% {
    transform: translate3d(3%, -2%, 0) scale(1.06);
  }
}

@keyframes sectionGridSlide {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 120px 60px, 96px 48px, -96px 64px;
  }
}

@keyframes heroGridShift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 72px 72px;
  }
}

@keyframes streamForward {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes streamReverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 1280px) {
  .topbar {
    width: min(1100px, 96vw);
  }

  .brand {
    left: 66px;
    width: 66px;
    height: 66px;
  }

  .topnav {
    padding-left: 96px;
    gap: 8px;
  }

  .topnav a {
    font-size: 0.7rem;
    padding: 7px 10px;
  }

  .hero-inner {
    width: min(1200px, calc(100vw - 40px));
  }
}

@media (max-width: 1160px) {
  .overview-showcase-grid,
  .visual-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-panel-primary {
    grid-column: 1 / -1;
  }

  .feature-fullscreen-grid {
    gap: 22px;
  }

  .screenshot-shell {
    min-height: 560px;
  }

  .orbit-stage {
    --orbit-bubble-size: 140px;
    --orbit-bubble-half: 70px;
    width: min(980px, 99%);
    height: clamp(500px, 50svh, 580px);
  }

  .explore-bubble {
    width: 140px;
    height: 140px;
  }

  .app-flow-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  }

  .app-flow-visual {
    min-height: 430px;
  }

  .app-flow-phone-stack {
    width: min(290px, 100%);
  }
}

@media (max-width: 980px) {
  .feature-orbit-section {
    min-height: auto;
  }

  .site {
    padding-left: 0;
  }

  .topbar {
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    width: min(calc(100vw - 24px), 860px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 22px;
    border: 1px solid rgba(193, 210, 237, 0.9);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 255, 0.94));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 36px rgba(8, 28, 76, 0.18);
  }

  .brand {
    flex: 0 0 auto;
    position: static;
    transform: none;
    z-index: auto;
    min-width: 0;
    max-width: none;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    justify-content: center;
  }

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

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 0;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(28, 69, 133, 0.24);
    background: linear-gradient(135deg, rgba(248, 251, 255, 0.98), rgba(230, 239, 253, 0.92));
    box-shadow: 0 12px 22px rgba(10, 32, 82, 0.12);
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    transform: translateY(-1px);
  }

  .menu-toggle span {
    background: #1a4485;
  }

  .topnav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 0;
    padding: 0 12px;
    border: 1px solid rgba(193, 210, 237, 0);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.96));
    box-shadow: 0 18px 38px rgba(8, 28, 76, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition:
      max-height 0.35s var(--ease-standard),
      opacity 0.26s var(--ease-standard),
      transform 0.26s var(--ease-standard),
      padding 0.26s var(--ease-standard),
      border-color 0.26s var(--ease-standard),
      box-shadow 0.26s var(--ease-standard);
  }

  .topbar.nav-open .topnav {
    max-height: 70svh;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    padding: 10px 12px 12px;
    border-color: rgba(193, 210, 237, 0.9);
    box-shadow: 0 18px 38px rgba(8, 28, 76, 0.12);
  }

  .topbar.nav-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .topbar.nav-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .topbar.nav-open .menu-toggle {
    background: linear-gradient(135deg, #173b79, #1d5ab2);
    border-color: rgba(23, 59, 121, 0.42);
    box-shadow: 0 16px 28px rgba(10, 32, 82, 0.2);
  }

  .topbar.nav-open .menu-toggle span {
    background: #ffffff;
  }

  .topnav a {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    text-wrap: balance;
    padding: 12px 42px 12px 14px;
    border: 1px solid rgba(18, 57, 118, 0.08);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(252, 253, 255, 0.98), rgba(237, 245, 255, 0.92));
    box-shadow: 0 10px 18px rgba(8, 28, 76, 0.06);
    line-height: 1.25;
  }

  .topnav a::after {
    left: auto;
    right: 16px;
    bottom: auto;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: transparent;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.55;
  }

  .topnav a:hover,
  .topnav a:focus-visible {
    transform: translateX(4px);
    background: linear-gradient(135deg, rgba(241, 247, 255, 0.98), rgba(228, 239, 255, 0.95));
  }

  .topnav a:hover::after,
  .topnav a:focus-visible::after,
  .topnav a.is-active::after {
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.85;
  }

  .topnav a.is-active {
    box-shadow:
      inset 0 0 0 1px rgba(47, 123, 226, 0.18),
      0 12px 24px rgba(8, 28, 76, 0.1);
  }

  .hero {
    min-height: 860px;
  }

  .hero-inner {
    padding-top: 94px;
    padding-bottom: 380px;
  }

  .hero-copy {
    margin-top: 64px;
  }

  .phones {
    width: min(640px, calc(100% - 32px));
    bottom: 28px;
  }

  .phone {
    width: min(34%, 226px);
    max-width: 226px;
    flex-basis: 226px;
  }

  .phone:nth-child(2) {
    margin-inline: -56px;
    --phone-y: -28px;
  }

  .feature-fullscreen {
    min-height: auto;
    --feature-pad-y: 44px;
    padding: var(--feature-pad-y) 0 0;
  }

  .feature-fullscreen--academics {
    --feature-pad-y: 30px;
  }

  .feature-fullscreen-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-fullscreen-copy {
    text-align: center;
  }

  .feature-fullscreen--reverse .feature-fullscreen-copy,
  .feature-fullscreen--reverse .feature-screenshot {
    order: initial;
  }

  .feature-fullscreen-copy h2 {
    max-width: 20ch;
    margin-inline: auto;
  }

  .feature-fullscreen-copy > p {
    margin-inline: auto;
  }

  .feature-kicker {
    text-align: center;
  }

  .screenshot-shell {
    width: 100%;
    min-height: 380px;
  }

  .screenshot-shell.screenshot-shell--image {
    min-height: auto;
  }

  .feature-screenshot--bleed,
  .feature-fullscreen--reverse .feature-screenshot--bleed {
    width: 100vw;
    margin-block: 0;
    margin-inline: calc(50% - 50vw);
    align-self: end;
    justify-content: stretch;
  }

  .feature-screenshot > .screenshot-shell {
    flex-basis: 100vw;
  }

  .screenshot-visual {
    border-radius: 0;
    filter: none;
  }

  .feature-fullscreen.reveal .feature-screenshot,
  .feature-fullscreen--reverse.reveal .feature-screenshot {
    transform: translateY(22px) scale(0.97);
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .orbit-stage {
    --orbit-bubble-size: clamp(104px, 13vw, 118px);
    --orbit-bubble-half: calc(var(--orbit-bubble-size) / 2);
    height: clamp(500px, 78vw, 620px);
    margin-top: 24px;
    display: block;
    width: min(700px, 100%);
  }

  .orbit-stage::before,
  .orbit-stage::after {
    display: block;
  }

  .orbit-stage::before {
    width: clamp(320px, 56vw, 420px);
    height: clamp(320px, 56vw, 420px);
  }

  .orbit-stage::after {
    width: clamp(220px, 36vw, 300px);
    height: clamp(220px, 36vw, 300px);
  }

  .center-phone {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: clamp(188px, 31vw, 220px);
    grid-column: auto;
    animation: heroPulse 5.8s ease-in-out infinite;
  }

  .feature-orbit-section.reveal .center-phone {
    transform: translate(-50%, -50%) scale(0.92);
  }

  .feature-orbit-section.reveal.is-visible .center-phone {
    transform: translate(-50%, -50%) scale(1);
  }

  .explore-bubble {
    position: absolute;
    width: var(--orbit-bubble-size);
    height: var(--orbit-bubble-size);
    min-height: 0;
    padding: 12px 10px;
    border-radius: 50%;
    align-content: center;
    justify-items: center;
    text-align: center;
    animation: bubbleFloat 8s ease-in-out infinite;
  }

  .bubble-title {
    font-size: 0.82rem;
  }

  .bubble-subtitle {
    font-size: 0.66rem;
    line-height: 1.28;
  }

  .bubble-1 {
    top: 2%;
    left: calc(50% - var(--orbit-bubble-half));
  }

  .bubble-2 {
    top: 13%;
    right: 6%;
  }

  .bubble-3 {
    top: 38%;
    right: 1%;
  }

  .bubble-4 {
    bottom: 13%;
    right: 6%;
  }

  .bubble-5 {
    bottom: 2%;
    left: calc(50% - var(--orbit-bubble-half));
  }

  .bubble-6 {
    bottom: 13%;
    left: 6%;
  }

  .bubble-7 {
    top: 38%;
    left: 1%;
  }

  .bubble-8 {
    top: 13%;
    left: 6%;
  }

  .bubble-9 {
    top: 24%;
    left: 15%;
  }

  .bubble-10 {
    top: 24%;
    right: 15%;
  }

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

  .app-flow-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .app-flow-copy {
    width: min(100%, 640px);
    text-align: center;
  }

  .app-flow-copy h2,
  .app-flow-copy p {
    margin-inline: auto;
  }

  .app-flow-visual {
    min-height: 360px;
  }

  .app-flow-phone-stack {
    width: min(250px, 100%);
  }

  .app-flow-visual-phone {
    width: min(100%, 230px);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-cta-panel {
    max-width: 640px;
  }

}

@media (max-width: 760px) {
  .topbar {
    justify-content: flex-end;
    min-height: 54px;
    padding: 0 14px 0 16px;
    overflow: visible;
  }

  .brand {
    position: absolute;
    left: 23.5%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    z-index: 3;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    margin-left: auto;
  }

  .topnav {
    top: calc(100% + 18px);
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    left: -34%;
    right: -34%;
    bottom: -162px;
    height: 260px;
  }

  .hero-inner {
    width: min(calc(100vw - 24px), 620px);
    min-height: auto;
    padding: 90px 0 52px;
  }

  .hero-copy {
    max-width: 420px;
    margin-top: 34px;
    display: grid;
    justify-items: center;
    gap: 14px;
  }

  .hero-copy h1 {
    max-width: min(100%, 540px);
    font-size: clamp(1.88rem, 8.2vw, 2.72rem);
    line-height: 1.03;
  }

  .hero-copy h1 .hero-title-main {
    max-width: none;
    margin-inline: auto;
    margin-bottom: 0.12em;
    white-space: nowrap;
  }

  .hero-copy h1 .uni-name {
    white-space: nowrap;
    font-size: clamp(1.28rem, 5.25vw, 2rem);
    letter-spacing: -0.055em;
  }

  .hero-copy p {
    margin-top: 0;
  }

  .hero-copy .hero-services {
    justify-content: center;
    gap: 0.44rem 0.95rem;
    max-width: min(100%, 34ch);
    margin-inline: auto;
  }

  .hero-copy .service-item:not(:last-child)::after {
    right: -0.56rem;
  }

  .store-intro {
    max-width: 20ch;
    margin-inline: auto;
    line-height: 1.45;
    font-size: 0.86rem;
  }

  .hero .store-buttons {
    width: min(100%, 332px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-inline: auto;
  }

  .hero .store-badge {
    width: 100%;
    min-width: 0;
    min-height: auto;
    max-width: none;
    padding: 9px 10px;
    border-radius: 10px;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
  }

  .hero .store-badge-text {
    row-gap: 2px;
  }

  .hero .store-badge-small {
    font-size: 0.48rem;
    letter-spacing: 0.06em;
  }

  .hero .store-badge-large {
    font-size: 0.8rem;
  }

  .hero .store-icon {
    width: 1.14rem;
    height: 1.14rem;
  }

  .phones {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(376px, calc(100% - 4px));
    margin: 34px auto 0;
  }

  .phone {
    width: min(34.5%, 150px);
    max-width: 150px;
    flex-basis: 150px;
  }

  .phone:nth-child(2) {
    margin-inline: -28px;
    --phone-y: -14px;
  }

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

  .feature-fullscreen-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .screenshot-shell {
    width: 100%;
    min-height: 300px;
    border-radius: 0;
  }

  .screenshot-shell.screenshot-shell--image {
    min-height: auto;
  }

  .stream-line span {
    font-size: 0.88rem;
  }

  .footer-cta-panel {
    justify-items: start;
  }

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

  .footer-card {
    border-radius: 0;
  }

  .footer-brand {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .store-buttons--footer {
    width: min(100%, 332px);
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }

  .store-buttons--footer .store-badge {
    width: calc(50% - 4px);
    min-width: 0;
    flex: 1 1 0;
    padding: 9px 10px;
    justify-content: flex-start;
  }

  .store-buttons--footer .store-badge-small {
    font-size: 0.48rem;
    letter-spacing: 0.06em;
  }

  .store-buttons--footer .store-badge-large {
    font-size: 0.8rem;
  }

  .store-buttons--footer .store-icon {
    width: 1.14rem;
    height: 1.14rem;
  }

  .footer-links {
    width: auto;
  }
}

@media (max-width: 620px) {
  .orbit-stage {
    --orbit-bubble-size: clamp(80px, 19vw, 92px);
    --orbit-bubble-half: calc(var(--orbit-bubble-size) / 2);
    width: min(100%, 420px);
    height: clamp(420px, 122vw, 500px);
    padding: 0;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }

  .orbit-stage::before {
    width: clamp(250px, 68vw, 320px);
    height: clamp(250px, 68vw, 320px);
  }

  .orbit-stage::after {
    width: clamp(184px, 48vw, 238px);
    height: clamp(184px, 48vw, 238px);
  }

  .center-phone {
    width: min(148px, 42vw);
    margin-bottom: 0;
  }

  .explore-bubble {
    min-height: 0;
    height: var(--orbit-bubble-size);
    padding: 10px 8px;
    border-radius: 50%;
    align-content: center;
    justify-items: center;
    text-align: center;
    box-shadow: 0 12px 24px rgba(11, 36, 94, 0.1);
  }

  .bubble-title {
    font-size: 0.68rem;
  }

  .bubble-subtitle {
    font-size: 0.56rem;
    line-height: 1.22;
  }

  .bubble-5,
  .bubble-10 {
    grid-column: auto;
    min-height: 0;
  }

  .bubble-1 {
    top: 4%;
  }

  .bubble-2 {
    top: 15%;
    right: 3%;
  }

  .bubble-3 {
    top: 39%;
    right: 0;
  }

  .bubble-4 {
    bottom: 15%;
    right: 3%;
  }

  .bubble-5 {
    bottom: 4%;
  }

  .bubble-6 {
    bottom: 15%;
    left: 3%;
  }

  .bubble-7 {
    top: 39%;
    left: 0;
  }

  .bubble-8 {
    top: 15%;
    left: 3%;
  }

  .bubble-9 {
    top: 26%;
    left: 10%;
  }

  .bubble-10 {
    top: 26%;
    right: 10%;
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }

  .footer-pill-row {
    gap: 8px;
  }

  .footer-pill-row span {
    font-size: 0.76rem;
    padding-inline: 12px;
  }

  .store-buttons--footer {
    width: min(100%, 316px);
  }
}

@media (max-width: 560px) {
  .hero-inner {
    width: min(calc(100vw - 18px), 420px);
    padding-top: 88px;
    padding-bottom: 48px;
  }

  .hero-copy {
    margin-top: 30px;
    gap: 12px;
  }

  .hero-copy h1 {
    max-width: min(100%, 420px);
    font-size: clamp(1.6rem, 7vw, 2.18rem);
  }

  .hero-copy h1 .hero-title-main {
    max-width: none;
  }

  .hero-copy h1 .uni-name {
    font-size: clamp(1rem, 4.35vw, 1.42rem);
  }

  .hero-copy p {
    font-size: 0.86rem;
  }

  .hero .store-buttons {
    width: min(100%, 316px);
    gap: 8px;
  }

  .hero .store-badge {
    min-height: auto;
    padding: 9px 10px;
    border-radius: 10px;
    gap: 7px;
  }

  .hero .store-badge-large {
    font-size: 0.8rem;
  }

  .hero .store-badge-small {
    font-size: 0.48rem;
    letter-spacing: 0.06em;
  }

  .phones {
    width: min(296px, 100%);
    margin-top: 30px;
  }

  .phone {
    width: min(34.5%, 118px);
    max-width: 118px;
    flex-basis: 118px;
  }

  .phone:nth-child(2) {
    margin-inline: -22px;
    --phone-y: -10px;
  }

  .feature-fullscreen {
    --feature-pad-y: 36px;
    padding: var(--feature-pad-y) 0 0;
  }

  .feature-fullscreen--academics {
    --feature-pad-y: 26px;
  }

  .feature-points span {
    font-size: 0.84rem;
  }

  .screenshot-shell {
    min-height: 250px;
  }

  .screenshot-shell.screenshot-shell--image {
    min-height: auto;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-card {
    padding: 20px 18px;
    border-radius: 0;
  }

  .footer-top {
    gap: 20px;
  }

  .footer-title {
    font-size: 1.05rem;
  }

  .footer-subtitle,
  .footer-cta-copy {
    font-size: 0.88rem;
  }

  .footer-links a {
    width: auto;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .topbar {
    top: 10px;
    width: min(calc(100vw - 14px), 390px);
    gap: 10px;
    min-height: 50px;
    padding: 0 10px 0 11px;
    border-radius: 20px;
  }

  .brand {
    left: 22.5%;
    width: 64px;
    height: 64px;
  }

  .hero-copy h1 {
    max-width: min(100%, 352px);
    font-size: clamp(1.38rem, 6.15vw, 1.88rem);
  }

  .hero-copy h1 .hero-title-main {
    max-width: none;
  }

  .hero-copy h1 .uni-name {
    font-size: clamp(0.84rem, 3.9vw, 1.02rem);
    letter-spacing: -0.06em;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .topnav a {
    min-height: 50px;
    padding: 11px 38px 11px 12px;
    font-size: 0.8rem;
  }

  .hero .store-buttons {
    width: min(100%, 316px);
    gap: 8px;
  }

  .hero .store-badge {
    min-height: auto;
    border-radius: 10px;
    padding: 9px 10px;
    gap: 6px;
  }

  .hero .store-icon {
    width: 1.14rem;
    height: 1.14rem;
  }

  .hero .store-badge-large {
    font-size: 0.8rem;
  }

  .hero .store-badge-small {
    font-size: 0.48rem;
    letter-spacing: 0.06em;
  }

  .hero-inner {
    width: min(calc(100vw - 14px), 390px);
    padding-top: 82px;
    padding-bottom: 46px;
  }

  .hero-copy {
    margin-top: 28px;
  }

  .phones {
    width: min(270px, 100%);
    margin-top: 26px;
  }

  .orbit-stage {
    --orbit-bubble-size: clamp(66px, 18.5vw, 78px);
    --orbit-bubble-half: calc(var(--orbit-bubble-size) / 2);
    width: min(100%, 356px);
    height: clamp(370px, 126vw, 430px);
  }

  .orbit-stage::before {
    width: clamp(220px, 66vw, 270px);
    height: clamp(220px, 66vw, 270px);
  }

  .orbit-stage::after {
    width: clamp(160px, 46vw, 206px);
    height: clamp(160px, 46vw, 206px);
  }

  .center-phone {
    width: min(128px, 39vw);
  }

  .explore-bubble {
    padding: 8px 6px;
    box-shadow: 0 8px 18px rgba(11, 36, 94, 0.1);
  }

  .bubble-title {
    font-size: 0.58rem;
  }

  .bubble-subtitle {
    font-size: 0.5rem;
    line-height: 1.18;
  }

  .bubble-1 {
    top: 4%;
  }

  .bubble-2 {
    top: 16%;
    right: 1%;
  }

  .bubble-3 {
    top: 40%;
    right: 0;
  }

  .bubble-4 {
    bottom: 16%;
    right: 1%;
  }

  .bubble-5 {
    bottom: 4%;
  }

  .bubble-6 {
    bottom: 16%;
    left: 1%;
  }

  .bubble-7 {
    top: 40%;
    left: 0;
  }

  .bubble-8 {
    top: 16%;
    left: 1%;
  }

  .bubble-9 {
    top: 27%;
    left: 8%;
  }

  .bubble-10 {
    top: 27%;
    right: 8%;
  }

  .phone {
    width: min(34.5%, 104px);
    max-width: 104px;
    flex-basis: 104px;
  }

  .phone:nth-child(2) {
    margin-inline: -18px;
    --phone-y: -7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-copy,
  .phones {
    transform: none;
  }

  .hero.reveal .topbar,
  .hero.reveal .hero-copy > *,
  .hero.reveal .phone,
  .overview.reveal .overview-head > *,
  .overview.reveal .overview-media-slot,
  .feature-fullscreen.reveal .feature-kicker,
  .feature-fullscreen.reveal .feature-fullscreen-copy h2,
  .feature-fullscreen.reveal .feature-fullscreen-copy > p:not(.feature-kicker),
  .feature-fullscreen.reveal .feature-screenshot,
  .feature-orbit-section.reveal .orbit-wrap > h2,
  .feature-orbit-section.reveal .center-phone,
  .feature-orbit-section.reveal .explore-bubble,
  .app-flow.reveal .app-flow-copy > *,
  .app-flow.reveal .app-flow-phone-stack {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

