/* ──────────────────────────────────────────────
   Feel-In landing — Deep Dark + Místico Abstracto
   ────────────────────────────────────────────── */

:root {
  /* Backgrounds */
  --bg-primary: #0D0B1A;
  --bg-secondary: #151229;
  --bg-deep: #0D0B14;
  --surface-elevated: #1A1625;
  --card-gradient-start: #1E1A2D;
  --card-gradient-end: #161320;

  --card-border: rgba(255,255,255,0.10);
  --card-border-subtle: rgba(255,255,255,0.05);

  /* Brand */
  --accent-violet: #6B5B95;
  --light-violet: #8B7BB5;
  --accent-gradient-start: #8B5CF6;
  --accent-gradient-end: #4F46E5;
  --accent-gradient: linear-gradient(135deg, #8B5CF6 0%, #4F46E5 100%);

  /* Infinity (sacred) */
  --ember: #E85A1A;
  --infinity-gradient: linear-gradient(135deg, #E85A1A 0%, #9A1DFF 100%);

  /* Accents */
  --cream: #F5E3C6;
  --gold: #C4A962;
  --bolt-gold: #FACC15;
  --lavender: #B8A9D4;

  /* Text */
  --text-primary: #F0EDF6;
  --text-secondary: #9B93B0;
  --text-muted: #6B6380;

  /* Categories */
  --cat-identidad: #4F4BC9;
  --cat-sintonia: #1EBF89;
  --cat-perspectivas: #2F7AD9;

  /* Semantic */
  --success: #6BCB77;
  --error: #E85D75;

  /* Radii */
  --radius-card: 24px;
  --radius-card-lg: 28px;
  --radius-button: 24px;
  --radius-chip: 999px;
  --radius-input: 14px;

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-7: 32px; --s-8: 40px; --s-9: 56px;

  /* Shadows */
  --shadow-card: 0 8px 24px rgba(0,0,0,0.25);
  --shadow-glow-violet: 0 0 40px rgba(139,92,246,0.30);
  --shadow-glow-ember: 0 0 40px rgba(232,90,26,0.30);
  --shadow-glow-gold: 0 0 28px rgba(196,169,98,0.25);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Layout */
  --container: 1120px;
  --header-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-size: 20px;
  line-height: 1;
  user-select: none;
  visibility: hidden;
}
.fonts-loaded .material-symbols-outlined { visibility: visible; }

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  padding: 10px 16px;
  background: var(--accent-violet);
  color: var(--text-primary);
  border-radius: 8px;
  z-index: 100;
  font-size: 14px;
  font-weight: 500;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* ── Focus styles ── */
:focus-visible {
  outline: 2px solid var(--light-violet);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ──────────────────────────────────────────────
   Atmosphere — blobs + stars
   ────────────────────────────────────────────── */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at 15% 10%, rgba(107,91,149,0.20), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(196,169,98,0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(139,92,246,0.14), transparent 60%),
    var(--bg-primary);
}

.atmosphere__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
  will-change: transform;
  animation: blobDrift 60s ease-in-out infinite alternate;
}
.atmosphere__blob--1 {
  top: -10%; left: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(139,92,246,0.35), transparent 70%);
  animation-duration: 70s;
}
.atmosphere__blob--2 {
  top: 30%; right: -15%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(196,169,98,0.18), transparent 70%);
  animation-duration: 90s;
  animation-delay: -20s;
}
.atmosphere__blob--3 {
  bottom: -10%; left: 25%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,169,212,0.22), transparent 70%);
  animation-duration: 80s;
  animation-delay: -40s;
}

@keyframes blobDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(60px, -40px, 0) scale(1.08); }
  100% { transform: translate3d(-40px, 50px, 0) scale(0.96); }
}

.stars {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

@keyframes twinkle {
  0%, 100% { opacity: var(--s-min, 0.2); }
  50%      { opacity: var(--s-max, 0.8); }
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere__blob { animation: none; }
  .stars circle { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ──────────────────────────────────────────────
   Header
   ────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 20;
  background: rgba(21, 18, 41, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--card-border-subtle);
}

.header__inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s;
}
.brand:hover { opacity: 0.85; }

.brand__logo {
  width: 36px; height: 36px;
  object-fit: contain;
}
.brand__word {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Language switcher */
.lang {
  display: inline-flex;
  padding: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border-subtle);
  border-radius: var(--radius-chip);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang__btn {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.lang__btn[aria-pressed="true"] {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
}
.lang__btn:hover:not([aria-pressed="true"]) { color: var(--text-secondary); }

/* ──────────────────────────────────────────────
   Layout
   ────────────────────────────────────────────── */
main {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

section { position: relative; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────
   Hero
   ────────────────────────────────────────────── */
.hero {
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-8) var(--s-5) var(--s-9);
}

.hero__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.hero__logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: var(--s-6);
}

.hero__logo {
  width: min(340px, 62vw);
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(232,90,26,0.28))
          drop-shadow(0 10px 40px rgba(139,92,246,0.35));
  opacity: 1;
  animation: logoFloat 8s ease-in-out infinite;
}
.js-animate .hero__logo {
  animation: logoFade 1.4s var(--ease-out),
             logoFloat 8s ease-in-out 1.4s infinite;
}

@keyframes logoFade {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero__halo {
  position: absolute;
  inset: -30% -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.22), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: haloPulse 4.5s ease-in-out infinite;
}

@keyframes haloPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.06); }
}

.hero__h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: var(--s-7);
  text-wrap: pretty;
}
.js-animate .hero__h1 {
  animation: fadeUp 1s var(--ease-out) 0.3s both;
}

.hero__h1 em {
  font-style: italic;
  background: var(--infinity-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
}
.js-animate .hero__cta-row {
  animation: fadeUp 1s var(--ease-out) 0.65s both;
}

.hero__stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.js-animate .hero__stores {
  animation: fadeUp 1s var(--ease-out) 0.5s both;
}

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

.hero__scroll-hint {
  margin-top: var(--s-9);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 1;
}
.js-animate .hero__scroll-hint {
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}
.hero__scroll-hint .material-symbols-outlined {
  font-size: 18px;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(4px); opacity: 1; }
}

/* ──────────────────────────────────────────────
   Buttons
   ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out),
              background 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent-gradient);
  color: var(--text-primary);
  box-shadow: 0 6px 24px rgba(107,91,149,0.35), var(--shadow-glow-violet);
}
.btn--primary:hover {
  box-shadow: 0 10px 32px rgba(107,91,149,0.5), 0 0 48px rgba(139,92,246,0.45);
}
.btn--primary .material-symbols-outlined { font-size: 18px; }

.btn--secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  border-color: var(--card-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(184,169,212,0.35);
}

.btn--gold {
  background: rgba(196,169,98,0.10);
  color: var(--gold);
  border-color: rgba(196,169,98,0.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--gold:hover {
  background: rgba(196,169,98,0.18);
  border-color: rgba(196,169,98,0.50);
  box-shadow: var(--shadow-glow-gold);
}

.store-btn {
  padding: 12px 22px;
  font-size: 14px;
}
.store-btn svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.store-btn__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}
.store-btn__meta small {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

/* ──────────────────────────────────────────────
   Section scaffolding
   ────────────────────────────────────────────── */
.section {
  padding: clamp(64px, 10vw, 120px) 0;
}

.section__head {
  max-width: 720px;
  margin: 0 auto var(--s-9);
  text-align: center;
}

.overline {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-4);
  padding: 6px 14px;
  border-radius: var(--radius-chip);
  background: rgba(196,169,98,0.08);
  border: 1px solid rgba(196,169,98,0.20);
}

.section__title {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: var(--text-primary);
  margin-bottom: var(--s-4);
  text-wrap: balance;
}
.section__title .light { font-weight: 300; }
.section__title .bold  { font-weight: 700; }

.section__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ──────────────────────────────────────────────
   Pillars (Qué es Feel-In)
   ────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.pillar {
  position: relative;
  padding: var(--s-7);
  background: linear-gradient(145deg, var(--card-gradient-start), var(--card-gradient-end));
  border: 1px solid var(--card-border-subtle);
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out),
              box-shadow 0.35s var(--ease-out);
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(139,92,246,0.10), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--card-border);
  box-shadow: var(--shadow-card), 0 0 32px rgba(139,92,246,0.18);
}
.pillar:hover::before { opacity: 1; }

.pillar__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(139,92,246,0.14);
  color: var(--light-violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
  box-shadow: 0 0 24px rgba(139,92,246,0.20);
}
.pillar__icon .material-symbols-outlined {
  font-size: 28px;
}
.pillar--gold .pillar__icon {
  background: rgba(196,169,98,0.14);
  color: var(--gold);
  box-shadow: var(--shadow-glow-gold);
}
.pillar--ember .pillar__icon {
  background: rgba(232,90,26,0.14);
  color: var(--ember);
  box-shadow: var(--shadow-glow-ember);
}

.pillar__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--s-3);
  letter-spacing: -0.2px;
  color: var(--text-primary);
}
.pillar__copy {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
}
.pillar--center {
  text-align: center;
}
.pillar--center .pillar__icon {
  margin-left: auto;
  margin-right: auto;
}

/* ──────────────────────────────────────────────
   How it works — flow
   ────────────────────────────────────────────── */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  position: relative;
}

.flow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(139,92,246,0.30) 15%,
    rgba(196,169,98,0.35) 50%,
    rgba(232,90,26,0.30) 85%,
    transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step__num {
  width: 56px; height: 56px;
  margin: 0 auto var(--s-4);
  background: linear-gradient(145deg, var(--card-gradient-start), var(--card-gradient-end));
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.step--final .step__num {
  background: var(--infinity-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-glow-ember);
}

.step__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
  letter-spacing: 0.1px;
}
.step__copy {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 200px;
  margin: 0 auto;
}

/* Inline question-card mock (shown alongside the flow on desktop) */
.flow-preview {
  margin-top: var(--s-9);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

.qcard {
  position: relative;
  padding: var(--s-7);
  border-radius: var(--radius-card-lg);
  background: linear-gradient(145deg, var(--card-gradient-start), var(--card-gradient-end));
  border: 1px solid var(--card-border-subtle);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.qcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--cat-identidad) 10%, transparent), transparent 60%),
    radial-gradient(circle at 80% 80%, color-mix(in srgb, var(--cat-identidad) 7%, transparent), transparent 55%);
  pointer-events: none;
}
.qcard__chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-chip);
  border: 1px solid color-mix(in srgb, var(--cat-identidad) 60%, transparent);
  color: color-mix(in srgb, var(--cat-identidad) 100%, white 30%);
  background: color-mix(in srgb, var(--cat-identidad) 12%, transparent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
}
.qcard__chip .material-symbols-outlined { font-size: 14px; }
.qcard__q {
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.3;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--s-5);
  text-wrap: balance;
}
.qcard__answer {
  position: relative;
  padding: var(--s-4) var(--s-5);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border-subtle);
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.55;
  font-style: italic;
}
.qcard__hearts {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: var(--s-5);
}
.qcard__hearts .material-symbols-outlined {
  font-size: 22px;
  color: var(--ember);
  font-variation-settings: 'FILL' 1;
  filter: drop-shadow(0 0 10px rgba(232,90,26,0.35));
}

.preview-note {
  padding-left: var(--s-5);
}
.preview-note h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  margin-bottom: var(--s-4);
  color: var(--text-primary);
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.preview-note h3 .light { font-weight: 300; }
.preview-note p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ──────────────────────────────────────────────
   Newsletter CTA section
   ────────────────────────────────────────────── */
.newsletter {
  position: relative;
}
.newsletter__inner {
  position: relative;
  padding: clamp(56px, 8vw, 88px) clamp(32px, 6vw, 72px);
  border-radius: 32px;
  background:
    radial-gradient(ellipse 60% 100% at 20% 20%, rgba(139,92,246,0.18), transparent 60%),
    radial-gradient(ellipse 70% 100% at 80% 80%, rgba(232,90,26,0.12), transparent 60%),
    linear-gradient(145deg, var(--card-gradient-start), var(--bg-secondary));
  border: 1px solid var(--card-border);
  text-align: center;
  overflow: hidden;
}
.newsletter__inner::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(196,169,98,0.10), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.newsletter__kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.newsletter__kicker .material-symbols-outlined { font-size: 14px; }
.newsletter__title {
  position: relative;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: var(--s-4);
  color: var(--text-primary);
}
.newsletter__title .light { font-weight: 300; }
.newsletter__title .bold  { font-weight: 700; }
.newsletter__sub {
  position: relative;
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto var(--s-7);
  line-height: 1.55;
}
.newsletter__btn {
  position: relative;
  padding: 16px 32px;
  font-size: 16px;
}
.newsletter__fine {
  position: relative;
  display: block;
  margin-top: var(--s-5);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ──────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 2;
  background: var(--bg-secondary);
  border-top: 1px solid var(--card-border-subtle);
  padding: var(--s-8) 0 var(--s-7);
  margin-top: var(--s-9);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__brand img { height: auto; width: auto; max-height: 26px; object-fit: contain; }
.footer__brand span {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  font-size: 13px;
}
.footer__links a {
  color: var(--text-secondary);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__links a:hover { color: var(--text-primary); }
.footer__links .material-symbols-outlined { font-size: 14px; opacity: 0.7; }

.footer__copy {
  width: 100%;
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--card-border-subtle);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
}

/* ──────────────────────────────────────────────
   Modal
   ────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,11,26,0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: var(--s-5);
  animation: fadeIn 0.25s var(--ease-out);
}
.modal-overlay.visible { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: var(--s-9) var(--s-7) var(--s-7);
  background: linear-gradient(145deg, var(--surface-elevated), #14101f);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 80px rgba(139,92,246,0.18);
  animation: modalIn 0.35s var(--ease-out);
  margin-top: 28px;
}
.modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__icon {
  position: absolute;
  top: -28px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(139,92,246,0.15);
  color: var(--light-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-violet);
  border: 1px solid rgba(139,92,246,0.30);
}
.modal__icon .material-symbols-outlined { font-size: 26px; }

.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--card-border-subtle);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
}
.modal__close .material-symbols-outlined { font-size: 18px; }

.modal__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--s-2);
  text-align: center;
  letter-spacing: -0.2px;
}
.modal__sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: var(--s-6);
  text-align: center;
}

.modal__form {
  display: flex;
  gap: var(--s-2);
}
.modal__input {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius-input);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.modal__input::placeholder { color: var(--text-muted); }
.modal__input:focus {
  border-color: rgba(139,92,246,0.55);
  background: rgba(255,255,255,0.06);
}
.modal__input.has-error { border-color: var(--error); }

.modal__submit {
  padding: 14px 22px;
  border-radius: var(--radius-input);
  background: var(--accent-gradient);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.modal__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(107,91,149,0.4);
}
.modal__submit:disabled { opacity: 0.5; cursor: not-allowed; }

.modal__msg {
  min-height: 1.2em;
  margin-top: var(--s-4);
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
}
.modal__msg.is-success { color: var(--success); }
.modal__msg.is-error { color: var(--error); }

/* ──────────────────────────────────────────────
   Responsive
   ────────────────────────────────────────────── */
@media (max-width: 860px) {
  .pillars { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-6); }
  .flow::before { display: none; }
  .flow-preview { grid-template-columns: 1fr; }
  .preview-note { padding-left: 0; text-align: center; }
  .preview-note h3 { text-align: center; }
}

@media (max-width: 520px) {
  :root { --header-h: 60px; }
  .header__inner { padding: 0 var(--s-4); }
  .brand__word { height: 24px; }
  .hero { padding: var(--s-6) var(--s-4) var(--s-8); }
  .hero__sub { font-size: 15px; }
  .btn { padding: 13px 20px; font-size: 14px; }
  .hero__cta-row, .hero__stores { width: 100%; }
  .hero__cta-row .btn, .hero__stores .btn { flex: 1 1 auto; }
  .flow { grid-template-columns: 1fr; }
  .modal { padding: var(--s-8) var(--s-5) var(--s-5); }
  .modal__form { flex-direction: column; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .pillar { padding: var(--s-6); }
}

/* Narrow phones: force stacking */
@media (max-width: 380px) {
  .hero__h1 { font-size: 36px; }
  .newsletter__inner { padding: 48px 24px; }
}
