/* --- Variables --- */
:root {
  --bg: #0F0F0F;
  --bg-2: #1A1A1A;
  --bg-card: #222222;
  --fg: #E8E4D9;
  --fg-muted: #8A8780;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(232, 228, 217, 0.1);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Libre Franklin', 'Arial', sans-serif;

  --max-w: 1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --section-pad: clamp(4rem, 10vw, 8rem);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.nav__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 var(--gutter);
  padding-top: 5rem;
  align-items: center;
}
.hero__left { padding: var(--section-pad) 0; padding-right: clamp(2rem, 5vw, 4rem); }
.hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero__divider {
  width: 48px; height: 2px;
  background: var(--accent);
  margin-bottom: 2rem;
}
.hero__body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; gap: 0.25rem; }
.hero__stat-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--fg);
}
.hero__stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  max-width: 120px;
  line-height: 1.4;
}
.hero__right {
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__visual {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__shape {
  position: absolute;
  border-radius: 12px;
}
.hero__shape--1 {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1E1E1E 0%, #141414 100%);
  border: 1px solid var(--border);
}
.hero__shape--2 {
  width: 78%;
  height: 78%;
  background: linear-gradient(135deg, #242424 0%, #1A1A1A 100%);
  border: 1px solid var(--border);
}
.hero__shape--3 {
  width: 54%;
  height: 54%;
  background: linear-gradient(125deg, #2C2C2C 0%, #1C1C1C 100%);
  border: 1px solid var(--border);
}
.hero__badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.hero__badge-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  text-align: center;
  line-height: 1.1;
}

/* --- Manifesto --- */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-pad) var(--gutter);
}
.manifesto__inner { max-width: 760px; }
.manifesto__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.manifesto__statement {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.65;
  color: var(--fg);
  font-weight: 300;
}
.manifesto__statement em { font-style: italic; color: var(--accent); font-weight: 400; }
.manifesto__statement--light { color: var(--fg-muted); }
.manifesto__divider { width: 100%; height: 1px; background: var(--border); margin: 3rem 0; }

/* --- Products --- */
.products {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.products__header { margin-bottom: 3rem; }
.products__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.products__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--fg);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.product-card {
  background: var(--bg-2);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-card__icon {
  color: var(--accent);
  width: 40px; height: 40px;
}
.product-card__icon svg { width: 100%; height: 100%; }
.product-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg);
}
.product-card__desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
}
.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.product-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.product-card__cost {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* --- Philosophy --- */
.philosophy {
  background: var(--bg-2);
  padding: var(--section-pad) var(--gutter);
}
.philosophy__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.philosophy__col { display: flex; flex-direction: column; gap: 1rem; }
.philosophy__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--accent-dim);
  line-height: 1;
}
.philosophy__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--fg);
  line-height: 1.25;
}
.philosophy__text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* --- Outro --- */
.outro {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.outro__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.outro__body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.outro__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.outro__pillar {
  background: var(--bg-2);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.outro__pillar-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.outro__pillar-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* --- Footer --- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3rem var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer__brand { display: flex; align-items: center; gap: 0.6rem; }
.footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px;
}
.footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer__meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 6rem;
  }
  .hero__right { min-height: 50vw; }
  .hero__visual { max-width: 280px; }
  .hero__left { padding-right: 0; padding-bottom: 3rem; }

  .products__grid { grid-template-columns: 1fr; }
  .philosophy__inner { grid-template-columns: 1fr; gap: 2rem; }
  .outro__pillars { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 4.5rem; }
  .hero__stats { flex-direction: column; gap: 1.5rem; }
}