:root {
  --snow: #fff6f9;
  --white: #fcfcfc;
  --petal: #ffc8dd;
  --kiss: #ff70a5;
  --ice: #bde0fe;
  --blue: #92c3f0;
  --ink: #383838;
  --muted: #66666b;
  --line: #efdde6;
  --panel: rgba(255, 255, 255, 0.78);
  --shadow: 0 28px 80px rgba(56, 56, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(189, 224, 254, 0.85), transparent 26rem),
    radial-gradient(circle at 18% 18%, rgba(255, 200, 221, 0.95), transparent 27rem),
    linear-gradient(180deg, var(--snow) 0%, var(--white) 42%, #ffffff 100%);
  font-family: Nunito, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(56, 56, 56, 0.08);
  background: rgba(255, 246, 249, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.2rem;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(146, 195, 240, 0.24);
}

.brand-icon img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-size: 1.08rem;
  line-height: 1;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.35rem);
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}

nav a,
.site-footer a {
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 31rem);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  min-height: calc(100vh - 5rem);
  padding: clamp(2rem, 5vw, 4.6rem) clamp(1rem, 6vw, 6rem);
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--kiss);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.hero-text {
  max-width: 38rem;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.88rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--kiss);
  box-shadow: 0 16px 34px rgba(255, 112, 165, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.hero-art {
  display: grid;
  justify-items: center;
}

.phone-preview {
  position: relative;
  width: min(100%, 24rem);
  aspect-ratio: 0.462;
  padding: 0.55rem;
  border-radius: 2.3rem;
  background: linear-gradient(160deg, var(--petal), var(--ice) 48%, var(--blue));
  box-shadow: var(--shadow);
}

.phone-preview::before {
  content: "";
  position: absolute;
  inset: 0.95rem 33% auto;
  z-index: 1;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(56, 56, 56, 0.18);
}

.phone-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 1.85rem;
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.intro div {
  min-height: 12rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.75);
}

.stat {
  display: block;
  margin-bottom: 0.7rem;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
}

.intro p,
.feature-grid p,
.support p,
.legal-copy p {
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 6vw, 6rem);
}

.features {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 5vw, 5rem);
}

.section-heading {
  max-width: 48rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

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

.feature-grid article,
figure {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(56, 56, 56, 0.07);
}

.screens {
  background: linear-gradient(180deg, #ffffff 0%, var(--snow) 100%);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 74rem;
  margin: 2rem auto 0;
}

figure {
  margin: 0;
  text-align: center;
}

figure img {
  width: 100%;
  max-height: 43rem;
  object-fit: cover;
  object-position: top center;
  border-radius: 1rem;
  box-shadow: 0 18px 46px rgba(56, 56, 56, 0.12);
}

.featured-screen {
  transform: translateY(-1rem);
}

figcaption {
  margin-top: 0.9rem;
  color: var(--ink);
  font-weight: 900;
}

.support,
.legal {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
}

.support {
  color: var(--ink);
  background: linear-gradient(135deg, var(--ice), var(--petal));
}

.support .eyebrow {
  color: var(--ink);
}

.support-panel {
  max-width: 42rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  margin: 0.35rem 0 1rem;
  color: var(--ink);
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
  font-weight: 900;
  text-decoration-color: var(--kiss);
  text-decoration-thickness: 0.18rem;
  text-underline-offset: 0.28rem;
  overflow-wrap: anywhere;
}

.small {
  max-width: 38rem;
  font-size: 0.95rem;
}

.faq {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

details {
  border: 1px solid rgba(56, 56, 56, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.58);
}

summary {
  cursor: pointer;
  padding: 1rem;
  font-weight: 900;
}

details p {
  padding: 0 1rem 1rem;
}

.legal {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.updated {
  color: var(--muted);
  font-weight: 800;
}

.legal-copy {
  max-width: 50rem;
}

.legal-copy h3 {
  margin-top: 1.4rem;
}

.legal-copy a {
  color: var(--kiss);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 6vw, 6rem);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer span:last-child {
  display: flex;
  gap: 1rem;
  font-weight: 900;
}

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

  .hero,
  .features,
  .support,
  .legal {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 10ch;
  }

  .intro,
  .screen-grid {
    grid-template-columns: 1fr;
  }

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

  .phone-preview {
    width: min(100%, 20rem);
  }

  .featured-screen {
    transform: none;
  }

  figure {
    max-width: 25rem;
    margin-inline: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
