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

:root {
  --bg: #F2F2F7;
  --card: #FFFFFF;
  --text: #4A4A4A;
  --text-secondary: #8E8E93;
  --text-strong: #1C1C1E;
  --separator: rgba(0,0,0,0.08);
  --accent: #4A4A4A;
  --radius: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(0, 0, 0, 0.06);
}

.nav-logo {
  height: 28px;
  width: auto;
  display: block;
}

.nav-cta {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--card);
  background: var(--text-strong);
  padding: 9px 20px;
  border-radius: 100px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.75; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  animation: moodBg 5s ease-in-out infinite alternate;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12);
  z-index: 1;
}

@keyframes moodBg {
  0%    { background-color: hsl(120, 60%, 65%); }
  16.7% { background-color: hsl(100, 62%, 64%); }
  33.3% { background-color: hsl(80,  63%, 63%); }
  50%   { background-color: hsl(60,  65%, 62%); }
  66.7% { background-color: hsl(40,  67%, 60%); }
  83.3% { background-color: hsl(20,  68%, 59%); }
  100%  { background-color: hsl(0,   70%, 58%); }
}

.hero-inner {
  flex: 1;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.mood-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.mood-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}
.mood-dot:nth-child(1) { animation-delay: 0s; }
.mood-dot:nth-child(2) { animation-delay: 0.15s; }
.mood-dot:nth-child(3) { animation-delay: 0.3s; }
.mood-dot:nth-child(4) { animation-delay: 0.45s; }
.mood-dot:nth-child(5) { animation-delay: 0.6s; }
.mood-dot:nth-child(6) { animation-delay: 0.75s; }
.mood-dot:nth-child(7) { animation-delay: 0.9s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.85; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #73c45c;
  box-shadow: 0 0 0 0 rgba(115,196,92,0.6);
  animation: badgePulse 2s ease-out infinite;
}
@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(115,196,92,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(115,196,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(115,196,92,0); }
}
.download-beta-note {
  font-size: 14px !important;
  opacity: 0.7;
  max-width: 460px;
  margin: 14px auto 0 !important;
  line-height: 1.5;
}

.hero-title {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: clamp(56px, 8vw, 80px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin-bottom: 40px;
}

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

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}
.btn-primary:hover, .btn-secondary:hover { transform: translateY(-2px); opacity: 0.85; }

.btn-primary {
  background: #fff;
  color: var(--text-strong);
}
.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.hero .btn-secondary {
  background: #1C1C1E;
  border-color: #1C1C1E;
}

/* ── PHONE MOCKUP ── */
.hero-phone {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.phone-frame {
  width: 300px;
  background: var(--text-strong);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-screenshots {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/19.5;
}

.phone-screen-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.phone-screen-img.active {
  opacity: 1;
}

/* Top panel */
.phone-panel {
  background: rgba(255,255,255,0.85);
  padding: 18px 14px 12px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-title {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.8px;
  text-align: center;
}
.phone-sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: 0.2px;
}

.phone-moods {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}

.phone-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.12);
}

.phone-legend {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Tracker section */
.phone-tracker {
  flex: 1;
  padding: 12px 14px 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.phone-tracker-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.3px;
}

.phone-tracker-sub {
  font-size: 8px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: -4px;
}

.phone-streak {
  background: #3a3a3c;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone-streak-count {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.phone-streak-label {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-topmod {
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.phone-topmod-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.phone-topmod-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}

.phone-topmod-label {
  font-size: 7px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.phone-topmod-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-strong);
}

.phone-topmod-count {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-strong);
}

/* Calendar */
.phone-cal-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-top: 2px;
}

.phone-cal-header span {
  font-size: 8px;
  font-weight: 700;
  color: var(--text-secondary);
}

.phone-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-dot {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 700;
  color: #fff;
}

/* Bottom nav */
.phone-tabs {
  display: flex;
  justify-content: space-around;
  padding: 8px 0 10px;
  border-top: 1px solid var(--separator);
  background: rgba(255,255,255,0.6);
}
.phone-tabs span {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
}
.phone-tabs span.active {
  color: var(--text-strong);
}

/* ── SECTIONS COMMON ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--text-strong);
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 60px;
}

/* ── FEATURES ── */
.features {
  padding: 100px 0;
  background: var(--card);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.feature-card--accent {
  background: var(--text-strong);
  color: #fff;
}
.feature-card--accent h3 { color: #fff !important; }
.feature-card--accent .feature-icon { color: #fff; }
.feature-card--accent p { color: rgba(255,255,255,0.7); }

.feature-icon {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 0;
  background: var(--card);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 20px;
}

.step-visual {
  height: 72px;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.step-icon-img {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.step-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}
.step-months {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 10px;
  align-items: end;
}
.step-month-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.step-month-bubble { border-radius: 50%; }
.step-month-item span {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.step-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-divider {
  width: 1px;
  height: 80px;
  background: var(--separator);
  align-self: center;
  flex-shrink: 0;
}

/* ── LIVE MAP ── */
.mapview-section {
  padding: 100px 0 100px;
  background: var(--bg);
}

.mapview-text {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  margin-bottom: 56px;
}

.mapview-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 420px;
}

.mapview-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.08);
  background: #fff;
  padding: 32px 40px;
}

.mapview-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mapview-dots {
  position: absolute;
  top: 32px;
  left: 40px;
  right: 40px;
  bottom: 32px;
}

.md {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: var(--c);
  transform: translate(-50%, -50%);
  animation: mapPulse 3s ease-in-out infinite;
  animation-delay: var(--d);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

@keyframes mapPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.65; }
  50% { transform: translate(-50%, -50%) scale(1.18); opacity: 0.82; }
}

@media (max-width: 900px) {
  .mapview-text, .mapview-wrap { padding: 0 20px; }
  .mapview-wrap { height: 280px; }
}

/* ── APP PREVIEW ── */
.preview { padding: 100px 0; background: var(--bg); }

.preview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.preview-left { display: flex; flex-direction: column; gap: 20px; }
.preview-top-row { display: flex; gap: 20px; }
.preview-top-row .preview-streak,
.preview-top-row .preview-topmod { flex: 1; min-width: 0; }
.preview-top-row .preview-streak-num { font-size: 22px; }
.preview-top-row .preview-topmod-name { font-size: 22px; }
.preview-top-row .preview-topmod-dot { width: 48px; height: 48px; }
.preview-top-row .preview-topmod-count { font-size: 15px; }

.preview-streak {
  background: #1c1c1e;
  border-radius: 24px;
  padding: 20px 24px;
}
.preview-streak-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}
.preview-streak-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
}
.preview-streak-sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.preview-streak-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.preview-streak-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
/* Echo ripple — krugovi se šire iz centra i nestaju (kao onboarding) */
.echo-ripple-wrap {
  position: relative;
  width: 48px;
  height: 48px;
}
.echo-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border: 1.5px solid #73c45c;
  border-radius: 50%;
  opacity: 0;
  animation: echoRipple 2.7s ease-out infinite;
}
.echo-ripple:nth-child(2) { animation-delay: 0.9s; }
.echo-ripple:nth-child(3) { animation-delay: 1.8s; }
.echo-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: #73c45c;
  animation: echoCore 2.7s ease-in-out infinite;
}
@keyframes echoRipple {
  0%   { transform: scale(0.5); opacity: 0; }
  12%  { opacity: 0.55; }
  100% { transform: scale(3.2); opacity: 0; }
}
@keyframes echoCore {
  0%, 100% { transform: scale(0.85); }
  50%      { transform: scale(1.15); }
}

.preview-topmod {
  background: var(--card);
  border-radius: 24px;
  padding: 20px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.preview-topmod-left { display: flex; flex-direction: column; gap: 6px; }
.preview-topmod-name { font-size: 32px; font-weight: 800; color: var(--text-strong); letter-spacing: -1px; }
.preview-topmod-label { font-size: 11px; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.8px; }
.preview-topmod-dot { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.preview-topmod-count { font-size: 19px; font-weight: 800; color: #fff; }

.preview-insights {
  border-radius: 20px;
  padding: 20px 24px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: background-color 0.4s ease;
}
.pi-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.pi-text {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  height: 72px;
  overflow: hidden;
  transition: opacity 0.25s ease;
}
.pi-dots {
  display: flex;
  gap: 5px;
  margin-top: 14px;
}
.pi-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.4);
  transition: width 0.3s ease, background-color 0.3s ease;
}
.pi-dot--active {
  width: 18px;
  background: #fff;
}

/* Calendar */
.preview-cal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.preview-cal-sub {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
}
.preview-cal {
  background: var(--card);
  border-radius: 24px;
  padding: 20px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.preview-cal-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 12px;
}
.preview-cal-labels span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}
.preview-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.pc {
  aspect-ratio: 1;
  border-radius: 50%;
  width: var(--s);
  height: var(--s);
  margin: auto;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pc.visible {
  opacity: 1;
  transform: scale(1);
}
.pc[style*="opacity:.3"].visible {
  opacity: 0.3;
}


@media (max-width: 900px) {
  .preview-grid { grid-template-columns: 1fr; }
  .preview-top-row { flex-direction: column; }
  .preview-top-row .preview-streak-num { font-size: 32px; }
  .preview-top-row .preview-topmod-name { font-size: 32px; }
  .preview-top-row .preview-topmod-dot { width: 64px; height: 64px; }
  .preview-top-row .preview-topmod-count { font-size: 19px; }
}

/* ── SPARK SECTION ── */
.spark-section {
  padding: 120px 0;
  background-color: #73c45c;
  transition: background-color 0.8s ease;
}

.spark-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.spark-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.spark-card {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 28px;
  padding: 44px 92px;
  margin-bottom: 40px;
  position: relative;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.spark-bookmark {
  position: absolute;
  top: 24px;
  right: 28px;
}

.spark-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.4;
  margin: 0;
  text-align: center;
  transition: opacity 0.3s ease;
}

.spark-quote {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  letter-spacing: -0.1px;
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}

.spark-author {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: opacity 0.3s ease;
}

.spark-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .spark-card { padding: 32px 24px; }
  .spark-inner { padding: 0 20px; }
  .spark-desc br { display: none; }
}

/* ── PREVIEW TAGS ── */
.preview-tags-card {
  background: var(--card);
  border-radius: 24px;
  padding: 20px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preview-tags-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.preview-tags-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.preview-tags-desc {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.5px;
}

.preview-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-tag-pill {
  padding: 7px 14px;
  border-radius: 24px;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(0,0,0,0.12);
}

.preview-tag-pill--active {
  background: #3a3a3c;
  border-color: #3a3a3c;
  color: #fff;
}

/* ── RITUAL ROW ── */
.preview-ritual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 640px) {
  .preview-ritual-row { grid-template-columns: 1fr; }
}

/* ── RITUAL CARD ── */
.preview-ritual-card {
  background: #1C1C1E;
  border-radius: 20px;
  padding: 20px 24px;
}
.preview-ritual-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.preview-ritual-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.preview-ritual-badge {
  font-size: 10px;
  font-weight: 700;
  color: #8FD673;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: rgba(115,196,92,0.18);
  padding: 3px 8px;
  border-radius: 8px;
}
.preview-ritual-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.preview-ritual-bar {
  position: relative;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}
.preview-ritual-track {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
}
.preview-ritual-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(to right, #ce6f30, #e8ad36, #a3bf00, #73c45c);
  border-radius: 5px;
  animation: ritual-fill 4s ease-in-out infinite;
  transform-origin: left;
}
@keyframes ritual-fill {
  0%   { clip-path: inset(0 100% 0 0); }
  6%   { clip-path: inset(0 85.7% 0 0); }
  12%  { clip-path: inset(0 85.7% 0 0); }
  18%  { clip-path: inset(0 71.4% 0 0); }
  24%  { clip-path: inset(0 71.4% 0 0); }
  30%  { clip-path: inset(0 57.1% 0 0); }
  36%  { clip-path: inset(0 57.1% 0 0); }
  42%  { clip-path: inset(0 42.8% 0 0); }
  48%  { clip-path: inset(0 42.8% 0 0); }
  54%  { clip-path: inset(0 28.5% 0 0); }
  60%  { clip-path: inset(0 28.5% 0 0); }
  66%  { clip-path: inset(0 14.3% 0 0); }
  72%  { clip-path: inset(0 14.3% 0 0); }
  78%  { clip-path: inset(0 0% 0 0); }
  88%  { clip-path: inset(0 0% 0 0); }
  94%  { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}
.preview-ritual-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #1C1C1E;
  z-index: 1;
}
.preview-ritual-meta {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}

/* ── RITUAL TEASER ── */
.preview-ritual-teaser {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.preview-ritual-teaser-inner {
  position: relative;
  height: 100%;
  padding: 16px 18px;
}
.preview-ritual-teaser-content {
  color: rgba(0,0,0,0.5);
}
.preview-ritual-teaser-content .preview-ritual-name {
  color: rgba(0,0,0,0.7);
}
.preview-ritual-teaser-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.6);
}
.preview-ritual-teaser-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.preview-ritual-teaser-dots {
  display: flex;
  gap: 10px;
}
.preview-ritual-teaser-dots div {
  border-radius: 50%;
  opacity: 0.9;
  flex-shrink: 0;
}
.preview-ritual-teaser-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.5px;
  text-align: center;
  padding: 0 24px;
}
.preview-ritual-teaser-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,0,0,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── VIBE SECTION ── */
.vibe-section {
  padding: 120px 0;
  background-color: #5ECC6E;
  transition: background-color 0.7s ease;
}

.vibe-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.vibe-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.vibe-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin-bottom: 56px;
}

.vibe-label {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: clamp(64px, 10vw, 96px);
  font-weight: 300;
  letter-spacing: -3px;
  line-height: 1.1;
  color: rgba(255,255,255,0.72);
  min-height: 1.1em;
  margin-top: 40px;
  margin-bottom: 0;
  transition: opacity 0.25s ease;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-all;
  hyphens: auto;
}

.vibe-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.vibe-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.6);
  background: transparent;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s, background 0.35s;
}

.vibe-dot.active {
  transform: scale(1.3);
  border-color: #fff;
  background: rgba(255,255,255,0.22);
}

/* ── DOWNLOAD ── */
.download {
  padding: 100px 0;
  background: var(--text-strong);
}

.download-inner {
  text-align: center;
}

.download h2 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.download p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.download-free {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.download-free-main {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.download-free-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.paw-icon {
  width: 28px;
  height: 28px;
  opacity: 0.7;
  margin-top: 8px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 18px;
  transition: background 0.2s, transform 0.15s;
  min-width: 180px;
}
.btn-store:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.btn-store div { text-align: left; }
.btn-store small {
  display: block;
  font-size: 11px;
  opacity: 0.6;
  font-weight: 500;
}
.btn-store strong {
  font-size: 16px;
  font-weight: 700;
}

/* ── FOOTER ── */
.footer {
  padding: 40px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--separator);
}

.footer-center .nav-logo { display: block; margin: 0 auto 8px; height: 22px; }

.footer-center p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-secondary);
}

.footer-copy a { color: inherit; }

.footer-free {
  font-size: 12px;
  color: var(--text-secondary);
}

.footer-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 16px 0;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-strong);
  background: var(--bg);
  border: 1.5px solid var(--separator);
  transition: transform 0.15s, opacity 0.15s;
}
.footer-btn:hover { transform: translateY(-2px); opacity: 0.8; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 48px;
    padding-top: 100px;
  }
  .hero-inner { max-width: 100%; }
  .mood-bar { justify-content: center; }
  .hero-actions { justify-content: center; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }

  .steps { flex-direction: column; gap: 32px; }
  .step-divider { width: 80px; height: 1px; align-self: auto; margin: 0 20px; display: none; }

  .vibe-dots { gap: 10px; }
  .vibe-dot { width: 32px; height: 32px; }
  .vibe-title { letter-spacing: -1.5px; }
  .vibe-sub br { display: none; }
  .vibe-inner { padding: 0 16px; }
  .vibe-label { letter-spacing: -1px; font-size: 13vw; }
}

@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .section-inner { padding: 0 20px; }
  .hero { padding: 90px 20px 60px; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-phone { display: flex; justify-content: center; }
  .phone-frame { width: 180px; }
  .features, .how, .spectrum, .download { padding: 72px 0; }
  .footer-bottom { flex-direction: column; gap: 6px; align-items: center; }
}
