/* === FONTS === */
/* Bebas Neue: condensed industrial display */
/* DM Sans: clean, readable body */

/* === TOKENS === */
:root {
  --bg-primary: #0f1117;
  --bg-secondary: #161921;
  --bg-card: #1c2030;
  --accent: #ff6b00;
  --accent-dim: #ff6b0033;
  --accent-2: #ffaa00;
  --slate-dark: #2a2d3a;
  --slate-mid: #3d4156;
  --text-primary: #f0f0f0;
  --text-secondary: #8a8fa3;
  --text-muted: #5a5e73;
  --border: #2a2d3a;

  --can-1: #0044cc;
  --can-2: #8b0000;
  --can-3: #006633;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, #1a2540 0%, #0f1117 60%);
  z-index: 0;
}
.hero-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--slate-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--slate-dark) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.15;
}
.hero-bg__slab {
  position: absolute;
  background: var(--accent);
  opacity: 0.04;
}
.slab-1 {
  width: 400px; height: 900px;
  top: -200px; right: 10%;
  transform: skewX(-15deg);
  border-radius: 4px;
}
.slab-2 {
  width: 200px; height: 600px;
  top: 0; right: 25%;
  transform: skewX(-15deg);
  background: var(--accent-2);
  opacity: 0.03;
}
.slab-3 {
  width: 600px; height: 80px;
  bottom: 30%; right: 0;
  transform: skewX(-10deg);
  background: var(--accent);
  opacity: 0.06;
  border-radius: 2px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 60px 80px 60px;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(96px, 14vw, 160px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 28px;
}

.hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: var(--accent);
  margin-top: 24px;
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 40px;
}

.hero-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border: 1px solid var(--slate-dark);
  padding: 8px 18px;
  border-radius: 2px;
  display: inline-block;
}

/* === CAN ILLUSTRATION === */
.hero-can-wrap {
  position: absolute;
  right: 60px;
  bottom: 10%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.can-body {
  width: 120px;
  height: 280px;
  background: linear-gradient(135deg, #111827 0%, #0a1020 100%);
  border-radius: 18px / 10px;
  border: 2px solid var(--slate-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 60px rgba(255, 107, 0, 0.15), inset 0 0 30px rgba(0,0,0,0.5);
}
.can-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24px;
  background: linear-gradient(180deg, #e0e0e0 0%, #a0a0a0 50%, #c0c0c0 100%);
  border-radius: 18px 18px 0 0 / 10px 10px 0 0;
}

.can-label {
  padding: 20px 16px;
  text-align: center;
  background: linear-gradient(180deg, #003399 0%, #001a66 100%);
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}

.can-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: #fff;
}
.can-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.can-detail {
  font-size: 8px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.can-glow {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  position: absolute;
  bottom: -40px;
  pointer-events: none;
}

/* === PHILOSOPHY === */
.philosophy {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.philosophy-inner { max-width: 1100px; margin: 0 auto; }
.philosophy-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 16px;
}
.philosophy-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 60px;
  max-width: 640px;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.philosophy-card {
  background: var(--bg-card);
  padding: 40px 32px;
}
.philosophy-card--active {
  background: #1a1f2e;
  border-left: 3px solid var(--accent);
}
.philosophy-card__icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.philosophy-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: #fff;
}
.philosophy-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* === FLAVORS === */
.flavors { padding: 100px 60px; background: var(--bg-primary); }
.flavors-inner { max-width: 1100px; margin: 0 auto; }
.flavors-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 16px;
}
.flavors-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 64px;
}
.flavors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.flavor-card { display: flex; flex-direction: column; gap: 20px; }

.flavor-card__can {
  height: 220px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.flavor-can-1 {
  background: linear-gradient(135deg, #003399 0%, #0055cc 50%, #0077ee 100%);
}
.flavor-can-2 {
  background: linear-gradient(135deg, #8b0000 0%, #aa2200 50%, #cc4400 100%);
}
.flavor-can-3 {
  background: linear-gradient(135deg, #003322 0%, #005533 50%, #007744 100%);
}

.flavor-can-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.flavor-can-top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.flavor-can-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.flavor-can-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.flavor-card__info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: #fff;
}
.flavor-card__info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.manifesto-bg-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--accent);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.manifesto-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--text-muted);
  line-height: 1;
  flex-shrink: 0;
}
.manifesto-content { flex: 1; }
.manifesto-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.manifesto-body {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.manifesto-attribution {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}
.manifesto-line {
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* === FORMULA === */
.formula { padding: 100px 60px; background: var(--bg-primary); }
.formula-inner { max-width: 1100px; margin: 0 auto; }
.formula-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 16px;
}
.formula-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 64px;
}
.formula-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.formula-stat { padding: 0 32px; }
.formula-stat__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.formula-stat__number span {
  font-size: 28px;
  color: var(--text-secondary);
}
.formula-stat__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 8px;
}
.formula-stat__sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 140px;
}
.formula-divider {
  width: 1px;
  background: var(--border);
  height: 120px;
  align-self: center;
}

/* === CLOSING === */
.closing {
  padding: 120px 60px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-bg-shape {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
}
.closing-body {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.closing-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  background: var(--bg-primary);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}
.footer-meta { text-align: right; }
.footer-meta p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.footer-disclaimer { margin-top: 4px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { min-height: auto; padding: 100px 24px 60px; flex-direction: column; }
  .hero-inner { max-width: 100%; padding: 0; }
  .hero-can-wrap { position: relative; right: auto; bottom: auto; margin-top: 40px; }
  .hero-title { font-size: 80px; }

  .philosophy { padding: 64px 24px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-card--active { border-left: none; border-top: 3px solid var(--accent); }

  .flavors { padding: 64px 24px; }
  .flavors-grid { grid-template-columns: 1fr; gap: 40px; }

  .manifesto { padding: 64px 24px; }
  .manifesto-inner { flex-direction: column; gap: 24px; }
  .manifesto-number { font-size: 48px; }

  .formula { padding: 64px 24px; }
  .formula-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .formula-divider { display: none; }
  .formula-stat { padding: 0; }

  .closing { padding: 80px 24px; }

  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 480px) {
  .formula-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 64px; }
}