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

:root {
  --bg:       #09090b;
  --surface:  #111113;
  --card:     #18181b;
  --border:   rgba(255,255,255,0.08);
  --purple:   #8b5cf6;
  --purple-l: #a78bfa;
  --purple-d: #6d28d9;
  --green:    #22c55e;
  --text:     #f4f4f5;
  --muted:    #71717a;
  --radius:   12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 64px;
  background: rgba(9,9,11,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
}

.nav-logo svg { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 14px;
  border-radius: 7px;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-links a.active { color: var(--purple-l); }

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  white-space: nowrap;
  font-family: inherit;
}
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--text); }
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-d); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--purple); color: var(--purple-l); }
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: 10px; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 6% 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(139,92,246,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.page-hero .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero h1 span {
  background: linear-gradient(135deg, var(--purple-l) 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

/* ── SECTIONS ── */
.section { padding: 80px 6%; }
.section.surface { background: var(--surface); }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 12px;
  text-align: center;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 12px;
  text-align: center;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
  text-align: center;
}

/* Override for left-aligned section content (e.g. "Powered by Docker") */
.section-left .section-label,
.section-left .section-title,
.section-left .section-sub {
  text-align: left;
  margin-left: 0;
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-l);
  margin-bottom: 28px;
}
.badge .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(139,92,246,0.35); transform: translateY(-2px); }

/* ── FEATURE GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 28px;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(139,92,246,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--purple-l);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step-num {
  width: 40px; height: 40px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--purple-l);
  margin-bottom: 20px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* ── CODE PREVIEW ── */
.code-preview {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  max-width: 920px;
  width: 100%;
}
.hero .code-preview {
  margin-top: 56px;
}
.code-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.code-bar span { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.code-label { margin-left: 8px; font-size: 12px; color: var(--muted); }
.code-preview pre {
  padding: 20px 24px;
  font-size: 13px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  line-height: 1.8;
  overflow-x: auto;
  text-align: left;
}
.c-muted{color:var(--muted)} .c-green{color:#86efac} .c-purple{color:var(--purple-l)}
.c-yellow{color:#fde68a} .c-white{color:var(--text)}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--purple);
  position: relative;
  background: linear-gradient(160deg, rgba(139,92,246,0.08) 0%, var(--card) 50%);
}
.featured-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-name { font-size: 15px; font-weight: 700; color: var(--muted); }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .amount { font-size: 40px; font-weight: 800; letter-spacing: -1.5px; }
.plan-price .period { font-size: 14px; color: var(--muted); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.plan-features li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.plan-features li.dim { color: var(--muted); }
.plan-features li.dim svg { opacity: 0.3; }

/* ── EU SECTION ── */
.eu-chips { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; justify-content: center; }
.eu-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
}
.eu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.eu-card { padding: 28px; }
.eu-card h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.eu-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.eu-card ul { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.eu-card ul li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.eu-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ── CTA BANNER ── */
.cta-banner {
  text-align: center;
  padding: 100px 6%;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(139,92,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.cta-banner p { color: var(--muted); margin-bottom: 36px; font-size: 1.05rem; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 6%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--text); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testi-card { padding: 28px; }
.testi-stars { color: #fbbf24; font-size: 14px; margin-bottom: 16px; }
.testi-card blockquote { font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.7; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(139,92,246,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--purple-l);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── HERO (index only) ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 6% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(139,92,246,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(139,92,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 820px;
  margin-bottom: 24px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--purple-l) 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero > p { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted); max-width: 540px; margin-bottom: 40px; }
.hero-buttons { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 64px; }
.hero-meta { display: flex; align-items: center; gap: 32px; color: var(--muted); font-size: 13px; flex-wrap: wrap; justify-content: center; }
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 14px; height: 14px; color: var(--green); }

/* ── OVERVIEW TILES (index) ── */
.overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.overview-tile {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tile-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-l);
  flex-shrink: 0;
}
.overview-tile h3 { font-size: 15px; font-weight: 700; }
.overview-tile p { font-size: 13px; color: var(--muted); flex: 1; }
.overview-tile a { font-size: 13px; font-weight: 600; color: var(--purple-l); display: flex; align-items: center; gap: 4px; }
.overview-tile a:hover { text-decoration: underline; }

/* ── FEATURE SPLIT (features page) ── */
.feature-split {
  display: flex;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-split.reverse { flex-direction: row-reverse; }
.feature-split-text { flex: 1; min-width: 280px; }
.feature-split-text > p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.feature-split-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-split-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.feature-split-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--purple-l); flex-shrink: 0; }
.feature-split-visual { flex: 1; min-width: 300px; }

/* ── BENTO GRID (features page) ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.bento-card:hover { border-color: rgba(139,92,246,0.35); transform: translateY(-2px); }
.bento-card.bento-wide { grid-column: span 2; }
.bento-card.bento-featured {
  border-color: rgba(139,92,246,0.3);
  background: linear-gradient(135deg, rgba(139,92,246,0.07) 0%, var(--card) 60%);
}
.bento-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.bento-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── TIMELINE (how-it-works page) ── */
.timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 19px; top: 48px; bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(139,92,246,0.5) 0%, transparent 100%);
}
.timeline-item {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--purple-l);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-content { padding-top: 8px; flex: 1; }
.timeline-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.timeline-content p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── PLAN SPECS (pricing page) ── */
.plan-specs { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.plan-spec {
  font-size: 11px; font-weight: 600;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ── FAQ ACCORDION (pricing page) ── */
.faq-list { display: flex; flex-direction: column; gap: 4px; max-width: 760px; margin: 0 auto; }
details.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
details.faq-item[open] { border-color: rgba(139,92,246,0.4); }
details.faq-item summary {
  padding: 18px 24px;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '';
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2371717a' stroke-width='2'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  transition: transform 0.2s;
}
details.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-answer a { color: var(--purple-l); }

/* ── COUNTRY BADGE (european page) ── */
.country-badge {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  color: var(--purple-l);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* ── MOBILE NAV HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  position: relative;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
  display: block;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--bg);
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139,92,246,0.1) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  padding: 80px 8% 48px;
  transform: translateY(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 0;
}
.mobile-nav-links a {
  font-size: clamp(1.8rem, 8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, padding-left 0.15s;
  display: block;
}
.mobile-nav-links a:first-child { border-top: 1px solid var(--border); }
.mobile-nav-links a:hover { color: var(--text); padding-left: 8px; }
.mobile-nav-links a.active { color: var(--purple-l); }
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 32px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.bento-wide { grid-column: span 1; }
  .feature-split { gap: 40px; }
}
@media (max-width: 680px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .page-hero { padding: 100px 4% 56px; }
  .page-hero h1 { font-size: 2rem; letter-spacing: -0.8px; }
  .section { padding: 56px 4%; }
  .cta-banner { padding: 72px 4%; }
  footer { padding: 40px 4%; flex-direction: column; gap: 28px; }
  .footer-bottom { padding: 20px 4%; }

  /* Pricing: force single column */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }

  /* Feature split: stack vertically */
  .feature-split { flex-direction: column !important; gap: 32px; }
  .feature-split-visual { width: 100%; min-width: 0; }

  /* Code preview: smaller font + horizontal scroll */
  .code-preview pre { font-size: 11.5px; }

  /* Timeline: hide connecting line, reduce gap */
  .timeline::before { display: none; }
  .timeline-item { gap: 16px; padding-bottom: 28px; }

  /* EU chips: centered already via CSS, just reduce gap */
  .eu-chips { gap: 8px; }

  /* Hero meta: wrap */
  .hero-meta { gap: 16px; }

  /* Section title: reduce size */
  .section-title { letter-spacing: -0.4px; }

  /* Bento grid */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.bento-wide { grid-column: span 1; }
}
