/* ========= RESET + BASE ========= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #030305;
  --bg-panel: #0c0f16;
  --bg-panel-soft: #141823;
  --accent-red: #ff3232;
  --accent-red-soft: #c3222b;
  --text-main: #f7f7f7;
  --text-muted: #b5b8c4;
  --border-soft: rgba(255, 255, 255, 0.05);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.85);
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: radial-gradient(circle at top, #1c090b 0, #05060a 45%, #020305 100%);
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ========= HEADER ========= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.96),
    rgba(0, 0, 0, 0.86),
    transparent
  );
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 20px;
  height: 20px;
}

.brand-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.brand-text span:first-child {
  color: var(--accent-red);
}

.brand-text span:last-child {
  color: var(--text-main);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.main-nav a {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

.nav-enter {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ========= TOP SMOKE BANNER ========= */

.smoke-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.smoke-banner img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

/* ========= HERO ========= */

.hero {
  position: relative;
  padding: 3.2rem 10vw 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at center,
    rgba(255, 40, 40, 0.18) 0,
    #050506 55%,
    #020203 100%
  );
  color: #f5f5f5;
  text-align: left;
}

.hero-inner {
  max-width: 650px;
}

.hero-copy {
  max-width: 560px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: clamp(2.4rem, 3.1vw, 3.4rem);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 30rem;
  margin-bottom: 1.9rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ========= BUTTONS ========= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease,
    border-color 0.16s ease, color 0.16s ease;
}

.btn.primary {
  background: radial-gradient(circle at 30% 0, #ff6b5e 0, #ff3232 40%, #8f1018 100%);
  color: #fff;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.95);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 1);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-main);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

/* ========= SECTIONS ========= */

.section {
  padding: 3rem 6vw 2.5rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.section-text {
  max-width: 700px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.section-text + .section-text {
  margin-top: 0.9rem;
}

/* ========= PILLARS (Mindset / Movement / System) ========= */

.pillars {
  margin-top: 0.8rem;
}

.pillars-row {
  display: flex;
  gap: 18px;
}

.pillar-card {
  flex: 1 1 0;
  background: radial-gradient(circle at top, rgba(255, 37, 61, 0.1) 0, #11141e 55%);
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillar-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pillar-body {
  padding: 1.1rem 1.4rem 1.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pillar-body h3 {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.55rem;
}

/* ========= 3-COLUMN CARD GRID ========= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 1.6rem;
}

.info-card {
  background: radial-gradient(circle at top, rgba(255, 38, 57, 0.06) 0, var(--bg-panel-soft) 55%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1.1rem 1.3rem 1.3rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.info-card h3 {
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ========= FOOTER ========= */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 1.2rem 6vw 1.6rem;
  background: #020306;
  font-size: 0.78rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  color: var(--text-muted);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand img {
  width: 18px;
  height: 18px;
}

.footer-brand-text {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.8rem;
}

.footer-right {
  text-align: right;
}

.footer-social a {
  margin-left: 10px;
  color: var(--text-main);
}

/* ========= RESPONSIVE ========= */

@media (max-width: 960px) {
  .hero {
    padding: 2.6rem 6vw 3.4rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 10px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Pillars: horizontal scroll on mobile */

@media (max-width: 768px) {
  .pillars-row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .pillars-row::-webkit-scrollbar {
    display: none;
  }

  .pillars-row {
    scrollbar-width: none; /* Firefox */
  }

  .pillar-card {
    flex: 0 0 78%;
    max-width: 78%;
    scroll-snap-align: center;
  }
}
