/* ==========================================================================
   Trakiyo — shared stylesheet
   Used by:  /index.html, /de/index.html, /roadmap.html, /de/roadmap.html
   Asset paths are relative to this file's location (/css/).
   ========================================================================== */

@font-face {
  font-family: 'Revive80Wide';
  src: url('../fonts/revive80wide-e4z2g.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* RCA-inspired warm palette */
  --paper:              #e8e0d4;
  --red:                #e85230;
  --neon:               #d4ec5c;

  --color-bg:           var(--paper);
  --color-surface:      #ddd5c6;
  --color-surface-2:    #d2c9b8;
  --color-text-primary: #1a1815;
  --color-text-muted:   #6b6258;
  --color-accent:       var(--red);
  --color-accent-hover: #c94420;
  --color-accent-glow:  rgba(232, 82, 48, 0.25);
  --color-border:       rgba(0, 0, 0, 0.08);
  --color-green:        #2d7a5f;
  --color-red:          #b13a2e;
  --font-display:       'Revive80Wide', 'Syne', sans-serif;
  --font-body:          'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}
body.drawer-open { overflow: hidden; touch-action: none; }

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

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(232, 224, 212, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}
body.drawer-open nav { background: rgba(232, 224, 212, 0); border-bottom-color: transparent; }
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--color-text-primary);
}
.logo-iyo { color: var(--red); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-menu {
  display: flex; align-items: center; gap: 28px;
  list-style: none; padding: 0; margin: 0;
}
.nav-menu a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--color-text-primary);
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-menu a:hover { color: var(--red); border-bottom-color: var(--red); }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.lang-toggle a { color: inherit; transition: color 0.15s; }
.lang-toggle a:hover { color: var(--red); }
.lang-toggle .is-active { color: var(--color-text-primary); }
.lang-toggle .lang-sep { opacity: 0.4; }

.nav-roadmap {
  display: inline-flex; align-items: center;
  font-size: 0.82rem; font-weight: 600;
  padding: 10px 22px;
  background: var(--red); color: #fff;
  border: none; border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.nav-roadmap:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,82,48,0.35);
  color: #fff;
}
.nav-roadmap.is-active {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 9px 21px;
}
.nav-roadmap.is-active:hover {
  background: rgba(232,82,48,0.08);
  transform: none;
  box-shadow: none;
  color: var(--red);
}

.nav-cta {
  font-size: 0.82rem; font-weight: 600;
  padding: 10px 22px;
  background: var(--neon); color: #111;
  border: none; border-radius: 999px; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: #c5e045; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,236,92,0.4); }

/* Hamburger button — hidden on desktop */
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  width: 40px; height: 40px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}
.nav-burger:hover { border-color: var(--color-text-muted); }
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 110;
  background: rgba(232, 224, 212, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 80px 24px 32px;
  transform: translateY(-110%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.mobile-drawer a {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  border-bottom: 1px solid var(--color-border);
  transition: color 0.15s, padding-left 0.2s;
}
.mobile-drawer a:hover,
.mobile-drawer a:focus { color: var(--red); padding-left: 8px; }
.mobile-drawer li:last-child a { border-bottom: none; }

.drawer-footer {
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 16px;
}
.mobile-drawer .drawer-roadmap {
  display: inline-flex; align-items: center;
  padding: 12px 24px;
  background: var(--red); color: #fff;
  border: none; border-bottom: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0;
}
.mobile-drawer .drawer-roadmap:hover,
.mobile-drawer .drawer-roadmap:focus {
  background: var(--color-accent-hover);
  color: #fff; padding-left: 24px;
}
.mobile-drawer .drawer-roadmap.is-active {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 11px 23px;
}
.mobile-drawer .drawer-roadmap.is-active:hover {
  background: rgba(232,82,48,0.08);
  color: var(--red); padding-left: 23px;
}
.drawer-footer .lang-toggle { background: transparent; }
.drawer-footer .lang-toggle a {
  padding: 0; border: none; border-bottom: none;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.drawer-footer .lang-toggle a:hover { padding-left: 0; }

/* ===== HERO (homepage) ===== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  background-image: url('../images/backgrounds/abdulsamad-aliyu-nyMw-LfAvpc-unsplash.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
@media (max-width: 760px) {
  /* iOS Safari ignores background-attachment: fixed and the bg jitters/zooms;
     fall back to a normal scroll-with-page background on touch screens. */
  .hero { background-attachment: scroll; }
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(232, 224, 212, 0.55);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  pointer-events: none; opacity: 0.5;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 32px; position: relative;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--color-accent); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 800px; margin-bottom: 24px; position: relative;
  color: var(--color-text-primary);
}
.hero h1 em { font-style: normal; color: var(--color-accent); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-primary);
  max-width: 520px; line-height: 1.75;
  margin-bottom: 48px; position: relative;
  font-weight: 500;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; justify-content: center; position: relative;
}
.btn-primary {
  padding: 16px 36px;
  background: var(--neon); color: #111;
  border: none; border-radius: 999px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: #c5e045;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(212,236,92,0.45);
}
.btn-ghost {
  font-size: 0.88rem; font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--color-text-primary); border-color: var(--color-text-muted); }

/* ===== HERO (roadmap) — namespaced .rm-hero to coexist with homepage hero ===== */
.rm-hero {
  padding-top: 180px;
  padding-bottom: 80px;
  background: var(--paper);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  max-width: 900px;
}
.hero-h1 em { font-style: normal; color: var(--color-accent); }
.hero-p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 14px;
}
.hero-tag {
  font-size: 0.95rem;
  color: var(--color-text-primary);
  font-style: italic;
  max-width: 680px;
  opacity: 0.78;
}

/* ===== MARQUEE ===== */
.marquee-wrap { background: var(--color-accent); padding: 13px 0; overflow: hidden; }
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 35s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #111; padding: 0 28px; flex-shrink: 0;
}
.sep { opacity: 0.4; padding: 0 4px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 760px) {
  .marquee-track { animation-duration: 14s; }
}

/* ===== SHARED ===== */
section { padding: 96px 24px; position: relative; }
.inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

/* Opaque background helper (kept for visual rhythm between sections) */
.bg-paper { background: var(--paper); }

/* Section bg image pattern (uses section's own positioning) */
.section-bg { /* position inherited from section{} or .pin */ }
.section-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.bg-problem::before     { background-image: url('../images/backgrounds/Bo-Blitz-www.boblitz.com_.png'); }
.bg-what::before        { background-image: url('../images/backgrounds/J.Swilla-www.jswilla.com_.png'); }
.bg-player::before      { background-image: url('../images/backgrounds/epvphr2uxau-scaled-1.jpeg'); opacity: 0.08; }
.bg-how::before         { background-image: url('../images/backgrounds/igfibqufnns.jpg'); }
.bg-testimonials::before { background-image: url('../images/backgrounds/oqkffzlzfwm.jpg'); opacity: 0.08; }

/* Artist-portrait backgrounds — used on the roadmap so each section feels
   like a different musician's space. */
.bg-artist-1::before { background-image: url('../images/artists/osarodion-amenze-dCEUB38SwbQ-unsplash.webp'); }
.bg-artist-2::before { background-image: url('../images/artists/frankie-cordoba-VGZ4K7olKkQ-unsplash.webp'); }
.bg-artist-3::before { background-image: url('../images/artists/karsh-mehta-T5ghShqDAvo-unsplash.webp'); }
.bg-artist-4::before { background-image: url('../images/artists/noah-black-rFuHJz3dZwo-unsplash.webp'); }
.bg-artist-5::before { background-image: url('../images/artists/wesley-tingey-icnqtN3SoqA-unsplash.webp'); }

/* Roadmap section backgrounds sit on paper (lighter than the homepage's
   surface-colored sections), so push the overlay opacity up to keep the
   image visible against the lighter base. */
.rm-hero.section-bg::before        { opacity: 0.18; }
.phase-section.section-bg::before  { opacity: 0.18; }
.why-section.section-bg::before    { opacity: 0.20; }

.section-label {
  display: block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 18px;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.section-h2 em { font-style: normal; color: var(--color-accent); }
.section-p {
  font-size: 1.05rem; color: var(--color-text-muted);
  line-height: 1.75; max-width: 560px;
}

/* ===== PROBLEM ===== */
.problem-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 12px; overflow: hidden; margin-top: 48px;
}
.problem-card {
  background: var(--color-bg); padding: 36px 28px; position: relative;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.problem-card:hover::before { opacity: 1; }
.problem-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  color: var(--color-border); line-height: 1; margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.problem-card p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.7; }

/* ===== WHAT ===== */
.what-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.what-left h2 { margin-bottom: 20px; }
.what-left .section-p { margin-bottom: 20px; }

.compare-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px; padding: 24px 28px; margin-top: 28px;
}
.compare-head {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: 18px;
}
.compare-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 20px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--color-border);
  font-size: 0.88rem;
}
.compare-row:last-child { border-bottom: none; }
.compare-row .label { color: var(--color-text-muted); }
.compare-row .bad   { color: var(--color-red); font-weight: 600; text-align: right; }
.compare-row .good  { color: var(--color-green); font-weight: 600; text-align: right; }
.compare-row .col-head { font-weight: 600; font-size: 0.78rem; text-align: right; }
.what-note { font-size: 0.72rem; color: var(--color-text-muted); margin-top: 10px; opacity: 0.6; }

/* Bandcamp vs Trakiyo comparison — semantic <table class="compare-table"> */
.compare-table {
  width: 100%;
  margin-top: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--color-border);
}
.compare-table thead th {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: rgba(0,0,0,0.03);
}
.compare-table thead th:nth-child(2),
.compare-table thead th:nth-child(3) { text-align: right; }
.compare-table tbody td:first-child { color: var(--color-text-muted); }
.compare-table tbody td:nth-child(2),
.compare-table tbody td:nth-child(3) {
  text-align: right;
  font-weight: 600;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .bad  { color: var(--color-red); }
.compare-table .good { color: var(--color-green); }

.feature-list { display: flex; flex-direction: column; gap: 2px; }
.feature-row {
  background: var(--color-surface);
  border: 1px solid var(--color-border); border-radius: 8px;
  padding: 20px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.2s, background 0.2s;
}
.feature-row:hover {
  border-color: rgba(232,82,48,0.3);
  background: rgba(232,82,48,0.04);
}
.feature-row .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.feature-row .icon .fa-icon { width: 22px; height: 22px; }
/* Alternate red / green icons across the feature list */
.feature-list .feature-row:nth-child(even) .icon {
  color: #4a7c30;
  background: rgba(212, 236, 92, 0.22);
  border-color: rgba(74, 124, 48, 0.18);
}

/* Font Awesome SVG icons (CSS-mask technique — color via currentColor) */
.fa-icon {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-position: center; -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain;
          mask-position: center;         mask-repeat: no-repeat;         mask-size: contain;
}
.fa-radio        { -webkit-mask-image: url('../icons/radio-solid-full.svg');         mask-image: url('../icons/radio-solid-full.svg'); }
.fa-sack-dollar  { -webkit-mask-image: url('../icons/sack-dollar-solid-full.svg');   mask-image: url('../icons/sack-dollar-solid-full.svg'); }
.fa-shirt        { -webkit-mask-image: url('../icons/shirt-solid-full.svg');         mask-image: url('../icons/shirt-solid-full.svg'); }
.fa-music        { -webkit-mask-image: url('../icons/music-solid-full.svg');         mask-image: url('../icons/music-solid-full.svg'); }
.fa-guitar       { -webkit-mask-image: url('../icons/guitar-solid-full.svg');        mask-image: url('../icons/guitar-solid-full.svg'); }
.fa-headphones   { -webkit-mask-image: url('../icons/headphones-regular-full.svg');  mask-image: url('../icons/headphones-regular-full.svg'); }
.fa-copyright    { -webkit-mask-image: url('../icons/copyright-regular-full.svg');   mask-image: url('../icons/copyright-regular-full.svg'); }
.fa-record-vinyl { -webkit-mask-image: url('../icons/record-vinyl-solid-full.svg');  mask-image: url('../icons/record-vinyl-solid-full.svg'); }
.fa-sliders      { -webkit-mask-image: url('../icons/sliders-solid-full.svg');       mask-image: url('../icons/sliders-solid-full.svg'); }
.fa-drum         { -webkit-mask-image: url('../icons/drum-solid-full.svg');          mask-image: url('../icons/drum-solid-full.svg'); }
.fa-message      { -webkit-mask-image: url('../icons/message-regular-full.svg');     mask-image: url('../icons/message-regular-full.svg'); }
.feature-row h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.feature-row p  { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.65; }

/* ===== PLAYER SECTION ===== */
.player-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.player-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* Player section right column — three stacked panels */
.player-panels {
  display: flex; flex-direction: column; gap: 12px;
}
.player-panel {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.player-panel:hover {
  border-color: rgba(232,82,48,0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.player-panel-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.player-panel-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem; letter-spacing: -0.01em;
}
.player-panel-sub { font-size: 0.78rem; color: var(--color-text-muted); }
.player-panel-badge {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-green);
  background: rgba(45,122,95,0.1);
  border: 1px solid rgba(45,122,95,0.25);
  padding: 5px 11px; border-radius: 999px;
  flex-shrink: 0;
}
.player-panel-cta {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #111;
  background: var(--neon);
  padding: 8px 14px; border-radius: 999px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.player-panel:hover .player-panel-cta { background: #c5e045; }
.player-panel.is-trakiyo {
  border-color: rgba(232,82,48,0.4);
  background: linear-gradient(135deg, var(--paper) 0%, #f1ead9 100%);
}

/* ===== STICKY BOTTOM BAR PLAYER =====
   This is the exact pattern that works on real iPhone Safari and real
   Android Chrome — copied from lifetimerec.com (which copied it from
   basslinegeneration.com). The triple-safety hide (visibility + opacity
   + translate3d) covers every browser's first-paint race: if any one of
   the three fails to apply on the first frame, the others still keep
   the bar invisible. translate3d + will-change forces a GPU compositor
   layer so iOS Safari can't lose `position:fixed` when the body has
   `overflow-x:hidden` (a known WebKit bug). pointer-events:none keeps
   the hidden bar from intercepting taps. */
.bar-player {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(26,24,21,0.96);
  color: #f0ebe0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.08);
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  -webkit-transform: translate3d(0, 100%, 0);
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    visibility 0s linear 0.35s;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
}
.bar-player.is-open {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  pointer-events: auto;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    visibility 0s linear 0s;
}
.bar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 22px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1.4fr) auto;
  gap: 22px;
  align-items: center;
}
.bar-meta { display: flex; align-items: center; gap: 14px; min-width: 0; }
.bar-cover {
  width: 52px; height: 52px;
  border-radius: 8px;
  background: #2a2724 center/cover no-repeat;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.bar-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bar-artist {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--neon);
}
.bar-title {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bar-controls { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.bar-btn {
  background: none; border: none;
  color: #f0ebe0; cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 1rem; padding: 0;
  transition: background 0.15s, color 0.15s;
}
.bar-btn:hover { background: rgba(255,255,255,0.08); }
.bar-play {
  background: var(--neon); color: #111;
  width: 42px; height: 42px;
}
.bar-play:hover { background: #c5e045; }
.bar-progress { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.bar-track-wrap {
  position: relative; height: 28px;
  cursor: pointer;
}
.bar-wave {
  width: 100%; height: 100%;
  display: block;
}
.bar-times {
  display: flex; justify-content: space-between;
  font-size: 0.7rem; color: rgba(240,235,224,0.55);
  font-variant-numeric: tabular-nums;
}
.bar-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.bar-close {
  background: none; border: 1px solid rgba(255,255,255,0.1);
  color: rgba(240,235,224,0.7); cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: color 0.15s, border-color 0.15s;
}
.bar-close:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.bar-loader {
  display: none;
  font-size: 0.78rem; color: rgba(240,235,224,0.6);
  padding: 4px 0;
}
.bar-player.is-loading .bar-loader { display: block; }
.bar-player.is-loading .bar-progress > .bar-track-wrap,
.bar-player.is-loading .bar-times { opacity: 0.4; }

/* Hidden SC iframe — primary hiding is an INLINE style on the iframe
   element itself (so it applies before any external CSS loads, no
   first-paint flash). These rules below are belt-and-suspenders in
   case the inline style is ever stripped or edited away. */
#scWidget {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  pointer-events: none;
  border: 0;
}

/* Floating "reopen player" pill — appears after the bar is closed */
.player-fab {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 85;
  display: none;
  align-items: center; gap: 10px;
  padding: 12px 20px 12px 14px;
  background: rgba(26,24,21,0.96);
  color: #f0ebe0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.92);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, box-shadow 0.2s;
}
.player-fab.is-shown {
  display: inline-flex;
  transform: translateY(0) scale(1);
  opacity: 1;
}
.player-fab:hover { box-shadow: 0 14px 38px rgba(0,0,0,0.35); }
.player-fab .fab-play {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--neon); color: #111;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  padding-left: 1px;
}
.player-fab .fab-eq {
  display: inline-flex; align-items: flex-end; gap: 2px;
  height: 14px;
}
.player-fab .fab-eq span {
  display: block;
  width: 2px;
  background: var(--neon);
  border-radius: 1px;
  animation: fabBars 1.1s ease-in-out infinite;
}
.player-fab .fab-eq span:nth-child(1) { height: 60%; animation-delay: 0s; }
.player-fab .fab-eq span:nth-child(2) { height: 100%; animation-delay: 0.18s; }
.player-fab .fab-eq span:nth-child(3) { height: 45%; animation-delay: 0.36s; }
.player-fab.is-paused .fab-eq span { animation-play-state: paused; }
@keyframes fabBars {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}
@media (max-width: 560px) {
  .player-fab { right: 14px; bottom: 14px; padding: 10px 16px 10px 12px; font-size: 0.8rem; }
}

@media (max-width: 760px) {
  .bar-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 16px;
  }
  .bar-actions { justify-self: end; position: absolute; top: 8px; right: 12px; }
  .bar-close { width: 28px; height: 28px; }
}

/* ===== SHOWCASE (client sites with photos) ===== */
.showcase-section { padding: 0; }

/* Full-bleed photo collage background */
.showcase-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 4px; opacity: 0.3;
}
.showcase-collage img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.showcase-collage-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    var(--color-bg) 0%,
    rgba(17,17,16,0.05) 20%,
    rgba(17,17,16,0.05) 80%,
    var(--color-bg) 100%
  );
}

.showcase-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 96px 24px;
}

.showcase-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 48px;
}

.showcase-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.2s, transform 0.3s;
}
.showcase-card:hover { border-color: rgba(232,82,48,0.3); transform: translateY(-3px); }

/* Portfolio screenshots — show top of page, crop bottom */
.showcase-photo-link { display: block; overflow: hidden; }
.showcase-photo {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; object-position: top;
  display: block; background: var(--color-surface-2);
  transition: transform 0.6s ease, object-position 6s linear;
}
.showcase-card:hover .showcase-photo {
  transform: scale(1.02);
  object-position: bottom;
}

.showcase-body { padding: 28px 28px 32px; }
.showcase-genre {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 10px;
}
.showcase-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.showcase-desc {
  font-size: 0.88rem; color: var(--color-text-muted);
  line-height: 1.75; margin-bottom: 20px;
}

.showcase-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(232,82,48,0.3); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.showcase-link:hover { border-color: var(--color-accent); }

/* ===== HOW ===== */
.how-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
/* Steps as a semantic ordered list — number rendered via CSS counter */
.steps {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex; flex-direction: column;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 24px 0 24px 60px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 22px;
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800;
  color: var(--color-border);
  line-height: 1;
  width: 44px;
  transition: color 0.2s;
}
.steps li:hover::before,
.steps li.is-active::before { color: var(--color-accent); }
.steps li strong {
  display: block;
  font-size: 0.95rem; font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.math-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px; padding: 36px;
}
.math-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.5;
  border-left: 2px solid var(--color-accent);
  padding-left: 18px; margin-bottom: 28px;
}
.math-card blockquote em { color: var(--color-accent); font-style: normal; }
.math-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.math-note-link {
  color: var(--color-accent);
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.math-note-link:hover {
  border-bottom-color: var(--color-accent);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px; padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(232,82,48,0.25); }
.testimonial-card.featured {
  grid-column: span 2;
  background: rgba(232,82,48,0.06);
  border-color: rgba(232,82,48,0.25);
}
.testimonial-head {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-avatar {
  width: 56px; height: 56px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--red); flex-shrink: 0;
}
.testimonial-avatar.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface-2);
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.1rem;
  color: var(--red);
}
.testimonial-head .testimonial-author {
  border-top: none; padding-top: 0;
}
.testimonial-quote {
  font-size: 0.9rem; color: var(--color-text-primary);
  line-height: 1.8; flex: 1;
  position: relative; padding-top: 24px;
}
.testimonial-quote::before {
  content: '"';
  position: absolute; top: -4px; left: 0;
  font-family: var(--font-display);
  font-size: 3rem; line-height: 1;
  color: var(--color-accent); opacity: 0.4;
}
.testimonial-author { border-top: 1px solid var(--color-border); padding-top: 16px; }
.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 800;
  letter-spacing: -0.01em; margin-bottom: 3px;
}
.testimonial-role { font-size: 0.75rem; color: var(--color-text-muted); }

/* ===== ADDITIONAL SERVICES ===== */
.services-section { }
.services-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px; margin-top: 48px;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px; padding: 24px;
  transition: border-color 0.2s;
  grid-column: span 2;
}
/* Center the two orphan cards on the second row of the desktop 3-up grid.
   Card 4 starts at column 2; card 5 falls in line at column 4. */
.services-grid .service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:hover { border-color: rgba(232,82,48,0.3); }
.service-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(232,82,48,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 14px;
}
.service-icon .fa-icon { width: 22px; height: 22px; }
/* Alternate red / green icons across the services grid */
.services-grid .service-card:nth-child(even) .service-icon {
  color: #4a7c30;
  background: rgba(212, 236, 92, 0.22);
}
.service-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.service-card p  { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.65; }

/* ===== PLAN / PRICING (homepage) ===== */
.pricing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 44px;
  max-width: 560px;
  margin: 48px auto 0;
  text-align: center;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}
.price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.per { font-size: 1.1rem; color: var(--color-text-muted); }
.price-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(232,82,48,0.1);
  border: 1px solid rgba(232,82,48,0.25);
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-end;
  margin-bottom: 8px;
}
.pricing-setup-fee {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.pricing-trial {
  font-size: 0.85rem;
  color: var(--color-green);
  font-weight: 600;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
  display: inline-block;
  width: 100%;
}
.pricing-features li {
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '✔';
  color: var(--color-green);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-promise {
  font-size: 0.85rem;
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: rgba(232,82,48,0.06);
  border-radius: 8px;
  border: 1px solid rgba(232,82,48,0.18);
}
.pricing-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.pricing-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 24px;
  opacity: 0.8;
  text-align: center;
}
.pricing-tiers {
  max-width: 980px;
  margin: 40px auto 0;
}
.pricing-tiers-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  color: var(--color-text-primary, #f0ebe0);
}
.pricing-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pricing-tier {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 18px;
}
.pricing-tier-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.pricing-tier-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-accent, #e8743a);
  margin-bottom: 10px;
}
.pricing-tier-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text-muted, #8a8070);
  margin: 0;
}
@media (max-width: 720px) {
  .pricing-tier-grid { grid-template-columns: 1fr; }
}
/* Subtle secondary link — used below the pricing card to point at the roadmap. */
.btn-secondary {
  display: block;
  width: max-content;
  margin: 18px auto 0;
  padding: 8px 4px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  text-align: center;
}
.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
@media (max-width: 560px) {
  .pricing-card { padding: 32px 22px; }
  .price { font-size: 3rem; }
}

/* ===== CTA (homepage footer card) ===== */
.cta-section {
  padding: 48px 24px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.cta-card {
  max-width: 720px; margin: 0 auto;
  text-align: center; padding: 64px 40px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px; position: relative; overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  pointer-events: none; opacity: 0.8;
}
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 16px; position: relative;
}
.cta-card h2 em { font-style: normal; color: var(--color-accent); }
.cta-card p {
  font-size: 1rem; color: var(--color-text-muted);
  line-height: 1.75; max-width: 480px;
  margin: 0 auto 36px; position: relative;
}
.cta-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; position: relative;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  background: var(--neon); color: #111;
  border: none; cursor: pointer;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
  background: #c5e045;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(212,236,92,0.45);
}

/* ===== THANK YOU PAGE ===== */
.ty-hero {
  padding: 120px 24px 60px;
  text-align: center;
  background: var(--paper);
  border-bottom: 1px solid var(--color-border);
}
.ty-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(45,122,95,0.14);
  border: 2px solid var(--color-green);
  color: var(--color-green);
  margin-bottom: 26px;
}
.ty-mark svg { width: 36px; height: 36px; }
.ty-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.4vw, 2.8rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin: 0 auto 18px;
}
.ty-hero .ty-sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto;
}
.ty-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.ty-section-label {
  display: block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
}
.ty-steps {
  list-style: none;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
  counter-reset: ty-step;
}
.ty-step {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 22px 26px 22px 60px;
  counter-increment: ty-step;
}
.ty-step::before {
  content: counter(ty-step);
  position: absolute;
  left: 18px; top: 22px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.ty-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.ty-step p {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}
.ty-cta-red {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  padding: 12px 24px;
  background: var(--red); color: #fff;
  border: none; border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ty-cta-red:hover,
.ty-cta-red:focus {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232, 82, 48, 0.35);
  outline: none;
}
.ty-questions {
  margin: 0 0 40px;
  padding: 28px 28px;
  background: var(--paper);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  text-align: center;
}
.ty-questions h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ty-questions p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}
.ty-questions a {
  color: var(--color-accent);
  border-bottom: 1px solid rgba(232,82,48,0.3);
  transition: border-color 0.15s;
}
.ty-questions a:hover { border-bottom-color: var(--color-accent); }
.ty-explore {
  text-align: center;
}
.ty-explore p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.ty-explore-list {
  list-style: none;
  padding: 0;
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.ty-explore-list a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--color-text-primary);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.ty-explore-list a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(232,82,48,0.04);
}
@media (max-width: 560px) {
  .ty-hero { padding: 90px 20px 48px; }
  .ty-body { padding: 40px 18px 72px; }
  .ty-step { padding: 18px 22px 18px 54px; }
  .ty-step::before { left: 16px; top: 18px; font-size: 1.2rem; }
}

/* ===== LEGAL PAGE (privacy / Datenschutz) ===== */
.legal-hero {
  padding: 160px 24px 60px;
  text-align: center;
}
.legal-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--color-text-primary);
  max-width: 800px; margin: 0 auto 18px;
}
.legal-meta { font-size: 0.88rem; color: var(--color-text-muted); }

.legal-body {
  max-width: 760px; margin: 0 auto;
  padding: 32px 24px 120px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-primary);
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.2;
  margin: 48px 0 14px;
  color: var(--color-text-primary);
}
.legal-body h2:first-of-type { margin-top: 24px; }
.legal-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.3;
  margin: 28px 0 10px;
  color: var(--color-text-primary);
}
.legal-body p { margin: 0 0 18px; color: var(--color-text-primary); }
.legal-body p strong { font-weight: 600; }
.legal-body a { color: var(--red); border-bottom: 1px solid rgba(232,82,48,0.3); }
.legal-body a:hover { border-bottom-color: var(--red); }
.legal-body ul { margin: 0 0 18px 22px; }
.legal-body li { margin: 4px 0; }
.legal-body address { font-style: normal; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 32px;
  padding: 12px 22px;
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 999px;
  font-weight: 600; font-size: 0.88rem;
  transition: background 0.2s, color 0.2s;
}
.legal-back:hover { background: var(--red); color: var(--paper); }
@media (max-width: 880px) {
  .legal-hero { padding: 130px 22px 40px; }
}

/* ===== ROADMAP — phase timeline ===== */
.phase-section { padding: 80px 24px; }
.phase-section + .phase-section { padding-top: 0; }
/* Phase 3 (the dark vision card) gets its space back so it reads as a
   distinct chapter, not a continuation of the previous phase. */
.phase-section + .phase-section#phase-3 { padding-top: 80px; }
.phase-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 56px 56px 52px;
  position: relative;
  overflow: hidden;
}
.phase-card.is-live      { background: var(--color-surface); }
.phase-card.is-dev       { background: var(--color-surface); }
.phase-card.is-next      { background: var(--paper); }
.phase-card.is-vision    {
  background: #1a1815;
  color: var(--paper);
  border-color: rgba(255,255,255,0.06);
}
.phase-card.is-vision .phase-title,
.phase-card.is-vision .phase-body,
.phase-card.is-vision .phase-list,
.phase-card.is-vision .phase-subhead { color: var(--paper); }
.phase-card.is-vision .phase-body p,
.phase-card.is-vision .phase-list li { color: rgba(232, 224, 212, 0.78); }
.phase-card.is-vision .phase-list li strong { color: var(--paper); }

.phase-watermark {
  position: absolute;
  right: -18px; bottom: -64px;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: rgba(0,0,0,0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.phase-card.is-vision .phase-watermark { color: rgba(255,255,255,0.04); }

.phase-head {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 26px;
  position: relative; z-index: 1;
}
.phase-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  flex-shrink: 0;
}
.phase-status .phase-icon { font-size: 0.95rem; line-height: 1; }
.phase-status.live   { background: rgba(45,122,95,0.16); color: var(--color-green); border: 1px solid rgba(45,122,95,0.3); }
.phase-status.dev    { background: rgba(232,82,48,0.12); color: var(--color-accent); border: 1px solid rgba(232,82,48,0.32); }
.phase-status.next   { background: rgba(0,0,0,0.05); color: var(--color-text-muted); border: 1px solid var(--color-border); }
.phase-status.vision { background: rgba(212,236,92,0.18); color: var(--neon); border: 1px solid rgba(212,236,92,0.45); }

.phase-number {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.phase-card.is-vision .phase-number { color: rgba(232,224,212,0.6); }

.phase-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 780px;
  position: relative; z-index: 1;
}
.phase-title em { font-style: normal; color: var(--color-accent); }
.phase-card.is-vision .phase-title em { color: var(--neon); }

.phase-body {
  max-width: 720px;
  position: relative; z-index: 1;
}
.phase-body p {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.78;
  margin-bottom: 16px;
}
.phase-body p:last-child { margin-bottom: 0; }
.phase-body p strong { color: var(--color-text-primary); font-weight: 600; }
.phase-card.is-vision .phase-body p strong { color: var(--paper); }

.phase-subhead {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 28px; margin-bottom: 14px;
  color: var(--color-text-primary);
}

.phase-list {
  list-style: none;
  padding: 0;
  max-width: 720px;
  position: relative; z-index: 1;
}
.phase-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  border-bottom: 1px solid var(--color-border);
}
.phase-list li:last-child { border-bottom: none; }
.phase-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 19px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}
.phase-card.is-live .phase-list li::before { background: var(--color-green); }
.phase-card.is-vision .phase-list li::before { background: var(--neon); }
.phase-card.is-vision .phase-list li { border-bottom-color: rgba(255,255,255,0.08); }
.phase-list li strong { color: var(--color-text-primary); font-weight: 600; }
.phase-list li a {
  color: var(--color-accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.phase-list li a:hover { border-bottom-color: var(--color-accent); }
.phase-card.is-vision .phase-list li a { color: var(--neon); }
.phase-card.is-vision .phase-list li a:hover { border-bottom-color: var(--neon); }

/* ===== ROADMAP — tier table (Phase 3) ===== */
.tier-table {
  max-width: 760px;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  position: relative; z-index: 1;
}
.tier-row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 2.4fr;
  gap: 0;
  align-items: stretch;
}
.tier-row + .tier-row { border-top: 1px solid rgba(255,255,255,0.08); }
.tier-cell {
  padding: 16px 20px;
  font-size: 0.95rem;
  color: rgba(232,224,212,0.78);
  line-height: 1.55;
  display: flex; align-items: center;
}
.tier-row.tier-head .tier-cell {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,224,212,0.55);
  background: rgba(255,255,255,0.04);
}
.tier-cell.tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.tier-cell.tier-price {
  font-weight: 600;
  color: var(--neon);
}
.tier-row.tier-head .tier-cell.tier-name,
.tier-row.tier-head .tier-cell.tier-price {
  font-family: var(--font-body);
  font-weight: 700;
  color: rgba(232,224,212,0.55);
}

.vision-aside {
  margin-top: 30px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--neon);
  border-radius: 4px 10px 10px 4px;
  max-width: 720px;
  position: relative; z-index: 1;
}
.vision-aside .phase-subhead { margin-top: 0; color: var(--paper); }
.vision-aside p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(232,224,212,0.78);
  margin: 0;
}

/* ===== ROADMAP — why now ===== */
.why-section {
  padding: 96px 24px;
  background: var(--paper);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.why-inner { max-width: 880px; margin: 0 auto; }
.why-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.why-h2 em { font-style: normal; color: var(--color-accent); }
.why-list {
  list-style: none;
  padding: 0;
  display: flex; flex-direction: column; gap: 22px;
}
.why-list li {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text-primary);
  padding-left: 18px;
  border-left: 2px solid var(--color-accent);
}
.why-list li:nth-child(2) { border-left-color: var(--color-green); }
.why-list li:nth-child(3) { border-left-color: #b58a00; }
.why-list li strong { color: var(--color-text-primary); font-weight: 600; }

/* ===== ROADMAP — investor CTA ===== */
.invest-section {
  padding: 96px 24px;
  background: var(--paper);
}
.invest-card {
  max-width: 760px;
  margin: 0 auto;
  background: #1a1815;
  color: var(--paper);
  border-radius: 18px;
  padding: 56px 48px;
  text-align: center;
}
.invest-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 18px;
}
.invest-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.invest-p {
  font-size: 1.02rem;
  color: rgba(232,224,212,0.78);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 32px;
}
.invest-email {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.4vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--neon);
  padding: 14px 28px;
  border: 1px solid rgba(212,236,92,0.4);
  border-radius: 999px;
  background: rgba(212,236,92,0.06);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  max-width: 100%;
  overflow-wrap: anywhere;
}
@media (max-width: 560px) {
  .invest-email {
    padding: 11px 18px;
    gap: 8px;
  }
  .invest-email svg { width: 15px; height: 15px; }
}
.invest-email:hover {
  background: rgba(212,236,92,0.14);
  border-color: rgba(212,236,92,0.7);
  transform: translateY(-1px);
}
.invest-tag {
  display: block;
  margin-top: 22px;
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(232,224,212,0.6);
}

/* ===== FOOTER ===== */
footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 32px; border-top: 1px solid var(--color-border);
  flex-wrap: wrap; gap: 12px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em;
}
.footer-logo .logo-iyo { color: var(--red); }
.footer-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer-link {
  font-size: 0.78rem; color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s, border-color 0.2s;
}
.footer-link:hover { color: var(--color-text-primary); border-color: var(--color-text-muted); }
.footer-copy { font-size: 0.78rem; color: var(--color-text-muted); margin: 0; }
.footer-copy a {
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s;
}
.footer-copy a:hover { color: var(--color-text-primary); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 200;
  background: rgba(26,24,21,0.96);
  color: #f0ebe0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
  padding: 18px 22px;
  max-width: 820px;
  margin: 0 auto;
  display: none;
  align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner.is-shown { display: flex; }
.cookie-text {
  flex: 1 1 280px;
  font-size: 0.88rem; line-height: 1.55;
  color: rgba(240,235,224,0.92);
}
.cookie-text a { color: var(--neon); border-bottom: 1px solid rgba(212,236,92,0.5); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: background 0.15s, transform 0.15s, color 0.15s, border-color 0.15s;
}
.cookie-btn.accept { background: var(--neon); color: #111; }
.cookie-btn.accept:hover { background: #c5e045; transform: translateY(-1px); }
.cookie-btn.reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(240,235,224,0.85);
}
.cookie-btn.reject:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* ===== CONTACT MODAL ===== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(26, 24, 21, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 16px;
}
.modal-backdrop.is-open {
  display: flex;
  animation: modalFade 0.2s ease;
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
body.modal-open { overflow: hidden; }

.modal-card {
  background: var(--paper);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  padding: 36px 36px 32px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  margin: auto;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border: 1px solid var(--color-border);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  font-size: 1.1rem; line-height: 1;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.modal-close:hover { background: var(--color-surface); color: var(--color-text-primary); border-color: var(--color-text-muted); }
.modal-eyebrow {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 0.9rem; color: var(--color-text-muted);
  line-height: 1.6; margin-bottom: 24px;
}
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-field { display: flex; flex-direction: column; gap: 6px; }
.modal-field label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-muted);
}
.modal-field input,
.modal-field textarea,
.modal-field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.modal-field textarea { resize: vertical; min-height: 90px; line-height: 1.55; }
.modal-field input:focus,
.modal-field textarea:focus,
.modal-field select:focus { border-color: var(--red); background: var(--paper); }
.modal-field input::placeholder,
.modal-field textarea::placeholder { color: var(--color-text-muted); opacity: 0.7; }
.modal-submit {
  margin-top: 6px;
  padding: 14px 28px;
  background: var(--neon); color: #111;
  border: none; border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.modal-submit:hover:not(:disabled) {
  background: #c5e045;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,236,92,0.45);
}
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.modal-success {
  display: none;
  padding: 16px 18px;
  background: rgba(45, 122, 95, 0.1);
  border: 1px solid rgba(45, 122, 95, 0.3);
  border-radius: 8px;
  color: var(--color-green);
  font-size: 0.9rem; font-weight: 500;
  align-items: center; gap: 10px;
}
.modal-success.is-shown { display: flex; }
.modal-error {
  display: none;
  padding: 12px 14px;
  background: rgba(177, 58, 46, 0.08);
  border: 1px solid rgba(177, 58, 46, 0.3);
  border-radius: 8px;
  color: var(--color-red);
  font-size: 0.85rem;
}
.modal-error.is-shown { display: block; }
.modal-fineprint {
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  opacity: 0.75;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
  nav { padding: 16px 20px; }
  .nav-menu { display: none; }
  .nav-right > .lang-toggle,
  .nav-right > .nav-roadmap,
  .nav-right > .nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 960px) {
  .problem-grid      { grid-template-columns: repeat(2, 1fr); }
  .what-inner        { grid-template-columns: 1fr; gap: 48px; }
  .player-layout     { grid-template-columns: 1fr; gap: 40px; }
  .showcase-grid     { grid-template-columns: 1fr; }
  .how-inner         { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { grid-column: span 1; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card,
  .services-grid .service-card:nth-child(4) { grid-column: auto; }
  footer { flex-direction: column; text-align: center; padding: 28px 20px; }
  .footer-meta { justify-content: center; flex-direction: column; align-items: center; gap: 14px; }
  .footer-copy { text-align: center; }
}
@media (max-width: 880px) {
  .rm-hero { padding-top: 130px; padding-bottom: 60px; }
  .phase-section { padding: 56px 20px; }
  .phase-card { padding: 40px 28px; border-radius: 14px; }
  .phase-watermark { font-size: 9rem; bottom: -36px; right: -10px; }

  .why-section { padding: 64px 20px; }
  .invest-section { padding: 64px 20px; }
  .invest-card { padding: 42px 28px; border-radius: 14px; }

  .tier-row { grid-template-columns: 1fr; }
  .tier-row + .tier-row { border-top: 1px solid rgba(255,255,255,0.08); }
  .tier-cell { padding: 12px 18px; }
  .tier-cell:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .tier-row.tier-head { display: none; }
  .tier-cell.tier-name::before { content: 'Tier · '; opacity: 0.5; font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-right: 6px; }
  .tier-cell.tier-price::before { content: 'Price · '; opacity: 0.5; font-weight: 600; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-right: 6px; }
  /* German label override for the stacked-mobile tier table */
  [lang="de"] .tier-cell.tier-price::before { content: 'Preis · '; }
}
@media (max-width: 560px) {
  .problem-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .showcase-collage { grid-template-columns: repeat(2, 1fr); }
  .modal-card { padding: 28px 22px 24px; border-radius: 12px; }
  .modal-row { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.4rem; }
  .phase-card { padding: 32px 22px; }
  .phase-title { font-size: 1.4rem; }
}
