:root {
  color-scheme: light;
  --ink: #1c1b1b;
  --cream: #f6f2e9;
  --mint: #b6ead6;
  --mint-deep: #5fbf9f;
  --coral: #ff9f7a;
  --sun: #f7c74f;
  --sky: #9fd3ff;
  --lilac: #d9c8ff;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.75);
  --shadow: 0 18px 40px rgba(30, 20, 10, 0.12);
  --shadow-soft: 0 12px 24px rgba(30, 20, 10, 0.08);
  --shadow-glow: 0 0 40px rgba(182, 234, 214, 0.4);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-bg {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(182, 234, 214, 0.7), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(247, 199, 79, 0.35), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(159, 211, 255, 0.4), transparent 45%),
    linear-gradient(140deg, #fef8ef, #f6f2e9 45%, #f3efe6);
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.45), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* Floating decorative particles */
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, var(--mint) 2px, transparent 2px),
    radial-gradient(circle at 85% 15%, var(--sun) 3px, transparent 3px),
    radial-gradient(circle at 75% 75%, var(--lilac) 2px, transparent 2px),
    radial-gradient(circle at 25% 85%, var(--sky) 2px, transparent 2px),
    radial-gradient(circle at 45% 45%, var(--coral) 1.5px, transparent 1.5px),
    radial-gradient(circle at 90% 50%, var(--mint) 2px, transparent 2px),
    radial-gradient(circle at 5% 60%, var(--sun) 1.5px, transparent 1.5px),
    radial-gradient(circle at 60% 10%, var(--lilac) 2px, transparent 2px),
    radial-gradient(circle at 35% 70%, var(--sky) 1.5px, transparent 1.5px),
    radial-gradient(circle at 70% 40%, var(--coral) 2px, transparent 2px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
  animation: sparkle 8s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.page-bg > * {
  position: relative;
  z-index: 1;
}

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

.site-header {
  padding: 28px 6vw 12px;
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.nav:hover {
  box-shadow: 0 16px 32px rgba(30, 20, 10, 0.12);
}

.logo {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--transition-bounce);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo::before {
  content: "";
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--mint));
  border-radius: 45% 55% 50% 50%;
  box-shadow: 0 4px 12px rgba(95, 191, 159, 0.3);
  animation: float 6s ease-in-out infinite;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 6px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.3s var(--transition-bounce);
  position: relative;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.nav-links .is-active {
  background: linear-gradient(135deg, var(--coral), #ffb899);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(255, 159, 122, 0.3);
}

.nav-links .is-active:hover {
  background: linear-gradient(135deg, #ffb088, var(--coral));
  box-shadow: 0 6px 16px rgba(255, 159, 122, 0.4);
}

main {
  padding: 0 6vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  padding: 50px 0 20px;
  position: relative;
}

/* Animated gradient blobs behind hero */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  animation: blob 15s ease-in-out infinite;
}

.hero::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(182, 234, 214, 0.5), transparent 70%);
  top: -100px;
  right: 10%;
  animation-delay: -2s;
}

.hero::after {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(217, 200, 255, 0.4), transparent 70%);
  bottom: -50px;
  left: 5%;
  animation-delay: -7s;
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -20px) scale(1.05); }
  50% { transform: translate(-10px, 15px) scale(0.95); }
  75% { transform: translate(15px, 10px) scale(1.02); }
}

.hero-text {
  display: grid;
  gap: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4d4a44;
  margin-bottom: 8px;
}

.hero h1,
.store-hero h1,
.legal h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  margin: 0;
  position: relative;
}

.hero h1 {
  background: linear-gradient(135deg, var(--ink) 0%, #3d3a35 50%, var(--ink) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lead {
  font-size: 1.1rem;
  max-width: 540px;
}

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

.button {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.button:hover::before {
  transform: translateX(100%);
}

.button.primary {
  background: linear-gradient(135deg, var(--coral), #ffb899);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(255, 159, 122, 0.35);
}

.button.primary:hover {
  background: linear-gradient(135deg, #ffb088, var(--coral));
  box-shadow: 0 16px 32px rgba(255, 159, 122, 0.45);
  transform: translateY(-3px) scale(1.02);
}

.button.primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 8px 16px rgba(255, 159, 122, 0.3);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--ink);
  backdrop-filter: blur(8px);
}

.button.ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(28, 27, 27, 0.2);
}

.button.ghost:active {
  transform: translateY(0) scale(0.98);
}

.platforms {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #4d4a44;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.badge {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s var(--transition-bounce);
  cursor: default;
}

.badge:nth-child(1) { background: linear-gradient(135deg, rgba(182, 234, 214, 0.6), rgba(255, 255, 255, 0.9)); }
.badge:nth-child(2) { background: linear-gradient(135deg, rgba(247, 199, 79, 0.5), rgba(255, 255, 255, 0.9)); }
.badge:nth-child(3) { background: linear-gradient(135deg, rgba(217, 200, 255, 0.6), rgba(255, 255, 255, 0.9)); }

.badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(30, 20, 10, 0.1);
}

.hero-visual {
  display: grid;
  gap: 18px;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.4s var(--transition-bounce), box-shadow 0.4s ease;
}

.hero-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 28px 60px rgba(30, 20, 10, 0.18), var(--shadow-glow);
}

.hero-card h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.creature-orbit {
  position: relative;
  height: 160px;
  margin-bottom: 20px;
}

.creature {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--mint));
  border-radius: 40% 60% 55% 45%;
  box-shadow: 0 12px 30px rgba(95, 191, 159, 0.35);
  animation: float 8s ease-in-out infinite, wiggle 4s ease-in-out infinite;
}

/* Cute face */
.creature::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
  top: 30%;
  left: 25%;
  box-shadow: 22px 0 0 var(--ink);
  animation: blink 4s ease-in-out infinite;
}

.creature::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 8px;
  border-bottom: 3px solid var(--coral);
  border-radius: 0 0 50% 50%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.creature.tiny {
  width: 48px;
  height: 48px;
  right: 10px;
  top: 20px;
  background: radial-gradient(circle at 20% 20%, #fff, var(--sun));
  box-shadow: 0 10px 25px rgba(247, 199, 79, 0.4);
  animation-delay: -2s;
  border-radius: 50% 50% 45% 55%;
}

.creature.tiny::before {
  width: 6px;
  height: 6px;
  top: 28%;
  left: 22%;
  box-shadow: 14px 0 0 var(--ink);
}

.creature.tiny::after {
  width: 10px;
  height: 5px;
  border-bottom-width: 2px;
  top: 48%;
}

.creature.glow {
  width: 70px;
  height: 70px;
  left: 60px;
  top: 70px;
  background: radial-gradient(circle at 20% 20%, #fff, var(--lilac));
  box-shadow: 0 12px 30px rgba(217, 200, 255, 0.5), 0 0 20px rgba(217, 200, 255, 0.3);
  animation-delay: -4s;
  border-radius: 55% 45% 50% 50%;
}

.creature.glow::before {
  width: 8px;
  height: 8px;
  top: 32%;
  left: 24%;
  box-shadow: 18px 0 0 var(--ink);
}

.creature.glow::after {
  width: 14px;
  height: 7px;
  top: 52%;
}

@keyframes wiggle {
  0%, 100% { border-radius: 40% 60% 55% 45%; }
  50% { border-radius: 45% 55% 50% 50%; }
}

@keyframes blink {
  0%, 45%, 55%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.1); }
}

.hero-device {
  background: linear-gradient(180deg, #181616, #2a2624);
  border-radius: 32px;
  padding: 14px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 340px;
  justify-self: center;
  transition: all 0.4s var(--transition-bounce);
  position: relative;
}

.hero-device::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent, rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.hero-device:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.device-notch {
  width: 62px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  margin: 4px auto 12px;
}

.device-screen {
  background: linear-gradient(140deg, #fff, #f5eee4);
  border-radius: 24px;
  padding: 18px;
  display: grid;
  gap: 12px;
  min-height: 230px;
}

.screen-pill {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(95, 191, 159, 0.2);
  border: 1px solid rgba(95, 191, 159, 0.35);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: #2c5b4e;
}

.screen-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.screen-card {
  min-height: 72px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--transition-bounce);
}

.screen-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(30, 20, 10, 0.15);
}

.screen-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 60%);
}

.screen-card.sprout {
  background: linear-gradient(140deg, rgba(182, 234, 214, 0.9), rgba(255, 255, 255, 0.9));
}

.screen-card.sun {
  background: linear-gradient(140deg, rgba(247, 199, 79, 0.8), rgba(255, 255, 255, 0.9));
}

.screen-card.sky {
  background: linear-gradient(140deg, rgba(159, 211, 255, 0.8), rgba(255, 255, 255, 0.9));
}

.screen-card.lilac {
  background: linear-gradient(140deg, rgba(217, 200, 255, 0.8), rgba(255, 255, 255, 0.9));
}

.screen-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #4d4a44;
}

.screen-value {
  font-weight: 700;
  color: #2c5b4e;
}

.pill-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 60px;
  justify-content: center;
}

.pill {
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s var(--transition-bounce);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.pill::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.pill:nth-child(1) { padding-left: 28px; }
.pill:nth-child(1)::before { background: var(--mint); }
.pill:nth-child(2) { padding-left: 28px; }
.pill:nth-child(2)::before { background: var(--sun); }
.pill:nth-child(3) { padding-left: 28px; }
.pill:nth-child(3)::before { background: var(--lilac); }
.pill:nth-child(4) { padding-left: 28px; }
.pill:nth-child(4)::before { background: var(--sky); }

.pill:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(30, 20, 10, 0.12);
}

.gallery {
  margin: 40px 0 30px;
}

.section-title h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 2rem;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--coral));
  border-radius: 2px;
}

.section-title p {
  margin: 0;
  margin-top: 12px;
  color: #4d4a44;
  max-width: 560px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.snapshot {
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s var(--transition-bounce);
}

.snapshot:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 48px rgba(30, 20, 10, 0.15), 0 0 30px rgba(182, 234, 214, 0.3);
}

.snapshot:hover .snapshot-visual {
  transform: scale(1.03);
}

.snapshot-visual {
  height: 160px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(182, 234, 214, 0.6), rgba(255, 255, 255, 0.8));
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.snapshot-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 14px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), transparent 60%);
}

.snapshot-visual.sun {
  background: linear-gradient(140deg, rgba(247, 199, 79, 0.55), rgba(255, 255, 255, 0.9));
}

.snapshot-visual.sky {
  background: linear-gradient(140deg, rgba(159, 211, 255, 0.6), rgba(255, 255, 255, 0.9));
}

.grid-section {
  margin: 60px 0 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.info-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--sky), var(--lilac));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 20, 10, 0.15);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card:nth-child(1):hover { box-shadow: 0 20px 40px rgba(30, 20, 10, 0.12), 0 0 30px rgba(182, 234, 214, 0.35); }
.info-card:nth-child(2):hover { box-shadow: 0 20px 40px rgba(30, 20, 10, 0.12), 0 0 30px rgba(247, 199, 79, 0.35); }
.info-card:nth-child(3):hover { box-shadow: 0 20px 40px rgba(30, 20, 10, 0.12), 0 0 30px rgba(159, 211, 255, 0.35); }
.info-card:nth-child(4):hover { box-shadow: 0 20px 40px rgba(30, 20, 10, 0.12), 0 0 30px rgba(217, 200, 255, 0.35); }

.info-card h3 {
  margin-top: 0;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(182, 234, 214, 0.8), rgba(159, 211, 255, 0.6));
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  transition: all 0.3s var(--transition-bounce);
  box-shadow: 0 4px 12px rgba(95, 191, 159, 0.2);
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 16px rgba(95, 191, 159, 0.3);
}

.info-card:nth-child(2) .info-icon { background: linear-gradient(135deg, rgba(247, 199, 79, 0.7), rgba(255, 159, 122, 0.5)); box-shadow: 0 4px 12px rgba(247, 199, 79, 0.2); }
.info-card:nth-child(3) .info-icon { background: linear-gradient(135deg, rgba(159, 211, 255, 0.7), rgba(217, 200, 255, 0.5)); box-shadow: 0 4px 12px rgba(159, 211, 255, 0.2); }
.info-card:nth-child(4) .info-icon { background: linear-gradient(135deg, rgba(217, 200, 255, 0.7), rgba(255, 159, 122, 0.5)); box-shadow: 0 4px 12px rgba(217, 200, 255, 0.2); }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin: 70px 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-strip::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--sun), var(--coral), var(--lilac), var(--sky));
}

.feature-strip:hover {
  box-shadow: 0 20px 48px rgba(30, 20, 10, 0.12);
  transform: translateY(-4px);
}

.feature-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
  text-align: center;
}

.feature-metrics > div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s var(--transition-bounce);
}

.feature-metrics > div:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
}

.metric {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--mint-deep), var(--coral));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #4d4a44;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(159, 211, 255, 0.5), rgba(255, 159, 122, 0.4));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 50%);
  pointer-events: none;
  animation: shimmerBg 10s ease-in-out infinite;
}

@keyframes shimmerBg {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10%, 10%); }
}

.cta-band:hover {
  box-shadow: 0 16px 40px rgba(30, 20, 10, 0.15);
  transform: translateY(-4px);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  background: linear-gradient(120deg, rgba(182, 234, 214, 0.7), rgba(255, 159, 122, 0.5));
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  margin-top: 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: -100%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.25), transparent 50%);
  pointer-events: none;
  animation: shimmerBg 12s ease-in-out infinite reverse;
}

.newsletter:hover {
  box-shadow: 0 20px 48px rgba(30, 20, 10, 0.15);
  transform: translateY(-4px);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

input {
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 12px 16px;
  min-width: 230px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(30, 20, 10, 0.08);
}

input:focus {
  outline: none;
  border-color: var(--mint-deep);
  box-shadow: 0 6px 20px rgba(95, 191, 159, 0.25), 0 0 0 4px rgba(182, 234, 214, 0.3);
}

input::placeholder {
  color: #9a958d;
}

.store-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 40px 0 20px;
}

.store-highlights {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #4d4a44;
}

.store-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.store-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(182, 234, 214, 0.2), transparent 60%);
  pointer-events: none;
}

.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(30, 20, 10, 0.15), var(--shadow-glow);
}

.store-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.store-benefits {
  margin: 50px 0 20px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--mint), var(--sky));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px) translateX(4px);
  box-shadow: 0 20px 40px rgba(30, 20, 10, 0.12), 0 0 30px rgba(182, 234, 214, 0.25);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:nth-child(2)::before { background: linear-gradient(180deg, var(--sun), var(--coral)); }
.benefit-card:nth-child(3)::before { background: linear-gradient(180deg, var(--lilac), var(--sky)); }

.storefront {
  margin: 50px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s var(--transition-bounce);
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 28px 50px rgba(30, 20, 10, 0.18);
}

.product-card[data-accent="mint"]:hover {
  box-shadow: 0 28px 50px rgba(30, 20, 10, 0.15), 0 0 40px rgba(182, 234, 214, 0.4);
}

.product-card[data-accent="sun"]:hover {
  box-shadow: 0 28px 50px rgba(30, 20, 10, 0.15), 0 0 40px rgba(247, 199, 79, 0.4);
}

.product-card[data-accent="sky"]:hover {
  box-shadow: 0 28px 50px rgba(30, 20, 10, 0.15), 0 0 40px rgba(159, 211, 255, 0.4);
}

.product-card[data-accent="lilac"]:hover {
  box-shadow: 0 28px 50px rgba(30, 20, 10, 0.15), 0 0 40px rgba(217, 200, 255, 0.4);
}

.product-card[data-accent="mint"] {
  background: linear-gradient(155deg, rgba(182, 234, 214, 0.5), rgba(255, 255, 255, 0.95));
}

.product-card[data-accent="sun"] {
  background: linear-gradient(155deg, rgba(247, 199, 79, 0.45), rgba(255, 255, 255, 0.95));
}

.product-card[data-accent="sky"] {
  background: linear-gradient(155deg, rgba(159, 211, 255, 0.45), rgba(255, 255, 255, 0.95));
}

.product-card[data-accent="lilac"] {
  background: linear-gradient(155deg, rgba(217, 200, 255, 0.5), rgba(255, 255, 255, 0.95));
}

.product-card .price {
  font-size: 1.3rem;
  font-weight: 700;
}

.product-card .tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(30, 20, 10, 0.08);
  transition: all 0.3s ease;
}

.product-card:hover .tag {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(30, 20, 10, 0.12);
}

.store-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #4d4a44;
}

.store-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 40px;
}

.legal {
  background: rgba(255, 255, 255, 0.92);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.legal h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin-top: 32px;
}

.legal ul {
  padding-left: 20px;
}

.policy-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.fine-print {
  font-size: 0.85rem;
  color: #5c574f;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 6vw 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 6vw;
  right: 6vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint), var(--coral), var(--lilac), transparent);
}

.site-footer h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer h3::before {
  content: "";
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--mint));
  border-radius: 45% 55% 50% 50%;
  animation: float 6s ease-in-out infinite;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-weight: 500;
}

.footer-links a {
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--mint-deep);
  transform: translateX(4px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s var(--transition-bounce);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for children */
[data-reveal].is-visible .info-card,
[data-reveal].is-visible .snapshot,
[data-reveal].is-visible .product-card,
[data-reveal].is-visible .benefit-card {
  animation: fadeInUp 0.6s var(--transition-bounce) both;
}

[data-reveal].is-visible .info-card:nth-child(1),
[data-reveal].is-visible .snapshot:nth-child(1),
[data-reveal].is-visible .product-card:nth-child(1),
[data-reveal].is-visible .benefit-card:nth-child(1) { animation-delay: 0.1s; }

[data-reveal].is-visible .info-card:nth-child(2),
[data-reveal].is-visible .snapshot:nth-child(2),
[data-reveal].is-visible .product-card:nth-child(2),
[data-reveal].is-visible .benefit-card:nth-child(2) { animation-delay: 0.2s; }

[data-reveal].is-visible .info-card:nth-child(3),
[data-reveal].is-visible .snapshot:nth-child(3),
[data-reveal].is-visible .product-card:nth-child(3),
[data-reveal].is-visible .benefit-card:nth-child(3) { animation-delay: 0.3s; }

[data-reveal].is-visible .info-card:nth-child(4),
[data-reveal].is-visible .product-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
  }

  .hero-visual {
    justify-items: center;
  }

  .hero-device {
    width: min(340px, 100%);
  }
}

@media (max-width: 720px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-card,
  .legal {
    padding: 24px;
  }

  .newsletter,
  .cta-band,
  .store-banner {
    padding: 24px;
  }
}
