/* =========================================================
   ALPHA DISTRIBUTION — ELFBAR BALTICS
   Apple-inspired design system
   ========================================================= */

:root {
  --bg: #000000;
  --bg-soft: #0b0b0d;
  --surface: #111114;
  --surface-2: #1a1a1f;
  --text: #f5f5f7;
  --text-dim: #a1a1a6;
  --text-muted: #6e6e73;
  --accent: #2997ff;
  --accent-2: #ff375f;
  --accent-3: #bf5af2;
  --line: rgba(255,255,255,0.08);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ff: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
        "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  line-height: 1.47;
  font-weight: 400;
  letter-spacing: -0.003em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; background: rgba(0,0,0,.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 24px; animation: fadeIn .4s var(--ease);
}
.age-gate.hidden { display: none; }
.age-card {
  max-width: 480px; width: 100%; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 44px 36px; text-align: center;
}
.age-card h2 { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; }
.age-card p { color: var(--text-dim); font-size: 15px; margin-bottom: 28px; }
.age-card .age-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 980px;
  font-size: 15px; font-weight: 500;
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #0a84ff; color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--text); color: var(--text); }
.btn-link { color: var(--accent); padding: 0; font-size: 15px; }
.btn-link:hover { text-decoration: underline; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px; height: 52px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; font-size: 17px; }
.nav-brand .mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 12px;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--text-dim); }
.nav-links a:hover { color: var(--text); }
.nav-lang { display: flex; gap: 10px; font-size: 12px; color: var(--text-muted); }
.nav-lang a.active { color: var(--text); }
.nav-toggle { display: none; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; font-size: 13px; color: var(--text-dim); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 22px 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%, rgba(41,151,255,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(191,90,242,0.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255,55,95,0.12), transparent 60%),
    #000;
}
.hero .eyebrow {
  font-size: 13px; color: var(--accent); font-weight: 500;
  letter-spacing: 0.02em; margin-bottom: 14px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.05;
  max-width: 12ch; margin: 0 auto;
  background: linear-gradient(180deg, #fff 0%, #c7c7cc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .sub {
  font-size: clamp(18px, 2.2vw, 24px); color: var(--text-dim);
  max-width: 620px; margin: 22px auto 0; font-weight: 400;
}
.hero .cta-row { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .device-stage {
  margin-top: 56px; position: relative; width: min(420px, 80vw); aspect-ratio: 1;
}

/* CSS-only device render (placeholder) */
.device {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.device .pod {
  width: 42%; height: 88%;
  border-radius: 40px;
  background:
    linear-gradient(165deg, rgba(255,255,255,.12), rgba(255,255,255,0) 40%),
    linear-gradient(180deg, #2a2a30 0%, #0e0e12 100%);
  box-shadow:
    0 30px 80px rgba(41,151,255,0.25),
    inset 0 2px 0 rgba(255,255,255,0.15),
    inset 0 -2px 0 rgba(0,0,0,0.6);
  position: relative;
}
.device .pod::before {
  content: ""; position: absolute; top: 14%; left: 50%; transform: translateX(-50%);
  width: 48%; height: 46%; border-radius: 18px;
  background: linear-gradient(180deg, rgba(41,151,255,0.6), rgba(191,90,242,0.55));
  filter: blur(0.5px);
  box-shadow: 0 0 40px rgba(41,151,255,0.5);
}
.device .pod::after {
  content: ""; position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle, #3a3a40, #111);
}

/* ---------- Section scaffolding ---------- */
section { padding: 120px 22px; }
.container { max-width: 1080px; margin: 0 auto; }
.narrow { max-width: 780px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 72px; }
.section-head .eyebrow { color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; font-weight: 500; }
.section-head h2 {
  font-size: clamp(34px, 5vw, 56px); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.08; max-width: 18ch; margin: 0 auto;
}
.section-head p {
  color: var(--text-dim); font-size: 19px; max-width: 58ch; margin: 18px auto 0;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}
.feature {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative; overflow: hidden;
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--line);
}
.feature.span-7 { grid-column: span 7; }
.feature.span-5 { grid-column: span 5; }
.feature.span-6 { grid-column: span 6; }
.feature.span-12 { grid-column: span 12; min-height: 460px; }
.feature h3 {
  font-size: 28px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 10px;
}
.feature p { color: var(--text-dim); font-size: 16px; max-width: 44ch; }
.feature .tag { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; font-weight: 500; }

.feature .glow-a {
  position: absolute; top: -80px; right: -80px; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(41,151,255,0.35), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.feature .glow-b {
  position: absolute; top: -60px; left: -60px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,55,95,0.3), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.feature .glow-c {
  position: absolute; bottom: -80px; right: -40px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(191,90,242,0.3), transparent 70%);
  filter: blur(20px); pointer-events: none;
}

@media (max-width: 820px) {
  .feature.span-7, .feature.span-5, .feature.span-6, .feature.span-12 {
    grid-column: span 12;
  }
  section { padding: 80px 18px; }
  .feature { padding: 32px; min-height: 320px; }
}

/* ---------- Product cards ---------- */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.product-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.product-card .badge {
  font-size: 11px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px; font-weight: 600;
}
.product-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.product-card .puffs { color: var(--text-dim); font-size: 13px; margin-bottom: 22px; }
.product-card .visual {
  width: 120px; height: 180px; border-radius: 30px;
  position: relative; margin-bottom: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.product-card .visual::before {
  content: ""; position: absolute; top: 12%; left: 50%; transform: translateX(-50%);
  width: 55%; height: 40%; border-radius: 12px;
  background: rgba(255,255,255,0.22);
  filter: blur(0.5px);
}
.product-card .visual::after {
  content: ""; position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(0,0,0,0.55);
}
.product-card .specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
  width: 100%; border-top: 1px solid var(--line); padding-top: 16px;
  font-size: 13px;
}
.product-card .specs dt { color: var(--text-muted); }
.product-card .specs dd { color: var(--text); font-weight: 500; }

/* Color variations for CSS visuals */
.visual.c-blue    { background: linear-gradient(160deg, #2997ff, #0a3d80); }
.visual.c-purple  { background: linear-gradient(160deg, #bf5af2, #4a1972); }
.visual.c-pink    { background: linear-gradient(160deg, #ff375f, #7a0e28); }
.visual.c-mint    { background: linear-gradient(160deg, #30d158, #0d5827); }
.visual.c-amber   { background: linear-gradient(160deg, #ffb340, #8a5a0e); }
.visual.c-teal    { background: linear-gradient(160deg, #64d2ff, #0f5d7a); }
.visual.c-grape   { background: linear-gradient(160deg, #9f5bff, #3a2290); }
.visual.c-coral   { background: linear-gradient(160deg, #ff9f0a, #b3440e); }
.visual.c-silver  { background: linear-gradient(160deg, #d1d1d6, #3a3a3c); }
.visual.c-graphite{ background: linear-gradient(160deg, #48484a, #0a0a0c); }

/* ---------- Flavors ---------- */
.flavor-wrap { margin-top: 28px; }
.flavor-title { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.flavor-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip {
  font-size: 12px; padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: var(--text-dim);
  border: 1px solid var(--line);
}

/* ---------- Tech strip ---------- */
.tech-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center;
}
.tech-strip .stat { padding: 8px; }
.tech-strip .num {
  font-size: clamp(32px, 4vw, 48px); font-weight: 600; letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff, #8e8e93);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tech-strip .label { color: var(--text-dim); font-size: 14px; margin-top: 4px; }
@media (max-width: 700px) {
  .tech-strip { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 32px 0; }
}

/* ---------- Compliance banner ---------- */
.compliance {
  background: linear-gradient(180deg, #1a0f14, #0d0608);
  border-top: 1px solid rgba(255,55,95,0.25);
  border-bottom: 1px solid rgba(255,55,95,0.25);
  padding: 28px 22px; text-align: center;
}
.compliance strong { color: var(--accent-2); }
.compliance p { color: var(--text-dim); font-size: 14px; max-width: 60ch; margin: 0 auto; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 44px;
  max-width: 640px; margin: 0 auto;
}
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
label { display: block; font-size: 13px; color: var(--text-dim); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px; color: var(--text);
  font-family: inherit; font-size: 15px; transition: border-color .2s var(--ease);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 24px; display: flex; gap: 12px; justify-content: flex-end; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer {
  background: #000; border-top: 1px solid var(--line);
  padding: 64px 22px 32px; color: var(--text-muted); font-size: 13px;
}
.footer .container { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 32px; }
.footer h4 { color: var(--text); font-size: 13px; font-weight: 600; margin-bottom: 14px; letter-spacing: -0.005em; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--text); }
.footer .brand-block p { margin-top: 10px; max-width: 34ch; line-height: 1.55; }
.footer-bottom {
  max-width: 1080px; margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 820px) {
  .footer .container { grid-template-columns: 1fr 1fr; }
}

/* ---------- Utility ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =========================================================
   ALPHA DISTRIBUTION — MAIN BRAND STYLES
   Premium international distributor — Riga · Latvia
   ========================================================= */

:root {
  --alpha-gold: #e6c17a;
  --alpha-gold-2: #c89a48;
  --alpha-ice: #d4dce4;
  --alpha-deep: #050506;
  --alpha-surface: #0e0e11;
  --alpha-surface-2: #17171b;
  --alpha-line: rgba(230, 193, 122, 0.12);
  --alpha-line-cool: rgba(255, 255, 255, 0.08);
}

body.alpha { background: var(--alpha-deep); }

/* Nav override for Alpha theme */
.alpha-nav {
  background: rgba(5, 5, 6, 0.78);
  border-bottom: 1px solid var(--alpha-line-cool);
}
.alpha-brand { letter-spacing: -0.005em; font-weight: 600; font-size: 16px; }
.alpha-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, #1a1a1e, #0a0a0c);
  border: 1px solid rgba(230, 193, 122, 0.35);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 18px rgba(230, 193, 122, 0.12);
}
.alpha-nav .nav-links a:hover { color: var(--alpha-gold); }
.alpha-nav .nav-lang a.active { color: var(--alpha-gold); }

.alpha-eyebrow { color: var(--alpha-gold) !important; }
.alpha-eyebrow-gold {
  color: var(--alpha-gold) !important;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500;
  margin-bottom: 14px;
}

.alpha-btn { background: linear-gradient(180deg, var(--alpha-gold), var(--alpha-gold-2)); color: #1a1207 !important; }
.alpha-btn:hover { background: linear-gradient(180deg, #f0cf8d, #d2a555); color: #1a1207 !important; }

/* ---------- Alpha Hero ---------- */
.alpha-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 22px 80px;
  overflow: hidden;
}
.alpha-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(230, 193, 122, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(100, 150, 200, 0.08), transparent 60%),
    linear-gradient(180deg, #0a0a0c 0%, #050506 60%, #0a0a0c 100%);
}
.alpha-hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.alpha-hero-inner { position: relative; z-index: 1; max-width: 960px; }
.alpha-hero h1 {
  font-size: clamp(42px, 7.2vw, 96px);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.02;
  max-width: 16ch; margin: 0 auto;
  background: linear-gradient(180deg, #fff 0%, #d4dce4 60%, var(--alpha-gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.alpha-hero .sub {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--text-dim);
  max-width: 640px; margin: 24px auto 0;
}
.alpha-hero .cta-row { margin-top: 44px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.alpha-hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.3em; color: var(--text-muted);
  text-transform: uppercase;
}
.alpha-hero-scroll::after {
  content: ""; display: block; width: 1px; height: 32px;
  margin: 10px auto 0;
  background: linear-gradient(180deg, var(--text-muted), transparent);
}

/* ---------- Alpha Stats ---------- */
.alpha-stats-section { padding: 40px 22px 20px; }
.alpha-stats {
  border-color: var(--alpha-line) !important;
}
.alpha-stats .num {
  background: linear-gradient(180deg, #fff 0%, var(--alpha-gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.alpha-stats .pct { font-size: 0.5em; vertical-align: super; margin-left: 2px; }

/* ---------- Brand tiles ---------- */
.alpha-brands { padding: 120px 22px; }
.brand-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.brand-tile {
  position: relative; overflow: hidden;
  border-radius: 28px; padding: 56px 48px;
  min-height: 440px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--alpha-line-cool);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  text-decoration: none;
}
.brand-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 193, 122, 0.4);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.brand-bg { position: absolute; inset: 0; z-index: 0; }
.brand-content { position: relative; z-index: 1; }
.brand-status {
  display: inline-block;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--alpha-gold);
  background: rgba(230, 193, 122, 0.08);
  border: 1px solid rgba(230, 193, 122, 0.25);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 28px;
}
.brand-logo {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 20px; color: #fff;
}
.brand-desc {
  color: var(--text-dim); font-size: 16px; line-height: 1.55;
  max-width: 38ch; margin-bottom: 28px;
}
.brand-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--alpha-gold); font-weight: 500; font-size: 15px;
}
.brand-cta .arrow {
  display: inline-block; transition: transform .3s var(--ease);
}
.brand-tile:hover .brand-cta .arrow { transform: translateX(4px); }

.brand-elfbar .brand-bg {
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(41, 151, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 90%, rgba(191, 90, 242, 0.15), transparent 60%),
    linear-gradient(160deg, #0b1220 0%, #050506 60%);
}
.brand-logo-elfbar {
  background: linear-gradient(180deg, #fff 0%, #64d2ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-xbooster .brand-bg {
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 90, 50, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(230, 193, 122, 0.1), transparent 60%),
    linear-gradient(160deg, #1a0a05 0%, #050506 60%);
}
.brand-logo-xbooster {
  background: linear-gradient(180deg, #fff 0%, #ff8754 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

@media (max-width: 820px) {
  .brand-grid { grid-template-columns: 1fr; }
  .brand-tile { padding: 44px 32px; min-height: 380px; }
}

/* ---------- Story ---------- */
.alpha-story {
  padding: 140px 22px;
  background: linear-gradient(180deg, #050506 0%, #0b0b0e 100%);
}
.story-layout {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
}
.story-text h2 {
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.08;
  margin-bottom: 24px; max-width: 16ch;
  background: linear-gradient(180deg, #fff 0%, #c7c7cc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.story-text .lead {
  font-size: 20px; color: var(--text); font-weight: 400; line-height: 1.5;
  margin-bottom: 20px;
}
.story-text p {
  color: var(--text-dim); font-size: 16px; line-height: 1.65;
  margin-bottom: 16px; max-width: 56ch;
}
.story-visual {
  display: grid; gap: 16px;
  position: relative;
}
.story-card {
  background: linear-gradient(160deg, rgba(230,193,122,0.08), rgba(230,193,122,0.02));
  border: 1px solid rgba(230, 193, 122, 0.18);
  border-radius: 20px; padding: 28px 32px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.story-card:hover { transform: translateX(6px); border-color: rgba(230, 193, 122, 0.4); }
.story-card-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--alpha-gold); margin-bottom: 8px; font-weight: 500;
}
.story-card-value {
  font-size: 28px; font-weight: 600; letter-spacing: -0.02em;
  color: #fff;
}
.story-card-2 { margin-left: 32px; }
.story-card-3 { margin-left: 64px; }

@media (max-width: 900px) {
  .story-layout { grid-template-columns: 1fr; gap: 48px; }
  .story-card-2, .story-card-3 { margin-left: 0; }
}

/* ---------- Warehouse ---------- */
.alpha-warehouse { padding: 140px 22px; }
.warehouse-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
.warehouse-card {
  position: relative; overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--alpha-line-cool);
  background: var(--alpha-surface);
  aspect-ratio: 4 / 3;
  transition: transform .4s var(--ease);
}
.warehouse-card:hover { transform: translateY(-4px); }
.warehouse-card-lg { grid-column: span 3; aspect-ratio: 16 / 10; }
.warehouse-card:not(.warehouse-card-lg) { grid-column: span 2; }
.warehouse-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(0.9) contrast(1.05) brightness(0.85);
  transition: transform .6s var(--ease);
}
.warehouse-card:hover .warehouse-img { transform: scale(1.05); }

.wh-img-1 { background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=80&auto=format&fit=crop"); }
.wh-img-2 { background-image: url("https://images.unsplash.com/photo-1601598851547-4302969d0614?w=900&q=80&auto=format&fit=crop"); }
.wh-img-3 { background-image: url("https://images.unsplash.com/photo-1553413077-190dd305871c?w=900&q=80&auto=format&fit=crop"); }
.wh-img-4 { background-image: url("https://images.unsplash.com/photo-1606857521015-7f9fcf423740?w=900&q=80&auto=format&fit=crop"); }

.warehouse-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  z-index: 1;
}
.wc-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.wc-sub { font-size: 13px; color: var(--text-dim); }

@media (max-width: 900px) {
  .warehouse-grid { grid-template-columns: 1fr 1fr; }
  .warehouse-card-lg, .warehouse-card:not(.warehouse-card-lg) { grid-column: span 2; }
  .warehouse-card-lg { aspect-ratio: 4 / 3; }
}
@media (max-width: 560px) {
  .warehouse-grid { grid-template-columns: 1fr; }
  .warehouse-card-lg, .warehouse-card:not(.warehouse-card-lg) { grid-column: span 1; }
}

/* ---------- Coverage ---------- */
.alpha-coverage {
  padding: 140px 22px;
  background: linear-gradient(180deg, #0b0b0e 0%, #050506 100%);
}
.coverage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.coverage-card {
  background: var(--alpha-surface);
  border: 1px solid var(--alpha-line-cool);
  border-radius: 22px; padding: 36px 32px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.coverage-card:hover { transform: translateY(-4px); border-color: rgba(230,193,122,0.3); }
.coverage-flag {
  width: 56px; height: 40px; border-radius: 6px;
  overflow: hidden; margin-bottom: 24px;
  border: 1px solid var(--alpha-line-cool);
}
.flag-lv, .flag-lt, .flag-ee { display: block; width: 100%; height: 100%; }
.flag-lv {
  background: linear-gradient(180deg, #9e3039 0 40%, #fff 40% 60%, #9e3039 60%);
}
.flag-lt {
  background: linear-gradient(180deg, #fdb913 0 33.3%, #006a44 33.3% 66.6%, #c1272d 66.6%);
}
.flag-ee {
  background: linear-gradient(180deg, #0072ce 0 33.3%, #000 33.3% 66.6%, #fff 66.6%);
}
.coverage-card h3 {
  font-size: 24px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 10px;
}
.coverage-card p { color: var(--text-dim); font-size: 15px; line-height: 1.6; }

@media (max-width: 820px) {
  .coverage-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.alpha-contact {
  padding: 140px 22px 120px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(230,193,122,0.08), transparent 70%),
    #050506;
}
.alpha-contact-h2 {
  font-size: clamp(34px, 5vw, 56px); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.08;
  margin-bottom: 18px; max-width: 20ch; margin-left: auto; margin-right: auto;
  background: linear-gradient(180deg, #fff 0%, var(--alpha-gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.alpha-contact-sub {
  color: var(--text-dim); font-size: 18px; margin-bottom: 48px;
}
.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 820px; margin: 0 auto;
}
.contact-card {
  background: var(--alpha-surface);
  border: 1px solid var(--alpha-line-cool);
  border-radius: 18px; padding: 28px 24px;
  text-align: left;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  text-decoration: none;
}
a.contact-card:hover {
  border-color: rgba(230,193,122,0.4);
  transform: translateY(-3px);
  color: inherit;
}
.cc-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--alpha-gold); font-weight: 500; margin-bottom: 10px;
}
.cc-value {
  font-size: 17px; font-weight: 500; color: #fff; letter-spacing: -0.005em;
  word-break: break-word;
}
@media (max-width: 820px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ---------- Alpha Footer ---------- */
.alpha-footer { background: #030304; }
.alpha-footer .alpha-brand { color: #fff; font-weight: 600; font-size: 16px; }

