/* ============================================================
   TIME SPIRAL LANDING PAGE — STYLES
   Dark-first, red (#F44336) accent, Inter typeface
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --color-bg: #0A0A0A;
  --color-surface: #141414;
  --color-surface-2: #1C1C1C;
  --color-surface-3: #2D2D2D;
  --color-border: rgba(255,255,255,0.08);
  --color-text: #F0F0F0;
  --color-text-secondary: #A0A0A0;
  --color-text-muted: #666;
  --color-primary: #F44336;
  --color-primary-glow: rgba(244,67,54,0.25);
  --color-primary-dark: #C62828;
  --color-green: #44AE4D;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 600; border: none; cursor: pointer;
  border-radius: 50px; transition: var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-primary {
  background: var(--color-primary); color: #fff;
  box-shadow:
    inset 2px 2px 4px rgba(255,255,255,0.15),
    inset -2px -2px 4px rgba(0,0,0,0.2),
    0 0 24px var(--color-primary-glow);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow:
    inset 2px 2px 4px rgba(255,255,255,0.15),
    inset -2px -2px 4px rgba(0,0,0,0.2),
    0 0 40px var(--color-primary-glow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled { border-bottom-color: var(--color-border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 32px; height: 32px; border-radius: 8px; }
.nav-logo-text { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; color: var(--color-text-secondary); transition: var(--transition); }
.nav-links a:hover { color: var(--color-text); }
.nav-links .btn { color: #fff; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: var(--transition); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: clamp(60px, 10vw, 80px) 0 clamp(60px, 10vw, 80px);
  overflow: hidden;
}

.hero-bg-spiral {
  position: absolute; top: 50%; right: -10%; width: clamp(400px, 80vw, 900px); height: clamp(400px, 80vw, 900px);
  transform: translate(0, -50%);
  background: conic-gradient(from 0deg, transparent, var(--color-primary-glow), transparent, var(--color-primary-glow), transparent);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
  animation: spiralRotate 30s linear infinite;
  pointer-events: none;
}
@keyframes spiralRotate { to { transform: translate(0,-50%) rotate(360deg); } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.hero-tagline {
  font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--color-primary); margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-accent { color: var(--color-primary); }
.hero-subtitle {
  font-size: 1.1rem; color: var(--color-text-secondary); line-height: 1.7;
  max-width: 480px; margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; justify-content: center; }
.hero-privacy {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--color-text-muted);
}
.hero-privacy svg { opacity: 0.5; }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; padding: 40px 0;
}

/* --- Vintage Watch --- */
.hero-watch {
  position: relative;
  width: clamp(240px, 50vw, 440px);
  display: flex; flex-direction: column; align-items: center;
  transform: rotate(6deg);
  padding: clamp(50px, 12vw, 100px) 0;
}

.hero-phone-glow {
  position: absolute;
  top: 45%; left: 50%;
  width: clamp(300px, 60vw, 500px); height: clamp(300px, 60vw, 500px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--color-primary-glow), transparent 70%);
  opacity: 0.35;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

/* Straps */
.watch-strap {
  width: 50%;
  aspect-ratio: 220 / 120;
  background: linear-gradient(90deg, #4A2E17, #5C3A1E, #6B4423, #5C3A1E, #4A2E17);
  position: relative;
  z-index: 1;
  border: 2px solid rgba(90, 55, 25, 0.6);
}
.watch-strap::before {
  content: '';
  position: absolute;
  top: 8px; bottom: 8px; left: 10px; right: 10px;
  border: 1.5px dashed rgba(255,255,255,0.1);
  border-radius: 3px;
  pointer-events: none;
}
.watch-strap--top {
  border-radius: 8px 8px 0 0;
  margin-bottom: clamp(-20px, -5vw, -40px);
  background: linear-gradient(90deg, #4A2E17, #5C3A1E, #6B4423, #5C3A1E, #4A2E17);
}
.watch-strap--bottom {
  border-radius: 0 0 8px 8px;
  margin-top: clamp(-20px, -5vw, -40px);
  background: linear-gradient(90deg, #4A2E17, #5C3A1E, #6B4423, #5C3A1E, #4A2E17);
}

/* Strap keeper loops */
.watch-strap--top::after,
.watch-strap--bottom::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 105%; height: 16px;
  background: linear-gradient(90deg, #3E2510, #4A2E17, #3E2510);
  border-radius: 4px;
  border: 1px solid rgba(90,55,25,0.5);
}
.watch-strap--top::after { bottom: 16px; }
.watch-strap--bottom::after { top: 16px; }

/* Watch case */
.watch-body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.watch-bezel {
  width: 100%; aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #3a3a3a, #1a1a1a);
  padding: 3.2%;
  box-shadow:
    inset 3px 3px 8px rgba(255,255,255,0.08),
    inset -3px -3px 8px rgba(0,0,0,0.5),
    0 20px 60px rgba(0,0,0,0.4),
    0 0 0 3px #111,
    0 0 0 5px rgba(255,255,255,0.04);
  position: relative;
}

/* Bezel edge notches (hour marks) */
.watch-bezel::before {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

/* Clock hands */
.watch-hands {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.watch-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #666, #333);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.watch-hand--outer {
  width: 7px;
  height: 32%;
  transform: translateX(-50%);
  z-index: 5;
}
.watch-hand--inner {
  width: 7px;
  height: 18%;
  transform: translateX(-50%);
  z-index: 5;
}
.watch-hand-cap {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  background: linear-gradient(145deg, #666, #333);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.watch-num {
  position: absolute;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  z-index: 3;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.watch-numbers {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.watch-glass {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #1C1C1C;
  box-shadow:
    inset 0 4px 20px rgba(0,0,0,0.4),
    inset 0 -2px 10px rgba(255,255,255,0.02);
  position: relative;
}

.hero-mockup {
  width: 85%; height: 85%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  margin: auto;
  position: absolute;
  inset: 0;
}

/* Crown (winding knob) */
.watch-crown {
  position: absolute;
  right: -4.5%; top: 50%;
  transform: translateY(-50%);
  width: 3.6%; height: 7.3%;
  background: linear-gradient(180deg, #4a4a4a, #2a2a2a, #3a3a3a);
  border-radius: 4px;
  box-shadow:
    inset 1px 1px 3px rgba(255,255,255,0.1),
    inset -1px -1px 3px rgba(0,0,0,0.4),
    3px 2px 8px rgba(0,0,0,0.4);
}
/* Crown grooves */
.watch-crown::before {
  content: '';
  position: absolute;
  top: 4px; bottom: 4px; left: 3px; right: 3px;
  background: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.06) 2px,
    rgba(255,255,255,0.06) 3px
  );
  border-radius: 2px;
}

/* ---------- Sections ---------- */
.section { padding: clamp(60px, 10vw, 120px) 0; }
.section-header { text-align: center; margin-bottom: clamp(32px, 5vw, 64px); }
.section-label {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--color-primary); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--color-text-secondary); margin-top: 16px;
  max-width: 520px; margin-inline: auto;
}

/* ---------- Features ---------- */
.features { background: var(--color-bg); }

/* Feature showcase rows (alternating text + mockup) */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.feature-showcase.reverse { direction: rtl; }
.feature-showcase.reverse > * { direction: ltr; }

.feature-showcase-content h3 {
  font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.01em;
}
.feature-showcase-content p {
  font-size: 1rem; color: var(--color-text-secondary); line-height: 1.7; max-width: 440px;
}

.feature-showcase-mockup {
  display: flex; align-items: center; justify-content: center;
}

/* Placeholder box for future mockup screenshots */
.mockup-placeholder {
  width: 100%; max-width: 380px; aspect-ratio: 9 / 16;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #2a2a2a, #0d0d0d);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    -10px -10px 20px rgba(255,255,255,0.05),
     10px  10px 20px rgba(0,0,0,0.5),
     0 20px 40px rgba(0,0,0,0.3);
  position: relative;
}
.mockup-placeholder[data-label="Spiral View"],
.mockup-placeholder[data-label="Priority Queue"] {
  padding: 24px;
}

.mockup-placeholder:not(:has(img)):not(:has(video))::after {
  content: attr(data-label);
  font-size: 0.85rem; font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.mockup-placeholder img,
.mockup-placeholder video {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: 8px;
}

/* Secondary features (smaller cards) */
.features-grid-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: 20px;
}

.feature-card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  box-shadow:
    -6px -6px 12px rgba(255,255,255,0.03),
     6px  6px 12px rgba(0,0,0,0.4);
}
.feature-card:hover {
  border-color: rgba(244,67,54,0.3);
  transform: translateY(-4px);
  box-shadow:
    -8px -8px 16px rgba(255,255,255,0.04),
     8px  8px 16px rgba(0,0,0,0.5),
     0 20px 60px rgba(0,0,0,0.3);
}
.feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244,67,54,0.1);
  border-radius: 12px; margin-bottom: 20px;
  box-shadow:
    inset 2px 2px 4px rgba(255,255,255,0.03),
    inset -2px -2px 4px rgba(0,0,0,0.2);
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--color-primary); }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-card p { font-size: 0.92rem; color: var(--color-text-secondary); line-height: 1.65; }

/* ---------- How It Works ---------- */
.how-it-works { background: var(--color-surface); }

.steps-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary), rgba(244,67,54,0.2));
  border-radius: 1px;
}

.timeline-step {
  position: relative;
  padding-left: 72px;
  padding-bottom: 64px;
}
.timeline-step:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 8px; top: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    inset 2px 2px 4px rgba(255,255,255,0.15),
    inset -2px -2px 4px rgba(0,0,0,0.3),
    0 0 20px rgba(244,67,54,0.35);
  z-index: 1;
}
.timeline-dot span {
  color: #fff; font-weight: 800; font-size: 0.85rem;
}

.timeline-body {
  display: flex;
  align-items: center;
  gap: 32px;
}
.timeline-step:nth-child(odd) .timeline-body { flex-direction: row; }
.timeline-step:nth-child(even) .timeline-body { flex-direction: row-reverse; }

.timeline-content { flex: 1; }
.timeline-content h3 {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 10px;
}
.timeline-content p {
  font-size: 0.95rem; color: var(--color-text-secondary); line-height: 1.7;
}

.timeline-image {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.timeline-image-slot {
  width: clamp(140px, 25vw, 200px); aspect-ratio: 1;
  border-radius: 20px;
  background: linear-gradient(145deg, #2a2a2a, #0d0d0d);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    -6px -6px 12px rgba(255,255,255,0.04),
     6px  6px 12px rgba(0,0,0,0.5),
     0 16px 32px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.timeline-image-slot[data-step="1"],
.timeline-image-slot[data-step="3"] {
  width: clamp(260px, 50vw, 420px);
  aspect-ratio: 2 / 1;
}
.timeline-image-slot img {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: 14px;
  padding: 8px;
}
.timeline-image-label {
  font-size: 0.65rem; font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ---------- Principles ---------- */
.principles { background: var(--color-bg); }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.principle-card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow:
    -6px -6px 12px rgba(255,255,255,0.03),
     6px  6px 12px rgba(0,0,0,0.4);
}
.principle-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  opacity: 0; transition: var(--transition);
}
.principle-card:hover::before { opacity: 1; }
.principle-card:hover {
  transform: translateY(-4px);
  box-shadow:
    -8px -8px 16px rgba(255,255,255,0.04),
     8px  8px 16px rgba(0,0,0,0.5),
     0 16px 40px rgba(0,0,0,0.3);
}
.principle-num {
  font-size: 2rem; font-weight: 800; color: var(--color-primary);
  opacity: 0.3; display: block; margin-bottom: 12px;
}
.principle-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.principle-card p { font-size: 0.82rem; color: var(--color-text-secondary); line-height: 1.6; }

/* ---------- Quote ---------- */
.quote-section {
  padding: clamp(40px, 8vw, 80px) 0;
  background: var(--color-surface);
}
.quote-block {
  text-align: center;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 40px);
  background: linear-gradient(145deg, #1a1a1a, #111);
  border-radius: 20px;
  box-shadow:
    -8px -8px 16px rgba(255,255,255,0.03),
     8px  8px 16px rgba(0,0,0,0.4);
}
.quote-block p {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-primary), #FF8A80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Download CTA ---------- */
.download { background: var(--color-bg); }
.download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  box-shadow:
    -10px -10px 20px rgba(255,255,255,0.04),
     10px  10px 20px rgba(0,0,0,0.5),
     0 30px 60px rgba(0,0,0,0.3);
}
.download-inner::before {
  content: '';
  position: absolute; top: -50%; right: -20%; width: clamp(300px, 50vw, 500px); height: clamp(300px, 50vw, 500px);
  background: radial-gradient(circle, var(--color-primary-glow), transparent 70%);
  pointer-events: none;
}
.download-content { position: relative; z-index: 1; }
.download-content .section-title { text-align: left; }
.download-content .section-subtitle { max-width: 420px; margin-inline: 0; text-align: left; }
.download-badges { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; justify-content: center; }
.download-visual { position: relative; z-index: 1; flex-shrink: 0; }
.download-logo {
  width: clamp(100px, 25vw, 180px); height: clamp(100px, 25vw, 180px); border-radius: 32px;
  filter: drop-shadow(0 20px 60px var(--color-primary-glow));
  box-shadow:
    -8px -8px 16px rgba(255,255,255,0.04),
     8px  8px 16px rgba(0,0,0,0.5);
}

/* ---------- Footer ---------- */
.footer {
  padding: clamp(20px, 3vw, 32px) 0;
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; flex: 1; }
.footer-logo { width: 24px; height: 24px; border-radius: 6px; }
.footer-name { font-weight: 600; font-size: 0.9rem; }
.footer-copy { font-size: 0.8rem; color: var(--color-text-muted); flex: 1; text-align: center; }
.footer-links { display: flex; gap: 24px; flex: 1; justify-content: flex-end; }
.footer-links a { font-size: 0.8rem; color: var(--color-text-secondary); text-decoration: underline; text-underline-offset: 3px; transition: var(--transition); }
.footer-links a:hover { color: var(--color-text); }

/* ---------- Store buttons ---------- */
.store-btn-group {
  display: flex; align-items: stretch; gap: 0;
}
.store-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: linear-gradient(145deg, #1e1e1e, #161616);
  border: 1px solid var(--color-border);
  border-radius: 14px 0 0 14px;
  transition: var(--transition);
  cursor: pointer;
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.04),
    inset -1px -1px 2px rgba(0,0,0,0.2),
    3px 3px 8px rgba(0,0,0,0.3);
}
.store-btn:hover {
  background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
  border-color: rgba(244,67,54,0.3);
  transform: translateY(-2px);
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.05),
    inset -1px -1px 2px rgba(0,0,0,0.2),
    0 8px 30px rgba(0,0,0,0.3),
    0 0 20px rgba(244,67,54,0.1);
}
.store-btn-icon { width: 28px; height: 28px; flex-shrink: 0; color: #fff; }
.store-btn-text { display: flex; flex-direction: column; }
.store-btn-label {
  font-size: 0.65rem; font-weight: 500; color: var(--color-text-secondary);
  letter-spacing: 0.03em; line-height: 1.2;
}
.store-btn-name {
  font-size: 1.1rem; font-weight: 700; color: var(--color-text);
  line-height: 1.2; letter-spacing: -0.01em;
}

/* QR trigger button */
.qr-trigger {
  display: flex; align-items: center; justify-content: center;
  width: 48px;
  background: linear-gradient(145deg, #1e1e1e, #161616);
  border: 1px solid var(--color-border);
  border-left: none;
  border-radius: 0 14px 14px 0;
  cursor: pointer; transition: var(--transition);
  color: var(--color-text-muted);
  padding: 0;
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.04),
    inset -1px -1px 2px rgba(0,0,0,0.2),
    3px 3px 8px rgba(0,0,0,0.3);
}
.qr-trigger svg { width: 20px; height: 20px; }
.qr-trigger:hover {
  background: var(--color-surface-3);
  color: var(--color-primary);
  border-color: rgba(244,67,54,0.3);
}
.store-btn:hover + .qr-trigger,
.store-btn:hover ~ .qr-trigger {
  transform: translateY(-2px);
}

/* QR Modal */
.qr-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.qr-modal-overlay.active {
  opacity: 1; pointer-events: auto;
}
.qr-modal {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  max-width: 340px; width: 90%;
  transform: scale(0.9);
  transition: transform 0.25s ease;
  box-shadow:
    -10px -10px 20px rgba(255,255,255,0.04),
     10px  10px 20px rgba(0,0,0,0.5),
     0 30px 60px rgba(0,0,0,0.4);
}
.qr-modal-overlay.active .qr-modal { transform: scale(1); }
.qr-modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; color: var(--color-text-secondary);
  font-size: 1.6rem; cursor: pointer; line-height: 1;
  transition: var(--transition);
}
.qr-modal-close:hover { color: var(--color-text); }
.qr-modal-title {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 24px;
}
.qr-modal-code {
  width: 200px; height: 200px; margin: 0 auto 16px;
  background: #fff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
}
.qr-modal-code img { width: 100%; height: 100%; object-fit: contain; }
.qr-modal-hint {
  font-size: 0.8rem; color: var(--color-text-muted);
}

/* ---------- Scroll-reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid-secondary { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: absolute; top: 100%; left: 0; width: 100%;
    flex-direction: column; gap: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; text-align: center; }
  .nav-toggle { display: flex; }

  .hero { padding: clamp(60px, 10vw, 100px) 0 clamp(30px, 6vw, 60px); min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .store-btn-group { flex: 1; min-width: 0; max-width: 220px; }
  .store-btn { padding: 10px 14px; gap: 8px; }
  .store-btn-icon { width: 22px; height: 22px; }
  .store-btn-name { font-size: 0.95rem; }
  .hero-privacy { justify-content: center; }

  .feature-showcase { grid-template-columns: 1fr; gap: 32px; }
  .feature-showcase.reverse { direction: ltr; }
  .feature-showcase-mockup { order: -1; }
  .feature-showcase-content { text-align: center; }
  .feature-showcase-content .feature-icon { display: inline-flex; margin-bottom: 0; margin-right: 12px; vertical-align: middle; }
  .feature-showcase-content h3 { display: inline; vertical-align: middle; }
  .feature-showcase-content p { margin-inline: auto; }
  .mockup-placeholder { max-width: 280px; margin: 0 auto; }
  .features-grid-secondary { grid-template-columns: 1fr; }
  
  .steps-timeline { max-width: 100%; }
  .timeline-line { left: 16px; }
  .timeline-step { padding-left: 52px; padding-bottom: 48px; }
  .timeline-dot { left: 0; width: 30px; height: 30px; }
  .timeline-dot span { font-size: 0.8rem; }
  .timeline-body { flex-direction: column !important; gap: 20px; text-align: center; }
  .timeline-content p { margin-inline: auto; }

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

  .download-inner { flex-direction: column; text-align: center; }
  .download-content .section-title { text-align: center; }
  .download-content .section-subtitle { text-align: center; margin-inline: auto; }
  .download-badges { justify-content: center; }
  .download-logo { width: clamp(80px, 20vw, 120px); height: clamp(80px, 20vw, 120px); }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .principles-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.6rem; }
  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.95rem; }
  .feature-card { padding: 24px 20px; }
  .feature-card h3 { font-size: 1.05rem; }
  .feature-card p { font-size: 0.85rem; }
  .principle-card { padding: 20px 16px; }
  .principle-card h3 { font-size: 0.88rem; }
  .principle-card p { font-size: 0.78rem; }
  .store-btn { padding: 8px 12px; gap: 6px; }
  .store-btn-icon { width: 20px; height: 20px; }
  .store-btn-name { font-size: 0.85rem; }
  .store-btn-label { font-size: 0.6rem; }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; padding: 80px 0 40px; }
  .hero-bg-spiral { opacity: 0.08; }
  .section { padding: clamp(40px, 8vw, 80px) 0; }
}
