:root {
  --bg: #0a0a0c;
  --bg-card: #121214;
  --text: #f0e6ed;
  --text-muted: #9a8a95;
  --accent: #e84a7a;
  --accent-secondary: #b83d8a;
  --gradient: linear-gradient(135deg, #e84a7a 0%, #b83d8a 50%, #7b2d6b 100%);
  --border: rgba(232, 74, 122, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: white;
  font-weight: 600;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  -webkit-tap-highlight-color: transparent;
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* Roast banner */
.roast-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: linear-gradient(90deg, #e84a7a 0%, #b83d8a 100%);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.roast-divider {
  opacity: 0.6;
}

.roast-item {
  white-space: nowrap;
}

.roast-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.roast-cta:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
  .roast-banner {
    font-size: 0.7rem;
    padding: 0.4rem 0.5rem;
    padding-left: max(0.5rem, env(safe-area-inset-left));
    padding-right: max(0.5rem, env(safe-area-inset-right));
    gap: 0.4rem;
  }

  .roast-cta {
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    align-items: center;
  }

  .roast-item {
    white-space: normal;
  }
}

/* Trust bar */
.trust-bar {
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(26, 26, 31, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1rem;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.trust-icon {
  color: #4ade80;
}

/* Ticker */
.ticker-wrap {
  margin-top: 132px;
  overflow: hidden;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
}

.ticker {
  display: flex;
  gap: 2rem;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  padding-top: calc(1rem + env(safe-area-inset-top));
  background: rgba(15, 15, 18, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: inherit;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link-download {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.nav-link-download:hover {
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--gradient);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 74, 122, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

.hero-content {
  flex: 1;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(232, 74, 122, 0.2);
  border: 1px solid rgba(232, 74, 122, 0.4);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Crimson Pro', Georgia, serif;
  text-transform: none;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-stats strong {
  color: var(--text);
}

.app-badges {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}

.app-badge:hover {
  border-color: var(--accent);
  color: var(--text);
}

.app-badge-icon {
  font-size: 1.1rem;
}

.hero-enrolled {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #4ade80;
}

/* Phone mockup */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  height: 520px;
  background: linear-gradient(180deg, #2a2a30 0%, #1a1a1f 100%);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 
    0 0 0 2px var(--border),
    0 40px 80px rgba(0, 0, 0, 0.5);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mock-balance {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mock-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-amount {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mock-tier {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Exzempt Spotlight */
.exzempt-section {
  padding-top: 2rem;
}

.exzempt-card {
  background: linear-gradient(135deg, rgba(232, 74, 122, 0.15) 0%, rgba(184, 61, 138, 0.1) 50%, rgba(123, 45, 107, 0.15) 100%);
  border: 1px solid rgba(232, 74, 122, 0.3);
  border-radius: 8px;
  padding: 2.5rem;
}

.exzempt-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.exzempt-badge {
  background: linear-gradient(135deg, #e5e4e2 0%, #a8a9ad 50%, #71706f 100%);
  color: #1a1a1a;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.exzempt-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.exzempt-tagline {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.exzempt-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.exzempt-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.exzempt-stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--accent);
}

.exzempt-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.exzempt-bio {
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}

.exzempt-incident {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  border-left: 4px solid var(--accent);
}

.exzempt-incident h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.exzempt-incident p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.exzempt-reviews {
  margin-top: 2rem;
}

.exzempt-reviews h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.exzempt-review {
  margin-bottom: 1rem;
}

.exzempt-review-stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.exzempt-review p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.25rem;
}

/* Press section */
.press-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.press-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.press-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.press-logo {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Video section */
.video-section {
  background: var(--bg-card);
  border-radius: 6px;
  margin: 2rem auto;
  max-width: 900px;
}

.video-container {
  border-radius: 16px;
  overflow: hidden;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1f 0%, #252530 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.video-placeholder:hover {
  opacity: 0.9;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: scale(1.05);
}

.video-placeholder p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

/* Ecosystem */
.ecosystem-section {
  background: var(--bg-card);
  border-radius: 6px;
  border: 1px solid var(--border);
  margin: 0 auto 2rem;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ecosystem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.ecosystem-card:hover {
  border-color: rgba(232, 74, 122, 0.4);
  transform: translateY(-2px);
}

.ecosystem-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.ecosystem-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.ecosystem-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Investors */
.investors-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.investors-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.investors-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.investor {
  font-size: 0.95rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* Tiers */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 74, 122, 0.4);
}

.tier-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 107, 157, 0.1) 0%, var(--bg-card) 100%);
}

.tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.tier-header h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.tier-limit {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.tier-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tier-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Size vs Wealth Chart */
.chart-section {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.chart-section h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.03em;
}

.chart-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.chart-container {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  min-height: 220px;
}

.chart-y-axis {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
  padding-bottom: 2.5rem;
}

.chart-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 0.5rem;
}

.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 100px;
}

.chart-bar {
  width: 100%;
  height: var(--bar-height, 40px);
  min-height: 16px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.25rem;
  transition: transform 0.3s ease;
  animation: chartGrow 1s ease-out forwards;
}

.chart-bar-wrap:hover .chart-bar {
  transform: scaleY(1.02);
}

.chart-bar-value {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.chart-bar-micro {
  background: linear-gradient(180deg, #64748b 0%, #475569 100%);
}

.chart-bar-small {
  background: linear-gradient(180deg, #94a3b8 0%, #64748b 100%);
}

.chart-bar-medium {
  background: linear-gradient(180deg, #ff6b9d 0%, #e84393 100%);
}

.chart-bar-large {
  background: linear-gradient(180deg, #c44dff 0%, #9d4edd 100%);
}

.chart-bar-xl {
  background: linear-gradient(180deg, #6b8cff 0%, #4d7cff 100%);
}

.chart-bar-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.chart-bar-label small {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.7rem;
}

.chart-caption {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

@keyframes chartGrow {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

/* Retailers */
.retailers-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.retailer {
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
}

.faq-item {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.faq-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Signup */
.signup-section {
  text-align: center;
}

.signup-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto 1rem;
}

.signup-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
}

.signup-form input::placeholder {
  color: var(--text-muted);
}

.legal {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

/* Chat widget */
.chat-widget {
  position: fixed;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  right: max(1rem, env(safe-area-inset-right));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(232, 74, 122, 0.5);
  transition: transform 0.2s;
}

.chat-widget:hover {
  transform: scale(1.05);
}

.chat-icon {
  font-size: 1.5rem;
}

.chat-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== MOBILE & RESPONSIVE ========== */

/* Tablet */
@media (max-width: 968px) {
  .header {
    padding: 0.75rem 1rem;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    margin-left: auto;
    order: 2;
  }

  .nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
    order: 3;
  }

  .nav.nav-open .nav-links,
  .nav.nav-open .nav-actions {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
    min-height: 44px;
    line-height: 24px;
  }

  .nav.nav-open .nav-actions {
    flex-direction: column;
    padding-bottom: 1rem;
  }

  .nav.nav-open .nav-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .nav-link-download {
    padding: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .trust-bar {
    top: 92px;
    padding: 0.5rem 0.75rem;
  }

  .ticker-wrap {
    margin-top: 128px;
  }

  .trust-bar-inner {
    gap: 1rem;
    justify-content: center;
  }

  .trust-item {
    font-size: 0.7rem;
  }

  .hero {
    flex-direction: column;
    padding: 5rem 1rem 3rem;
    gap: 2rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-stats {
    font-size: 0.85rem;
  }

  .app-badges {
    flex-wrap: wrap;
  }

  .phone-mockup {
    width: 240px;
    height: 440px;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section h2 {
    font-size: 1.75rem;
  }

  .section-subtitle {
    margin-bottom: 2rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tiers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .tier-card {
    padding: 1rem;
  }

  .video-section {
    margin: 1rem;
    border-radius: 16px;
  }

  .chart-section {
    margin-top: 2rem;
    padding: 1.25rem;
  }

  .chart-section h3 {
    font-size: 1.1rem;
  }

  .chart-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .investors-logos {
    gap: 1rem;
  }

  .exzempt-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .header {
    padding: 0.625rem 0.75rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .trust-bar {
    top: 88px;
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .ticker-wrap {
    margin-top: 140px;
  }

  .ticker-item {
    font-size: 0.75rem;
  }

  .hero {
    padding: 4.5rem 0.75rem 2.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-stats {
    font-size: 0.8rem;
    word-break: break-word;
  }

  .phone-mockup {
    width: 200px;
    height: 380px;
  }

  .mock-amount {
    font-size: 2rem;
  }

  .section {
    padding: 2.5rem 0.75rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .chart-container {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .chart-y-axis {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    padding-right: 0;
  }

  .chart-bars {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem;
  }

  .chart-bar-wrap {
    flex: 0 0 52px;
    min-width: 52px;
    max-width: none;
  }

  .chart-bar {
    min-height: 14px;
  }

  .chart-bar-value {
    font-size: 0.65rem;
  }

  .chart-bar-label {
    font-size: 0.7rem;
  }

  .retailers-logos {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .retailer {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .signup-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
    min-height: 48px;
  }

  .footer {
    padding: 2.5rem 0.75rem 1.5rem;
  }

  .footer-main {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-banner {
    flex-direction: column;
    padding: 1rem 0.75rem;
    gap: 0.75rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .cookie-banner .btn {
    width: 100%;
    min-height: 44px;
  }

  .chat-widget {
    bottom: calc(1rem + env(safe-area-inset-bottom));
    right: calc(1rem + env(safe-area-inset-right));
    width: 48px;
    height: 48px;
  }

  .chat-icon {
    font-size: 1.25rem;
  }
}

/* Small mobile & touch */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .press-logos {
    gap: 1rem;
  }

  .press-logo {
    font-size: 0.9rem;
  }

  .investors-logos {
    gap: 0.75rem;
  }

  .investor {
    font-size: 0.85rem;
  }

  .exzempt-card {
    padding: 1.25rem;
  }

  .exzempt-card h2 {
    font-size: 1.5rem;
  }

  .exzempt-incident,
  .exzempt-reviews {
    margin-top: 1.5rem;
  }

  .exzempt-incident {
    padding: 1rem;
  }

  .exzempt-incident p,
  .exzempt-review p {
    font-size: 0.875rem;
  }

  .exzempt-stats {
    flex-direction: column;
  }

  .roast-banner {
    padding-top: max(0.4rem, env(safe-area-inset-top));
  }

  .header {
    padding-top: max(0.625rem, env(safe-area-inset-top));
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}

/* Hide hamburger on desktop */
.nav-toggle {
  display: none;
}
