/* ==========================================
   BUCKSHOT — Landing Page Stylesheet
   ========================================== */

:root {
  --bg: #111110;
  --bg-alt: #1a1918;
  --fg: #f7f4ee;
  --fg-muted: #9a9590;
  --accent: #c85a32;
  --accent-dim: rgba(200, 90, 50, 0.15);
  --border: rgba(247, 244, 238, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  mix-blend-mode: difference;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--fg);
}

.nav-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 2px;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(200, 90, 50, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--fg);
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
}

/* ---- Bottle Illustration ---- */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hero-bottle-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottle-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 90, 50, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.bottle-silhouette {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bottle-neck {
  width: 28px;
  height: 36px;
  background: linear-gradient(180deg, #2a2826 0%, #1a1918 100%);
  border: 1px solid rgba(247, 244, 238, 0.12);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  position: relative;
}

.bottle-cap {
  width: 24px;
  height: 14px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
}

.bottle-body {
  width: 90px;
  height: 180px;
  background: linear-gradient(135deg, #2e2c2a 0%, #1a1918 60%, #141312 100%);
  border: 1px solid rgba(247, 244, 238, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bottle-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bottle-label-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--fg);
  border: 1px solid var(--accent);
  padding: 6px 10px;
  border-radius: 2px;
}

.bottle-label-sub {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.4;
}

.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  width: 100%;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Section Label ---- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ---- Proof Section ---- */
.proof {
  background: var(--bg-alt);
  padding: 100px 48px;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proof-quote {
  margin-bottom: 80px;
  max-width: 700px;
}

.proof-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 16px;
}

.proof-quote cite {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.proof-item {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.proof-item:hover {
  border-color: rgba(200, 90, 50, 0.3);
}

.proof-icon {
  display: block;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.proof-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--fg);
}

.proof-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- Model Section ---- */
.model {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.model-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.model-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.model-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
}

.model-flow {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.flow-step {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.flow-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.flow-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--fg);
}

.flow-step p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.flow-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ---- Manifesto ---- */
.manifesto {
  background: var(--bg-alt);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: start;
}

.manifesto-text {
  max-width: 600px;
}

.manifesto-lead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 28px;
}

.manifesto-text p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.manifesto-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--accent-dim);
  min-width: 200px;
  text-align: center;
}

.callout-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.callout-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ---- Closing ---- */
.closing {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--fg);
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 64px;
}

.closing-pledge {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.pledge-bar {
  flex: 1;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.pledge-text {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-align: center;
  flex-shrink: 0;
  max-width: 400px;
  line-height: 1.5;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

.footer-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.footer-legal p {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .proof { padding: 60px 24px; }
  .proof-grid { grid-template-columns: 1fr; gap: 24px; }
  .model { padding: 60px 24px; }
  .model-flow { flex-direction: column; gap: 16px; }
  .flow-arrow { transform: rotate(90deg); }
  .manifesto { padding: 60px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-callout { align-self: center; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.6rem; }
  .closing-headline { font-size: 1.8rem; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.6rem; }
}