/**
 * Smart Bill Reminder — Landing Page v2
 * Premium fintech aesthetic · conversion-focused · interactive
 */

:root {
  --emerald: #10b981;
  --emerald-bright: #34d399;
  --emerald-dim: #059669;
  --amber: #f59e0b;
  --red: #ef4444;
  --navy: #061018;
  --navy-elevated: #0c1a2e;
  --navy-card: #112240;
  --navy-border: rgba(255, 255, 255, 0.08);
  --ink: #e8eef4;
  --ink-muted: #94a3b8;
  --ink-faint: #64748b;
  --paper: #f8faf6;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 72px;
  --shadow-glow: 0 0 60px rgba(16, 185, 129, 0.15);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--navy);
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 0.75rem 1rem; background: var(--emerald); color: var(--navy);
}
.skip-link:focus { left: 0; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 720px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.65rem 1.25rem; border-radius: 999px; font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dim) 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(16, 185, 129, 0.5); }
.btn-outline {
  border: 1.5px solid var(--navy-border); background: rgba(255,255,255,0.04);
}
.btn-outline:hover { border-color: var(--emerald); background: rgba(16,185,129,0.08); }
.btn-ghost { opacity: 0.85; }
.btn-ghost:hover { opacity: 1; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-icon { font-size: 1.5rem; line-height: 1; padding: 0.25rem; opacity: 0.7; }

/* ─── Header ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(6, 16, 24, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--navy-border);
  transition: transform 0.3s ease;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 0.95rem; }
.logo-img { border-radius: 10px; }
.main-nav { display: flex; gap: 1.75rem; }
.nav-link { font-size: 0.9rem; color: var(--ink-muted); transition: color var(--transition); }
.nav-link:hover { color: var(--emerald-bright); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-cta { display: none; }

.lang-toggle {
  display: flex; border: 1px solid var(--navy-border); border-radius: 999px; overflow: hidden;
}
.lang-btn {
  padding: 0.35rem 0.65rem; font-size: 0.75rem; font-weight: 600;
  color: var(--ink-muted); transition: background var(--transition);
}
.lang-btn.active { background: var(--emerald); color: #fff; }

.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px; padding: 0.5rem;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Banner ─── */
.banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--navy-elevated); border-top: 1px solid var(--navy-border);
  padding: 0.75rem 1rem; transform: translateY(0);
  transition: transform 0.3s ease;
}
.banner.hidden { transform: translateY(110%); pointer-events: none; }
.banner-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.app-info { display: flex; align-items: center; gap: 0.75rem; }
.app-icon { border-radius: 12px; }
.banner-subtitle { font-size: 0.8rem; color: var(--ink-muted); }
.banner-actions { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; flex-shrink: 0; }

/* ─── Hero ─── */
.hero {
  position: relative; padding: calc(var(--header-h) + 3rem) 0 4rem;
  min-height: 92vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(16,185,129,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(16,185,129,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, #0a1520 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: linear-gradient(180deg, black 30%, transparent 90%);
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 1rem;
}
.eyebrow-accent { color: var(--emerald-bright); }
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400; line-height: 1.12; margin-bottom: 1.25rem;
}
.hero-title em {
  display: block; font-style: italic;
  background: linear-gradient(90deg, var(--emerald-bright), var(--emerald));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-lead { color: var(--ink-muted); font-size: 1.1rem; max-width: 32rem; margin-bottom: 2rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.cta-row-center { justify-content: center; align-items: center; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  padding-top: 1.5rem; border-top: 1px solid var(--navy-border);
}
.stat-val { display: block; font-size: 1.5rem; font-weight: 700; color: var(--emerald-bright); }
.stat-lbl { font-size: 0.8rem; color: var(--ink-faint); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 420px; }
.hero-promo-wrap {
  position: relative; z-index: 2;
  width: fit-content;
  max-width: min(100%, 360px);
  margin-inline: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-glow), 0 25px 50px rgba(0,0,0,0.5);
  line-height: 0;
  overflow: hidden;
}
.hero-promo-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center top;
}

.bill-stack {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 200px; z-index: 1;
  display: none;
}
.bill-card {
  position: relative; padding: 0.85rem 1rem; margin-bottom: 0.6rem;
  background: var(--paper); color: #1a202c; border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transform-origin: left center;
  animation: billFloat 4s ease-in-out infinite;
}
.bill-card:nth-child(2) { animation-delay: 0.5s; margin-left: 12px; }
.bill-card:nth-child(3) { animation-delay: 1s; margin-left: 24px; }
@keyframes billFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}
.bill-name { display: block; font-weight: 600; font-size: 0.9rem; }
.bill-amt { font-size: 0.85rem; color: #4a5568; }
.stamp {
  position: absolute; top: -6px; right: 8px;
  font-size: 0.55rem; font-weight: 800; letter-spacing: 0.05em;
  padding: 0.15rem 0.4rem; border-radius: 3px; transform: rotate(8deg);
}
.bill-overdue .stamp { background: var(--red); color: #fff; }
.bill-warning .stamp { background: var(--amber); color: #1a202c; }
.bill-ok .stamp { background: var(--emerald); color: #fff; }

/* ─── Trust strip ─── */
.trust-strip {
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  background: rgba(255,255,255,0.02); padding: 1.25rem 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--ink-muted); text-align: left;
}
.trust-icon { font-size: 1rem; flex-shrink: 0; }

/* ─── Sections ─── */
.section { padding: 5rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400; margin-bottom: 0.75rem; line-height: 1.2;
}
.section-sub { color: var(--ink-muted); font-size: 1.05rem; }

/* ─── Audit panel ─── */
.section-audit { background: linear-gradient(180deg, transparent, rgba(16,185,129,0.04), transparent); }
.audit-panel {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem;
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-glow);
}
.audit-presets { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.preset-chip {
  padding: 0.4rem 0.85rem; border-radius: 999px; font-size: 0.8rem;
  border: 1px solid var(--navy-border); background: rgba(255,255,255,0.04);
  transition: border-color var(--transition), background var(--transition);
  animation: preset-chip-in 0.28s ease-out both;
}
@keyframes preset-chip-in {
  from { opacity: 0; transform: translateY(6px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.preset-chip:hover { border-color: var(--emerald); background: rgba(16,185,129,0.1); }
.audit-presets:empty { display: none; margin-bottom: 0; }

.audit-row {
  display: grid; grid-template-columns: 1fr 100px 36px; gap: 0.5rem;
  margin-bottom: 0.5rem; align-items: center;
}
.audit-row input {
  padding: 0.55rem 0.75rem; border-radius: 8px;
  border: 1px solid var(--navy-border); background: var(--navy-elevated);
  color: var(--ink); font: inherit; width: 100%;
}
.audit-row input:focus { outline: none; border-color: var(--emerald); }
.audit-row-remove {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(239,68,68,0.15); color: var(--red); font-size: 1.2rem;
}
.audit-row-remove:hover { background: rgba(239,68,68,0.25); }

.audit-results {
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.5rem; background: rgba(0,0,0,0.2); border-radius: var(--radius);
  border: 1px solid var(--navy-border);
}
.audit-total { margin-bottom: 1rem; }
.audit-total-label { display: block; font-size: 0.8rem; color: var(--ink-muted); margin-bottom: 0.25rem; }
.audit-total-val { font-size: 2.5rem; font-weight: 700; color: var(--emerald-bright); line-height: 1; }
.audit-total-year .audit-total-val { font-size: 1.75rem; color: var(--amber); }
.audit-note { font-size: 0.85rem; color: var(--ink-faint); margin: 1rem 0; line-height: 1.5; }

/* ─── Pillar tabs ─── */
.pillar-tabs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pillar-tab {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  padding: 1rem 0.5rem; border-radius: var(--radius);
  border: 1px solid var(--navy-border); background: rgba(255,255,255,0.02);
  font-size: 0.8rem; font-weight: 600; color: var(--ink-muted);
  transition: all var(--transition);
}
.pillar-tab-icon { font-size: 1.35rem; }
.pillar-tab:hover { border-color: rgba(16,185,129,0.4); color: var(--ink); }
.pillar-tab.active {
  background: rgba(16,185,129,0.12); border-color: var(--emerald);
  color: var(--emerald-bright); box-shadow: 0 0 24px rgba(16,185,129,0.15);
}

.pillar-panels {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg); padding: 2rem; min-height: 280px;
}
.pillar-panel { display: none; animation: fadeIn 0.35s ease; }
.pillar-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.feature-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--navy-border);
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.feature-list li strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.feature-list li span {
  display: block;
}
.feature-list li:last-child { border-bottom: none; }

/* ─── AI section ─── */
.section-ai { padding-top: 0; }
.ai-card {
  background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, var(--navy-card) 50%);
  border: 1px solid var(--navy-border); border-radius: var(--radius-lg); padding: 2.5rem;
}
.ai-features { margin-top: 1.25rem; }
.ai-features li {
  padding: 0.5rem 0 0.5rem 1.5rem; position: relative; color: var(--ink-muted);
}
.ai-features li::before {
  content: "◆"; position: absolute; left: 0; color: var(--emerald); font-size: 0.6rem; top: 0.65rem;
}

/* ─── Screens ─── */
.screen-showcase { text-align: center; }
.device-toggle {
  display: inline-flex; gap: 0.35rem; margin: 0 auto 1.5rem;
  padding: 0.3rem; border-radius: 999px;
  border: 1px solid var(--navy-border); background: rgba(255,255,255,0.03);
}
.device-btn {
  padding: 0.45rem 1.15rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  color: var(--ink-muted); border: none; background: transparent;
  transition: all var(--transition);
}
.device-btn.active {
  background: var(--emerald); color: #fff;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.28);
}
.screen-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem;
}
.screen-tab {
  padding: 0.5rem 1.1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--navy-border); color: var(--ink-muted);
  transition: all var(--transition);
}
.screen-tab.active { background: var(--emerald); color: #fff; border-color: var(--emerald); }
.screen-stage { display: flex; flex-direction: column; align-items: center; }
.screen-shot {
  display: block;
  width: min(100%, 320px);
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: opacity 0.3s ease, width 0.3s ease;
}
.screen-stage[data-device="tablet"] .screen-shot {
  width: min(100%, 720px);
  max-width: 100%;
}
.screen-caption { color: var(--ink-muted); font-size: 0.95rem; max-width: 36rem; }

/* ─── Pricing ─── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.pricing-card {
  position: relative; padding: 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--navy-border); background: var(--navy-card);
}
.pricing-card-featured {
  border-color: var(--emerald); box-shadow: var(--shadow-glow);
  background: linear-gradient(180deg, rgba(16,185,129,0.1) 0%, var(--navy-card) 40%);
}
.pricing-badge {
  position: absolute; top: -10px; right: 1.5rem;
  background: var(--emerald); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 999px; text-transform: uppercase;
}
.pricing-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.pricing-price { font-size: 1.5rem; font-weight: 700; color: var(--emerald-bright); margin-bottom: 1.25rem; }
.pricing-card ul li {
  padding: 0.45rem 0 0.45rem 1.25rem; position: relative;
  font-size: 0.9rem; color: var(--ink-muted);
}
.pricing-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald); }
.pricing-card-featured .btn { margin-top: 1.5rem; }

/* ─── Videos ─── */
.video-card {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.video-card-featured { margin-bottom: 2.5rem; }
.video-wrapper { aspect-ratio: 16/9; background: #000; }
.video-wrapper-short { aspect-ratio: 9/16; max-height: 360px; margin: 0 auto; }
.shorts-heading {
  font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem;
  color: var(--ink-muted);
}
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.video-card-short h3 { font-size: 0.95rem; }
.video-card-short p { font-size: 0.85rem; }
.yt-placeholder { position: relative; width: 100%; height: 100%; cursor: pointer; }
.yt-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.yt-placeholder button {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px;
  background: rgba(16,185,129,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.video-card-short .yt-placeholder button { width: 48px; height: 48px; }
.video-card-short .yt-placeholder button svg { width: 22px; height: 22px; }
.yt-placeholder button svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }
.yt-placeholder:hover button { transform: scale(1.08); background: var(--emerald); }
.video-card h3 { padding: 1rem 1.25rem 0.25rem; font-size: 1.05rem; }
.video-card p { padding: 0 1.25rem; font-size: 0.9rem; color: var(--ink-muted); }
.link-arrow, .tutorial-link {
  display: inline-block; padding: 0.75rem 1.25rem 1.25rem;
  color: var(--emerald-bright); font-weight: 600; font-size: 0.9rem;
}
.youtube-cta { text-align: center; margin-top: 2rem; }

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--navy-border);
  padding: 0.25rem 0;
}
.faq-item summary {
  padding: 1rem 0; font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.25rem; color: var(--emerald); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding-bottom: 1rem; color: var(--ink-muted); font-size: 0.95rem; }

/* ─── Install CTA ─── */
.install-card {
  text-align: center; padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(16,185,129,0.15) 0%, var(--navy-card) 60%);
  border: 1px solid var(--emerald); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}
.install-card h2 { font-family: var(--font-serif); font-size: 2.25rem; margin-bottom: 0.75rem; }
.install-card p { color: var(--ink-muted); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.footer-play-badge img { margin: 0 auto; opacity: 0.95; }

/* ─── Footer ─── */
.site-footer {
  padding: 3rem 0 6rem; border-top: 1px solid var(--navy-border);
  background: rgba(0,0,0,0.2);
}
.footer-grid {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem;
}
.footer-brand { display: block; margin-bottom: 0.35rem; }
.footer-tag { font-size: 0.85rem; color: var(--ink-faint); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-nav a { font-size: 0.9rem; color: var(--ink-muted); }
.footer-nav a:hover { color: var(--emerald-bright); }
.footer-bottom { font-size: 0.8rem; color: var(--ink-faint); padding-top: 1.5rem; border-top: 1px solid var(--navy-border); }

/* ─── Reveal animations ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible, .animate-in { opacity: 1; transform: none; }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; min-height: 320px; }
  .bill-stack { display: none; }
  .audit-panel { grid-template-columns: 1fr; }
  .pillar-tabs { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .banner {
    padding: 0.55rem 0.75rem;
    padding-left: 4.5rem; /* miejsce na ikonę Cookiebot (lewy dolny róg) */
    padding-bottom: max(0.55rem, env(safe-area-inset-bottom));
  }
  .banner-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }
  .app-info {
    flex: none;
    min-width: 0;
    gap: 0;
  }
  .app-icon { display: none; }
  .banner-subtitle { display: none; }
  .app-info strong {
    font-size: 0.82rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .banner-actions {
    width: 100%;
    margin-left: 0;
    justify-content: stretch;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
  .banner-actions #install-btn,
  .banner-actions #play-link {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
  }
  .banner-actions .btn-icon {
    flex-shrink: 0;
    align-self: center;
    margin-left: 0;
    font-size: 1.35rem;
  }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--navy-elevated); border-bottom: 1px solid var(--navy-border);
    flex-direction: column; padding: 1.5rem; gap: 1rem;
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .main-nav.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu-btn { display: flex; }
  .header-cta { display: none; }
  .section { padding: 3.5rem 0; }
  .pillar-tab span:not(.pillar-tab-icon) { font-size: 0.7rem; }
  .shorts-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}

@media (max-width: 380px) {
  .banner {
    padding-left: 4rem;
  }
}

@media (min-width: 769px) {
  .header-cta { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
