:root {
  color-scheme: light;
  --bg: #eefbff;
  --bg-2: #f5fff8;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --ink: #13243a;
  --muted: #5e708a;
  --line: rgba(23, 121, 191, 0.16);
  --blue: #1779bf;
  --sky: #39aee8;
  --aqua: #8fe4ff;
  --mint: #24c873;
  --lime: #b9f25f;
  --shadow: 0 24px 70px rgba(23, 121, 191, 0.16);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(185, 242, 95, 0.30), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(143, 228, 255, 0.42), transparent 30rem),
    linear-gradient(135deg, var(--bg), var(--bg-2));
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(238, 251, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img,
.hero-icon img,
.phone-hero-card img,
.product-row img {
  border-radius: 18%;
  box-shadow: 0 12px 30px rgba(23, 121, 191, 0.22);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.hero {
  min-height: calc(100vh - 65px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: clamp(42px, 8vw, 94px) clamp(18px, 5vw, 72px);
}

.hero-copy {
  max-width: 720px;
}

.hero-icon {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding: 10px 14px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 38px rgba(23, 121, 191, 0.10);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(62px, 11vw, 132px);
  line-height: 0.86;
}

h2 {
  margin: 0;
  font-size: clamp(29px, 4vw, 48px);
  line-height: 1.05;
}

h3 {
  margin: 14px 0 8px;
  font-size: 20px;
}

.lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: white;
  background: linear-gradient(90deg, var(--mint), var(--sky), var(--blue));
  box-shadow: 0 15px 32px rgba(23, 121, 191, 0.24);
}

.button.secondary {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.phone-preview {
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(100%, 390px);
  padding: 18px;
  border-radius: 42px;
  background: #071626;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.phone-shell::before {
  content: "";
  display: block;
  height: 6px;
  width: 86px;
  margin: 6px auto 12px;
  border-radius: 999px;
  background: rgba(143, 228, 255, 0.32);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 14px;
  color: rgba(255,255,255,0.74);
}

.phone-top span {
  width: 44px;
}

.phone-hero-card,
.verdict-card,
.mini-grid > div,
.product-row {
  background: var(--surface-solid);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.phone-hero-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 26px;
  margin-bottom: 12px;
}

.phone-hero-card img {
  width: 78px;
  height: 78px;
}

.phone-hero-card b,
.phone-hero-card strong {
  display: block;
}

.phone-hero-card strong {
  margin-top: 4px;
  color: var(--mint);
  font-size: 42px;
  line-height: 1;
}

.verdict-card {
  padding: 20px;
  border-radius: 24px;
}

.verdict-card p,
.verdict-card h2,
.verdict-card span {
  margin: 0;
}

.verdict-card h2 {
  margin-top: 6px;
  color: var(--blue);
}

.verdict-card span,
.product-row span,
.mini-grid span {
  color: var(--muted);
  font-size: 13px;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}

.mini-grid > div {
  padding: 14px;
  border-radius: 18px;
}

.mini-grid b,
.mini-grid span {
  display: block;
}

.mini-grid b {
  color: var(--blue);
}

.product-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  margin-top: 10px;
}

.product-row img {
  width: 42px;
  height: 42px;
}

.product-row div span {
  display: block;
  margin-top: 2px;
}

.product-row > strong {
  color: var(--mint);
}

.section {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.feature-grid article,
.support-grid article,
.legal-page {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(23, 121, 191, 0.08);
  backdrop-filter: blur(16px);
}

.feature-grid article {
  padding: 22px;
  border-radius: 22px;
}

.feature-grid p,
.support-grid p,
.legal-page p,
.legal-page li,
.feedback-band p {
  color: var(--muted);
  line-height: 1.62;
}

.symbol {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(36, 200, 115, 0.14), rgba(57, 174, 232, 0.16));
  color: var(--blue);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 32px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.steps span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.feedback-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: clamp(28px, 5vw, 46px);
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 16px 48px rgba(23, 121, 191, 0.10);
}

.cta {
  margin: clamp(52px, 7vw, 78px) clamp(18px, 5vw, 72px) clamp(44px, 7vw, 72px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 22%, rgba(185, 242, 95, 0.36), transparent 18rem),
    linear-gradient(135deg, #0d6ea8, #24c873);
  color: white;
  text-align: center;
}

.cta p {
  color: rgba(255,255,255,0.80);
}

.cta .button.primary {
  background: white;
  color: var(--blue);
}

.legal-page {
  max-width: 920px;
  margin: 48px auto;
  padding: clamp(24px, 5vw, 56px);
  border-radius: 28px;
}

.legal-page h1 {
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 18px;
  line-height: 0.98;
}

.legal-page h2 {
  margin-top: 32px;
  font-size: 24px;
}

.legal-page a {
  color: var(--blue);
  font-weight: 700;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.support-grid article {
  padding: 20px;
  border-radius: 20px;
}

.support-grid h2 {
  font-size: 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  gap: 16px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .split,
  .feedback-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(56px, 19vw, 92px);
  }

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

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