:root {
  --ink: #351127;
  --muted: #79546b;
  --rose: #ff3f87;
  --rose-dark: #b50f59;
  --gold: #ffd35d;
  --green: #23c552;
  --cream: #fff8ec;
  --panel: #ffffff;
  --shadow: 0 24px 70px rgba(91, 13, 62, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 211, 93, 0.38), transparent 28rem),
    linear-gradient(180deg, #fff2f7 0%, #fff8ec 44%, #f9f2ff 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 248, 252, 0.88);
  border-bottom: 1px solid rgba(181, 15, 89, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Fredoka", "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: #fff;
  font-size: 0.9rem;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rose), var(--gold));
  box-shadow: 0 8px 18px rgba(255, 63, 135, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--rose-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  min-height: calc(100vh - 79px);
  padding: clamp(48px, 7vw, 90px) clamp(20px, 6vw, 84px);
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fredoka", "Inter", sans-serif;
  line-height: 1.02;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.25rem, 8vw, 7.9rem);
  color: #f7b61f;
  text-shadow:
    0 4px 0 #8b2d1d,
    0 10px 26px rgba(181, 15, 89, 0.24);
}

.hero-text {
  max-width: 640px;
  margin: 28px 0 0;
  color: #5e314d;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(181, 15, 89, 0.18);
}

.button-primary {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, #34d762, #11963a);
}

.button-secondary {
  color: var(--rose-dark);
  border: 2px solid rgba(181, 15, 89, 0.18);
  background: #fff;
}

.hero-phone {
  position: relative;
  width: min(100%, 410px);
  margin-inline: auto;
  padding: 13px;
  border-radius: 38px;
  background: linear-gradient(145deg, #fff, #ffd6e6 48%, #ffc747);
  box-shadow: var(--shadow);
}

.hero-phone::before {
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: 52px;
  background: linear-gradient(135deg, rgba(255, 63, 135, 0.28), rgba(255, 211, 93, 0.24));
  content: "";
  transform: rotate(-4deg);
}

.hero-phone img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.screens-section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 6vw, 84px);
}

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

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.screens-section {
  background: #2b0920;
  color: #fff;
}

.screens-section .eyebrow {
  color: var(--gold);
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: clamp(14px, 2vw, 24px);
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-snap-type: x mandatory;
}

.screens-grid figure {
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

.screens-grid img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
}

.screens-grid figcaption {
  margin-top: 14px;
  color: #ffe8a7;
  font-family: "Fredoka", "Inter", sans-serif;
  font-size: 1.18rem;
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px clamp(20px, 6vw, 84px);
  background: var(--cream);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--rose-dark);
  font-weight: 900;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-page {
  background: #fff8ec;
}

.policy-main {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 90px) clamp(20px, 5vw, 56px);
}

.policy-card {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(181, 15, 89, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(91, 13, 62, 0.1);
}

.policy-card h1 {
  color: #f7b61f;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.policy-card h2 {
  margin-top: 36px;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-shadow: none;
}

.policy-card p,
.policy-card li {
  color: #5e314d;
  line-height: 1.75;
}

.policy-card ul {
  padding-left: 22px;
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .hero-phone {
    max-width: 360px;
  }

  .screens-grid {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
  }
}

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

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
  }

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

  .button {
    width: 100%;
  }
}
