:root {
  --bg: #eef7ff;
  --bg-deep: #d9ebff;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: #ffffff;
  --text: #26416f;
  --muted: #5f79a3;
  --accent: #458cff;
  --accent-deep: #2f6de0;
  --accent-soft: #b9d7ff;
  --sun: #ffd97b;
  --coral: #ff8c8c;
  --line: rgba(45, 87, 143, 0.12);
  --shadow: 0 24px 60px rgba(80, 122, 178, 0.18);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Dosis", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 221, 163, 0.55), transparent 18%),
    radial-gradient(circle at top right, rgba(154, 211, 255, 0.75), transparent 24%),
    linear-gradient(180deg, #f8fcff 0%, var(--bg) 30%, #e8f3ff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
  opacity: 0.65;
  z-index: 0;
}

body::before {
  top: -110px;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 230, 187, 0.85), transparent 65%);
}

body::after {
  right: -80px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(171, 218, 255, 0.8), transparent 65%);
}

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

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 16px 0 22px;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  border-bottom: 1px solid rgba(107, 128, 161, 0.26);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(78, 137, 224, 0.18);
}

.topnav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.topnav a {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
  backdrop-filter: blur(10px);
}

.topnav .app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(5, 5, 5, 0.98));
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(20, 20, 20, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.topnav .app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(20, 20, 20, 0.26);
}

.topnav .app-store-badge.is-placeholder {
  cursor: default;
  pointer-events: none;
}

.app-store-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.app-store-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.app-store-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.app-store-kicker {
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.app-store-title {
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero,
.final-cta {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}

.hero {
  padding: 28px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(86, 137, 208, 0.12);
}

.hero h1,
.section-heading h2,
.final-copy h2 {
  margin: 18px 0 18px;
  line-height: 0.96;
  font-family: "Dosis", "Trebuchet MS", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
  color: var(--accent-deep);
}

.hero-text,
.section-heading p,
.feature p,
.trust-card p,
.final-copy p,
.step-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, #63a6ff 0%, var(--accent) 55%, var(--accent-deep) 100%);
  color: white;
  box-shadow: 0 18px 30px rgba(69, 140, 255, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border: 1px solid rgba(77, 123, 189, 0.14);
}

.button.large {
  width: 100%;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.hero-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffbf59;
}

.hero-visual {
  position: relative;
}

.trust-card,
.feature,
.step-card,
.quote-card,
.cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.phone-stack {
  position: relative;
  display: flex;
  justify-content: center;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 48px 0 18px;
}

.phone-card {
  width: fit-content;
  max-width: 100%;
  border-radius: 34px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 40px rgba(74, 113, 170, 0.22);
}

.phone-card img {
  width: 220px;
  border-radius: 28px;
}

.secondary-shot {
  transform: translateY(42px) rotate(8deg);
}

.primary-shot {
  transform: rotate(-7deg);
}

.trust-strip {
  padding: 44px 0 20px;
}

.trust-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.trust-card img {
  width: 100%;
  max-width: 240px;
  max-height: 220px;
  object-fit: contain;
  justify-self: center;
}

.trust-card h2,
.feature h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.85rem;
  line-height: 1.05;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 22px;
  padding: 20px 0 32px;
}

.feature {
  border-radius: 30px;
  padding: 28px;
}

.feature-large {
  background:
    radial-gradient(circle at top left, rgba(255, 224, 175, 0.52), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(222, 239, 255, 0.9));
}

.feature img {
  margin-top: 22px;
  max-height: 220px;
  object-fit: contain;
}

.feature-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(69, 140, 255, 0.12);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.flow,
.quote-band,
.final-cta {
  padding: 42px 0;
}

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

.section-heading h2,
.final-copy h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.1rem);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 28px;
}

.step-card strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.9rem;
  font-weight: 800;
}

.quote-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: center;
  padding: 26px 30px;
  border-radius: 36px;
  background:
    radial-gradient(circle at left, rgba(255, 225, 165, 0.36), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(223, 239, 255, 0.92));
}

.quote-card img {
  max-width: 240px;
}

.quote-card blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.35;
  color: var(--text);
}

.final-cta {
  gap: 28px;
}

.cta-box {
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: 28px;
  border-radius: 36px;
}

.cta-box img {
  max-width: 320px;
}

.site-footer {
  position: relative;
  width: 100%;
  margin-top: 10px;
  padding: 28px 0 8px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  border-top: 1px solid rgba(107, 128, 161, 0.26);
  transform: translateX(-50%);
}

.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 0;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-name {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.footer-copy {
  color: rgba(70, 80, 97, 0.72);
  font-size: 1.08rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(70, 80, 97, 0.72);
  font-size: 1.08rem;
  font-weight: 600;
}

.footer-links a:hover,
.policy-contact a:hover {
  color: var(--accent-deep);
}

.policy-shell {
  padding-bottom: 48px;
}

.policy-topbar {
  min-height: 96px;
  padding-top: 18px;
  padding-bottom: 24px;
}

.policy-page {
  max-width: 900px;
  margin: 0 auto;
}

.policy-hero {
  padding: 28px 0 24px;
}

.policy-hero h1 {
  margin: 18px 0 10px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.policy-updated {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-deep);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(86, 137, 208, 0.1);
}

.policy-card {
  padding: 34px 36px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.policy-card h2 {
  margin: 28px 0 10px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.policy-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.policy-contact {
  margin-top: 4px;
}

.policy-contact a {
  color: var(--accent-deep);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero,
  .final-cta,
  .feature-grid,
  .flow-steps,
  .trust-card,
  .quote-card {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
    padding-bottom: 56px;
  }

  .phone-stack {
    margin-top: 0;
    padding-bottom: 10px;
  }

  .footer-card {
    padding: 0;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 18px;
  }

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

  .topnav {
    justify-content: flex-start;
  }

  .topnav .app-store-badge {
    min-width: 0;
    max-width: 100%;
    padding: 8px 12px;
  }

  .app-store-title {
    font-size: 1.12rem;
  }

  .app-store-kicker {
    font-size: 0.84rem;
  }

  .hero h1,
  .section-heading h2,
  .final-copy h2 {
    font-size: clamp(2.4rem, 13vw, 3.7rem);
  }

  .trust-card,
  .feature,
  .step-card,
  .quote-card,
  .cta-box {
    border-radius: 24px;
  }

  .phone-stack {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
  }

  .phone-card {
    width: min(100%, 300px);
  }

  .primary-shot,
  .secondary-shot {
    transform: none;
  }

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

  .trust-card {
    padding: 22px;
  }

  .quote-card {
    padding: 22px;
  }

  .quote-card img {
    max-width: 200px;
  }

  .footer-card,
  .footer-branding,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-card {
    padding: 0;
  }

  .policy-card {
    padding: 24px 22px;
    border-radius: 24px;
  }
}
