/* ============================================
   BIP Messages — Landing Page
   Design system & components
   ============================================ */

:root {
  /* Brand */
  --bip-yellow: #FFC700;
  --bip-yellow-deep: #FFB800;
  --bip-yellow-soft: #FFF3C4;
  --bip-amber: #FF9900;

  /* Belgium accents */
  --be-red: #EF3340;
  --be-black: #0A0A0A;
  --be-cream: #FAF7F2;

  /* Neutrals */
  --ink: #0E0E12;
  --ink-2: #1A1A22;
  --ink-3: #2A2A35;
  --gray-1: #6B7280;
  --gray-2: #9CA3AF;
  --gray-3: #D1D5DB;
  --gray-4: #E5E7EB;
  --gray-5: #F3F4F6;
  --paper: #FFFFFF;

  /* Gradients */
  --grad-warm: linear-gradient(135deg, #FFD93D 0%, #FF9900 50%, #FF4757 100%);
  --grad-cool: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
  --grad-be: linear-gradient(135deg, #FFC700 0%, #FF6B6B 100%);
  --grad-ink: linear-gradient(180deg, #0E0E12 0%, #1A1A22 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(14, 14, 18, 0.06);
  --shadow-md: 0 4px 16px rgba(14, 14, 18, 0.08);
  --shadow-lg: 0 16px 48px rgba(14, 14, 18, 0.12);
  --shadow-xl: 0 32px 80px rgba(14, 14, 18, 0.18);
  --shadow-glow: 0 0 80px rgba(255, 199, 0, 0.4);

  /* Spacing */
  --container: min(1240px, 92vw);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

::selection {
  background: var(--bip-yellow);
  color: var(--ink);
}

/* ============================================
   Typography
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 14px;
  background: var(--bip-yellow-soft);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 100px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--bip-amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

h1, h2, h3, h4 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}

.display {
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: pre-line;
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--gray-1);
  max-width: 60ch;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
  width: var(--container);
  margin: 0 auto;
}

section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-yellow {
  background: var(--bip-yellow);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(255, 199, 0, 0.4);
}

.btn-yellow:hover {
  background: var(--bip-yellow-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 184, 0, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--gray-3);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--gray-5);
}

/* Store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.store-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.store-btn-small {
  font-size: 11px;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

.store-btn-large {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  max-width: 1240px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.hidden {
  transform: translateX(-50%) translateY(-120%);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--grad-warm);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
}

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

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 100px;
  transition: background 0.2s;
}

.nav-links a:hover {
  background: var(--gray-5);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: var(--gray-5);
  border-radius: 100px;
}

.lang-switch a {
  display: block;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-1);
  border-radius: 100px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.lang-switch a.active {
  background: var(--ink);
  color: var(--paper);
}

.nav-cta-btn {
  padding: 9px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-cta-btn:hover {
  background: var(--ink-3);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-burger span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-burger span:nth-child(1) { top: 11px; }
.nav-burger span:nth-child(2) { top: 19px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--be-cream);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 14, 18, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 14, 18, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  animation: blob-drift 18s ease-in-out infinite;
}

.hero-blob-1 {
  width: 520px;
  height: 520px;
  background: var(--bip-yellow);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 460px;
  height: 460px;
  background: var(--be-red);
  bottom: -150px;
  left: -100px;
  opacity: 0.25;
  animation-delay: -6s;
}

.hero-blob-3 {
  width: 360px;
  height: 360px;
  background: #FF9900;
  top: 40%;
  left: 40%;
  opacity: 0.3;
  animation-delay: -12s;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 60px) scale(0.95); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  z-index: 1;
}

.hero-content {
  max-width: 620px;
}

.hero-content .display {
  margin: 24px 0;
}

.hero-content .display .word {
  display: inline-block;
  position: relative;
}

.hero-content .display .accent {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero-content .display .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 12px;
  background: var(--bip-yellow);
  opacity: 0.4;
  z-index: -1;
  border-radius: 4px;
}

.hero-content .lede {
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(14, 14, 18, 0.08);
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--be-cream);
  margin-left: -10px;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--paper);
}

.hero-trust-avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #FF6B6B, #EF3340); }
.hero-trust-avatars span:nth-child(2) { background: linear-gradient(135deg, #FFC700, #FF9900); color: var(--ink); }
.hero-trust-avatars span:nth-child(3) { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.hero-trust-avatars span:nth-child(4) { background: linear-gradient(135deg, #10B981, #059669); }

.hero-trust-text {
  font-size: 13px;
  color: var(--gray-1);
}

.hero-trust-text strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.hero-stars {
  display: flex;
  gap: 1px;
  margin-top: 4px;
}

.hero-stars svg {
  width: 14px;
  height: 14px;
  color: #FFB800;
}

/* Phone mockup */
.hero-visual {
  position: relative;
  height: 640px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: 320px;
  height: 640px;
  background: var(--ink);
  border-radius: 56px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.15),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone:hover {
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFE680 0%, #FFC700 50%, #FF9900 100%);
  border-radius: 44px;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--ink);
  border-radius: 100px;
  z-index: 10;
}

.phone-status {
  position: absolute;
  top: 14px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  z-index: 5;
}

.phone-status-icons {
  display: flex;
  gap: 4px;
}

.phone-content {
  padding: 56px 16px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px 16px;
}

.phone-back {
  font-size: 22px;
  color: var(--ink);
  font-weight: 600;
}

.phone-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #EC4899);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.phone-name {
  flex: 1;
}

.phone-name strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.phone-name span {
  font-size: 12px;
  color: rgba(14, 14, 18, 0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-name span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
}

.phone-call-icons {
  display: flex;
  gap: 8px;
}

.phone-call-icons span {
  width: 32px;
  height: 32px;
  background: rgba(14, 14, 18, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.phone-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  overflow: hidden;
}

.bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.4;
  animation: bubble-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  position: relative;
}

.bubble.in {
  background: white;
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bubble.out {
  background: var(--ink);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.bubble.translated {
  font-size: 11px;
  opacity: 0.7;
  font-style: italic;
  margin-top: 2px;
  padding-top: 6px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.bubble.out .bubble.translated {
  border-color: rgba(255, 255, 255, 0.2);
}

.bubble-meta {
  display: block;
  font-size: 10px;
  opacity: 0.6;
  margin-top: 4px;
  font-weight: 500;
}

.bubble:nth-child(1) { animation-delay: 0.2s; }
.bubble:nth-child(2) { animation-delay: 0.6s; }
.bubble:nth-child(3) { animation-delay: 1.0s; }
.bubble:nth-child(4) { animation-delay: 1.4s; }

.bubble-typing {
  display: flex;
  gap: 4px;
  padding: 14px 16px;
  background: white;
  border-radius: 18px;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bubble-typing span {
  width: 6px;
  height: 6px;
  background: var(--gray-2);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}

.bubble-typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-6px); opacity: 1; }
}

@keyframes bubble-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.phone-input {
  margin: 8px;
  padding: 10px 16px;
  background: white;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.phone-input-send {
  margin-left: auto;
  width: 28px;
  height: 28px;
  background: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--bip-yellow);
}

/* Floating cards around phone */
.float-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.float-card-1 {
  top: 12%;
  left: -8%;
  animation-delay: 0s;
}

.float-card-1 .float-card-icon {
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
}

.float-card-2 {
  top: 50%;
  right: -10%;
  animation-delay: -2s;
}

.float-card-2 .float-card-icon {
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: white;
}

.float-card-3 {
  bottom: 8%;
  left: -4%;
  animation-delay: -4s;
}

.float-card-3 .float-card-icon {
  background: linear-gradient(135deg, #FFC700, #FF9900);
  color: var(--ink);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Stats inline */
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid rgba(14, 14, 18, 0.08);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   FEATURES — Bento grid
   ============================================ */
.features {
  background: var(--paper);
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.features-header .lede {
  text-align: center;
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.bento-cell {
  background: var(--gray-5);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
}

.bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bento-cell h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.bento-cell p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-1);
}

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

/* Cell sizes — 6 cols × 4 rows = 24 cells, all consumed */
.bento { grid-auto-flow: dense; }
.bento-1 { grid-column: span 3; grid-row: span 2; }
.bento-2 { grid-column: span 3; grid-row: span 1; }
.bento-3 { grid-column: span 3; grid-row: span 1; }
.bento-4 { grid-column: span 2; grid-row: span 2; }
.bento-5 { grid-column: span 2; grid-row: span 1; }
.bento-6 { grid-column: span 2; grid-row: span 1; }
.bento-7 { grid-column: span 2; grid-row: span 1; }
.bento-8 { grid-column: span 2; grid-row: span 1; }

/* Cell themes */
.bento-1 {
  background: linear-gradient(135deg, #1A1A22 0%, #0E0E12 100%);
  color: white;
  grid-row: span 2;
}

.bento-1 h3 { color: white; font-size: 32px; }
.bento-1 p { color: rgba(255, 255, 255, 0.7); }

.bento-1-shield {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  opacity: 0.1;
}

.bento-1-shield svg {
  width: 100%;
  height: 100%;
}

.bento-1-lock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 199, 0, 0.15);
  border: 1px solid rgba(255, 199, 0, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bip-yellow);
  width: fit-content;
}

.bento-2 {
  background: linear-gradient(135deg, #FFC700 0%, #FF9900 100%);
  color: var(--ink);
}

.bento-2 .bento-icon {
  background: rgba(14, 14, 18, 0.1);
  color: var(--ink);
}

.bento-3 {
  background: linear-gradient(135deg, #EF3340 0%, #C72C36 100%);
  color: white;
}

.bento-3 h3 { color: white; }
.bento-3 p { color: rgba(255, 255, 255, 0.85); }
.bento-3 .bento-icon {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.bento-translation {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.bento-translation-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
}

.bento-translation-flag {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  flex-shrink: 0;
}

.flag-fr {
  background: linear-gradient(90deg, #002395 33%, white 33%, white 66%, #ED2939 66%);
}

.flag-nl {
  background: linear-gradient(180deg, #AE1C28 33%, white 33%, white 66%, #21468B 66%);
}

.flag-de {
  background: linear-gradient(180deg, #000 33%, #DD0000 33%, #DD0000 66%, #FFCE00 66%);
}

.bento-4 {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  color: white;
  grid-row: span 2;
}

.bento-4 h3 { color: white; }
.bento-4 p { color: rgba(255, 255, 255, 0.8); }
.bento-4 .bento-icon {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.discover-cards {
  position: absolute;
  bottom: -40px;
  right: -20px;
  display: flex;
  gap: 8px;
  transform: rotate(-8deg);
}

.discover-card {
  width: 80px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bento-5 {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: var(--ink);
}

.bento-stickers {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.bento-stickers span {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.bento-stickers span:hover {
  transform: translateY(-4px) rotate(-8deg);
}

.bento-6 {
  background: var(--gray-5);
}

.bento-6 .bento-icon {
  background: var(--ink);
  color: var(--bip-yellow);
}

.bento-signal {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 24px;
  margin-top: 12px;
}

.bento-signal span {
  width: 4px;
  background: var(--ink);
  border-radius: 2px;
  animation: signal 2s ease-in-out infinite;
}

.bento-signal span:nth-child(1) { height: 30%; animation-delay: 0s; }
.bento-signal span:nth-child(2) { height: 50%; animation-delay: 0.2s; }
.bento-signal span:nth-child(3) { height: 70%; animation-delay: 0.4s; }
.bento-signal span:nth-child(4) { height: 100%; animation-delay: 0.6s; }

@keyframes signal {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.bento-7 {
  background: var(--be-cream);
}

.bento-7 .bento-icon {
  background: var(--bip-yellow);
  color: var(--ink);
}

.bento-7 .file-bar {
  height: 6px;
  background: var(--gray-4);
  border-radius: 3px;
  margin-top: 12px;
  overflow: hidden;
}

.bento-7 .file-bar::before {
  content: "";
  display: block;
  height: 100%;
  width: 78%;
  background: var(--grad-warm);
  border-radius: 3px;
}

.bento-8 {
  background: linear-gradient(135deg, #0E0E12 0%, #2A2A35 100%);
  color: white;
}

.bento-8 h3 { color: white; }
.bento-8 p { color: rgba(255, 255, 255, 0.7); }
.bento-8 .bento-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bip-yellow);
}

.bento-timer {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-top: 8px;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   BELGIUM section
   ============================================ */
.belgium {
  background: linear-gradient(180deg, var(--paper) 0%, var(--be-cream) 100%);
  position: relative;
  overflow: hidden;
}

.belgium-flag-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #000 0 33.33%, #FAE042 33.33% 66.66%, #ED2939 66.66% 100%);
}

.belgium-header {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.belgium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.belgium-card {
  background: var(--paper);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.belgium-card:hover {
  border-color: var(--bip-yellow);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 199, 0, 0.15);
}

.belgium-card-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--gray-5);
  line-height: 1;
  letter-spacing: -0.05em;
  transition: color 0.3s;
}

.belgium-card:hover .belgium-card-num {
  color: var(--bip-yellow-soft);
}

.belgium-card-icon {
  width: 56px;
  height: 56px;
  background: var(--ink);
  color: var(--bip-yellow);
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  position: relative;
}

.belgium-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
}

.belgium-card p {
  color: var(--gray-1);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}

/* ============================================
   PRIVACY section
   ============================================ */
.privacy {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}

.privacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 199, 0, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(239, 51, 64, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.privacy-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.privacy-content .eyebrow {
  background: rgba(255, 199, 0, 0.1);
  color: var(--bip-yellow);
  border-color: rgba(255, 199, 0, 0.3);
}

.privacy-content .section-title {
  color: white;
  margin: 24px 0 32px;
}

.privacy-content p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.privacy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--bip-yellow);
  font-weight: 600;
  font-size: 16px;
  transition: gap 0.3s;
}

.privacy-link:hover {
  gap: 14px;
}

.privacy-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.privacy-check {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}

.privacy-check:hover {
  background: rgba(255, 199, 0, 0.06);
  border-color: rgba(255, 199, 0, 0.3);
}

.privacy-check-icon {
  width: 44px;
  height: 44px;
  background: var(--bip-yellow);
  color: var(--ink);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.privacy-check h4 {
  color: white;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================
   DOWNLOAD CTA
   ============================================ */
.download {
  background: var(--bip-yellow);
  position: relative;
  overflow: hidden;
}

.download::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(14, 14, 18, 0.15) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  pointer-events: none;
}

.download-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.download .section-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: pre-line;
}

.download .lede {
  color: rgba(14, 14, 18, 0.7);
  text-align: center;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

.download-qr {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(14, 14, 18, 0.06);
  border-radius: 16px;
  font-size: 14px;
}

.download-qr-img {
  width: 64px;
  height: 64px;
  background: var(--ink);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--bip-yellow);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: white;
  padding: 80px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .nav-logo {
  color: white;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-stores {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-stores .store-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: auto;
  padding: 12px 18px;
}

.footer-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--bip-yellow);
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.footer-legal-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-legal-info strong {
  color: rgba(255, 255, 255, 0.8);
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
}

.footer-copyright span {
  display: block;
  font-size: 11px;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal {
  padding: 140px 0 80px;
  background: var(--be-cream);
  min-height: 100vh;
  position: relative;
}

.legal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 14, 18, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 14, 18, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 40% at 50% 0%, black 30%, transparent 80%);
  pointer-events: none;
}

.legal-inner {
  position: relative;
  max-width: 820px;
  width: 92vw;
}

.legal-header {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-4);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-1);
  margin-bottom: 24px;
  transition: color 0.2s, gap 0.2s;
}

.legal-back:hover {
  color: var(--ink);
  gap: 10px;
}

.legal-header .eyebrow {
  margin-bottom: 16px;
}

.legal-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
}

.legal-updated {
  font-size: 14px;
  color: var(--gray-1);
  font-weight: 500;
}

.legal-content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}

.legal-content .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 32px;
  padding: 24px 28px;
  background: rgba(255, 199, 0, 0.08);
  border-left: 4px solid var(--bip-yellow);
  border-radius: 4px 16px 16px 4px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  color: var(--ink);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--ink);
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--bip-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.legal-content a:hover {
  text-decoration-color: var(--ink);
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 24px;
}

.legal-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  background: var(--bip-yellow);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px white;
}

.legal-content strong {
  color: var(--ink);
  font-weight: 700;
}

.legal-card {
  background: white;
  border: 1px solid var(--gray-4);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 24px 0 32px;
}

.legal-card dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px 24px;
}

.legal-card dt {
  font-weight: 600;
  color: var(--gray-1);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-card dd {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.legal-card dd a {
  text-decoration-color: var(--bip-yellow);
}

/* Cookie table */
.legal-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 32px;
  background: white;
  border: 1px solid var(--gray-4);
  border-radius: 16px;
  overflow: hidden;
  font-size: 14px;
}

.legal-table thead {
  background: var(--gray-5);
}

.legal-table th {
  text-align: left;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-1);
  border-bottom: 1px solid var(--gray-4);
}

.legal-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--gray-5);
  vertical-align: middle;
}

.legal-table tbody tr:last-child td {
  border-bottom: none;
}

.legal-table code {
  background: var(--ink);
  color: var(--bip-yellow);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', 'Menlo', monospace;
  font-size: 12px;
  font-weight: 600;
}

.cook-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cook-tag-essential {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.cook-tag-marketing {
  background: rgba(239, 68, 68, 0.1);
  color: #B91C1C;
}

@media (max-width: 720px) {
  .legal { padding: 120px 0 60px; }
  .legal-card dl { grid-template-columns: 1fr; gap: 4px; }
  .legal-card dt { margin-top: 12px; font-size: 12px; }
  .legal-card dt:first-child { margin-top: 0; }
  .legal-table { font-size: 12px; }
  .legal-table th, .legal-table td { padding: 10px 12px; }
}

/* ============================================
   Reveal on scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-content .lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { transform: scale(0.9); }
  .float-card-1 { left: -2%; }
  .float-card-2 { right: -2%; }
  .privacy-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-legal { grid-template-columns: 1fr; }
  .footer-copyright { text-align: left; }
}

@media (max-width: 760px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .belgium-grid { grid-template-columns: 1fr; }
  .privacy-checks { grid-template-columns: 1fr; }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .bento-cell {
    grid-column: span 2;
    grid-row: auto;
    min-height: 220px;
  }
}

@media (max-width: 540px) {
  .nav { padding: 8px 12px; }
  .nav-cta-btn { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .store-btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .download-buttons { flex-direction: column; width: 100%; }
  .download-buttons .store-btn { width: 100%; justify-content: center; }
}
