/* ==========================================
   GRIDIRONFIT — Dark Athletic Theme
   ========================================== */

:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --fg: #f0f0f0;
  --fg-muted: #888888;
  --accent: #00e676;
  --accent-dim: #00a84d;
  --gold: #f5c518;
  --surface: #141414;
  --border: #222222;
  --border-bright: #2e2e2e;
  --radius: 4px;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }

/* ==========================================
   TYPOGRAPHY
   ========================================== */

.font-display {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  letter-spacing: 0.03em;
}

.section-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

/* ==========================================
   MANIFESTO
   ========================================== */

.manifesto {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.manifesto-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.manifesto-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

.manifesto-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-bright);
}

.manifesto-visual {
  position: relative;
}

.manifesto-grid-art {
  width: 100%;
  aspect-ratio: 6/7;
  border: 1px solid var(--border-bright);
  position: relative;
  overflow: hidden;
}

.manifesto-grid-art svg {
  width: 100%;
  height: 100%;
}

/* Diagonal accent */
.manifesto-accent {
  position: absolute;
  top: 0;
  right: -10%;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.03;
  transform: skewX(-15deg);
  pointer-events: none;
}

/* ==========================================
   POSITIONS
   ========================================== */

.positions {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.position-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.position-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.position-card:hover { border-color: var(--accent-dim); }

.position-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.position-card:hover::before { transform: scaleX(1); }

.position-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}

.position-icon svg { width: 100%; height: 100%; }

.position-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  background: rgba(0, 230, 118, 0.08);
  padding: 0.25rem 0.75rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.position-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.position-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.position-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.focus-tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245, 197, 24, 0.3);
  padding: 0.2rem 0.6rem;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */

.how-it-works { background: var(--bg); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3rem;
}

.step {
  flex: 1;
  padding-right: 2rem;
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border-bright);
  margin-top: 1.5rem;
  flex-shrink: 0;
  align-self: center;
}

.process-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
}

.process-note p {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* ==========================================
   PRICING
   ========================================== */

.pricing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.pricing-card {
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  padding: 3rem;
  margin-top: 2rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.pricing-currency {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--fg-muted);
}

.pricing-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--fg);
  line-height: 1;
}

.pricing-period {
  font-size: 1.25rem;
  color: var(--fg-muted);
}

.pricing-divider {
  height: 1px;
  background: var(--border-bright);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg);
}

.pricing-compare {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

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

/* ==========================================
   CLOSING
   ========================================== */

.closing {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}

.closing-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.closing-attribution {
  font-size: 0.875rem;
  color: var(--accent);
  font-style: italic;
}

.closing-divider {
  max-width: 120px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 3rem;
  opacity: 0.5;
}

.closing-cta-text {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 1.5rem;
}

.footer-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: #444;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 900px) {
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-visual { display: none; }
  .position-cards { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { width: 40px; height: 1px; margin: 0.5rem 0; }
}

@media (max-width: 600px) {
  .section-inner { padding: 4rem 1.5rem; }
  .manifesto-inner { padding: 0 1.5rem; }
  .manifesto-stats { gap: 1.25rem; }
  .pricing-card { padding: 2rem; }
}