:root {
  --ink: #11131b;
  --muted: #666b7b;
  --paper: #f7f8fb;
  --surface: #ffffff;
  --line: #e6e7ee;
  --indigo: #514bea;
  --indigo-dark: #3029c2;
  --lime: #b7f253;
  --green: #166a47;
  --coral: #ff6a5f;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 28px 80px rgba(24, 20, 91, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 88px;
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, height 180ms ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(45, 39, 188, 0.9);
  box-shadow: 0 8px 32px rgba(19, 15, 86, 0.18);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.96);
}

.brand img {
  width: 168px;
  height: auto;
}

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

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--lime);
  transition: right 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 21px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.button-nav {
  color: var(--ink);
  background: var(--lime);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(183, 242, 83, 0.25);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 3px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 920px;
  padding: 154px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 64% 31%, rgba(184, 243, 83, 0.17), transparent 23%),
    linear-gradient(135deg, #5c55f2 0%, #4f48e7 52%, #443bd5 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hero-orb-one {
  top: 13%;
  right: 7%;
  width: 560px;
  height: 560px;
}

.hero-orb-two {
  top: 24%;
  right: 15%;
  width: 330px;
  height: 330px;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(370px, 0.96fr);
  align-items: center;
  gap: 54px;
  min-height: 620px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 58px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.74);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(183, 242, 83, 0.16);
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(62px, 7vw, 106px);
  font-weight: 700;
  line-height: 0.87;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--lime);
}

.hero-copy > p {
  max-width: 545px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 184px;
  min-height: 58px;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 20, 91, 0.19);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.play-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(24, 20, 91, 0.26);
}

.play-button svg {
  width: 26px;
  height: 30px;
  flex: 0 0 auto;
}

.play-button span {
  display: grid;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
}

.play-button small {
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
}

.text-link span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin: 42px 0 0;
}

.hero-stats div {
  min-width: 132px;
  padding: 0 23px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stats dt {
  font-size: 18px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: end;
  height: 700px;
}

.phone-glow {
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 42px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(33, 27, 156, 0.27);
  filter: blur(2px);
  transform: translateX(-50%);
}

.app-shot {
  position: absolute;
  right: -12px;
  bottom: -112px;
  width: min(550px, 46vw);
  max-height: 810px;
  object-fit: contain;
  filter: drop-shadow(0 35px 34px rgba(19, 14, 85, 0.34));
}

.score-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 20px 40px rgba(29, 24, 112, 0.24);
}

.score-pill-live {
  top: 95px;
  right: -18px;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.score-pill-live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.score-pill-update {
  left: -18px;
  bottom: 165px;
  flex-direction: column;
  width: 82px;
  height: 76px;
  justify-content: center;
  border-radius: 18px;
}

.score-pill-update strong {
  font-size: 21px;
  line-height: 1;
}

.score-pill-update small {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-ribbon {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-ribbon article {
  display: flex;
  gap: 17px;
  min-height: 154px;
  padding: 31px 27px;
  border-right: 1px solid var(--line);
}

.feature-ribbon article:nth-child(2) {
  background: var(--lime);
}

.feature-ribbon article:last-child {
  color: #fff;
  background: var(--indigo-dark);
  border-right: 0;
}

.feature-number {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.52;
}

.feature-ribbon h2 {
  margin: 0 0 7px;
  font-size: 22px;
  line-height: 1.1;
}

.feature-ribbon p {
  margin: 0;
  color: currentColor;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0.68;
}

.section {
  padding: 140px 0;
}

.features {
  padding-top: 190px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.kicker {
  margin-bottom: 18px;
  color: var(--green);
}

.section-heading h2,
.experience-copy h2,
.download-copy h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.section-heading > p,
.experience-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.feature-card-primary {
  border-color: transparent;
  background: var(--lime);
}

.feature-card-dark {
  color: #fff;
  border-color: transparent;
  background: var(--ink);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.07;
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 68px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
}

.icon-wrap svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card > span {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-card-dark > span {
  color: var(--lime);
}

.feature-card h3 {
  margin: 0 0 15px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: currentColor;
  font-size: 16px;
  opacity: 0.68;
}

.mini-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding: 17px 19px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.56);
}

.mini-score div {
  display: grid;
}

.mini-score b {
  font-size: 11px;
  letter-spacing: 0.1em;
}

.mini-score span {
  font-size: 23px;
  font-weight: 800;
}

.mini-score i {
  width: 1px;
  height: 32px;
  background: rgba(17, 19, 27, 0.18);
}

.tick-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.tick-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 10px;
}

.avatar-row {
  display: flex;
  margin-top: 31px;
}

.avatar-row b {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  margin-left: -8px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
}

.avatar-row b:first-child {
  margin-left: 0;
}

.experience {
  overflow: hidden;
  color: #fff;
  background: var(--indigo);
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 120px;
}

.experience-phone {
  position: relative;
  min-height: 720px;
}

.experience-phone::before {
  content: "";
  position: absolute;
  top: 9%;
  left: 5%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: var(--lime);
}

.experience-frame {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -150px;
  width: 410px;
  height: 820px;
  overflow: hidden;
  transform: translateX(-50%) rotate(-3deg);
  filter: drop-shadow(0 35px 38px rgba(20, 15, 96, 0.38));
}

.experience-frame img {
  width: 100%;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 14px 17px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.floating-card-top {
  top: 120px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-card-bottom {
  bottom: 96px;
  left: -5px;
  display: grid;
  background: var(--lime);
}

.floating-card strong {
  display: block;
  font-size: 14px;
}

.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 106, 95, 0.15);
}

.experience-copy {
  max-width: 560px;
}

.experience-copy .kicker {
  color: var(--lime);
}

.experience-copy > p {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
}

.experience-list {
  display: grid;
  margin-top: 48px;
}

.experience-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.experience-list article > span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.experience-list h3 {
  margin: 0 0 5px;
  font-size: 20px;
}

.experience-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.download {
  background: #fff;
}

.download-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.75fr 1.5fr auto;
  align-items: center;
  gap: 44px;
  min-height: 330px;
  padding: 58px 64px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--ink);
}

.download-card::after {
  content: "";
  position: absolute;
  top: -130px;
  right: 18%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.download-mark {
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  border-radius: 38px;
  color: var(--ink);
  background: var(--lime);
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  transform: rotate(-7deg);
}

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

.download-copy .kicker {
  color: var(--lime);
}

.download-copy h2 {
  font-size: clamp(45px, 5vw, 68px);
}

.download-copy p {
  max-width: 520px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.play-button-dark {
  position: relative;
  z-index: 2;
  color: var(--ink);
  background: var(--lime);
}

.site-footer {
  color: #fff;
  background: #0b0c12;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding-top: 58px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: 145px;
}

.footer-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--lime);
}

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

/* Privacy policy */
.policy-page {
  background: #fff;
}

.policy-site-header {
  position: fixed;
}

.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-nav a[aria-current="page"]::after {
  right: 0;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 112px;
  color: #fff;
  background: linear-gradient(135deg, #514bea 0%, #3931c7 100%);
}

.policy-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.policy-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: center;
  gap: 80px;
}

.policy-hero .eyebrow {
  margin-bottom: 20px;
  color: var(--lime);
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.05em;
}

.policy-hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
}

.policy-shield {
  display: grid;
  place-items: center;
  width: 240px;
  height: 240px;
  justify-self: end;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 34px 70px rgba(20, 15, 96, 0.27);
}

.policy-shield svg {
  width: 105px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-body {
  padding-top: 110px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  justify-content: space-between;
  gap: 100px;
}

.policy-aside {
  position: sticky;
  top: 105px;
  align-self: start;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.policy-aside .kicker {
  margin-bottom: 20px;
}

.policy-aside dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.policy-aside dl div {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.policy-aside dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-aside dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 700;
}

.policy-aside dd a,
.policy-article a {
  color: var(--indigo-dark);
  text-decoration: underline;
  text-decoration-color: rgba(48, 41, 194, 0.3);
  text-underline-offset: 3px;
}

.policy-aside nav {
  display: grid;
  gap: 7px;
  margin-top: 24px;
}

.policy-aside nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.policy-aside nav a::after {
  content: "→";
}

.policy-aside nav a:hover {
  color: var(--indigo-dark);
}

.policy-article > section {
  scroll-margin-top: 104px;
  padding: 0 0 66px;
  margin: 0 0 66px;
  border-bottom: 1px solid var(--line);
}

.policy-article > section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.policy-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.policy-article h2 {
  margin: 0 0 25px;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.policy-article h3 {
  margin: 34px 0 9px;
  font-size: 22px;
  line-height: 1.2;
}

.policy-article p {
  margin: 0 0 18px;
  color: #4f5361;
  font-size: 17px;
  line-height: 1.7;
}

.policy-article ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 22px;
  color: #4f5361;
}

.policy-callout {
  margin-top: 30px;
  padding: 24px 26px;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #3f4450;
  background: #eefbd8;
}

.policy-callout strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.policy-contact {
  padding: 42px !important;
  border: 0 !important;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--indigo);
}

.policy-contact .policy-index {
  color: var(--lime);
}

.policy-contact p {
  color: rgba(255, 255, 255, 0.66);
}

.policy-contact .policy-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  color: var(--lime);
  font-size: clamp(24px, 4vw, 37px);
  font-weight: 800;
  text-decoration: none;
}

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

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

.reveal-delay {
  transition-delay: 140ms;
}

.reveal-delay-small {
  transition-delay: 90ms;
}

@media (max-width: 1050px) {
  .hero-layout {
    grid-template-columns: 1fr 0.78fr;
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(60px, 8.4vw, 84px);
  }

  .app-shot {
    right: -70px;
    width: 510px;
  }

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

  .feature-ribbon article:nth-child(2) {
    border-right: 0;
  }

  .section-heading {
    gap: 40px;
  }

  .feature-card {
    padding: 28px;
  }

  .experience-layout {
    gap: 70px;
  }

  .experience-phone::before {
    left: -12%;
  }

  .floating-card-top {
    right: -35px;
  }

  .download-card {
    grid-template-columns: auto 1fr;
  }

  .download-card .play-button {
    grid-column: 2;
    justify-self: start;
  }

  .policy-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 58px;
  }
}

@media (max-width: 800px) {
  .shell {
    width: min(100% - 32px, 620px);
  }

  .site-header,
  .site-header.scrolled {
    height: 70px;
  }

  .brand img {
    width: 132px;
  }

  .menu-button {
    display: block;
  }

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

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .button-nav {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px;
    background: rgba(45, 39, 188, 0.98);
    box-shadow: 0 18px 40px rgba(19, 15, 86, 0.2);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: clamp(54px, 16vw, 82px);
  }

  .hero-copy > p {
    max-width: 520px;
    font-size: 17px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats div {
    min-width: 0;
    padding: 0 12px;
  }

  .hero-visual {
    height: min(980px, 190vw);
    margin-top: 20px;
  }

  .app-shot {
    top: 20px;
    right: 50%;
    bottom: auto;
    width: min(460px, 84vw);
    transform: translateX(50%);
  }

  .score-pill-live {
    top: 125px;
    right: 4%;
  }

  .score-pill-update {
    top: 48%;
    left: 4%;
    bottom: auto;
  }

  .feature-ribbon {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .section,
  .features {
    padding: 100px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .feature-card {
    min-height: 390px;
  }

  .icon-wrap {
    margin-bottom: 48px;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .experience-phone {
    min-height: 660px;
  }

  .experience-phone::before {
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translateX(-50%);
  }

  .experience-frame {
    width: 380px;
  }

  .floating-card-top {
    right: 0;
  }

  .download-card {
    grid-template-columns: 1fr;
    padding: 44px;
  }

  .download-mark {
    width: 110px;
    height: 110px;
    border-radius: 26px;
    font-size: 68px;
  }

  .download-card .play-button {
    grid-column: 1;
  }

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

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

  .policy-hero {
    padding: 145px 0 86px;
  }

  .policy-hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .policy-shield {
    width: 150px;
    height: 150px;
    justify-self: start;
  }

  .policy-shield svg {
    width: 68px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .policy-aside {
    position: static;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 15.5vw;
    line-height: 0.93;
  }

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

  .hero-stats dt {
    font-size: 15px;
  }

  .hero-stats dd {
    font-size: 10px;
  }

  .score-pill-live {
    top: 90px;
  }

  .score-pill-update {
    top: 47%;
  }

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

  .feature-ribbon article {
    min-height: 128px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading h2,
  .experience-copy h2,
  .download-copy h2 {
    font-size: 44px;
  }

  .feature-card h3 {
    font-size: 29px;
  }

  .experience-phone {
    min-height: 590px;
  }

  .experience-phone::before {
    width: 390px;
    height: 390px;
  }

  .experience-frame {
    bottom: -180px;
    width: 330px;
  }

  .floating-card-top {
    top: 76px;
  }

  .floating-card-bottom {
    bottom: 72px;
  }

  .download-card {
    padding: 34px 25px;
  }

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

  .policy-hero h1 {
    font-size: 15vw;
  }

  .policy-hero p {
    font-size: 17px;
  }

  .policy-body {
    padding-top: 76px;
  }

  .policy-article > section {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }

  .policy-contact {
    padding: 29px 23px !important;
  }
}

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

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

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