@font-face {
  font-family: 'Exo2Bold';
  src: url('./fonts/Exo2-Bold.ttf') format('truetype');
  font-display: swap;
}

:root {
  --blue: #2b63c7;
  --blue-dark: #15439a;
  --red: #e6372d;
  --yellow: #ffd849;
  --green: #38d12e;
  --panel: rgba(255, 255, 255, 0.82);
  --text: #1a3270;
  --shadow: 0 24px 60px rgba(39, 74, 154, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Trebuchet MS', 'Verdana', sans-serif;
  color: var(--text);
  background: radial-gradient(
      circle at top,
      rgba(255, 234, 128, 0.55),
      transparent 28%
    ),
    radial-gradient(circle at 15% 20%, rgba(255, 82, 82, 0.24), transparent 16%),
    radial-gradient(circle at 88% 34%, rgba(76, 175, 80, 0.2), transparent 18%),
    #f9fbff;
}

.parallax-background {
  position: fixed;
  top: 0vh;
  right: 0;
  left: 0;
  height: 180vh;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.18)
    ),
    url('./images/background.png') center top / cover no-repeat;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
}

.parallax-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 12% 24%,
      rgba(255, 255, 255, 0.24),
      transparent 18%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(255, 235, 59, 0.18),
      transparent 24%
    ),
    radial-gradient(circle at 74% 76%, rgba(76, 175, 80, 0.12), transparent 20%);
}

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

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

.page-shell {
  min-height: 100vh;
  position: relative;
  z-index: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 18px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(17, 55, 132, 0.08);
  backdrop-filter: blur(10px);
}

.brand,
.nav a {
  font-family: 'Exo2Bold', 'Trebuchet MS', sans-serif;
  font-size: 1.3rem;
  color: var(--blue);
}

.nav {
  display: flex;
  gap: 34px;
  margin-right: auto;
  margin-left: 12px;
}

.download-button {
  padding: 14px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f24d39, #d92a22);
  color: #fff;
  font-family: 'Exo2Bold', 'Trebuchet MS', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 26px rgba(217, 42, 34, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 20px 90px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 28px;
}

.hero__logo {
  width: min(720px, 82vw);
  filter: drop-shadow(0 16px 18px rgba(50, 73, 138, 0.22));
}

.hero__badge {
  width: min(200px, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 26%, #7ff66d, #14ac14 72%);
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.88),
    0 26px 40px rgba(56, 84, 145, 0.25);
}

.hero__badge img {
  width: 88%;
}

.hero__copy {
  max-width: 720px;
  padding: 0 16px;
}

.eyebrow,
h1,
h2,
h3,
.store-badge__title {
  font-family: 'Exo2Bold', 'Trebuchet MS', sans-serif;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f39600;
}

.eyebrow--blue {
  color: var(--blue);
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
  color: var(--blue-dark);
  text-shadow: 0 4px 0 rgba(255, 255, 255, 0.55);
}

.hero__text {
  margin: 14px auto 0;
  max-width: 600px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(26, 50, 112, 0.88);
}

.hero__glow {
  position: absolute;
  inset: auto auto 8% 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(18px);
  background: radial-gradient(
    circle,
    rgba(111, 227, 215, 0.46),
    transparent 70%
  );
}

.hero__glow--right {
  right: -60px;
  left: auto;
  bottom: 20%;
  background: radial-gradient(
    circle,
    rgba(255, 228, 115, 0.4),
    transparent 70%
  );
}

.features {
  padding: 24px 20px 100px;
}

.features__panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 34px 44px;
  border-radius: 48px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.features__header {
  margin-bottom: 8px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--blue);
}

.features__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 30px;
}

.feature-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 24px;
  border-radius: 26px;
  color: #fff;
  box-shadow: 0 14px 34px rgba(57, 92, 171, 0.16);
}

.feature-card--gold {
  background: radial-gradient(
      circle at right top,
      rgba(255, 255, 255, 0.44),
      transparent 30%
    ),
    linear-gradient(135deg, #ffc800, #ff9f12 55%, #ffbf42);
}

.feature-card--blue {
  background: radial-gradient(
      circle at left bottom,
      rgba(255, 255, 255, 0.25),
      transparent 36%
    ),
    linear-gradient(135deg, #2aa8ff, #1f63ea 55%, #4bc2ff);
}

.feature-card--green {
  background: radial-gradient(
      circle at right center,
      rgba(255, 255, 255, 0.32),
      transparent 34%
    ),
    linear-gradient(135deg, #9af838, #4cb31c 55%, #8fca50);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.22);
  font-family: 'Exo2Bold', 'Trebuchet MS', sans-serif;
  font-size: 1.5rem;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.feature-card p {
  margin: 0;
  max-width: 38ch;
  font-size: 1.15rem;
  line-height: 1.45;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  min-width: 190px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #050505;
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 16, 44, 0.18);
}

.store-badge__mini {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
}

.store-badge__title {
  display: block;
  font-size: 1.65rem;
  line-height: 1.05;
}

.phone-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 680px;
}

.phone {
  position: relative;
  z-index: 1;
  width: min(360px, 82vw);
  padding: 16px;
  border-radius: 52px;
  background: linear-gradient(180deg, #2a69da, #10357d 72%);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.18),
    0 34px 52px rgba(27, 60, 130, 0.28);
  transform: rotate(8deg);
}

.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 36%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: rgba(8, 29, 75, 0.9);
}

.phone img {
  width: 100%;
  border-radius: 40px;
  aspect-ratio: 2 / 4;
  object-fit: cover;
}

.phone-shadow {
  position: absolute;
  inset: auto 16% 10% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 90, 150, 0.22), transparent 72%);
  filter: blur(12px);
}

.testing-section {
  padding: 0 20px 100px;
}

.testing-section__panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: 52px 34px 44px;
  border-radius: 48px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.testing-section__header {
  margin-bottom: 26px;
}

.testing-section__text {
  max-width: 700px;
  margin: 12px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(26, 50, 112, 0.88);
}

.testing-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 26px 28px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(43, 99, 199, 0.1),
    rgba(56, 209, 46, 0.1)
  );
  border: 1px solid rgba(43, 99, 199, 0.14);
}

.testing-callout h3,
.testing-step__body h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: var(--blue-dark);
}

.testing-callout p,
.testing-step__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(26, 50, 112, 0.88);
}

.testing-callout a,
.testing-step__body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.testing-button {
  flex-shrink: 0;
  padding: 16px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #2d7ef7, #1557cc);
  color: #fff;
  font-family: 'Exo2Bold', 'Trebuchet MS', sans-serif;
  font-size: 1rem;
  box-shadow: 0 12px 24px rgba(21, 87, 204, 0.22);
}

.testing-callout .testing-button,
.testing-callout .testing-button:visited,
.testing-callout .testing-button:hover,
.testing-callout .testing-button:active {
  color: #fff;
  text-decoration: none;
}

.testing-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.testing-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(57, 92, 171, 0.1);
}

.testing-step__number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #2b63c7, #4b8fff);
  color: #fff;
  font-family: 'Exo2Bold', 'Trebuchet MS', sans-serif;
  font-size: 1.4rem;
}

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

.testing-shot {
  margin: 0;
  padding: 14px 14px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(57, 92, 171, 0.12);
}

.testing-shot img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  object-fit: cover;
  object-position: top center;
}

.testing-shot figcaption {
  margin-top: 12px;
  font-size: 0.96rem;
  line-height: 1.45;
  color: rgba(26, 50, 112, 0.84);
}

.download-section {
  padding: 0 20px 100px;
}

.download-section__panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 34px;
  border-radius: 48px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.download-section__header {
  margin-bottom: 24px;
}

.download-section__text {
  max-width: 640px;
  margin: 12px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(26, 50, 112, 0.88);
}

.download-section__text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.policy-page {
  padding: 24px 20px 100px;
}

.policy-section {
  max-width: 1120px;
  margin: 0 auto;
}

.policy-panel {
  padding: 52px 34px 44px;
  border-radius: 48px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.policy-title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  color: var(--blue-dark);
}

.policy-meta {
  margin: 14px 0 0;
  font-size: 0.95rem;
  color: rgba(26, 50, 112, 0.7);
}

.policy-lead {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(26, 50, 112, 0.88);
}

.policy-block + .policy-block {
  margin-top: 28px;
}

.policy-block h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--blue);
}

.policy-block p {
  margin: 0;
  max-width: 820px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 50, 112, 0.9);
}

.policy-block p + p,
.policy-block .policy-list + p {
  margin-top: 12px;
}

.policy-block a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  overflow-wrap: anywhere;
}

.policy-list {
  margin: 14px 0;
  padding-left: 22px;
  color: rgba(26, 50, 112, 0.9);
}

.policy-list li + li {
  margin-top: 8px;
}

.store-row--disabled {
  opacity: 0.72;
}

.store-badge--disabled {
  pointer-events: none;
  background: linear-gradient(180deg, #515151, #2f2f2f);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: none;
  filter: grayscale(0.2);
}

.site-footer {
  padding: 0 20px 36px;
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(39, 74, 154, 0.12);
  backdrop-filter: blur(10px);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(26, 50, 112, 0.82);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 22px;
}

.site-footer__links a {
  font-family: 'Exo2Bold', 'Trebuchet MS', sans-serif;
  font-size: 0.95rem;
  color: var(--blue);
}

@media (max-width: 900px) {
  .topbar__inner {
    gap: 18px;
    padding: 14px 18px;
  }

  .nav {
    gap: 18px;
    margin-left: 0;
  }

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

  .phone-wrap {
    min-height: auto;
    padding-top: 12px;
  }

  .testing-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .testing-steps,
  .testing-gallery {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 10px 10px 0;
  }

  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 22px;
  }

  .brand {
    width: 100%;
    text-align: center;
  }

  .nav {
    order: 1;
    margin-right: 0;
  }

  .download-button {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 72px;
  }

  .features__panel {
    padding: 38px 18px 32px;
    border-radius: 34px;
  }

  .download-section__panel {
    padding: 38px 18px 32px;
    border-radius: 34px;
  }

  .policy-page {
    padding: 24px 20px 72px;
  }

  .policy-panel {
    padding: 38px 18px 32px;
    border-radius: 34px;
  }

  .testing-section__panel {
    padding: 38px 18px 32px;
    border-radius: 34px;
  }

  .site-footer {
    padding: 0 20px 28px;
  }

  .site-footer__inner {
    padding: 20px 18px;
    border-radius: 24px;
  }

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

  .feature-card p {
    max-width: none;
  }

  .store-badge {
    width: 100%;
  }

  .phone {
    transform: rotate(4deg);
    border-radius: 42px;
  }

  .testing-step {
    grid-template-columns: 1fr;
  }

  .phone img {
    border-radius: 30px;
  }

  .testing-shot img {
    height: auto;
    max-height: 520px;
  }
}
