/* Self-hosted Inter font — GDPR compliant (no Google Fonts runtime request) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/inter-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/inter-900.woff2') format('woff2');
}

/* ============================================================
   WirPadeln – Shared Stylesheet
   Design system: dark sporty, mobile-first
   ============================================================ */

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

:root {
  --bg:         #0f0f1a;
  --bg-surface: #161625;
  --bg-card:    #1e1e30;
  --primary:    #4f7cff;
  --primary-hover: #3d6aee;
  --accent:     #4ade80;
  --accent-amber: #fbbf24;
  --text:       #e2e8f0;
  --text-muted: #94a3b8;
  --border:     #2a2a42;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0, 0, 0, 0.4);
  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --max-w:      1200px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
a  { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Utility ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 20px rgba(79,124,255,0.45);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.btn-accent {
  background: var(--accent);
  color: #0f0f1a;
}
.btn-accent:hover {
  background: #38d870;
  box-shadow: 0 0 20px rgba(74,222,128,0.4);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-lg {
  font-size: 1.125rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
}

/* --- Navigation ------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; color: var(--primary); }

.nav-logo-icon {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}

.nav-cta {
  flex-shrink: 0;
}

/* hide nav links on small screens — keep logo + CTA */
@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* --- Site Footer ------------------------------------------ */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 2rem;
  background: var(--bg);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* --- Section base ----------------------------------------- */
section {
  padding-block: 5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-subtitle {
  margin-inline: auto;
}

/* --- Hero ------------------------------------------------- */
.hero {
  padding-block: 6rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%,
    rgba(79,124,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74,222,128,0.12);
  color: var(--accent);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 820px;
  margin-inline: auto;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-items: center;
}

.hero-stat {
  text-align: center;
}
.hero-stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(79,124,255,0.15);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --- Cities ---------------------------------------------- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.125rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: border-color var(--transition), background var(--transition),
              transform var(--transition);
}
.city-card:hover {
  border-color: var(--primary);
  background: rgba(79,124,255,0.08);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--primary);
}

.city-arrow {
  color: var(--primary);
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.city-card:hover .city-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* --- CTA section ----------------------------------------- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%,
    rgba(79,124,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-title {
  max-width: 600px;
  margin-inline: auto;
}

.cta-section .section-subtitle {
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* --- Footer cities --------------------------------------- */
.footer-cities {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.footer-cities-label {
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-cities a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-cities a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* --- Legal pages ----------------------------------------- */
.legal-hero {
  padding-block: 4rem 3rem;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.legal-hero p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-size: 0.9375rem;
}

.legal-body {
  padding-block: 3.5rem 5rem;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.legal-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal-content ul, .legal-content ol {
  color: var(--text-muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.375rem;
  line-height: 1.7;
}

.legal-content a {
  color: var(--primary);
  word-break: break-all;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-info-box p {
  margin-bottom: 0;
}

.placeholder-note {
  display: inline-block;
  background: rgba(79,124,255,0.12);
  color: var(--primary);
  border: 1px dashed rgba(79,124,255,0.4);
  border-radius: 4px;
  padding: 0.1em 0.4em;
  font-size: 0.875em;
  font-style: italic;
}

/* --- PWA section ----------------------------------------- */
.pwa-section {
  background: var(--bg-surface);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(74,222,128,0.12);
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

/* --- FAQ ------------------------------------------------- */
.faq-section {
  background: var(--bg-surface);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--primary);
}

.faq-question {
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
}

details[open] .faq-question::after {
  content: '-';
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.faq-answer a {
  color: var(--primary);
}

/* --- About Padel ----------------------------------------- */
.about-padel {
  background: var(--bg);
}

.padel-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.padel-fact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition);
}

.padel-fact-card:hover {
  border-color: var(--primary);
}

.padel-fact-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}

.padel-fact-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.padel-fact-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --- Match finden ordered list --------------------------- */
.match-finden-list {
  list-style: none;
  counter-reset: match-steps;
  max-width: 680px;
  margin: 2rem auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.match-finden-list li {
  counter-increment: match-steps;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}
.match-finden-list li::before {
  content: counter(match-steps);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.match-finden-list li > span {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}
.match-finden-list li strong { color: var(--text); }
.match-finden-list a { color: var(--accent); text-decoration: underline; }

/* --- Animations ------------------------------------------ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* --- Responsive adjustments ------------------------------ */
@media (max-width: 480px) {
  section { padding-block: 3.5rem; }
  .hero { padding-block: 4rem 3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 320px; }
  .steps-grid { grid-template-columns: 1fr; }
  .padel-facts-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer .container { flex-direction: column; align-items: flex-start; }

  .match-finden-list {
    gap: 1.25rem;
  }
  .match-finden-list li {
    padding: 1.25rem 1.25rem;
    font-size: 0.9375rem;
  }
  .match-finden-list li::before {
    align-self: flex-start;
  }
}

/* =============================================================
   NEW SECTIONS – v4 (redesigned)
   ============================================================= */

/* --- Hero split layout ------------------------------------ */
.hero-split {
  padding-block: 5rem 4rem;
  text-align: left;
}

.hero-split-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-split .hero-content {
  flex: 1;
  min-width: 0;
}

.hero-split .hero-actions  { justify-content: flex-start; }
.hero-split .hero-stats    { justify-content: flex-start; }
.hero-split .hero-subtitle { margin-inline: 0; }
.hero-split .hero-title    { margin-inline: 0; }
.hero-split .hero-badge    { margin-inline: 0; }

.hero-visual {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* --- Phone frame ------------------------------------------ */
.phone-frame {
  width: 280px;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
  background: #000;
  flex-shrink: 0;
}

.phone-frame-sm {
  width: 240px;
  border-radius: 28px;
  padding: 8px;
}

.phone-frame img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* --- Feature showcase ------------------------------------- */
.feature-showcase {
  background: var(--bg-surface);
}

.showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.showcase-item-reverse {
  flex-direction: row-reverse;
}

.showcase-step {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.showcase-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.showcase-text p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 420px;
}

/* --- Trust section ---------------------------------------- */
.trust-section {
  background: var(--bg);
}

.trust-split {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}

.trust-content {
  flex: 1;
  min-width: 0;
}

.trust-intro {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.trust-visual {
  flex-shrink: 0;
  position: sticky;
  top: 80px;
}

.trust-cards {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--transition);
}

.trust-card:hover {
  border-color: var(--primary);
}

.trust-card-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  line-height: 1;
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* --- DSGVO section ---------------------------------------- */
.dsgvo-section {
  background: var(--bg-surface);
}

.dsgvo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.dsgvo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color var(--transition);
}

.dsgvo-card:hover {
  border-color: var(--accent);
}

.dsgvo-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.dsgvo-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.dsgvo-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* --- Hero eyebrow label ----------------------------------- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(74,222,128,0.1);
  color: var(--accent);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  white-space: nowrap;
}

/* --- Nav play button --------------------------------------- */
.nav-play-btn {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), box-shadow var(--transition);
}
.nav-play-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 0 3px rgba(79,124,255,0.2);
}

/* --- Responsive: hero split ------------------------------- */
@media (max-width: 920px) {
  .hero-split {
    padding-block: 3rem 3.5rem;
  }
  .hero-split-inner {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-split .hero-actions  { justify-content: center; }
  .hero-split .hero-stats    { justify-content: center; }
  .hero-split .hero-subtitle { margin-inline: auto; }
  .hero-split .hero-title    { margin-inline: auto; }
  .phone-frame { width: 230px; }
  .hero-content              { order: 1; }
  .hero-visual               { order: 2; width: 100%; display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 760px) {
  .showcase-item,
  .showcase-item-reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .showcase-text p { max-width: none; }
  .trust-split {
    flex-direction: column;
    gap: 2.5rem;
  }
  .trust-visual {
    position: static;
    align-self: center;
  }
  .trust-intro { max-width: none; }
  .phone-frame-sm { width: 200px; }
}

/* existing breakpoint kept below */
@media (max-width: 375px) {
  .cities-grid { grid-template-columns: 1fr; }
}

/* Related searches section */
.related-searches-section {
  padding-block: 2rem;
  background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.related-searches-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.related-searches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.search-tag {
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.search-tag:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}


/* =============================================================
   REDESIGNED SECTIONS – v4
   Personas, Features (Bento), Founder Story
   ============================================================= */

/* --- Personas Section (v2 – scenario cards) ------------------ */
.personas-section {
  padding-block: 5rem;
  background: var(--bg-surface);
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.persona-card-v2 {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.persona-card-v2:hover {
  border-color: rgba(79,124,255,0.5);
  transform: translateY(-2px);
}

/* Top accent line — gives each card a color identity */
.persona-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), rgba(79,124,255,0.3));
  border-radius: var(--radius) var(--radius) 0 0;
}

.persona-accent-green {
  background: linear-gradient(90deg, var(--accent), rgba(74,222,128,0.3));
}

.persona-accent-muted {
  background: linear-gradient(90deg, var(--accent-amber), rgba(251,191,36,0.3));
}

/* Frustration quote — the emotional hook */
.persona-frustration {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding: 0;
  border: none;
  opacity: 0.9;
}

.persona-frustration::before {
  content: none;
}

.persona-card-v2 h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.persona-card-v2 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .personas-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* --- Features Section v2 (Bento grid) ------------------------ */
.features-v2 {
  padding-block: 5rem;
  background: var(--bg);
  position: relative;
}

.features-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%,
    rgba(79,124,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.bento-card:hover {
  border-color: rgba(79,124,255,0.4);
  transform: translateY(-2px);
}

/* Wide cards span 2 columns */
.bento-wide {
  grid-column: span 2;
}

/* Icon containers */
.bento-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(79,124,255,0.12);
  color: var(--primary);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.bento-icon-wrap.bento-icon-green {
  background: rgba(74,222,128,0.12);
  color: var(--accent);
}

.bento-icon-wrap.bento-icon-amber {
  background: rgba(251,191,36,0.12);
  color: var(--accent-amber);
}

.bento-icon {
  width: 20px;
  height: 20px;
}

.bento-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.bento-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

/* Subtle gradient overlay on bento cards */
.bento-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(79,124,255,0.03) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* Bento responsive: tablet */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-wide {
    grid-column: span 2;
  }
}

/* Bento responsive: mobile */
@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-wide {
    grid-column: span 1;
  }
}

/* --- Founder Story Section ----------------------------------- */
.founder-section {
  padding-block: 5rem;
  background: var(--bg-surface);
  position: relative;
}

.founder-story {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.founder-body {
  position: relative;
}

/* Pull quote — the emotional hook at the top */
.founder-pullquote {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary);
  position: relative;
}

/* Story paragraphs */
.founder-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.founder-text p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.founder-text p:last-child {
  color: var(--text);
}

/* Signature */
.founder-sig {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.founder-sig-dash {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}

.founder-sig-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.founder-sig-loc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.founder-sig-loc::before {
  content: '/';
  margin-right: 0.75rem;
  color: var(--border);
}

@media (max-width: 480px) {
  .founder-pullquote {
    padding-left: 1rem;
  }
  .founder-sig {
    flex-wrap: wrap;
    gap: 0.375rem 0.75rem;
  }
}

/* Release banner — thin strip above nav, remove after launch window */
.release-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  background: linear-gradient(135deg, rgba(79, 124, 255, 0.12), rgba(74, 222, 128, 0.08));
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s;
  position: sticky;
  top: 0;
  z-index: 1100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.release-banner:hover {
  background: linear-gradient(135deg, rgba(79, 124, 255, 0.2), rgba(74, 222, 128, 0.14));
}
.release-banner-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: var(--accent);
  color: var(--bg);
}
.release-banner-text {
  color: var(--text);
  font-weight: 500;
}
.release-banner-arrow {
  color: var(--text-muted);
  font-size: 0.95rem;
}
@media (max-width: 480px) {
  .release-banner { font-size: 0.78rem; gap: 0.4rem; }
  .release-banner-badge { font-size: 0.65rem; }
}
