:root {
  --raspberry: #e6336e;
  --raspberry-dark: #b8194e;
  --blueberry: #4361ee;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #fff7fa;
  --card: #ffffff;
  --line: #f3d7e1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7fa 0%, #ffffff 45%, #f8fbff 100%);
}

.hero {
  min-height: 100vh;
  padding: 24px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
}

.nav {
  max-width: 1120px;
  margin: 0 auto 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Fredoka, Inter, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--raspberry);
}

.berry {
  background: #fff;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(230, 51, 110, .12);
}

.nav-link, footer a {
  color: var(--raspberry);
  font-weight: 700;
  text-decoration: none;
}

.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.mascots {
  font-size: 72px;
  margin-bottom: 18px;
  filter: drop-shadow(0 12px 24px rgba(230, 51, 110, .14));
}

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

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

h1 {
  font-size: clamp(52px, 8vw, 92px);
  letter-spacing: -0.05em;
}

h1 span { color: var(--raspberry); }

.intro {
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.55;
  color: #374151;
  max-width: 680px;
  margin: 26px 0 0;
}

.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.primary, .secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  text-decoration: none;
}
.primary {
  background: var(--raspberry);
  color: white;
  box-shadow: 0 16px 34px rgba(230, 51, 110, .25);
}
.secondary {
  background: #fff;
  color: var(--raspberry);
  border: 1px solid var(--line);
}

.phone-card {
  background: radial-gradient(circle at 30% 0%, #fff 0%, #ffe4ee 55%, #dbeafe 100%);
  border-radius: 48px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(230, 51, 110, .18);
}
.phone {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  background: #111827;
  border-radius: 44px;
  padding: 14px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.08);
}
.phone-top {
  width: 88px;
  height: 22px;
  background: #111827;
  border-radius: 0 0 16px 16px;
  position: absolute;
}
.screen {
  background: #fff7fa;
  border-radius: 34px;
  min-height: 650px;
  overflow: hidden;
  padding: 28px 18px;
}
.app-header { text-align: center; }
.app-mascots { font-size: 48px; }
.app-header h2 {
  font-size: 45px;
  color: var(--raspberry);
}
.app-header h3 {
  font-size: 31px;
  color: #111;
  margin-top: -4px;
}
.app-header p {
  background: white;
  border-radius: 20px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #4b5563;
}
.pills {
  display: flex;
  overflow: hidden;
  gap: 8px;
  margin: 14px 0;
}
.pills span {
  white-space: nowrap;
  background: white;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.activity-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  background: white;
  border-radius: 22px;
  padding: 12px;
  margin-top: 14px;
  box-shadow: 0 14px 30px rgba(17,24,39,.07);
}
.activity-img {
  border-radius: 18px;
  background: linear-gradient(135deg, #a7f3d0, #93c5fd);
  min-height: 130px;
}
.second .activity-img { background: linear-gradient(135deg, #fbcfe8, #fef3c7); }
.activity-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.activity-text strong { font-size: 18px; }
.activity-text small { color: #4b5563; font-weight: 700; }
.open { color: #059669 !important; }

.features, .screenshots, .final-cta {
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px clamp(20px, 5vw, 72px);
}
.features h2, .screenshots h2, .final-cta h2 {
  font-size: clamp(38px, 5vw, 64px);
  max-width: 780px;
  letter-spacing: -0.04em;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.feature, .mini-shot {
  background: white;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(17,24,39,.07);
  border: 1px solid #f8dbe5;
}
.feature span { font-size: 34px; }
.feature h3 { font-size: 26px; margin-top: 16px; }
.feature p, .screenshots p, .final-cta p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 17px;
}
.screenshots {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.shot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mini-shot {
  min-height: 190px;
  font-size: 38px;
}
.mini-shot strong {
  display: block;
  font-size: 19px;
  margin-top: 24px;
}
.mini-shot span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.4;
}
.final-cta {
  text-align: center;
}
.final-cta h2, .final-cta p { margin-left: auto; margin-right: auto; }
.final-cta .primary { margin-top: 20px; }
footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 72px) 44px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid #f3d7e1;
}

@media (max-width: 900px) {
  .hero-grid, .screenshots { grid-template-columns: 1fr; }
  .phone-card { max-width: 420px; margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav { margin-bottom: 34px; }
  .brand { font-size: 18px; }
  .hero { padding-top: 18px; }
  .mascots { font-size: 52px; }
  .feature-grid, .shot-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 8px; }
  .phone { max-width: 320px; }
  .screen { min-height: 570px; }
}

.mascots img {
  width: 320px;
  height: auto;
}

.app-mascots img {
  width: 180px;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.raspberry-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #EA2F78;
}

.daysout-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #141B34;
  margin-top: -4px;
}
