/* Gradski Trag — single-screen landing (light) */

:root {
  --bg: #faf8f5;
  --bg-soft: #fffefb;
  --surface: #ffffff;
  --card: #ffffff;
  --primary: #d4890f;
  --primary-light: #e8a020;
  --primary-dark: #b8730a;
  --violet: #7c3aed;
  --violet-light: #a78bfa;
  --text: #1a1a2e;
  --text-soft: #5c5d78;
  --text-faint: #9496ad;
  --border: #e8e4dc;
  --shadow: 0 12px 40px rgba(26, 26, 46, 0.08);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --store-h: 48px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Ambient ── */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(165deg, #fffefb 0%, #faf8f5 45%, #f3efe8 100%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: drift 18s var(--ease) infinite alternate;
}

.glow-gold {
  width: min(60vw, 560px);
  height: min(60vw, 560px);
  background: radial-gradient(circle, rgba(232, 160, 32, 0.22) 0%, transparent 70%);
  top: -18%;
  left: -10%;
}

.glow-violet {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  bottom: -10%;
  right: 0;
  animation-delay: -6s;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 26, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 46, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, black 15%, transparent 72%);
}

.grain {
  display: none;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, 20px) scale(1.06); }
}

/* ── Layout ── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 16px;
  display: flex;
  flex-direction: column;
}

/* ── Top bar ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px 48px;
  padding: 24px 0 12px;
  min-height: 0;
}

.hero-copy {
  animation: fadeUp 0.9s var(--ease) both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(232, 160, 32, 0.12);
  border: 1px solid rgba(232, 160, 32, 0.28);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: pulse 2s ease-in-out infinite;
}

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

.headline {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  color: var(--text);
}

.gold-text {
  background: linear-gradient(135deg, #f5c757, #d4890f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 30rem;
  margin-bottom: 22px;
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.chips li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(26, 26, 46, 0.04);
}

/* Store badges — identical height (SVG assets) */
.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.store-badge {
  display: block;
  line-height: 0;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.store-badge:hover {
  transform: translateY(-3px);
}

.store-img {
  display: block;
  height: var(--store-h);
  width: auto;
}

.fine-print {
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ── Phone visual ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.9s var(--ease) 0.15s both;
}

.phone-stage {
  position: relative;
  width: min(100%, 320px);
}

.phone {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.phone-shell {
  position: relative;
  padding: 10px;
  border-radius: 44px;
  background: linear-gradient(160deg, #ffffff 0%, #e8e4dc 55%, #d8d2c8 100%);
  box-shadow:
    0 0 0 1px rgba(26, 26, 46, 0.06),
    var(--shadow),
    0 24px 48px rgba(232, 160, 32, 0.12);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 26px;
  background: #1a1a2e;
  border-radius: 20px;
  z-index: 4;
}

.phone-screen {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 955 / 2048;
  background: #f0f0f5;
}

.screenshot-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.65s var(--ease), transform 0.85s var(--ease);
}

.shot.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.phone-glare {
  position: absolute;
  inset: 10px;
  border-radius: 36px;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.35) 0%,
    transparent 45%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 3;
}

/* Float cards */
.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

.float-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.float-card span {
  font-size: 0.7rem;
  color: var(--text-soft);
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.float-icon.gold {
  background: rgba(232, 160, 32, 0.15);
  color: var(--primary-dark);
}

.float-icon.violet {
  background: rgba(124, 58, 237, 0.1);
}

.float-a {
  top: 8%;
  left: -18%;
  animation-delay: 0s;
}

.float-b {
  bottom: 14%;
  right: -16%;
  animation-delay: -2.5s;
}

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

.shot-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d2c8;
  transition: background 0.3s, width 0.3s;
}

.dot.active {
  background: var(--primary-light);
  width: 22px;
  border-radius: 4px;
}

/* ── Principle section ── */
.principle {
  padding: 56px 0 48px;
  border-top: 1px solid var(--border);
}

.principle-inner {
  max-width: 960px;
  margin: 0 auto;
}

.principle-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 40rem;
  margin: 0 auto;
}

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px 20px;
  align-items: stretch;
  margin-bottom: 40px;
}

.place-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 22px 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.05);
  overflow: hidden;
}

.place-known {
  opacity: 0.92;
  background: linear-gradient(180deg, #f8f7f4 0%, #fff 100%);
}

.place-hidden {
  border-color: rgba(232, 160, 32, 0.45);
  background: linear-gradient(180deg, #fffdf8 0%, #fff 55%);
  box-shadow:
    0 8px 32px rgba(232, 160, 32, 0.12),
    0 4px 20px rgba(26, 26, 46, 0.06);
}

.place-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(245, 199, 87, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

.place-badge {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.place-badge--bronze {
  color: #8b5a2b;
  background: rgba(205, 127, 50, 0.15);
  border: 1px solid rgba(205, 127, 50, 0.35);
}

.place-badge--gold {
  color: var(--primary-dark);
  background: rgba(232, 160, 32, 0.15);
  border: 1px solid rgba(232, 160, 32, 0.4);
}

.place-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 14px;
  color: var(--text-faint);
  background: rgba(26, 26, 46, 0.04);
}

.place-icon--gold {
  color: var(--primary-dark);
  background: rgba(232, 160, 32, 0.12);
}

.place-name {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.place-desc {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-soft);
  margin-bottom: 20px;
  max-width: 16rem;
}

.coin-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.coin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.coin-face {
  line-height: 1;
}

.coin--bronze {
  background: linear-gradient(145deg, #e8a96d, #cd7f32);
  color: #4a3018;
}

.coin--gold {
  background: linear-gradient(145deg, #ffe866, #e8a020);
  color: #5c3d08;
  width: 60px;
  height: 60px;
  font-size: 1.4rem;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    0 6px 20px rgba(232, 160, 32, 0.45);
}

.coin-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
}

.compare-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 4px;
}

.compare-vs {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.compare-arrow {
  color: var(--primary-light);
}

.story-flow {
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.story-flow-title {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text);
}

.story-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.story-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-dark);
  background: rgba(232, 160, 32, 0.15);
  border: 1px solid rgba(232, 160, 32, 0.3);
  flex-shrink: 0;
}

.step-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.step-body span {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.principle-note {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 36rem;
  margin: 0 auto;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.principle-note strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Discovery / photo stack ── */
.discovery {
  padding: 64px 0 72px;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 160, 32, 0.06) 50%, transparent 100%);
}

.discovery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.discovery-quote {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.discovery-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
  transition: opacity 0.4s var(--ease);
}

.discovery-sub.is-fading {
  opacity: 0.35;
}

.photo-stack-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.photo-stack {
  position: relative;
  width: min(100%, 380px);
  height: clamp(320px, 42vw, 440px);
}

.stack-photo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82%;
  height: 88%;
  object-fit: cover;
  border-radius: 20px;
  border: 5px solid #fff;
  box-shadow:
    0 24px 56px rgba(26, 26, 46, 0.14),
    0 8px 20px rgba(26, 26, 46, 0.08);
  transition:
    transform 0.7s var(--ease),
    opacity 0.55s var(--ease),
    z-index 0s;
  opacity: 0.7;
  pointer-events: none;
}

.stack-photo[data-offset="0"] {
  z-index: 5;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-1.5deg) scale(1);
  pointer-events: auto;
}

.stack-photo[data-offset="1"] {
  z-index: 3;
  transform: translate(-44%, -54%) rotate(7deg) scale(0.93);
}

.stack-photo[data-offset="2"] {
  z-index: 2;
  transform: translate(-56%, -46%) rotate(-8deg) scale(0.88);
}

.stack-dots {
  display: flex;
  gap: 8px;
}

.stack-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d2c8;
  transition: background 0.3s, width 0.3s;
}

.stack-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--primary-light);
}

.section-eyebrow--violet {
  color: var(--violet);
}

/* ── Partners ── */
.partners {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, #fff 0%, #f8f6ff 40%, #faf8f5 100%);
  border-top: 1px solid var(--border);
}

.partners-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.partners-head {
  text-align: center;
  margin-bottom: 44px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.partner-card {
  padding: 24px 22px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.partner-card--highlight {
  border-color: rgba(232, 160, 32, 0.35);
  background: linear-gradient(145deg, #fffdf8 0%, #fff 100%);
}

.partner-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--primary-dark);
  background: rgba(232, 160, 32, 0.12);
}

.partner-card-icon.violet {
  color: var(--violet);
  background: rgba(124, 58, 237, 0.1);
}

.partner-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.partner-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.partner-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: center;
  padding: 32px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.partner-spotlight-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.partner-spotlight-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.partner-spotlight-copy p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.partner-spotlight-copy p strong {
  color: var(--text);
  font-weight: 600;
}

.partner-perks {
  list-style: none;
  margin-bottom: 22px;
}

.partner-perks li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.partner-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 700;
}

.partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary-light);
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.35);
  transition: transform 0.2s, background 0.2s;
}

.partner-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Partner panel mockup */
.partner-mock {
  display: flex;
  justify-content: center;
}

.partner-mock-window {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 20px 50px rgba(26, 26, 46, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  background: #f5f5f8;
}

.mock-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #1a1a2e;
  color: #fff;
}

.mock-brand {
  font-size: 0.8rem;
  font-weight: 700;
}

.mock-partner {
  font-size: 0.7rem;
  opacity: 0.75;
}

.mock-tabs {
  display: flex;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.mock-tab {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-faint);
}

.mock-tab.active {
  color: var(--primary-dark);
  box-shadow: inset 0 -2px 0 var(--primary-light);
}

.mock-body {
  padding: 20px 16px 24px;
  background: #fff;
}

.mock-qr-frame {
  position: relative;
  aspect-ratio: 1;
  max-width: 200px;
  margin: 0 auto 14px;
  background: linear-gradient(145deg, #f0f0f5, #e8e4dc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-qr-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--primary-light);
  border-style: solid;
}

.mock-qr-corner.tl {
  top: 12px;
  left: 12px;
  border-width: 3px 0 0 3px;
  border-radius: 4px 0 0 0;
}

.mock-qr-corner.tr {
  top: 12px;
  right: 12px;
  border-width: 3px 3px 0 0;
  border-radius: 0 4px 0 0;
}

.mock-qr-corner.bl {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 4px;
}

.mock-qr-corner.br {
  bottom: 12px;
  right: 12px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 4px 0;
}

.mock-qr-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mock-hint {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-faint);
}

.partners-footnote {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-soft);
}

.partners-footnote a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.partners-footnote a:hover {
  color: var(--primary-light);
}

/* ── Closing ── */
.closing {
  padding: 56px 24px 48px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 160, 32, 0.08) 50%, transparent 100%);
}

.closing-inner {
  max-width: 32rem;
  margin: 0 auto;
}

.closing-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 20px;
  object-fit: cover;
}

.closing-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
  color: var(--text);
}

.closing-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.store-row--center {
  justify-content: center;
}

/* ── Origin / Kruševac ── */
.origin {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(232, 160, 32, 0.06) 0%, #fff 50%, rgba(232, 160, 32, 0.06) 100%);
}

.origin-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.origin-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--primary-dark);
  background: rgba(232, 160, 32, 0.15);
  border: 1px solid rgba(232, 160, 32, 0.3);
}

.origin-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.origin-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.origin-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 28rem;
}

/* ── Footer ── */
.foot {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 20px;
  font-size: 0.75rem;
  color: var(--text-faint);
}

.foot-sep {
  opacity: 0.5;
}

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

@media (min-width: 901px) {
  .hero {
    min-height: calc(100dvh - 100px);
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding-top: 12px;
  }

  .sub {
    margin-left: auto;
    margin-right: auto;
  }

  .chips,
  .store-row {
    justify-content: center;
  }

  .phone-stage {
    width: min(72vw, 280px);
  }

  .float-a {
    left: -4%;
    top: 2%;
  }

  .float-b {
    right: -4%;
    bottom: 8%;
  }

  .compare {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .compare-mid {
    flex-direction: row;
    padding: 8px 0;
  }

  .compare-arrow {
    transform: rotate(90deg);
  }

  .story-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .principle {
    padding: 40px 0 32px;
  }

  .discovery-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .discovery {
    padding: 48px 0 56px;
  }

  .photo-stack {
    width: min(88vw, 340px);
    height: 380px;
  }

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

  .partner-spotlight {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    text-align: center;
  }

  .partner-perks {
    text-align: left;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .partners {
    padding: 48px 0 56px;
  }
}

@media (max-width: 520px) {
  .page {
    padding: 16px 16px 12px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .float-card {
    display: none;
  }

  :root {
    --store-h: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow,
  .float-card,
  .pill-dot {
    animation: none;
  }

  .shot {
    transition: opacity 0.2s;
  }

  .hero-copy,
  .hero-visual {
    animation: none;
  }
}
