:root {
  --ink: #17233b;
  --muted: #667085;
  --line: #dfe5ef;
  --paper: #ffffff;
  --soft: #f5f8ff;
  --blue: #0c66e4;
  --blue-dark: #0748a8;
  --pink: #f43f82;
  --gold: #ffb800;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(24, 39, 75, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

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

.shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(216, 225, 240, 0.8);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 35px rgba(24, 39, 75, 0.06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(30, 46, 81, 0.15);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.brand-name strong span {
  color: var(--blue);
}

.brand-name small {
  margin-top: 5px;
  color: #7d879a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 92px;
}

.desktop-nav a {
  color: #46526a;
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.store-button:focus-visible,
.desktop-nav a:focus-visible,
.footer-main a:focus-visible {
  outline: 3px solid rgba(12, 102, 228, 0.25);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.button-dark {
  color: white;
  background: var(--ink);
  box-shadow: 0 9px 24px rgba(23, 35, 59, 0.2);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), #3e8df4);
  box-shadow: 0 14px 30px rgba(12, 102, 228, 0.25);
}

.button-primary svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 168px 0 96px;
  background:
    radial-gradient(circle at 52% 46%, rgba(255, 255, 255, 0.92), transparent 35%),
    linear-gradient(120deg, #f5f9ff 0%, #fff 49%, #fff8fb 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dfe6f2 24%, #dfe6f2 76%, transparent);
  content: "";
}

.hero-orb,
.download-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-orb-blue {
  top: 80px;
  left: -190px;
  width: 470px;
  height: 470px;
  background: radial-gradient(circle, rgba(30, 132, 255, 0.13), rgba(30, 132, 255, 0));
}

.hero-orb-pink {
  right: -240px;
  bottom: -80px;
  width: 610px;
  height: 610px;
  background: radial-gradient(circle, rgba(255, 63, 130, 0.11), rgba(255, 63, 130, 0));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.91fr 1.09fr;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  padding-bottom: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.eyebrow-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(12, 102, 228, 0.1);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 610px;
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -3.5px;
}

h1 em,
.section-heading h2 em {
  position: relative;
  color: var(--pink);
  font-style: normal;
  white-space: nowrap;
}

h1 em::after {
  position: absolute;
  right: 2px;
  bottom: -3px;
  left: 2px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244, 63, 130, 0.13);
  content: "";
}

.hero-lede {
  max-width: 540px;
  margin: 27px 0 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #39465e;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--pink);
  font-size: 18px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}

.trust-faces {
  display: flex;
}

.face {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-left: -8px;
  border: 3px solid white;
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.face:first-child {
  margin-left: 0;
}

.face-blue {
  background: var(--blue);
}

.face-pink {
  background: var(--pink);
}

.face-gold {
  color: #7a5200;
  background: var(--gold);
}

.hero-trust p {
  margin: 0;
  color: #7b8597;
  font-size: 12px;
  line-height: 1.4;
}

.hero-trust strong {
  color: #354057;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.phone-glow {
  position: absolute;
  top: 54%;
  left: 50%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 38%, rgba(12, 102, 228, 0.3), transparent 38%),
    radial-gradient(circle at 68% 59%, rgba(244, 63, 130, 0.24), transparent 42%);
  filter: blur(40px);
  transform: translate(-50%, -50%);
}

.phone {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 285px;
  height: 575px;
  padding: 9px;
  overflow: hidden;
  border: 2px solid #22304a;
  border-radius: 46px;
  background: #182238;
  box-shadow:
    0 44px 80px rgba(27, 43, 78, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: translateX(-50%) rotate(2.5deg);
}

.phone-top {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 5;
  width: 86px;
  height: 24px;
  border-radius: 20px;
  background: #172139;
  transform: translateX(-50%);
}

.phone-speaker {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 32px;
  height: 4px;
  border-radius: 4px;
  background: #344057;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 42px 18px 16px;
  border-radius: 37px;
  background: linear-gradient(160deg, #fbfdff, #f4f7ff 55%, #fff9fc);
}

.app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.mini-brand img {
  width: 27px;
  height: 27px;
  border-radius: 8px;
}

.app-bar button {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--pink);
  font-size: 10px;
  font-weight: 800;
}

.welcome {
  margin-top: 27px;
}

.welcome > span {
  color: #798498;
  font-size: 10px;
  font-weight: 600;
}

.welcome h2 {
  margin-top: 4px;
  font-size: 21px;
  letter-spacing: -0.7px;
}

.welcome p {
  margin: 8px 0 0;
  color: #7b8597;
  font-size: 10px;
  line-height: 1.55;
}

.focus-card {
  margin-top: 24px;
  padding: 17px 15px;
  border: 1px solid rgba(12, 102, 228, 0.11);
  border-radius: 18px;
  background: white;
  box-shadow: 0 13px 28px rgba(29, 45, 81, 0.08);
}

.focus-label {
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.focus-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
}

.focus-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: var(--pink);
  background: #fff0f6;
}

.focus-icon svg,
.float-icon svg,
.feature-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.focus-row > div:last-child {
  display: flex;
  flex-direction: column;
}

.focus-row strong {
  font-size: 10px;
}

.focus-row span {
  color: #8a93a4;
  font-size: 8px;
}

.quick-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 23px 2px 11px;
}

.quick-title strong {
  font-size: 11px;
}

.quick-title span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-card {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
}

.quick-blue {
  color: #0b4fae;
  background: #eaf3ff;
}

.quick-pink {
  color: #b31d59;
  background: #fff0f6;
}

.quick-number {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.quick-card span:last-child {
  margin-top: 1px;
  font-size: 8px;
  font-weight: 600;
}

.bottom-nav {
  position: absolute;
  right: 21px;
  bottom: 18px;
  left: 21px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 0;
  border: 1px solid #e9edf4;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
}

.bottom-nav span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b9c2d2;
}

.bottom-nav .active {
  width: 18px;
  border-radius: 10px;
  background: var(--blue);
}

.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 17px 40px rgba(31, 50, 91, 0.14);
  backdrop-filter: blur(12px);
}

.float-card-left {
  top: 145px;
  left: 3%;
  animation: float 5s ease-in-out infinite;
}

.float-card-right {
  right: 0;
  bottom: 100px;
  animation: float 5.5s ease-in-out 0.8s infinite;
}

.float-icon {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
}

.float-icon.blue {
  color: var(--blue);
  background: #eaf3ff;
}

.float-icon.pink {
  color: var(--pink);
  background: #fff0f6;
}

.float-card > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.float-card small {
  color: #8791a3;
  font-size: 8px;
}

.float-card strong {
  margin-top: 3px;
  font-size: 11px;
}

.visual-dots {
  position: absolute;
  z-index: 1;
  width: 95px;
  height: 95px;
  opacity: 0.34;
  background-image: radial-gradient(var(--blue) 1.3px, transparent 1.3px);
  background-size: 12px 12px;
}

.dots-left {
  bottom: 25px;
  left: 7%;
}

.dots-right {
  top: 22px;
  right: 11%;
  background-image: radial-gradient(var(--pink) 1.3px, transparent 1.3px);
}

.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 5;
  display: grid;
  width: 28px;
  height: 44px;
  place-items: start center;
  padding-top: 8px;
  border: 1px solid #bdc6d5;
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 5px;
  background: var(--blue);
  animation: scroll 1.8s ease-in-out infinite;
}

.section {
  padding: 120px 0;
}

.why-section {
  background: white;
}

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

.centered {
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.section-heading h2,
.story-copy h2,
.faq-intro h2,
.download-content h2 {
  margin-top: 16px;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -2.1px;
}

.section-heading > p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 38px 34px;
  overflow: hidden;
  border: 1px solid #e5eaf2;
  border-radius: 24px;
  background: white;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.feature-number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: #e4e9f1;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 17px;
}

.feature-icon svg {
  width: 26px;
}

.feature-blue {
  color: var(--blue);
  background: #eaf3ff;
}

.feature-pink {
  color: var(--pink);
  background: #fff0f6;
}

.feature-gold {
  color: #c78300;
  background: #fff7df;
}

.feature-card h3 {
  margin-top: 28px;
  font-size: 21px;
  letter-spacing: -0.6px;
}

.feature-card p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.story-section {
  overflow: hidden;
  background: #f5f8ff;
}

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

.story-art {
  min-height: 540px;
}

.story-shape {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: 52% 48% 42% 58% / 53% 48% 52% 47%;
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 255, 255, 0.95), transparent 30%),
    linear-gradient(145deg, #dfeeff, #f2e7f1 55%, #ffeacf);
}

.story-icon-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: min(330px, 72%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 34px 80px rgba(36, 56, 93, 0.24);
  transform: translate(-50%, -50%) rotate(-4deg);
  backdrop-filter: blur(8px);
}

.story-icon-frame img {
  width: 100%;
  border-radius: 24px;
}

.orbit {
  position: absolute;
  z-index: 4;
  display: block;
  border: 5px solid white;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(24, 39, 75, 0.14);
}

.orbit-one {
  top: 58px;
  right: 52px;
  width: 35px;
  height: 35px;
  background: var(--pink);
}

.orbit-two {
  bottom: 50px;
  left: 57px;
  width: 48px;
  height: 48px;
  background: var(--blue);
}

.orbit-three {
  right: 28px;
  bottom: 115px;
  width: 22px;
  height: 22px;
  background: var(--gold);
}

.story-copy h2 {
  max-width: 560px;
}

.story-lede {
  margin: 25px 0 35px;
  color: var(--muted);
  font-size: 17px;
}

.story-points {
  display: grid;
  gap: 4px;
}

.story-point {
  display: flex;
  gap: 17px;
  padding: 17px 0;
  border-bottom: 1px solid #dce4f1;
}

.story-point:last-child {
  border-bottom: 0;
}

.story-point > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: white;
  box-shadow: 0 5px 15px rgba(24, 39, 75, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.story-point strong {
  display: block;
  font-size: 15px;
}

.story-point p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}

.faq-intro h2 {
  margin-bottom: 20px;
}

.faq-intro > p {
  margin: 0 0 28px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.accordion-item button > span:first-child {
  padding-right: 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.accordion-plus {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f2f5fa;
}

.accordion-plus::before,
.accordion-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--blue);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.accordion-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] .accordion-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  overflow: hidden;
}

.accordion-panel p {
  max-width: 600px;
  margin: -7px 45px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: 30px 0 115px;
}

.download-card {
  position: relative;
  overflow: hidden;
  padding: 75px 40px;
  border-radius: 36px;
  color: white;
  background:
    radial-gradient(circle at 15% 15%, rgba(44, 128, 255, 0.35), transparent 31%),
    radial-gradient(circle at 85% 76%, rgba(244, 63, 130, 0.28), transparent 29%),
    #15213a;
  box-shadow: 0 35px 70px rgba(23, 35, 59, 0.18);
}

.download-card::before {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
  content: "";
}

.download-content {
  position: relative;
  z-index: 2;
  max-width: 710px;
  margin: 0 auto;
  text-align: center;
}

.download-icon {
  width: 94px;
  height: 94px;
  margin: 0 auto 27px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.download-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-content .section-kicker {
  color: #7eb8ff;
}

.download-content h2 {
  margin-top: 12px;
}

.download-content > p:not(.store-note) {
  max-width: 530px;
  margin: 20px auto 0;
  color: #bbc5d7;
  font-size: 17px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 32px;
}

.store-button {
  display: inline-flex;
  min-width: 192px;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: white;
  background: #05080e;
  text-align: left;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.store-button:hover {
  border-color: rgba(255, 255, 255, 0.52);
  transform: translateY(-2px);
}

.store-button svg {
  width: 29px;
  fill: currentColor;
}

.store-button .play-icon {
  width: 31px;
}

.store-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.store-button small {
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: 0.2px;
}

.store-button strong {
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 500;
}

.store-note {
  margin: 17px 0 0;
  color: #8692a8;
  font-size: 11px;
}

.web-app-button {
  margin-top: 18px;
}

.site-footer {
  padding: 58px 0 22px;
  color: #a9b2c1;
  background: #0f192d;
}

.footer-main {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  color: white;
}

.footer-main > p {
  margin: 0 auto;
  font-size: 13px;
}

.footer-main nav {
  display: flex;
  gap: 27px;
}

.footer-main nav a {
  font-size: 12px;
  font-weight: 600;
}

.footer-main nav a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 21px;
  font-size: 10px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  max-width: 350px;
  flex-direction: column;
  padding: 15px 18px;
  border: 1px solid #dbe3f0;
  border-radius: 14px;
  background: white;
  box-shadow: 0 20px 50px rgba(23, 35, 59, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast strong {
  font-size: 13px;
}

.toast span {
  color: var(--muted);
  font-size: 11px;
}

.toast code {
  color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal-mid {
  transition-delay: 100ms;
}

.reveal-late {
  transition-delay: 180ms;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

@media (max-width: 1020px) {
  .desktop-nav {
    margin-left: 20px;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-grid {
    gap: 20px;
  }

  .float-card-left {
    left: -4%;
  }

  .float-card-right {
    right: -4%;
  }

  .story-grid {
    gap: 60px;
  }

  .faq-grid {
    gap: 70px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 36px, 680px);
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 43px;
    height: 43px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #dfe5ef;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
  }

  .menu-button span {
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 160ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 77px 18px auto;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 20px;
    border: 1px solid #e3e9f3;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
    backdrop-filter: blur(18px);
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    padding: 10px 8px;
    font-weight: 600;
  }

  .mobile-nav .button {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 145px 0 115px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .hero-copy {
    max-width: 620px;
    padding: 0;
    text-align: center;
  }

  h1 {
    margin: 0 auto;
    font-size: clamp(48px, 10vw, 68px);
  }

  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    min-height: 590px;
  }

  .float-card-left {
    left: 4%;
  }

  .float-card-right {
    right: 4%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 90px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 50px auto 0;
  }

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

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

  .story-art {
    min-height: 500px;
  }

  .story-shape {
    height: 500px;
  }

  .story-copy {
    max-width: 620px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-intro {
    max-width: 570px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 30px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name strong {
    font-size: 18px;
  }

  .hero {
    padding-top: 130px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  h1 {
    font-size: 44px;
    letter-spacing: -2.5px;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    margin-top: 34px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .phone {
    width: 245px;
    height: 495px;
    border-radius: 41px;
  }

  .phone-screen {
    padding: 40px 15px 15px;
    border-radius: 32px;
  }

  .welcome {
    margin-top: 19px;
  }

  .welcome h2 {
    font-size: 18px;
  }

  .focus-card {
    margin-top: 18px;
  }

  .quick-title {
    margin-top: 17px;
  }

  .quick-card {
    min-height: 75px;
  }

  .float-card {
    min-width: 0;
    padding: 10px;
  }

  .float-card-left {
    top: 135px;
    left: -1%;
  }

  .float-card-right {
    right: -2%;
    bottom: 50px;
  }

  .float-card > span:last-child {
    display: none;
  }

  .section-heading h2,
  .story-copy h2,
  .faq-intro h2,
  .download-content h2 {
    font-size: 35px;
    letter-spacing: -1.5px;
  }

  .section-heading > p,
  .story-lede {
    font-size: 15px;
  }

  .feature-card {
    padding: 31px 27px;
  }

  .story-art {
    min-height: 390px;
  }

  .story-shape {
    height: 390px;
  }

  .story-icon-frame {
    width: 75%;
  }

  .orbit-one {
    top: 40px;
    right: 28px;
  }

  .orbit-two {
    bottom: 34px;
    left: 28px;
  }

  .download-section {
    padding-bottom: 80px;
  }

  .download-card {
    padding: 55px 20px;
    border-radius: 28px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer-main {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .footer-main > p {
    margin: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .toast {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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