@font-face {
  font-family: Aeonik;
  src: url("assets/fonts/AeonikPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Aeonik;
  src: url("assets/fonts/AeonikPro-Medium.woff2") format("woff2");
  font-weight: 500 900;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
:root {
  --ink: #191c1f;
  --muted: #717173;
  --copy: #58585b;
  --canvas: #fff;
  --widget: #f7f7f7;
  --blue: #1326fd;
  --page: 48px;
  --nav: 76px;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Aeonik, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid rgb(25 117 235 / 50%);
  outline-offset: 2px;
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px #1975eb;
}
img {
  max-width: 100%;
  display: block;
}
p {
  font-size: 18px;
  line-height: 1.5;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}
h2 {
  font-size: clamp(44px, 5.5vw, 76px);
  margin-bottom: 24px;
}
h3 {
  font-weight: 500;
  line-height: 1.12;
  font-size: 28px;
}
section {
  scroll-margin-top: 76px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: #fff;
  color: #000;
  padding: 16px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 11px 24px;
  border: 0;
  border-radius: 9999px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.btn:hover {
  opacity: 0.85;
}
.btn-dark,
.btn-primary {
  background: #1f1f1f;
  color: #fff;
}
.btn-light {
  background: #fff;
  color: #191c1f;
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 17px;
  border-bottom: 1px solid currentColor;
  padding: 6px 0;
}
.nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  transition: background 0.2s;
}
.nav.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  border-bottom: 1px solid #eee;
}
.nav-inner {
  max-width: 1600px;
  margin: auto;
  min-height: var(--nav);
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 14px var(--page);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  letter-spacing: -1px;
  font-weight: 500;
}
.nav-logo img {
  border-radius: 8px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
  align-items: center;
}
.nav-links a,
.nav-login {
  font-size: 16px;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-login:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav .btn-primary {
  background: #fff;
  color: #191c1f;
}
.nav.scrolled .btn-primary {
  background: #191c1f;
  color: #fff;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 48px;
  height: 48px;
  padding: 13px;
  color: inherit;
}
.nav-toggle span {
  display: block;
  background: currentColor;
  height: 2px;
  margin: 6px 0;
  transition: transform 0.2s;
}
.hero {
  height: min(920px, 100svh);
  min-height: 740px;
  position: relative;
  overflow: hidden;
  background: #2863cd;
  color: #fff;
}
.hero-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 44, 112, 0.28), transparent 70%),
    linear-gradient(0deg, rgba(7, 34, 78, 0.32), transparent 30%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px var(--page) 40px;
  max-width: 1550px;
  margin: auto;
}
.hero h1 {
  font-size: clamp(64px, 7vw, 104px);
  line-height: 0.98;
  max-width: 820px;
  margin-bottom: 24px;
}
.hero-content p {
  font-size: 21px;
  line-height: 1.4;
  max-width: 470px;
  margin-bottom: 28px;
}
.hero-caption {
  position: absolute;
  bottom: 32px;
  left: var(--page);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
}
.eyebrow {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 500;
}
.editorial-section {
  padding: 112px var(--page);
  max-width: 1560px;
  margin: auto;
}
.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-heading p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 auto 28px;
  color: var(--copy);
}
.discovery-stage {
  border-radius: 32px;
  background: #f5f5f7;
  min-height: 580px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
}
.city-orbit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse at 30% 70%,
    #3453fc,
    #03108d 60%,
    #00043c
  );
  min-height: 520px;
  overflow: hidden;
}
.city-orbit::before,
.city-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid #ffffff26;
  border-radius: 50%;
  width: 380px;
  height: 380px;
  transform: rotate(-25deg) scaleY(0.7);
}
.city-orbit::after {
  width: 600px;
  height: 600px;
}
.city-orbit span {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e3ecfc;
  color: #00043c;
  width: 112px;
  height: 112px;
  font-size: 23px;
  box-shadow: 0 24px 64px #0004;
}
.city-orbit span:nth-child(2) {
  transform: translate(-40px, -115px);
  background: #6fa0ff;
}
.city-orbit span:nth-child(3) {
  transform: translate(-70px, 94px);
  background: #805cff;
}
.city-orbit span:nth-child(4) {
  position: absolute;
  right: 12%;
  top: 30%;
  width: 86px;
  height: 86px;
  background: #fff;
}
.feature-story {
  padding: 64px;
  align-self: center;
}
.story-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  font-size: 28px;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
}
.feature-story h3 {
  font-size: 44px;
  letter-spacing: -0.035em;
}
.feature-story p {
  color: var(--copy);
  max-width: 330px;
}
.journey-section {
  background: #16133a;
  color: #fff;
  padding: 100px var(--page);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.journey-copy {
  max-width: 580px;
  justify-self: center;
}
.journey-copy p:not(.eyebrow) {
  max-width: 410px;
  color: #c9c9cd;
  margin-bottom: 28px;
}
.journey-visual {
  padding: 40px;
  max-width: 600px;
  width: 100%;
  justify-self: center;
}
.journey-ticket {
  background: linear-gradient(145deg, #f1e5fc, #ddc8ee);
  border-radius: 32px;
  padding: 40px;
  color: #28133a;
  transform: rotate(5deg);
  box-shadow: 0 30px 90px #673cdc44;
}
.ticket-route {
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -1px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 0;
}
.ticket-route span:nth-child(2) {
  font-size: 32px;
  color: #65407c;
}
.ticket-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed #718ac680;
  padding-top: 24px;
  font-size: 16px;
}
.visual-caption {
  text-align: center;
  color: #8d92a2;
  font-size: 14px;
  margin: 36px 0 0;
}
.biopay-section {
  padding-bottom: 80px;
}
.biopay-art {
  background: radial-gradient(
    ellipse at 50% 100%,
    #36a9be,
    #bcebdd 42%,
    #dff6ef 72%
  );
  border-radius: 32px;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.identity-card {
  background: linear-gradient(145deg, #125063, #021920);
  border-radius: 26px;
  width: 350px;
  height: 230px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 28px 50px #082a3566;
  transform: rotate(-8deg);
}
.identity-brand,
.identity-footer {
  display: flex;
  justify-content: space-between;
}
.identity-brand {
  font-size: 23px;
}
.identity-brand span {
  font-size: 16px;
}
.face-mark {
  position: relative;
  width: 72px;
  height: 72px;
  border: 2px solid #0cd9e6;
  border-radius: 22px;
  margin: 22px auto;
  display: grid;
  place-items: center;
}
.face-mark b {
  font-size: 44px;
  color: #daf8fa;
  font-weight: 400;
}
.identity-footer {
  font-size: 13px;
  color: #c9c9cd;
}
.section-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin: 24px auto 0;
  max-width: 580px;
}
.how-section {
  padding: 96px var(--page);
  background: #f7f7f7;
}
.steps {
  list-style: none;
  padding: 0;
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.steps > li {
  border-top: 1px solid #d5d5d5;
  padding-top: 24px;
}
.steps > li > span {
  font-size: 16px;
  color: #717173;
  display: block;
  margin-bottom: 32px;
}
.steps p {
  color: #717173;
  font-size: 17px;
}
.faq-section {
  max-width: 1400px;
  padding: 112px var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.faq-section h2 {
  font-size: 56px;
}
.faq-list details {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.faq-list summary {
  cursor: pointer;
  font-size: 21px;
  line-height: 1.4;
  padding: 4px 28px 4px 0;
  position: relative;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 0;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list p {
  font-size: 16px;
  color: #717173;
  margin: 16px 0 4px;
}
.faq-list p a {
  text-decoration: underline;
}
.download-section {
  text-align: center;
  padding: 112px 24px;
  background: #dce6ff;
}
.download-section h2 {
  font-size: clamp(56px, 7vw, 96px);
}
.download-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer {
  background: #101012;
  color: #fff;
  padding: 56px var(--page) 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid #ffffff21;
  padding-bottom: 40px;
}
.footer-top p {
  font-size: 16px;
  margin: 0;
  color: #a1a1a3;
}
.footer-grid {
  display: flex;
  gap: 140px;
  padding: 48px 0;
}
.footer-grid h3 {
  font-size: 16px;
  color: #99999d;
  margin-bottom: 20px;
}
.footer-grid a {
  display: block;
  font-size: 16px;
  padding: 8px 0;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-copy {
  font-size: 13px;
  color: #8b8b8e;
  border-top: 1px solid #ffffff21;
  padding-top: 24px;
  margin: 0;
}
.legal-body .nav {
  color: var(--ink);
  background: #fff;
  position: sticky;
}
.legal-body .nav .btn-primary {
  background: #191c1f;
  color: #fff;
}
.container {
  width: min(100% - 48px, 1280px);
  margin: auto;
}
.legal-page {
  padding: 64px 0 100px;
}
.legal-content {
  max-width: 800px;
}
.legal-content h1 {
  font-size: 64px;
  margin-bottom: 20px;
}
.legal-content h2 {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 48px 0 18px;
}
.legal-content h3 {
  font-size: 21px;
  margin-top: 28px;
}
.legal-content p,
.legal-content li {
  font:
    16px/1.7 Inter,
    Arial,
    sans-serif;
  color: #55565a;
}
.legal-content li {
  padding: 4px 0;
}
.legal-content a {
  text-decoration: underline;
  color: #315fd6;
}
.legal-content code {
  overflow-wrap: anywhere;
}
.updated {
  color: #717173 !important;
  font-size: 14px !important;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  padding: 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1600px) {
  :root {
    --page: max(48px, calc((100vw - 1456px) / 2));
  }
}
@media (max-width: 1050px) {
  :root {
    --page: 32px;
  }
  .nav-inner {
    gap: 24px;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-login {
    display: none;
  }
  .feature-story {
    padding: 36px;
  }
  .journey-section {
    gap: 20px;
  }
  .journey-visual {
    padding: 12px;
  }
  .steps {
    gap: 32px;
  }
  .faq-section {
    gap: 32px;
  }
}
@media (max-width: 760px) {
  :root {
    --page: 20px;
    --nav: 72px;
  }
  .nav-inner {
    gap: 16px;
    padding: 12px 20px;
  }
  .nav-logo {
    font-size: 25px;
  }
  .nav-logo img {
    width: 28px;
    height: 28px;
  }
  .nav-cta {
    gap: 8px;
  }
  .nav-cta .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .nav.menu-ready .nav-toggle {
    display: block;
    flex-shrink: 0;
  }
  .nav:not(.menu-ready) {
    position: absolute;
    background: #fff;
    color: var(--ink);
  }
  .legal-body .nav:not(.menu-ready) {
    position: sticky;
  }
  .nav:not(.menu-ready) + main .hero-content {
    padding-top: 148px;
  }
  .nav:not(.menu-ready) .nav-inner {
    flex-wrap: wrap;
  }
  .nav:not(.menu-ready) .nav-links {
    display: flex;
    flex-wrap: wrap;
    order: 3;
    width: 100%;
    gap: 0 24px;
  }
  .nav:not(.menu-ready) .nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 72px 0 0;
    background: #fff;
    color: #191c1f;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    overflow: auto;
  }
  .nav-links.open li {
    border-bottom: 1px solid #eee;
  }
  .nav-links.open a {
    display: block;
    padding: 24px 0;
    font-size: 28px;
  }
  .menu-open .nav {
    position: fixed;
    background: #fff;
    color: #191c1f;
  }
  .menu-open .nav .btn-primary,
  .nav:not(.menu-ready) .btn-primary {
    background: #191c1f;
    color: #fff;
  }
  .nav-toggle.active span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .nav-toggle.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .hero {
    height: 844px;
    min-height: 740px;
    max-height: 1050px;
  }
  .hero-photo {
    object-position: 74% center;
  }
  .hero-shade {
    background: linear-gradient(180deg, #124fad55 0%, #10469a33 50%, #081f3c55);
  }
  .hero-content {
    padding-top: 126px;
  }
  .hero h1 {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0;
    max-width: 335px;
    margin-bottom: 20px;
  }
  .hero-content p {
    font-size: 17px;
    line-height: 1.45;
    max-width: 335px;
    margin-bottom: 24px;
  }
  .hero-caption {
    bottom: 28px;
    font-size: 13px;
  }
  .editorial-section {
    padding: 72px 20px;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .section-heading p:not(.eyebrow) {
    font-size: 17px;
  }
  h2 {
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .eyebrow {
    font-size: 14px;
  }
  .discovery-stage {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .city-orbit {
    min-height: 320px;
  }
  .city-orbit span {
    width: 86px;
    height: 86px;
    font-size: 19px;
  }
  .city-orbit span:nth-child(2) {
    transform: translate(-15px, -60px);
  }
  .city-orbit span:nth-child(3) {
    transform: translate(-35px, 65px);
  }
  .city-orbit span:nth-child(4) {
    right: 9%;
    top: 19%;
    width: 68px;
    height: 68px;
  }
  .feature-story {
    padding: 32px;
  }
  .feature-story h3 {
    font-size: 36px;
  }
  .journey-section {
    grid-template-columns: 1fr;
    padding: 72px 20px;
    gap: 32px;
  }
  .journey-copy {
    justify-self: start;
  }
  .journey-copy p:not(.eyebrow) {
    font-size: 17px;
  }
  .journey-visual {
    padding: 20px 12px;
    max-width: 420px;
  }
  .journey-ticket {
    padding: 28px;
    border-radius: 24px;
  }
  .ticket-route {
    font-size: 36px;
  }
  .biopay-art {
    min-height: 340px;
    border-radius: 24px;
  }
  .identity-card {
    width: 280px;
    height: 192px;
    padding: 20px;
  }
  .face-mark {
    margin: 14px auto;
    width: 60px;
    height: 60px;
  }
  .how-section {
    padding: 72px 20px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .steps > li > span {
    margin-bottom: 18px;
  }
  .steps h3 {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .faq-section {
    padding: 72px 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-section h2 {
    font-size: 44px;
  }
  .faq-list summary {
    font-size: 19px;
  }
  .download-section {
    padding: 80px 20px;
  }
  .download-section h2 {
    font-size: 56px;
  }
  .footer {
    padding: 40px 20px 24px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 28px;
  }
  .footer-grid {
    gap: 48px;
    padding: 36px 0;
  }
  .footer-grid a {
    font-size: 14px;
  }
  .footer-grid h3 {
    font-size: 14px;
  }
  .legal-page {
    padding: 40px 0 60px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .legal-content h1 {
    font-size: 44px;
  }
  .legal-content h2 {
    font-size: 26px;
  }
  .legal-content {
    overflow-wrap: anywhere;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media (forced-colors: active) {
  .btn {
    border: 1px solid ButtonText;
  }
  .nav-toggle span {
    background: ButtonText;
  }
  .hero-content {
    background: Canvas;
    color: CanvasText;
  }
  .hero-shade {
    display: none;
  }
}
@media (max-width: 360px) {
  .nav-inner {
    gap: 8px;
  }
  .nav-cta .btn {
    white-space: nowrap;
    padding-inline: 12px;
  }
}
