:root {
  --teal: #008080;
  --sage: #77dd77;
  --turquoise: #00ffff;
  --ink: #1a2e2e;
  --muted: #5a7373;
  --cream: #f4fbf8;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.82);
  --shadow: 0 20px 50px rgba(0, 128, 128, 0.12);
  --shadow-soft: 0 10px 30px rgba(0, 128, 128, 0.1);
  --radius: 28px;
  --font: "Nunito", system-ui, sans-serif;
  --hand: "Caveat", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 60% at 15% -10%, rgba(119, 221, 119, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 5%, rgba(0, 255, 255, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0, 128, 128, 0.08), transparent 60%),
    var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}

.page-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(0, 255, 255, 0.06), transparent 40%);
  z-index: 0;
}

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

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

h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

p {
  margin: 0;
}

.grad-text {
  background: linear-gradient(120deg, var(--teal) 0%, #00b3b3 45%, var(--turquoise) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hand {
  font-family: var(--hand);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.65rem !important;
}

.eyebrow {
  text-transform: lowercase;
  letter-spacing: 0.04em;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(119, 221, 119, 0.35);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.badge.soft {
  background: rgba(0, 128, 128, 0.1);
}

.section-lead {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 auto 2.5rem;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 128, 128, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-pill {
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #00b8b8);
  color: white;
  box-shadow: 0 10px 24px rgba(0, 128, 128, 0.28);
  font-size: 0.92rem;
  white-space: nowrap;
}

.btn-store {
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.btn-store.large {
  padding: 0.95rem 1.5rem;
  border-radius: 16px;
}

.btn-store small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.85;
}

.btn-store span {
  line-height: 1.15;
  font-size: 1.05rem;
}

.apple {
  width: 18px;
  height: 22px;
  flex-shrink: 0;
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem) 4rem;
  max-width: 1180px;
  margin: 0 auto;
  min-height: min(88vh, 820px);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 28rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-icon {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 12px 24px rgba(0, 128, 128, 0.25));
}

.app-icon svg {
  width: 72px;
  height: 72px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.phone {
  width: min(280px, 72vw);
  aspect-ratio: 9 / 19.2;
  background: #111;
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(0, 128, 128, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #111;
  border-radius: 20px;
  z-index: 2;
}

.phone-screen {
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #0b1f1f;
  position: relative;
}

.feed-video {
  height: 100%;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(145deg, #006666 0%, #0a3d3d 40%, #1a5c4a 70%, #77dd77 140%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}

.feed-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.feed-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.feed-overlay {
  color: white;
  z-index: 2;
  position: relative;
}

.feed-creator {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--turquoise));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--ink);
  border: 2px solid white;
}

.feed-creator strong {
  display: block;
  font-size: 0.85rem;
}

.feed-creator span {
  display: block;
  font-size: 0.72rem;
  opacity: 0.85;
}

.feed-caption {
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
}

.feed-gift {
  display: inline-block;
  background: rgba(119, 221, 119, 0.95);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.feed-side {
  position: absolute;
  right: 0.75rem;
  bottom: 7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  z-index: 2;
}

.notif {
  position: absolute;
  top: 12%;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: white;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.notif-emoji {
  font-size: 1.25rem;
}

.notif strong {
  display: block;
  font-size: 0.85rem;
}

.notif span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.float {
  animation: float 5.5s ease-in-out infinite;
}

.pop {
  animation: popIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}

@keyframes popIn {
  from { opacity: 0; transform: translateY(12px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* FAMILIAR */
.familiar,
.steps,
.benefits,
.mural,
.who,
.finale {
  position: relative;
  z-index: 1;
  padding: 4.5rem clamp(1rem, 4vw, 2.5rem);
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.quote {
  background: var(--card);
  border: 1px solid rgba(0, 128, 128, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.quote-face {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.quote > p:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}

/* STEPS */
.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  text-align: left;
}

.step-card {
  position: relative;
  background: white;
  border-radius: 32px;
  padding: 1.25rem 1.25rem 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 128, 128, 0.06);
  overflow: hidden;
}

.step-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.step-ui {
  height: 220px;
  border-radius: 24px;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.step-watch {
  background: linear-gradient(160deg, #e8fff4, #d5f7f7);
}

.mini-phone {
  width: 110px;
  height: 180px;
  border-radius: 22px;
  background: #123;
  padding: 8px;
  position: relative;
  box-shadow: 0 16px 30px rgba(0, 128, 128, 0.2);
}

.mini-feed {
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(160deg, #008080, #77dd77);
}

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.step-visit {
  background: linear-gradient(160deg, #dffcf5, #c8f7e8);
}

.pin-pulse {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.45);
  animation: pulse 2.2s infinite;
  position: relative;
}

.pin-pulse::after {
  content: "📍";
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  font-size: 1.4rem;
}

.pin-label {
  position: absolute;
  bottom: 1.25rem;
  background: white;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  box-shadow: var(--shadow-soft);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.4); }
  70% { box-shadow: 0 0 0 22px rgba(0, 128, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 128, 128, 0); }
}

.step-reward {
  background: linear-gradient(160deg, #eaffea, #d9ffff);
}

.reward-bubble {
  background: white;
  padding: 0.9rem 1.1rem;
  border-radius: 20px;
  font-weight: 800;
  box-shadow: var(--shadow);
  animation: popIn 0.9s ease both;
}

.step-num {
  position: absolute;
  bottom: 0.35rem;
  right: 1rem;
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(0, 128, 128, 0.08);
  line-height: 1;
}

/* BENEFITS */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.benefit-grid article {
  background: white;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 128, 128, 0.06);
}

.benefit-grid p {
  color: var(--muted);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.benefit-icon.teal { background: rgba(0, 128, 128, 0.12); }
.benefit-icon.sage { background: rgba(119, 221, 119, 0.35); }
.benefit-icon.turquoise { background: rgba(0, 255, 255, 0.28); }

/* MURAL */
.mural {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.mural .eyebrow,
.mural h2,
.mural .section-lead {
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}

.mural-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 240px);
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.5rem clamp(1rem, 4vw, 2.5rem) 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.mural-card {
  position: relative;
  scroll-snap-align: start;
  border-radius: 28px;
  min-height: 420px;
  padding: 1.25rem;
  background: linear-gradient(165deg, #eefaf4 0%, #e5fbfb 55%, #f7fffb 100%);
  border: 1px solid rgba(0, 128, 128, 0.1);
  overflow: visible;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.mural-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  z-index: -1;
}

.mural-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.brush {
  font-family: var(--hand);
  font-size: 1.45em;
  font-weight: 700;
  background: linear-gradient(120deg, rgba(119, 221, 119, 0.55), rgba(0, 255, 255, 0.55));
  padding: 0.05em 0.25em;
  border-radius: 0.35em;
  color: var(--teal);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.mural-phone {
  width: 150px;
  height: 260px;
  margin: 0 auto;
  border-radius: 28px;
  background: white;
  border: 3px solid #1a2e2e;
  padding: 0.85rem;
  box-shadow: 0 16px 30px rgba(0, 128, 128, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mural-feed {
  flex: 1;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--teal), #33aaaa);
  color: white;
  font-weight: 800;
  display: grid;
  place-items: end start;
  padding: 0.75rem;
}

.creator-row {
  display: flex;
  gap: 0.4rem;
}

.creator-row span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--turquoise));
}

.creator-row span:nth-child(2) {
  background: linear-gradient(135deg, var(--teal), var(--sage));
}

.creator-row span:nth-child(3) {
  background: linear-gradient(135deg, #00b3b3, var(--turquoise));
}

.gift-card-ui {
  margin-top: auto;
  background: rgba(0, 128, 128, 0.08);
  border-radius: 16px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gift-card-ui span {
  align-self: flex-start;
  background: var(--teal);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.perk-list {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.perk-list li {
  background: rgba(119, 221, 119, 0.25);
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--teal);
}

.event-ui {
  margin-top: auto;
  background: linear-gradient(135deg, var(--teal), #00cfcf);
  color: white;
  border-radius: 14px;
  padding: 0.85rem;
  font-weight: 800;
  font-size: 0.9rem;
}

.mural-char {
  position: absolute;
  font-size: 3rem;
  filter: drop-shadow(0 8px 16px rgba(0, 128, 128, 0.2));
  z-index: 2;
}

.pin-char {
  right: -0.35rem;
  bottom: 28%;
  animation: float 4.5s ease-in-out infinite;
}

.gift-char {
  right: 0.25rem;
  bottom: 12%;
  animation: float 5s ease-in-out infinite reverse;
}

.c2 .mural-char,
.c1 .pin-char {
  /* continuous mural feel: pin spills toward card 2 */
}

.c1 {
  background: linear-gradient(165deg, #e8faf2, #dff7f7);
}

.c3 {
  background: linear-gradient(165deg, #f0fff0, #e8ffff);
}

/* WHO */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  text-align: left;
}

.who-card {
  background: white;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border-top: 5px solid var(--teal);
}

.who-card.creator {
  border-top-color: var(--sage);
}

.who-card.business {
  border-top-color: var(--turquoise);
}

.who-role {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

.who-card.creator .who-role { color: #3d9a4a; }
.who-card.business .who-role { color: #008b8b; }

.who-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.who-card li {
  margin-bottom: 0.4rem;
}

.who-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
}

/* FINALE */
.finale {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  text-align: left;
  background: linear-gradient(145deg, rgba(0, 128, 128, 0.08), rgba(119, 221, 119, 0.15), rgba(0, 255, 255, 0.12));
  border-radius: 40px;
  margin: 2rem clamp(1rem, 4vw, 2.5rem) 3rem;
  max-width: none;
  width: min(1180px, calc(100% - 2rem));
  padding: clamp(2rem, 5vw, 3.5rem);
}

.finale .eyebrow {
  margin-bottom: 0.35rem;
}

.finale p {
  color: var(--muted);
  max-width: 30rem;
  margin: 0.75rem 0 1.5rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
}

.finale-phone {
  display: grid;
  place-items: center;
}

.role-chooser {
  background: white;
  color: var(--ink);
  padding: 2.2rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.logo-mini {
  display: block;
  height: 28px;
  width: auto;
  margin: 0.35rem auto 0.5rem;
}

.role-chooser > p {
  text-align: center;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.role {
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  font-weight: 700;
  font-size: 0.82rem;
  border: 1px solid rgba(0, 128, 128, 0.12);
}

.consumer-role { background: rgba(0, 128, 128, 0.1); }
.creator-role { background: rgba(119, 221, 119, 0.25); }
.business-role { background: rgba(0, 255, 255, 0.2); }

/* FOOTER */
.footer {
  position: relative;
  z-index: 1;
  padding: 2rem clamp(1rem, 4vw, 2.5rem) 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-wordmark {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--teal);
}

/* Discover — Influenster-style circle collage */
.discover {
  background: linear-gradient(145deg, #006666 0%, #008080 45%, #009999 100%);
  color: white;
  padding: 4.5rem 0 5rem;
  margin: 2rem 0 0;
  overflow: hidden;
  position: relative;
}

.discover-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 1.2fr;
  gap: 2rem;
  align-items: center;
  min-height: 560px;
}

.discover-copy {
  z-index: 2;
  max-width: 420px;
}

.discover-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: white;
}

.discover-sub {
  font-size: 1.15rem;
  opacity: 0.92;
  margin: 0 0 1.75rem;
}

.btn-discover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #008080;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-discover:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.discover-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.btn-store.dark {
  background: #111;
  color: white;
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.btn-store.dark small {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1;
}

.btn-store.dark svg {
  width: 18px;
  height: 20px;
  flex-shrink: 0;
}

.discover-collage {
  position: relative;
  height: 560px;
  width: 100%;
  min-height: 480px;
}

.discover-collage .bubble {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  border: 3px solid rgba(255, 255, 255, 0.35);
}

.discover-collage .b1 { width: 118px; height: 118px; top: 4%; left: 8%; }
.discover-collage .b2 { width: 92px; height: 92px; top: 2%; left: 38%; }
.discover-collage .b3 { width: 140px; height: 140px; top: 8%; right: 18%; }
.discover-collage .b4 { width: 78px; height: 78px; top: 18%; right: 2%; }
.discover-collage .b5 { width: 200px; height: 200px; top: 28%; left: 18%; z-index: 2; }
.discover-collage .b6 { width: 110px; height: 110px; top: 26%; right: 28%; }
.discover-collage .b7 { width: 86px; height: 86px; top: 42%; right: 6%; }
.discover-collage .b8 { width: 160px; height: 160px; bottom: 12%; left: 2%; }
.discover-collage .b9 { width: 96px; height: 96px; bottom: 28%; left: 42%; }
.discover-collage .b10 { width: 230px; height: 230px; bottom: -4%; right: 12%; z-index: 3; }
.discover-collage .b11 { width: 100px; height: 100px; bottom: 8%; right: -2%; }
.discover-collage .b12 { width: 88px; height: 88px; top: 48%; left: 0%; }
.discover-collage .b13 { width: 72px; height: 72px; bottom: 36%; right: 38%; }
.discover-collage .b14 { width: 84px; height: 84px; top: 0%; right: 36%; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .discover-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.5rem;
  }

  .discover-copy {
    max-width: none;
    text-align: center;
  }

  .discover-stores {
    justify-content: center;
  }

  .discover-collage {
    height: 420px;
    margin: 0 -1rem;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .finale {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub,
  .finale p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    min-height: 460px;
  }

  .notif {
    right: 0;
    left: 50%;
    transform: translateX(-20%);
    top: 6%;
  }

  .quote-row,
  .step-cards,
  .who-grid {
    grid-template-columns: 1fr;
  }

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

  .finale {
    text-align: center;
  }

  .trust {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .discover {
    padding: 3rem 0 3.5rem;
  }

  .discover-collage {
    height: 340px;
  }

  .discover-collage .b5 { width: 150px; height: 150px; }
  .discover-collage .b10 { width: 170px; height: 170px; }
  .discover-collage .b8 { width: 120px; height: 120px; }

  .hero {
    padding-top: 1.5rem;
    min-height: auto;
  }

  .app-icon {
    display: none;
  }
}
