/* ==========================================================================
   AgedToAlpha — Shared Styles
   Design tokens, base styles, shared components used on both pages
   ========================================================================== */

:root {
  --black: #0A0A0A;
  --charcoal: #141414;
  --dark: #1A1A1A;
  --grey-1: #2C2C2C;
  --silver: #B0B0B0;
  --white: #FFFFFF;
  --gold: #F5A623;
  --gold-bright: #FFA800;
  --gold-dim: #C9A04A;
  --red: #FF4444;
  --red-soft: #FF6B6B;
  --green: #4ADE80;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--silver);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== CONTAINERS ========== */
.container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADINGS ========== */
h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

h1 .accent { color: var(--gold); }

h2.big {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h2.big .accent { color: var(--gold); }
h2.big .accent-red { color: var(--red-soft); }

.subheadline {
  text-align: center;
  font-size: 17px;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* ========== BADGES ========== */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,68,68,0.08);
  border: 1px solid rgba(255,68,68,0.3);
  color: var(--red);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
}

.badge-pill.gold {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.3);
  color: var(--gold);
}

.badge-pill .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

/* ========== BUTTONS ========== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--black);
  padding: 20px 50px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(245,166,35,0.3);
  font-family: inherit;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(245,166,35,0.4);
}

.cta-btn-full { display: flex; width: 100%; }
.cta-btn.large { padding: 22px 30px; font-size: 17px; }

.cta-btn.outline {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-btn.outline:hover { border-color: var(--gold); }

/* ========== TRANSFORMATION PHOTOS ========== */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.transform-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(245,166,35,0.3);
}

.transform-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transform-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* ========== ISSUE CARDS (REUSED) ========== */
.issue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.issue-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.issue-card:hover { border-color: var(--gold); transform: translateY(-2px); }

.issue-icon {
  width: 36px;
  height: 36px;
  background: rgba(245,166,35,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.issue-text {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

/* ========== MOBILE BREAKPOINT ========== */
@media (max-width: 768px) {
  .issue-grid { grid-template-columns: 1fr; }
  .transform-grid { grid-template-columns: 1fr 1fr; }
}
