/* ═══════════════════════════════════════════════════
   GermanDeck — Landing Page Stylesheet
   ═══════════════════════════════════════════════════ */

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

:root {
  --bg:          #f7f4ee;
  --bg-tint:     #f0ede5;
  --gold:        #c98a0e;
  --gold-lt:     #e8a012;
  --gold-pale:   rgba(201,138,14,0.1);
  --text:        #1c1917;
  --muted:       #78716c;
  --card-bg:     rgba(255,255,255,0.78);
  --card-border: rgba(0,0,0,0.07);
  --radius:      16px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

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

/* ── AMBIENT BACKGROUND ── */
#bg-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.5;
}

.orb {
  position: fixed; border-radius: 50%;
  filter: blur(120px); pointer-events: none; z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(220,150,30,0.18) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: drift1 22s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,180,60,0.12) 0%, transparent 70%);
  bottom: -160px; right: -100px;
  animation: drift2 26s ease-in-out infinite;
}
.orb-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,200,80,0.1) 0%, transparent 70%);
  top: 40%; left: 60%;
  animation: drift3 30s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(60px,80px) scale(1.08)} 66%{transform:translate(-40px,50px) scale(0.95)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-70px,-60px) scale(1.1)} 66%{transform:translate(50px,-30px) scale(0.92)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-80px,60px) scale(1.15)} }

/* ── SCROLLING WORDS BG ── */
.words-bg {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; overflow: hidden;
}
.word-row {
  position: absolute; left: 0; right: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.word-track {
  display: inline-flex; align-items: center;
  white-space: nowrap; font-weight: 700; letter-spacing: 0.3px;
  will-change: transform;
}
.word-track span { padding: 0 22px; color: rgba(160,110,20,var(--row-opacity)); font-size: var(--row-size); }
.word-track span::after { content: '·'; margin-left: 22px; opacity: 0.3; }
.word-track span:last-child::after { content: ''; }
@keyframes scroll-left  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes scroll-right { from{transform:translateX(-50%)} to{transform:translateX(0)} }
.row-1{top:6%;  --row-size:11px;--row-opacity:0.18} .row-1 .word-track{animation:scroll-left  55s linear infinite}
.row-2{top:18%; --row-size:14px;--row-opacity:0.25} .row-2 .word-track{animation:scroll-right 38s linear infinite}
.row-3{top:31%; --row-size:12px;--row-opacity:0.13} .row-3 .word-track{animation:scroll-left  70s linear infinite}
.row-4{top:47%; --row-size:13px;--row-opacity:0.18} .row-4 .word-track{animation:scroll-right 45s linear infinite}
.row-5{top:62%; --row-size:11px;--row-opacity:0.14} .row-5 .word-track{animation:scroll-left  60s linear infinite}
.row-6{top:75%; --row-size:15px;--row-opacity:0.22} .row-6 .word-track{animation:scroll-right 42s linear infinite}
.row-7{top:88%; --row-size:11px;--row-opacity:0.14} .row-7 .word-track{animation:scroll-left  68s linear infinite}

/* ── SECTION UTILITIES ── */
.bg-tint { background: var(--bg-tint); }

.sec-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 1.3px; text-transform: uppercase; color: var(--gold);
  background: var(--gold-pale); border: 1px solid rgba(201,138,14,0.22);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
}
.sec-title {
  font-size: clamp(28px, 4vw, 46px); font-weight: 900;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px;
}
.sec-title .accent { color: var(--gold); }
.sec-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--muted);
  max-width: 560px; margin: 0 auto 48px; line-height: 1.6;
}

/* ── EYEBROW (hero) ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-pale); border: 1px solid rgba(201,138,14,0.25);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 24px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.25} }

/* ── GOOGLE PLAY BUTTON ── */
.gplay-btn {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.gplay-btn:hover { transform: scale(1.04); opacity: 0.9; }
.gplay-btn img { height: 58px; width: auto; display: block; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.18)); }
.gplay-btn-lg img { height: 68px; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(247,244,238,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-size: 17px; font-weight: 700; letter-spacing: -0.3px;
}
.nav-brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-brand strong { color: var(--gold); }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: inline-block; padding: 9px 22px;
  background: var(--gold); color: #fff;
  border-radius: 100px; text-decoration: none;
  font-size: 14px; font-weight: 700; letter-spacing: -0.2px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(201,138,14,0.3);
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ══════════════════════════════
   HERO SECTION
══════════════════════════════ */
.hero {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 120px 24px 80px;
}

/* ── MASCOT ── */
.hero-mascot {
  width: 160px; height: 160px;
  border-radius: 36px;
  box-shadow:
    0 0 0 8px rgba(201,138,14,0.08),
    0 0 0 16px rgba(201,138,14,0.04),
    0 20px 60px rgba(201,138,14,0.2),
    0 4px 16px rgba(0,0,0,0.1);
  margin-bottom: 32px;
  animation: float 5s ease-in-out infinite;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; letter-spacing: -2.5px; line-height: 1.06;
  margin-bottom: 20px; color: var(--text);
}
h1 .accent { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted); line-height: 1.6; margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  margin-bottom: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.hero-pills span {
  font-size: 13px; font-weight: 600; color: var(--text);
  background: var(--card-bg); border: 1px solid var(--card-border);
  padding: 6px 14px; border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* ── PHONE MOCKUP ── */
.hero-phone {
  flex-shrink: 0; position: relative;
  display: flex; align-items: center; justify-content: center;
}

.phone-frame {
  width: 240px; height: 490px;
  background: #0f0e0c;
  border-radius: 38px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 6px rgba(0,0,0,0.15),
    0 40px 80px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden; position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-12px) rotate(-2deg)} }

.phone-notch {
  width: 80px; height: 18px;
  background: #0f0e0c; border-radius: 0 0 12px 12px;
  margin: 0 auto; position: relative; z-index: 3;
}

.phone-screen {
  display: flex; flex-direction: column; height: 100%;
  padding: 0 0 0; background: #111210;
}

.phone-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 14px 8px; font-size: 11px;
}
.phone-flag { font-size: 14px; }
.phone-appname { color: #e8d5a0; font-weight: 700; font-size: 12px; }
.phone-dots { color: rgba(255,255,255,0.3); font-size: 14px; letter-spacing: 2px; }

.phone-card-wrap {
  flex: 1; padding: 8px 14px 0; display: flex; flex-direction: column; gap: 8px;
}
.phone-card-label { font-size: 10px; color: rgba(255,255,255,0.35); text-align: center; }

.phone-flashcard {
  background: #fff; border-radius: 14px;
  padding: 18px 14px 14px; text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.phone-word-tree { font-size: 32px; margin-bottom: 6px; }
.phone-word { font-size: 20px; font-weight: 800; color: #1c1917; letter-spacing: -0.5px; }
.phone-word-en { font-size: 14px; color: #16a34a; font-weight: 600; margin: 2px 0 8px; }
.phone-sentence { font-size: 11px; color: #78716c; font-style: italic; line-height: 1.4; }

.phone-level-row {
  display: flex; gap: 5px; justify-content: center; flex-wrap: wrap;
}
.plvl {
  font-size: 9px; font-weight: 700; padding: 2px 7px;
  border-radius: 6px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.35);
}
.plvl.active { background: var(--gold); color: #fff; }
.plvl-a1.active { background: #16a34a; }

.phone-action-row {
  display: flex; justify-content: center; gap: 12px; padding: 8px 0;
}
.paction {
  width: 38px; height: 38px; border-radius: 50%; border: none;
  font-size: 14px; font-weight: 700; cursor: default;
  display: flex; align-items: center; justify-content: center;
}
.paction-no     { background: rgba(239,68,68,0.18); color: #f87171; }
.paction-replay { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.paction-yes    { background: rgba(34,197,94,0.2); color: #4ade80; }

.phone-progress-bar {
  height: 3px; background: rgba(255,255,255,0.08); margin: 0 14px;
}
.phone-progress-fill {
  height: 100%; width: 38%; background: var(--gold); border-radius: 2px;
}

.phone-nav-bar {
  display: flex; justify-content: space-around;
  padding: 8px 14px 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 6px;
}
.pnav { font-size: 16px; opacity: 0.4; }
.pnav.active { opacity: 1; }

.phone-glow {
  position: absolute; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,138,14,0.25) 0%, transparent 70%);
  bottom: -80px; left: 50%; transform: translateX(-50%);
  filter: blur(40px); z-index: 1;
}

/* ══════════════════════════════
   STATS STRIP
══════════════════════════════ */
.stats-strip {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  background: var(--text); color: #fff;
  padding: 36px 40px;
}
.stat-item {
  text-align: center; padding: 0 48px;
}
.stat-num {
  font-size: clamp(28px, 4vw, 40px); font-weight: 900;
  letter-spacing: -1.5px; color: var(--gold-lt); line-height: 1;
}
.stat-plus { font-size: 0.7em; color: var(--gold); }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; font-weight: 500; }
.stat-div {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════
   FEATURES SECTION
══════════════════════════════ */
.features-section {
  position: relative; z-index: 2;
  padding: 100px 40px; text-align: center;
  max-width: 1200px; margin: 0 auto;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; text-align: left;
}

/* Featured highlight — subtle gold border, same size as all other cards */
.feat-card-highlight {
  border-color: rgba(201,138,14,0.35);
}
.feat-card-highlight:hover {
  border-color: rgba(201,138,14,0.6);
  box-shadow: 0 12px 36px rgba(201,138,14,0.14);
}

.feat-featured-badge {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  color: var(--gold); background: var(--gold-pale);
  border: 1px solid rgba(201,138,14,0.25);
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 14px;
}

/* Screenshot slots for showcase sections */
.screenshot-slot { width: 260px; position: relative; }
.screenshot-slot img {
  width: 100%; display: block;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
/* Show fallback when image fails to load */
.screenshot-slot img { display: block; }
.screenshot-slot .screenshot-fallback { display: none; }
.screenshot-missing img { display: none; }
.screenshot-missing .screenshot-fallback { display: block; }

/* ══════════════════════════════
   CONSISTENT FEATURE CARDS V2
══════════════════════════════ */
.feat-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fc2 {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.fc2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,138,14,0.3);
}
.fc2-body { padding: 16px 18px 18px; flex: 1; }
.fc2-title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.fc2-icon {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.fc2 h3 { font-size: 14px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; margin: 0; }
.fc2 p  { font-size: 12px; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.fc2-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.fc2-tags span {
  font-size: 10px; font-weight: 600; padding: 2px 9px;
  border-radius: 100px; background: var(--gold-pale);
  color: var(--gold); border: 1px solid rgba(201,138,14,0.2);
}
.fc2-preview {
  height: 170px; overflow: hidden;
  padding: 11px 13px; flex-shrink: 0; position: relative;
}

/* Promotional image previews — fills card, shows bold title at top */
.fc2-preview-img {
  padding: 0;
  background: #111;
  overflow: hidden;
}
.fc2-preview-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* preview shared */
.fp-label { font-size: 10px; font-weight: 700; color: #fafafa; }
.fp-badge-green  { font-size: 8px; font-weight: 700; padding: 2px 7px; border-radius: 5px; background: #16a34a; color: #fff; }
.fp-badge-purple { font-size: 8px; font-weight: 700; padding: 2px 7px; border-radius: 5px; background: #7c3aed; color: #fff; }
.fp-btn { font-size: 9px; font-weight: 600; padding: 3px 7px; border-radius: 6px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.fp-btn-purple { background: rgba(147,51,234,0.3); color: #c084fc; }
.fp-btn-teal   { background: rgba(20,184,166,0.25); color: #2dd4bf; }
/* Conversations */
.fp-conv { background: #111827; }
.fp-conv-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
.fp-conv-scene { font-size: 9px; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); border-radius: 5px; padding: 2px 7px; display: inline-block; margin-bottom: 6px; }
.fp-conv-msgs { display: flex; flex-direction: column; gap: 5px; margin-bottom: 6px; }
.fp-msg { display: flex; flex-direction: column; gap: 1px; }
.fp-msg-r { align-items: flex-end; }
.fp-bubble { display: inline-block; padding: 5px 7px; font-size: 10px; line-height: 1.35; border-radius: 7px; max-width: 88%; }
.fp-bubble-l { background: rgba(255,255,255,0.08); color: #f7f4ee; border-radius: 7px 7px 7px 2px; }
.fp-bubble-r { background: #6b21a8; color: #fff; border-radius: 7px 7px 2px 7px; }
.fp-tr { font-size: 8px; color: rgba(255,255,255,0.25); padding: 0 2px; font-style: italic; }
.fp-tr-r { text-align: right; }
.fp-conv-btns { display: flex; gap: 4px; }
/* Music */
.fp-music { background: #0f0e14; }
.fp-music-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.fp-music-song { font-size: 9px; color: rgba(255,255,255,0.3); margin-bottom: 5px; }
.fp-music-lyrics { background: rgba(255,255,255,0.04); border-radius: 7px; padding: 6px 8px; margin-bottom: 6px; border: 0.5px solid rgba(255,255,255,0.06); }
.fp-verse-label { font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.3); margin-bottom: 3px; }
.fp-verse-de  { font-size: 9px; color: #f7f4ee; line-height: 1.5; margin-bottom: 4px; }
.fp-verse-sep { font-size: 8px; color: rgba(255,255,255,0.18); text-align: center; border-top: 0.5px solid rgba(255,255,255,0.06); padding-top: 3px; margin-bottom: 3px; }
.fp-verse-en  { font-size: 8px; color: rgba(255,255,255,0.32); font-style: italic; line-height: 1.5; }
.fp-music-btns { display: flex; gap: 4px; }
/* Flashcards */
.fp-flash { background: #f7f4ee; }
.fp-flash-chips { display: flex; gap: 5px; margin-bottom: 7px; flex-wrap: wrap; }
.fp-chip { font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: 6px; }
.fp-chip-blue { background: #dbeafe; color: #1d4ed8; }
.fp-chip-teal { background: #ccfbf1; color: #0f766e; }
.fp-flash-card { background: #fff; border-radius: 9px; border: 0.5px solid rgba(0,0,0,0.06); padding: 7px 10px; text-align: center; margin-bottom: 7px; }
.fp-flash-emoji { font-size: 18px; margin-bottom: 2px; }
.fp-flash-word { font-size: 15px; font-weight: 800; color: #1c1917; letter-spacing: -0.5px; line-height: 1; }
.fp-flash-en   { font-size: 10px; color: #16a34a; font-weight: 600; margin: 2px 0 3px; }
.fp-flash-ex   { font-size: 8px; color: #78716c; font-style: italic; }
.fp-flash-btns { display: flex; justify-content: center; gap: 10px; }
.fp-flash-no, .fp-flash-mid, .fp-flash-yes {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.fp-flash-no  { background: rgba(239,68,68,0.12); color: #ef4444; }
.fp-flash-mid { background: rgba(0,0,0,0.06); color: #9a8e82; }
.fp-flash-yes { background: rgba(34,197,94,0.12); color: #16a34a; }
/* Grammar Galaxy */
.fp-galaxy { background: #080810; }
.fp-gal-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.fp-gal-planets { display: flex; gap: 7px; justify-content: center; margin-bottom: 8px; }
.fp-planet { width: 44px; height: 44px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.fp-planet-active { outline: 1.5px solid #d97706; outline-offset: 2px; }
.fp-planet-name  { font-size: 7px; font-weight: 700; color: #fff; text-align: center; line-height: 1.2; }
.fp-planet-stars { font-size: 7px; color: rgba(255,255,255,0.55); }
.fp-quiz { background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.06); border-radius: 7px; padding: 6px 8px; }
.fp-quiz-q { font-size: 11px; font-weight: 700; color: #e8d5a0; margin-bottom: 5px; }
.fp-quiz-row { display: flex; gap: 5px; }
.fp-quiz-wrong { font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: 5px; background: rgba(239,68,68,0.14); color: #f87171; }
.fp-quiz-right { font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: 5px; background: rgba(34,197,94,0.16); color: #4ade80; }
/* Quick Notes */
.fp-notes { background: #fafaf8; }
.fp-notes-title { font-size: 11px; font-weight: 800; color: #1c1917; margin-bottom: 7px; }
.fp-notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.fp-note { border-radius: 6px; padding: 5px 5px; text-align: center; }
.fp-note-q { font-size: 10px; font-weight: 800; line-height: 1; }
.fp-note-a { font-size: 7px; color: rgba(28,25,23,0.45); margin-top: 1px; }
.fp-note-blue   { background: #dbeafe; } .fp-note-blue .fp-note-q   { color: #1d4ed8; }
.fp-note-green  { background: #dcfce7; } .fp-note-green .fp-note-q  { color: #16a34a; }
.fp-note-orange { background: #ffedd5; } .fp-note-orange .fp-note-q { color: #c2410c; }
.fp-note-pink   { background: #fce7f3; } .fp-note-pink .fp-note-q   { color: #be185d; }
.fp-note-purple { background: #ede9fe; } .fp-note-purple .fp-note-q { color: #7c3aed; }
.fp-note-teal   { background: #ccfbf1; } .fp-note-teal .fp-note-q   { color: #0f766e; }
/* Progress */
.fp-progress { background: #fff; }
.fp-prog-title { font-size: 11px; font-weight: 800; color: #1c1917; margin-bottom: 7px; }
.fp-prog-stats { display: flex; gap: 5px; margin-bottom: 9px; }
.fp-stat-box { flex: 1; background: #f9f7f2; border: 0.5px solid rgba(0,0,0,0.05); border-radius: 8px; padding: 5px 7px; text-align: center; }
.fp-stat-num   { font-size: 14px; font-weight: 800; letter-spacing: -0.5px; line-height: 1; }
.fp-stat-lbl   { font-size: 8px; color: #9a8e82; margin: 2px 0 1px; }
.fp-stat-delta { font-size: 8px; font-weight: 600; }
.fp-prog-level { display: flex; align-items: center; gap: 6px; }
.fp-level-badge { font-size: 9px; font-weight: 800; background: #7c3aed; color: #fff; padding: 2px 7px; border-radius: 5px; flex-shrink: 0; }
.fp-level-bar  { flex: 1; height: 4px; background: rgba(0,0,0,0.07); border-radius: 2px; overflow: hidden; }
.fp-level-fill { height: 100%; width: 65%; background: #7c3aed; border-radius: 2px; }

.feat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,138,14,0.3);
}
.feat-card-dark {
  background: #1c1917; color: #f7f4ee;
  border-color: rgba(255,255,255,0.08);
}
.feat-card-dark p { color: rgba(247,244,238,0.65); }
.feat-card-dark:hover { border-color: rgba(201,138,14,0.5); }

.feat-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.feat-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

.feat-skills { display: flex; gap: 8px; flex-wrap: wrap; }
.feat-skills span {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 100px; background: var(--gold-pale);
  color: var(--gold); border: 1px solid rgba(201,138,14,0.2);
}

/* ══════════════════════════════
   SHOWCASE SECTIONS
══════════════════════════════ */
.showcase-section {
  position: relative; z-index: 2;
  padding: 100px 80px;
}

.showcase-row {
  display: flex; align-items: center; gap: 80px;
  max-width: 1100px; margin: 0 auto;
}
.showcase-row-reverse { flex-direction: row-reverse; }

.showcase-visual { flex-shrink: 0; }

.showcase-text { flex: 1; }
.showcase-text .sec-eyebrow { display: inline-block; margin-bottom: 14px; }
.showcase-text h2 {
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 900;
  letter-spacing: -1.2px; line-height: 1.15; margin-bottom: 20px;
}
.showcase-text p {
  font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 16px;
}
.showcase-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px;
}
.showcase-list li { font-size: 15px; line-height: 1.5; }

/* ── MINI PHONE (showcase) ── */
.mini-phone {
  width: 220px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 12px;
}
.mini-phone-dark {
  background: #111210;
  color: #f7f4ee;
  border-color: rgba(255,255,255,0.1);
}

.mp-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 8px;
  background: rgba(0,0,0,0.04); font-size: 11px; font-weight: 700;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mp-bar-dark { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.mp-progress { color: var(--muted); font-weight: 500; }
.mp-badge-a1 {
  font-size: 9px; font-weight: 700; padding: 2px 8px;
  background: #16a34a; color: #fff; border-radius: 100px;
}

.mp-section-row {
  display: flex; gap: 6px; padding: 8px 14px;
  flex-wrap: wrap;
}
.mp-section-chip {
  font-size: 10px; font-weight: 600; padding: 3px 9px;
  border-radius: 8px;
}
.mp-chip-blue  { background: #dbeafe; color: #1d4ed8; }
.mp-chip-teal  { background: #ccfbf1; color: #0f766e; }

.mp-card {
  margin: 6px 14px;
  background: #f9f7f2; border-radius: 12px;
  padding: 14px 12px; text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}
.mp-emoji { font-size: 28px; margin-bottom: 4px; }
.mp-word { font-size: 17px; font-weight: 900; letter-spacing: -0.4px; color: #1c1917; }
.mp-word-small { font-size: 10px; color: #16a34a; font-weight: 600; margin: 2px 0 6px; }
.mp-ex { font-size: 10px; color: var(--muted); font-style: italic; line-height: 1.4; margin-bottom: 8px; }
.mp-audio-btn {
  display: inline-block; font-size: 10px; font-weight: 600;
  padding: 4px 12px; background: var(--gold-pale);
  color: var(--gold); border-radius: 100px;
  border: 1px solid rgba(201,138,14,0.2);
}

.mp-btns {
  display: flex; gap: 8px; padding: 10px 14px;
}
.mp-btn {
  flex: 1; padding: 8px 0; border-radius: 10px;
  font-size: 11px; font-weight: 700; text-align: center;
}
.mp-btn-red   { background: rgba(239,68,68,0.1); color: #dc2626; }
.mp-btn-green { background: rgba(34,197,94,0.12); color: #16a34a; }

/* Galaxy mini phone */
.galaxy-planets {
  display: flex; gap: 8px; justify-content: center;
  padding: 16px 14px 10px;
}
.gplanet {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 8px; text-align: center; line-height: 1.2; color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  font-weight: 700;
}
.gp-purple { background: radial-gradient(circle at 30% 30%, #a855f7, #6b21a8); }
.gp-blue   { background: radial-gradient(circle at 30% 30%, #60a5fa, #1d4ed8); }
.gp-orange { background: radial-gradient(circle at 30% 30%, #fbbf24, #d97706); }
.gp-active { box-shadow: 0 0 0 2px var(--gold), 0 4px 12px rgba(0,0,0,0.4); }
.gp-label { font-size: 7px; text-align: center; line-height: 1.2; }
.gp-stars  { font-size: 7px; letter-spacing: -1px; }

.galaxy-quiz {
  margin: 0 14px 12px; padding: 10px 12px;
  background: rgba(255,255,255,0.06); border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.gq-q { font-size: 13px; font-weight: 700; color: #e8d5a0; margin-bottom: 8px; }
.gq-options { display: flex; flex-direction: column; gap: 4px; margin-bottom: 6px; }
.gq-opt { font-size: 10px; padding: 4px 10px; border-radius: 6px; font-weight: 600; }
.gq-wrong { background: rgba(239,68,68,0.15); color: #f87171; }
.gq-right { background: rgba(34,197,94,0.2); color: #4ade80; }
.gq-feedback { font-size: 11px; color: #fbbf24; font-weight: 600; text-align: center; }

/* Conversation mini phone */
.conv-scene { padding: 8px 14px 4px; }
.conv-scene-label {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06); border-radius: 6px;
  padding: 4px 10px; display: inline-block;
}
.conv-msgs { padding: 8px 14px; display: flex; flex-direction: column; gap: 8px; }
.conv-msg { display: flex; flex-direction: column; }
.conv-bubble {
  display: inline-block; padding: 7px 10px;
  border-radius: 12px 12px 12px 4px;
  background: rgba(255,255,255,0.1); color: #f7f4ee;
  font-size: 10px; line-height: 1.4; max-width: 90%;
}
.conv-bubble-you {
  border-radius: 12px 12px 4px 12px;
  background: #6b21a8; color: #fff;
  margin-left: auto;
}
.conv-trans { font-size: 9px; color: rgba(255,255,255,0.35); padding: 2px 4px; }
.conv-trans-right { text-align: right; }
.conv-msg-right { align-items: flex-end; }
.conv-actions {
  display: flex; gap: 6px; padding: 8px 14px 14px; justify-content: center;
}
.conv-btn {
  flex: 1; text-align: center; padding: 6px 0;
  border-radius: 8px; font-size: 9px; font-weight: 700;
}
.conv-btn-read  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.conv-btn-speak { background: rgba(147,51,234,0.3); color: #c084fc; }
.conv-btn-quiz  { background: rgba(245,158,11,0.2); color: #fbbf24; }

/* ══════════════════════════════
   PERSONALIZED PATH
══════════════════════════════ */
.path-section {
  position: relative; z-index: 2;
  padding: 100px 40px; text-align: center;
  max-width: 1100px; margin: 0 auto;
}

.path-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

.path-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 24px;
  text-align: left; flex: 1; min-width: 220px; max-width: 280px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.path-icon-wrap {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 12px;
}

.path-badge {
  display: inline-block; font-size: 10px; font-weight: 800;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.path-badge-green { background: #dcfce7; color: #16a34a; }
.path-badge-blue  { background: #dbeafe; color: #1d4ed8; }
.path-badge-gold  { background: rgba(201,138,14,0.12); color: var(--gold); }

.path-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.3px; }
.path-card > p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }

.path-starts { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.path-starts li { font-size: 12px; color: var(--text); }

.path-arrow {
  font-size: 22px; color: rgba(201,138,14,0.4); margin-top: 80px;
  flex-shrink: 0;
}

.path-footer-note {
  margin-top: 36px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid rgba(201,138,14,0.2);
  border-radius: 12px; padding: 14px 24px; font-size: 14px; color: var(--text);
}

/* ══════════════════════════════
   WHY SECTION
══════════════════════════════ */
.why-section {
  position: relative; z-index: 2;
  padding: 100px 40px; text-align: center;
}

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1000px; margin: 0 auto; text-align: left;
}

.why-card {
  padding: 28px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon { font-size: 28px; margin-bottom: 12px; }
.why-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════
   SOCIAL SECTION
══════════════════════════════ */
.social-section {
  position: relative; z-index: 2;
  padding: 100px 40px; text-align: center;
  max-width: 1000px; margin: 0 auto;
}

.social-grid {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}

.social-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 32px 28px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); text-decoration: none; color: var(--text);
  width: 200px; flex-shrink: 0;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201,138,14,0.3); }

.social-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff;
}
.social-yt { background: #ff0000; }
.social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-fb { background: #1877f2; font-size: 22px; }

.social-name { font-size: 15px; font-weight: 800; letter-spacing: -0.2px; }
.social-handle { font-size: 12px; color: var(--gold); font-weight: 600; }
.social-desc { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.5; }

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
  position: relative; z-index: 2;
  background: #1c1917; color: #fff;
  padding: 100px 40px; text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,138,14,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

.cta-logo {
  width: 72px; height: 72px; border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(201,138,14,0.3);
  animation: float 4.5s ease-in-out infinite;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 900;
  letter-spacing: -1.5px; margin-bottom: 14px; color: #f7f4ee;
}
.cta-section p {
  font-size: 17px; color: rgba(247,244,238,0.55);
  margin-bottom: 36px; line-height: 1.6;
}
.cta-section .gplay-btn { display: inline-block; margin-bottom: 28px; }

.cta-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.cta-pills span {
  font-size: 13px; font-weight: 600;
  color: rgba(247,244,238,0.7);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px; border-radius: 100px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  position: relative; z-index: 2;
  background: #111210; border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 40px; text-align: center;
}

.footer-inner { max-width: 700px; margin: 0 auto; }

.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px; text-decoration: none;
}
.footer-brand img { width: 36px; height: 36px; border-radius: 10px; }
.footer-brand span { font-size: 17px; font-weight: 700; color: #f7f4ee; }
.footer-brand strong { color: var(--gold); }

.footer-tagline { font-size: 14px; color: rgba(247,244,238,0.4); margin-bottom: 24px; line-height: 1.6; }

.footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 24px; }
.footer-links a { font-size: 13px; color: rgba(247,244,238,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-dot { color: rgba(247,244,238,0.2); }

.footer-copy { font-size: 12px; color: rgba(247,244,238,0.25); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero { padding: 120px 40px 80px; gap: 40px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid  { grid-template-columns: repeat(2, 1fr); }
  .showcase-section { padding: 80px 40px; }
  .showcase-row { gap: 48px; }
}

@media (max-width: 768px) {
  .navbar { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-cta { font-size: 13px; padding: 8px 16px; }

  .hero { padding: 110px 24px 60px; min-height: auto; }
  .hero-mascot { width: 130px; height: 130px; border-radius: 28px; }
  .hero-pills { justify-content: center; }

  .stats-strip { padding: 28px 20px; gap: 8px; }
  .stat-item { padding: 0 20px; }
  .stat-div { display: none; }

  .features-section { padding: 60px 24px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-grid-top { grid-template-columns: 1fr; }
  .feat-grid-v2 { grid-template-columns: 1fr; }
  .screenshot-slot { width: 100%; max-width: 300px; margin: 0 auto; }

  .showcase-section { padding: 60px 24px; }
  .showcase-row, .showcase-row-reverse { flex-direction: column; gap: 32px; }
  .mini-phone { width: 100%; max-width: 280px; margin: 0 auto; }

  .path-section { padding: 60px 24px; }
  .path-steps { flex-direction: column; align-items: center; }
  .path-arrow { margin-top: 0; transform: rotate(90deg); }
  .path-card { max-width: 340px; width: 100%; }

  .why-section { padding: 60px 24px; }
  .why-grid { grid-template-columns: 1fr; }

  .social-section { padding: 60px 24px; }
  .social-grid { flex-direction: column; align-items: center; }
  .social-card { width: 100%; max-width: 320px; }

  .cta-section { padding: 60px 24px; }
  .footer { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .sec-title { letter-spacing: -0.8px; }
  .stat-item { padding: 0 12px; }
}

/* ══════════════════════════════
   NAVBAR — social icons + right group
══════════════════════════════ */
.nav-right {
  display: flex; align-items: center; gap: 6px;
}

.nav-social {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: #fff;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.85;
}
.nav-social:hover { transform: scale(1.1); opacity: 1; }
.nav-yt { background: #ff0000; }
.nav-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.nav-fb { background: #1877f2; }

/* ══════════════════════════════
   HERO DOWNLOAD BUTTON
══════════════════════════════ */
.hero-dl-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, #c98a0e, #e8a012);
  color: #fff; text-decoration: none;
  padding: 14px 24px 14px 18px;
  border-radius: 18px;
  box-shadow: 0 6px 30px rgba(201,138,14,0.45), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
  animation: glow-pulse 3s ease-in-out infinite;
}
.hero-dl-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}
.hero-dl-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(201,138,14,0.55), 0 4px 12px rgba(0,0,0,0.2);
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 6px 30px rgba(201,138,14,0.45), 0 2px 8px rgba(0,0,0,0.15); }
  50%      { box-shadow: 0 6px 40px rgba(201,138,14,0.7), 0 2px 12px rgba(0,0,0,0.2); }
}

.hero-dl-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hero-dl-text { display: flex; flex-direction: column; }
.hero-dl-sub  { font-size: 11px; font-weight: 600; opacity: 0.8; letter-spacing: 0.3px; line-height: 1; }
.hero-dl-main { font-size: 19px; font-weight: 900; letter-spacing: -0.5px; line-height: 1.2; }

.hero-dl-arrow {
  font-size: 20px; font-weight: 700;
  margin-left: 4px; opacity: 0.7;
  transition: transform 0.2s;
}
.hero-dl-btn:hover .hero-dl-arrow { transform: translateX(4px); opacity: 1; }

/* Large variant (CTA section) */
.hero-dl-btn-lg { padding: 18px 32px 18px 24px; border-radius: 22px; }
.hero-dl-btn-lg .hero-dl-icon { width: 52px; height: 52px; border-radius: 14px; }
.hero-dl-btn-lg .hero-dl-main { font-size: 22px; }

/* Social quick-links under hero button */
.hero-socials {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; flex-wrap: wrap;
}
.hero-social-label {
  font-size: 12px; font-weight: 600;
  color: var(--muted); letter-spacing: 0.3px;
  margin-right: 4px;
}
.hero-social-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700; text-decoration: none; color: #fff;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.9;
}
.hero-social-btn:hover { transform: translateY(-2px); opacity: 1; }
.hs-yt { background: #ff0000; }
.hs-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.hs-fb { background: #1877f2; }

/* ══════════════════════════════
   STICKY DOWNLOAD BAR
══════════════════════════════ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.sticky-bar.visible { transform: translateY(0); }

.sticky-bar-inner {
  display: flex; align-items: center; gap: 14px;
  background: #1c1917;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 28px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
}
.sticky-bar-inner > img {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
}
.sticky-bar-text { flex: 1; }
.sticky-bar-text strong { display: block; font-size: 14px; color: #f7f4ee; font-weight: 800; }
.sticky-bar-text span  { font-size: 11px; color: rgba(247,244,238,0.45); }

.sticky-bar-socials { display: flex; gap: 6px; }
.sb-social {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
  transition: transform 0.2s, opacity 0.2s; opacity: 0.85;
}
.sb-social:hover { transform: scale(1.1); opacity: 1; }
.sb-yt { background: #ff0000; }
.sb-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.sb-fb { background: #1877f2; }

.sb-dl {
  display: inline-flex; align-items: center;
  background: var(--gold); color: #fff;
  padding: 10px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 800; letter-spacing: -0.2px;
  text-decoration: none; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,138,14,0.4);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.sb-dl:hover { background: var(--gold-lt); transform: scale(1.03); }

/* Responsive sticky bar */
@media (max-width: 600px) {
  .sticky-bar-inner { padding: 10px 16px; gap: 10px; }
  .sticky-bar-text span { display: none; }
  .sticky-bar-socials { display: none; }
  .hero-socials { gap: 6px; }
  .hero-social-btn { padding: 6px 10px; font-size: 11px; }
}

/* Responsive nav social icons */
@media (max-width: 520px) {
  .nav-social { display: none; }
}

