:root {
  --blue: #0010a0;
  --blue-soft: rgba(0, 16, 160, .07);
  --pink: #ff22a9;
  --pink-soft: rgba(255, 34, 169, .10);
  --ink: #151827;
  --muted: #667085;
  --line: #e8eaf6;
  --green: #1bbf76;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .90);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

nav {
  display: flex;
  gap: 26px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: 54px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 58px 0 74px;
}

.heroWatermark {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: -2;
  width: min(840px, 64vw);
  max-height: 440px;
  object-fit: contain;
  opacity: .055;
  transform: translateX(-50%);
}

.bigR {
  position: absolute;
  right: 24%;
  bottom: 22px;
  z-index: -1;
  font-size: min(52vw, 720px);
  font-weight: 950;
  line-height: .72;
  background: linear-gradient(145deg, rgba(0, 16, 160, .10), rgba(255, 34, 169, .13));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: clamp(52px, 7vw, 92px);
  line-height: .95;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.6;
}

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

.storeBadge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
  height: 62px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 16, 160, .10);
}

.storeBadge svg {
  width: 28px;
  height: 28px;
  fill: var(--blue);
}

.storeBadge span {
  display: grid;
  color: var(--blue);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.1;
}

.storeBadge small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.phoneScene {
  display: grid;
  place-items: center;
  min-height: 620px;
}

.phoneImage {
  width: min(350px, 80vw);
  height: auto;
  filter: drop-shadow(0 34px 62px rgba(0, 16, 160, .22));
}

.featureBand,
.splitBand,
.ctaBand {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
  border-top: 1px solid var(--line);
}

.sectionIntro {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, .3fr);
  gap: 28px;
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 0;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

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

.featureGrid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.featureGrid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 34, 169, .38);
  box-shadow: 0 18px 48px rgba(0, 16, 160, .10);
}

.featureGrid img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 20px;
}

.featureGrid h3 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 21px;
}

.featureGrid p,
.conceptList p,
.ctaBand p {
  color: var(--muted);
  line-height: 1.6;
}

.splitBand {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
}

.conceptList {
  display: grid;
  gap: 14px;
}

.conceptList article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.conceptList span {
  color: var(--pink);
  font-size: 18px;
  font-weight: 900;
}

.conceptList p {
  margin: 0;
}

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

.ctaBand {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(120deg, var(--blue-soft), var(--pink-soft));
}

.ctaBand p {
  max-width: 720px;
  margin-bottom: 0;
}

.ctaBand a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  height: 48px;
  border-radius: 6px;
  background: var(--pink);
  color: white;
  font-weight: 850;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 34px 20px 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 960px) {
  nav {
    display: none;
  }

  .hero,
  .sectionIntro,
  .splitBand,
  .ctaBand {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .phoneScene {
    min-height: auto;
  }

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

  .ctaBand {
    padding: 30px;
  }
}
