:root {
  --navy: #101a44;
  --navy-2: #19285d;
  --violet: #7c3aed;
  --violet-2: #9d4edd;
  --lavender: #f1ecff;
  --soft: #f8f7fc;
  --ink: #17203d;
  --muted: #66708e;
  --line: rgba(20, 30, 70, 0.1);
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(45, 29, 98, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 5%, rgba(124, 58, 237, 0.08), transparent 27rem),
    radial-gradient(circle at 95% 18%, rgba(73, 84, 255, 0.07), transparent 30rem),
    var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

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

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.site-header,
footer,
.section {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand {
  width: 132px;
  height: 79px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.official-logo {
  width: 132px;
  height: 79px;
  display: block;
  overflow: visible;
}

.official-take {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  fill: #101a44;
}

.official-top-line {
  fill: none;
  stroke: #6f2bd8;
  stroke-width: 5;
  stroke-linecap: round;
}

.official-esee {
  font-family: "Manrope", sans-serif;
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -0.075em;
}

.official-smile,
.official-arrow {
  fill: none;
  stroke: #6f2bd8;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-link {
  font-weight: 700;
  color: var(--navy);
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  transition: 0.25s ease;
}

.header-link:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-2px);
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  padding: 65px 0 100px;
}

.eyebrow,
.section-label,
.launch-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--violet);
}

.hero h1,
.story h2,
.section-heading h2,
.mission h2,
.launch h2 {
  font-family: "Manrope", sans-serif;
  margin: 0;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.hero h1 {
  font-size: clamp(54px, 7.4vw, 102px);
  line-height: 0.93;
  margin-top: 26px;
}

.hero h1 span,
.story h2 span {
  background: linear-gradient(110deg, var(--violet), #a334db);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
  margin: 32px 0 24px;
}

.tagline {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 20px;
  margin-bottom: 32px;
}

.tagline strong {
  color: var(--navy);
}

.tagline span {
  color: var(--violet);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  color: white;
  font-weight: 800;
  background: linear-gradient(125deg, var(--navy), var(--violet));
  box-shadow: 0 16px 35px rgba(83, 48, 171, 0.22);
  transition: 0.25s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(83, 48, 171, 0.3);
}

.text-btn {
  font-weight: 800;
  color: var(--navy);
}

.text-btn span {
  color: var(--violet);
  margin-left: 5px;
}

.powered {
  margin-top: 34px;
  font-size: 13px;
  color: var(--muted);
}

.powered a {
  color: var(--navy);
  font-weight: 800;
}

.hero-visual {
  height: 620px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.orb-one {
  width: 420px;
  height: 420px;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.17), rgba(55, 65, 180, 0.08));
  animation: drift 7s ease-in-out infinite;
}

.orb-two {
  width: 230px;
  height: 230px;
  top: 70px;
  right: 30px;
  background: rgba(177, 91, 224, 0.11);
  animation: drift 9s ease-in-out infinite reverse;
}

.phone {
  width: 250px;
  height: 510px;
  border-radius: 42px;
  padding: 10px;
  background: #11172f;
  box-shadow: var(--shadow);
  position: absolute;
  border: 3px solid rgba(255,255,255,0.72);
}

.phone-back {
  transform: rotate(-8deg) translate(-80px, 20px);
  z-index: 2;
}

.phone-front {
  transform: rotate(7deg) translate(88px, 18px);
  z-index: 3;
}

.phone-notch {
  width: 84px;
  height: 21px;
  background: #11172f;
  border-radius: 0 0 14px 14px;
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  z-index: 3;
}

.screen {
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f4f1ff);
  padding: 40px 18px 18px;
}

.mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-logo {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--violet);
}

.avatar {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: linear-gradient(145deg, #dad1ff, #8c55d5);
}

.search-bar {
  margin-top: 22px;
  height: 46px;
  border-radius: 14px;
  background: white;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #9aa0b7;
  font-size: 11px;
  box-shadow: 0 10px 24px rgba(30, 24, 80, 0.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.service-grid div {
  min-height: 82px;
  background: rgba(255,255,255,0.87);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(30, 24, 80, 0.06);
}

.service-grid span {
  font-size: 22px;
}

.service-grid small {
  color: var(--navy);
  font-weight: 700;
  font-size: 9px;
}

.mini-card {
  margin-top: 16px;
  padding: 14px;
  background: linear-gradient(135deg, var(--navy), var(--violet));
  border-radius: 16px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-dot {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
}

.mini-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mini-card b {
  font-size: 10px;
}

.mini-card small {
  font-size: 8px;
  opacity: 0.7;
}

.welcome-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(124,58,237,0.2), transparent 120px),
    linear-gradient(160deg, #ffffff, #f0eaff);
}

.welcome-mark {
  width: 180px;
  height: 118px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.official-logo-phone {
  width: 180px;
  height: 118px;
}

.welcome-screen p {
  text-align: center;
  color: var(--navy);
  line-height: 1.5;
  margin: 26px 0;
  font-size: 17px;
}

.welcome-screen p strong {
  color: var(--violet);
}

.welcome-screen button {
  border: 0;
  color: white;
  font-weight: 800;
  padding: 13px 24px;
  border-radius: 13px;
  background: linear-gradient(120deg, var(--navy), var(--violet));
}

.float-card {
  position: absolute;
  z-index: 5;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 18px 45px rgba(42, 29, 93, 0.12);
  border-radius: 17px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatCard 5s ease-in-out infinite;
}

.float-card-one {
  left: 2px;
  top: 145px;
}

.float-card-two {
  right: 0;
  bottom: 125px;
  animation-delay: -2s;
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--violet));
}

.float-card div {
  display: flex;
  flex-direction: column;
}

.float-card b {
  color: var(--navy);
  font-size: 12px;
}

.float-card small {
  color: var(--muted);
  font-size: 9px;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(247,245,255,0.7);
}

.ticker {
  width: max-content;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker span {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.ticker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
}

.story,
.features,
.mission,
.launch {
  padding-block: 125px;
}

.section-label {
  margin-bottom: 26px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 100px;
  align-items: start;
}

.story h2 {
  font-size: clamp(45px, 5.5vw, 76px);
  line-height: 1.03;
}

.story-copy {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.story-copy p {
  margin: 0 0 24px;
}

.story-copy strong {
  color: var(--navy);
}

.features {
  padding-top: 55px;
}

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

.section-heading h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}

.section-heading p {
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.feature-card {
  min-height: 275px;
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 28px;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 12px 35px rgba(36,26,82,0.04);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 24px 60px rgba(54,35,111,0.09);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: white;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--navy), var(--violet));
  margin-bottom: 28px;
}

.feature-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

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

.mission {
  padding-top: 35px;
}

.mission-card {
  min-height: 440px;
  padding: 64px;
  border-radius: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
  color: white;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 85% 15%, rgba(193, 98, 255, 0.35), transparent 28rem),
    linear-gradient(125deg, #101a44, #33206f 55%, #7432b8);
  box-shadow: 0 35px 80px rgba(34, 25, 83, 0.18);
}

.mission-card::after {
  content: "";
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  position: absolute;
  right: -90px;
  bottom: -160px;
}

.section-label.light {
  color: #d7c2ff;
}

.mission h2 {
  color: white;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
}

.mission-lines {
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 42px;
}

.mission-lines p {
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.launch {
  padding-top: 45px;
}

.launch-box {
  min-height: 450px;
  border: 1px solid rgba(124,58,237,0.13);
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.93)),
    radial-gradient(circle at 50% 50%, rgba(124,58,237,0.32), transparent 26rem);
}

.launch-glow {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(124,58,237,0.12);
  filter: blur(55px);
  position: absolute;
  animation: pulse 5s ease-in-out infinite;
}

.launch-content {
  width: min(720px, calc(100% - 42px));
  position: relative;
}

.launch h2 {
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.04;
  margin: 22px 0;
}

.launch p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.coming-pill {
  width: fit-content;
  margin: 30px auto 0;
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(41,31,89,0.08);
}

.coming-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--violet);
  display: inline-block;
  margin-right: 9px;
  box-shadow: 0 0 0 7px rgba(124,58,237,0.1);
  animation: blink 1.5s ease infinite;
}

footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  justify-self: start;
}

.footer-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-center strong {
  color: var(--navy);
  font-size: 17px;
}

.footer-center span,
.footer-right span,
.footer-right small {
  color: var(--muted);
  font-size: 12px;
}

.footer-right {
  justify-self: end;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-right a {
  color: var(--violet);
  font-weight: 800;
  font-size: 19px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes drift {
  50% { transform: translateY(-18px) translateX(12px) scale(1.03); }
}

@keyframes floatCard {
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  50% { transform: scale(1.15); opacity: 0.65; }
}

@keyframes blink {
  50% { opacity: 0.35; }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 50px;
  }

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

  .hero-visual {
    margin-top: -10px;
  }

  .story-grid,
  .mission-card {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-lines {
    border-left: 0;
    padding-left: 0;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 55px 0;
    text-align: center;
  }

  .footer-brand,
  .footer-right {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header,
  footer,
  .section {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    height: 78px;
  }

  .brand {
    transform: scale(0.9);
    transform-origin: left center;
  }

  .header-link {
    font-size: 13px;
    padding: 10px 14px;
  }

  .hero {
    min-height: auto;
    gap: 30px;
    padding: 50px 0 65px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-visual {
    height: 470px;
    transform: scale(0.78);
    transform-origin: center top;
    margin-bottom: -95px;
  }

  .float-card-one {
    left: -50px;
  }

  .float-card-two {
    right: -45px;
  }

  .story,
  .features,
  .mission,
  .launch {
    padding-block: 85px;
  }

  .story-grid {
    gap: 35px;
  }

  .story-copy {
    font-size: 17px;
  }

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

  .mission-card {
    padding: 42px 26px;
    border-radius: 28px;
  }

  .launch-box {
    min-height: 510px;
    border-radius: 28px;
  }

  .ticker {
    height: 66px;
  }

  .footer-center {
    order: 1;
  }

  .footer-brand {
    order: 0;
  }

  .footer-right {
    order: 2;
  }
}

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


/* Official approved logo image — do not redraw or recolor */
.brand {
  width: 142px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.official-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.welcome-mark {
  width: 188px;
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-official-logo {
  width: 188px;
  height: 126px;
}

.footer-brand .official-logo-img {
  filter: drop-shadow(0 5px 16px rgba(124, 58, 237, 0.12));
}


/* ---------------------------------------------------------------
   Story introduction
---------------------------------------------------------------- */
body.intro-active {
  overflow: hidden;
}

.main-website {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.main-website.website-visible {
  opacity: 1;
  transform: none;
}

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--navy);
  background:
    radial-gradient(circle at 20% 15%, rgba(124, 58, 237, 0.12), transparent 28rem),
    radial-gradient(circle at 85% 85%, rgba(157, 78, 221, 0.11), transparent 30rem),
    linear-gradient(150deg, #ffffff 0%, #fbf9ff 55%, #f3edff 100%);
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.brand-intro.intro-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro-background,
.intro-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro-grid {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(111, 43, 216, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 43, 216, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.intro-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  animation: introFloat 7s ease-in-out infinite;
}

.intro-orb-one {
  width: 330px;
  height: 330px;
  left: -95px;
  top: -80px;
  background: rgba(111, 43, 216, 0.09);
}

.intro-orb-two {
  width: 410px;
  height: 410px;
  right: -160px;
  bottom: -180px;
  background: rgba(157, 78, 221, 0.08);
  animation-delay: -2.5s;
}

.intro-skip {
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: 3;
  border: 1px solid rgba(16, 26, 68, 0.11);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  font: 700 13px "DM Sans", sans-serif;
  cursor: pointer;
}

.intro-story {
  width: min(900px, calc(100% - 38px));
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
}

.intro-scene {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(25px) scale(0.985);
  visibility: hidden;
  transition: opacity 0.58s ease, transform 0.58s ease, visibility 0.58s;
}

.intro-scene.active {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.intro-number {
  display: block;
  margin-bottom: 24px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.intro-scene > p,
.intro-question-list p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 5.7vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.intro-question-list {
  display: grid;
  gap: 12px;
}

.intro-question-list p {
  font-size: clamp(27px, 4vw, 50px);
}

.intro-question-list p:nth-child(2),
.intro-question-list p:nth-child(4),
.intro-emphasis p,
.intro-connection span {
  background: linear-gradient(115deg, var(--violet), #a334db);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro-connection strong,
.intro-connection span {
  font-size: clamp(44px, 7vw, 88px);
}

.intro-final-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-final-scene img {
  width: min(390px, 74vw);
  max-height: 245px;
  object-fit: contain;
  filter: drop-shadow(0 24px 46px rgba(76, 40, 160, 0.13));
}

.intro-final-scene small {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.intro-welcome {
  margin-bottom: 4px;
  color: var(--navy);
  font: 700 18px "DM Sans", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-progress {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(310px, calc(100% - 80px));
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 26, 68, 0.08);
  transform: translateX(-50%);
}

.intro-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--violet), #a334db);
}

.intro-progress span.running {
  animation: introProgress 8.1s linear forwards;
}

@keyframes introProgress {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes introFloat {
  50% { transform: translateY(-18px) translateX(12px) scale(1.04); }
}

@media (max-width: 640px) {
  .intro-story {
    min-height: 380px;
  }

  .intro-question-list {
    gap: 15px;
  }

  .intro-final-scene img {
    width: min(330px, 84vw);
  }

  .intro-skip {
    top: 16px;
    right: 16px;
  }

  .brand {
    width: 120px;
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-intro {
    display: none;
  }

  body.intro-active {
    overflow: auto;
  }

  .main-website {
    opacity: 1;
    transform: none;
  }
}
