:root {
  --navy-950: #06121f;
  --navy-900: #071625;
  --navy-850: #0b2033;
  --navy-800: #0e2a43;
  --blue-500: #0080ff;
  --blue-400: #27a0ff;
  --blue-100: #ddecff;
  --green-500: #16b364;
  --red-500: #e93434;
  --amber-500: #d97706;
  --ink: #102033;
  --muted: #5e6d7f;
  --line: #dce4ec;
  --paper: #f4f7fa;
  --white: #ffffff;
  --shadow: 0 32px 90px rgba(6, 18, 31, 0.16);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Segoe UI Variable Display", "Segoe UI", Inter, -apple-system, BlinkMacSystemFont, Roboto,
    Helvetica, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 10px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 22, 37, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(0, 128, 255, 0.22);
}

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

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #c5d1de;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
}

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

.button-light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 128, 255, 0.25), transparent 28%),
    radial-gradient(circle at 8% 72%, rgba(35, 116, 189, 0.18), transparent 27%),
    var(--navy-900);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -210px;
  bottom: 4%;
  border: 1px solid rgba(39, 160, 255, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(0, 128, 255, 0.035),
    0 0 0 145px rgba(0, 128, 255, 0.022);
}

.hero-grid {
  min-height: 920px;
  padding: 156px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: #096acb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #8fc9ff;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--blue-400);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(39, 160, 255, 0.12);
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.063em;
}

.hero h1 em {
  position: relative;
  z-index: 1;
  color: var(--blue-400);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 12px;
  left: -2px;
  right: -7px;
  bottom: 5px;
  background: rgba(0, 128, 255, 0.16);
  border-radius: 999px;
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: #b9c7d5;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: stretch;
  gap: 13px;
}

.store-button {
  min-width: 208px;
  min-height: 70px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 17px;
  text-align: left;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.store-button span:last-child {
  display: flex;
  flex-direction: column;
}

.store-button small {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
}

.store-button strong {
  margin-top: 3px;
  font-size: 19px;
  line-height: 1.15;
}

.store-button-primary {
  color: var(--white);
  background: var(--blue-500);
  box-shadow: 0 18px 46px rgba(0, 128, 255, 0.28);
}

a.store-button-primary:hover {
  background: #0876e6;
  box-shadow: 0 22px 55px rgba(0, 128, 255, 0.36);
  transform: translateY(-3px);
}

.store-button-muted {
  color: #98a8b8;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.play-mark {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid currentColor;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.14));
}

.apple-mark {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
}

.trust-row {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  color: #adbdcc;
  font-size: 13px;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row i {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: #7dd3a8;
  border: 1px solid rgba(22, 179, 100, 0.4);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
}

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

.phone-card {
  position: absolute;
  overflow: hidden;
  width: 390px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  background: var(--navy-950);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.46);
}

.phone-card img {
  width: 100%;
  height: auto;
}

.phone-card-front {
  z-index: 2;
  left: 70px;
  top: 22px;
  height: 680px;
  animation: phone-rise 0.8s 0.15s both ease-out;
}

.phone-card-back {
  z-index: 1;
  width: 330px;
  height: 590px;
  right: -22px;
  top: 105px;
  opacity: 0.62;
  transform: rotate(5deg);
  animation: phone-rise-back 0.9s 0.3s both ease-out;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(39, 160, 255, 0.2);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 560px;
  height: 560px;
  left: -8px;
  top: 80px;
}

.hero-orbit-two {
  width: 440px;
  height: 440px;
  left: 52px;
  top: 142px;
  border-color: rgba(39, 160, 255, 0.09);
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(14, 42, 67, 0.82);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: #9fb0c1;
  font-size: 11px;
}

.floating-card strong {
  margin-top: 3px;
  font-size: 14px;
}

.floating-card-money {
  right: -3px;
  top: 68px;
  animation: float-card 5s ease-in-out infinite;
}

.floating-card-offline {
  left: 0;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 11px;
  animation: float-card 5.8s 1s ease-in-out infinite;
}

.floating-card-offline > span {
  width: 12px;
  height: 12px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(22, 179, 100, 0.13);
}

.product-ribbon {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.ribbon-items {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #b9c7d5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ribbon-items i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  background: var(--blue-500);
  border-radius: 50%;
}

.ribbon-items b {
  margin-left: 4px;
  color: #8fc9ff;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-light {
  background: var(--paper);
}

.section-heading h2,
.offline-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.split-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(16, 32, 51, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.benefit-card:hover {
  border-color: #bed5eb;
  box-shadow: 0 22px 54px rgba(16, 32, 51, 0.1);
  transform: translateY(-6px);
}

.benefit-card-featured {
  min-height: 450px;
  grid-column: span 6;
  grid-row: span 2;
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 92% 5%, rgba(0, 128, 255, 0.27), transparent 42%),
    var(--navy-900);
}

.benefit-card:nth-child(2) {
  grid-column: span 6;
}

.benefit-card:nth-child(3),
.benefit-card:nth-child(4) {
  grid-column: span 3;
}

.card-index {
  position: absolute;
  right: 26px;
  top: 23px;
  color: #91a0af;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.benefit-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 43px;
  display: grid;
  place-items: center;
  color: var(--blue-500);
  border-radius: 20px;
  background: #e5f2ff;
  font-weight: 900;
}

.benefit-icon-ring {
  background: rgba(0, 128, 255, 0.13);
}

.benefit-icon-ring span {
  width: 36px;
  height: 36px;
  border: 7px solid var(--green-500);
  border-top-color: var(--blue-500);
  border-right-color: var(--red-500);
  border-radius: 50%;
}

.benefit-icon-calendar {
  font-size: 19px;
  border-top: 9px solid var(--blue-500);
  border-radius: 12px 12px 18px 18px;
}

.benefit-icon-clock {
  position: relative;
}

.benefit-icon-clock::before {
  content: "";
  width: 27px;
  height: 27px;
  border: 3px solid var(--blue-500);
  border-radius: 50%;
}

.benefit-icon-clock::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  left: 32px;
  top: 21px;
  background: var(--blue-500);
  box-shadow: 6px 10px 0 -0.5px var(--blue-500);
  transform-origin: bottom;
}

.benefit-icon-message {
  color: var(--green-500);
  background: #e4f7ed;
  font-size: 22px;
}

.benefit-card h3 {
  max-width: 330px;
  margin: 0;
  font-size: 25px;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.benefit-card p {
  max-width: 360px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.benefit-card-featured p {
  color: #aebdcc;
}

.mini-balance {
  position: absolute;
  inset: auto 30px 30px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.055);
}

.mini-balance small,
.mini-balance strong {
  display: block;
}

.mini-balance small {
  color: #8fa3b5;
}

.mini-balance strong {
  margin-top: 5px;
  font-size: 20px;
}

.mini-balance div {
  height: 8px;
  margin-top: 20px;
  display: flex;
  overflow: hidden;
  border-radius: 999px;
}

.mini-balance div span:nth-child(1) {
  width: 31%;
  background: var(--green-500);
}

.mini-balance div span:nth-child(2) {
  width: 31%;
  background: var(--blue-500);
}

.mini-balance div span:nth-child(3) {
  flex: 1;
  background: var(--red-500);
}

.showcase {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 0, rgba(0, 128, 255, 0.16), transparent 32%),
    var(--navy-900);
}

.showcase-heading {
  margin-bottom: 46px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.showcase-heading h2 {
  color: var(--white);
}

.kicker-blue {
  color: var(--blue-400);
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.gallery-controls button {
  width: 52px;
  height: 52px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-size: 23px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.gallery-controls button:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
}

.gallery-wrap {
  width: min(100%, 1600px);
  margin-inline: auto;
}

.screen-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 390px);
  gap: 22px;
  overflow-x: auto;
  padding: 0 max(20px, calc((100vw - 1180px) / 2)) 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.screen-slide {
  margin: 0;
  align-self: start;
  scroll-snap-align: start;
}

.screen-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
}

.screen-slide figcaption {
  margin: 18px 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #b9c7d5;
  font-size: 14px;
  font-weight: 700;
}

.screen-slide figcaption span {
  color: var(--blue-400);
  font-weight: 900;
}

.offline-section {
  overflow: hidden;
  background: var(--white);
}

.offline-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(60px, 9vw, 125px);
}

.offline-copy > p:not(.kicker) {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.check-list {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #304258;
  font-weight: 700;
}

.check-list span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--green-500);
  background: #e3f7ed;
  border-radius: 50%;
  font-size: 13px;
}

.offline-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 128, 255, 0.27), transparent 33%),
    var(--navy-900);
  box-shadow: var(--shadow);
}

.offline-phone {
  position: absolute;
  z-index: 2;
  width: 290px;
  height: 360px;
  left: 50%;
  top: 50%;
  padding: 48px 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 37px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.offline-phone img {
  border-radius: 20px;
}

.offline-phone strong {
  margin-top: 24px;
  font-size: 25px;
}

.offline-phone span {
  max-width: 200px;
  margin-top: 12px;
  color: #aebdcc;
  text-align: center;
}

.signal {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(39, 160, 255, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-one {
  width: 390px;
  height: 390px;
}

.signal-two {
  width: 520px;
  height: 520px;
}

.signal-three {
  width: 650px;
  height: 650px;
}

.sync-pill {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 28px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #dce8f4;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 18, 31, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.sync-pill i {
  width: 9px;
  height: 9px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(22, 179, 100, 0.12);
}

.process-section {
  background: #eaf1f7;
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 62px;
  text-align: center;
}

.centered-heading > p:last-child {
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.process-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  counter-reset: steps;
}

.process-grid li {
  position: relative;
  min-height: 260px;
  padding: 34px 36px;
  border-top: 1px solid #c9d5e1;
}

.process-grid li:not(:last-child) {
  border-right: 1px solid #c9d5e1;
}

.process-grid li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--blue-500);
  border: 1px solid #b9d8f7;
  border-radius: 50%;
  background: #f6fbff;
  font-weight: 900;
}

.process-grid h3 {
  margin: 38px 0 0;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.process-grid p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.opportunities-section {
  background: var(--paper);
}

.opportunities-card {
  position: relative;
  min-height: 530px;
  padding: clamp(42px, 6vw, 78px);
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  color: var(--white);
  border-radius: 42px;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 128, 255, 0.34), transparent 31%),
    var(--navy-900);
  box-shadow: var(--shadow);
}

.opportunities-card::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -130px;
  bottom: -160px;
  border: 1px solid rgba(39, 160, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(39, 160, 255, 0.04);
}

.opportunities-copy {
  position: relative;
  z-index: 2;
}

.coming-badge {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 7px 11px;
  color: #a9dbff;
  border: 1px solid rgba(39, 160, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 128, 255, 0.12);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.opportunities-copy h2 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(40px, 5vw, 65px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.opportunities-copy > p:not(.kicker) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #b9c7d5;
  font-size: 17px;
  line-height: 1.72;
}

.text-link {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.text-link span {
  color: var(--blue-400);
  font-size: 22px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.match-card {
  position: relative;
  z-index: 2;
  padding: 34px;
  color: var(--ink);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 32px 85px rgba(0, 0, 0, 0.35);
  transform: rotate(2.5deg);
}

.match-top {
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.match-top span {
  width: 63px;
  height: 63px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-500);
  border-radius: 50%;
  font-size: 19px;
  font-weight: 900;
}

.match-top small {
  max-width: 90px;
  color: var(--muted);
  line-height: 1.2;
}

.match-card > strong {
  font-size: 24px;
}

.match-card > p {
  margin: 7px 0 25px;
  color: var(--muted);
}

.match-card > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.match-card > div:last-child span {
  padding: 7px 10px;
  color: #096acb;
  border-radius: 999px;
  background: #e5f2ff;
  font-size: 11px;
  font-weight: 900;
}

.trust-section {
  background: var(--white);
}

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

.trust-grid article {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
}

.trust-grid article > span {
  display: block;
  color: var(--blue-500);
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.trust-grid h3 {
  margin: 60px 0 0;
  font-size: 22px;
}

.trust-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  align-items: start;
  gap: clamp(55px, 10vw, 135px);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:last-child {
  max-width: 390px;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-intro a {
  color: #096acb;
}

.faq-list {
  border-top: 1px solid #cbd6e0;
}

.faq-list details {
  border-bottom: 1px solid #cbd6e0;
}

.faq-list summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--blue-500);
  font-size: 27px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -7px 0 30px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0, rgba(0, 128, 255, 0.2), transparent 30%),
    var(--navy-900);
}

.final-cta-inner {
  min-height: 500px;
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 75px;
}

.final-cta h2 {
  max-width: 820px;
  color: var(--white);
}

.final-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.final-actions > small {
  color: #91a4b7;
  font-weight: 700;
}

.footer {
  padding: 72px 0 24px;
  color: #9eb0c1;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 52px;
}

.brand-footer {
  margin-bottom: 19px;
}

.footer-grid > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.footer-grid > div:first-child {
  padding-right: 30px;
}

.footer-grid p {
  max-width: 310px;
  margin: 0;
  line-height: 1.65;
}

.footer-grid strong {
  margin-bottom: 5px;
  color: var(--white);
}

.footer-grid a {
  color: #9eb0c1;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

@keyframes phone-rise {
  from {
    opacity: 0;
    transform: translateY(42px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-2deg);
  }
}

@keyframes phone-rise-back {
  from {
    opacity: 0;
    transform: translateY(55px) rotate(8deg);
  }
  to {
    opacity: 0.62;
    transform: translateY(0) rotate(5deg);
  }
}

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

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
  }

  .phone-card-front {
    left: 10px;
  }

  .phone-card-back {
    right: -80px;
  }

  .floating-card-money {
    right: -22px;
  }

  .benefit-card:nth-child(3),
  .benefit-card:nth-child(4) {
    grid-column: span 6;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-actions {
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 30px, 720px);
  }

  .main-nav {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    padding: 142px 0 75px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

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

  .hero-visual {
    width: min(100%, 610px);
    height: 660px;
    margin: 20px auto 0;
  }

  .phone-card-front {
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    animation: none;
  }

  .phone-card-back {
    right: -20px;
  }

  .floating-card-money {
    right: 4px;
  }

  .split-heading,
  .offline-grid,
  .opportunities-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    gap: 25px;
  }

  .benefit-card,
  .benefit-card-featured,
  .benefit-card:nth-child(2),
  .benefit-card:nth-child(3),
  .benefit-card:nth-child(4) {
    grid-column: span 6;
  }

  .offline-grid {
    gap: 55px;
  }

  .opportunities-card {
    gap: 40px;
  }

  .match-card {
    max-width: 420px;
    transform: rotate(1deg);
  }

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

  .process-grid li {
    min-height: auto;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 17px;
  }

  .process-grid li:not(:last-child) {
    border-right: 0;
  }

  .process-grid h3 {
    margin: 7px 0 0;
  }

  .process-grid p {
    grid-column: 2;
  }

  .faq-intro {
    position: static;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .topbar-inner {
    min-height: 68px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .topbar .button {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .hero-grid {
    padding-top: 122px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 65px);
  }

  .hero-lead {
    font-size: 18px;
  }

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

  .store-button {
    width: 100%;
    max-width: 330px;
  }

  .trust-row {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual {
    height: 570px;
  }

  .phone-card {
    width: 310px;
    border-radius: 29px;
  }

  .phone-card-front {
    height: 540px;
  }

  .phone-card-back {
    display: none;
  }

  .floating-card-money {
    right: -8px;
    top: 42px;
  }

  .floating-card-offline {
    left: -5px;
    bottom: 18px;
  }

  .ribbon-items {
    min-height: 64px;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading h2,
  .offline-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .benefit-grid {
    display: block;
  }

  .benefit-card {
    min-height: 300px;
    margin-bottom: 14px;
  }

  .benefit-card-featured {
    min-height: 470px;
  }

  .screen-gallery {
    grid-auto-columns: minmax(285px, 84vw);
    padding-left: 15px;
    padding-right: 15px;
  }

  .showcase-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .offline-panel {
    min-height: 440px;
    border-radius: 32px;
  }

  .offline-phone {
    width: 250px;
    height: 320px;
  }

  .sync-pill {
    right: 16px;
    bottom: 16px;
  }

  .opportunities-card {
    width: calc(100% - 20px);
    padding: 38px 25px;
    border-radius: 31px;
  }

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

  .trust-grid h3 {
    margin-top: 36px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 16px;
  }

  .final-cta-inner {
    min-height: auto;
    padding: 78px 0;
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

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

@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;
  }
}
