/* ============================================
   GET-HARDER — Main Stylesheet v1.1
   Mobile-first, no emojis, tight layout
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:     #FF6B2B;
  --orange-dk:  #E5571A;
  --orange-lt:  #FFF3ED;
  --gold:       #F59E0B;
  --white:      #FFFFFF;
  --warm:       #FFF8F5;
  --cream:      #FFF5EE;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-400:   #9CA3AF;
  --gray-600:   #4B5563;
  --gray-900:   #111827;
  --green:      #10B981;
  --red:        #EF4444;
  --radius:     14px;
  --shadow:     0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.11);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Buttons ──────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 8px 28px rgba(255,107,43,0.32);
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,107,43,0.42);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-xl {
  font-size: 1.15rem;
  padding: 18px 44px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gray-600);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid var(--gray-100);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ── Live badge ───────────────────────────── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  border-radius: 100px;
  padding: 8px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-900);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.live-badge .dot {
  width: 9px; height: 9px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.4s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.4); }
}

/* ── NAV ──────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 16px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--orange); }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ── HERO ─────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding: 96px 20px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #FFFFFF 0%, var(--orange-lt) 50%, #FFF5EE 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,43,0.09) 0%, transparent 70%);
  top: -150px; right: -150px;
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow { margin-bottom: 24px; }

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.hero-title .line-orange { color: var(--orange); }

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--gray-600);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
@media (min-width: 520px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* CTA full-width on mobile */
.hero-actions .btn-primary {
  width: 100%;
  max-width: 360px;
}
@media (min-width: 520px) {
  .hero-actions .btn-primary { width: auto; }
}

/* Model cards */
.model-strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.model-card {
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--gray-100);
  transition: transform 0.2s;
}
.model-card:hover { transform: translateY(-2px); }
.model-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.model-info .name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gray-900);
}
.model-info .status {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
}
.model-info .status::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.06);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  display: block;
}
.stat-item .label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 2px;
}

/* ── TICKER ───────────────────────────────── */
#ticker {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.ticker-label {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding: 0 20px;
}
.ticker-track {
  display: flex;
  gap: 16px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  background: var(--orange-lt);
  border: 1.5px solid rgba(255,107,43,0.15);
  border-radius: 100px;
  padding: 8px 18px;
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ── SHARED SECTION STYLES ────────────────── */
.section-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 500px;
  line-height: 1.65;
}
.section-header { text-align: center; margin-bottom: 56px; padding: 0 16px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── WHY SECTION ──────────────────────────── */
#why { padding: 88px 20px; background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-card {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid rgba(255,107,43,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #FFE8D6, #FFD5BC);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
  padding: 0 20px;
}
.section-cta .btn-primary {
  width: 100%;
  max-width: 340px;
}
.section-cta p {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* ── CATEGORIES ───────────────────────────── */
#categories { padding: 88px 20px; background: var(--cream); }

.cats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 860px;
  margin: 0 auto 40px;
}
@media (min-width: 480px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 720px) {
  .cats-grid { grid-template-columns: repeat(4, 1fr); }
}

.cat-pill {
  background: var(--white);
  border-radius: 10px;
  padding: 13px 16px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-900);
  border: 1.5px solid var(--gray-100);
  transition: all 0.2s;
}
.cat-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-lt);
  transform: translateY(-1px);
}

/* ── FINAL CTA ────────────────────────────── */
#cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #FFF8F5 0%, #FFF3ED 60%, #FFFBF7 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,43,0.07) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
}
.cta-inner .section-title {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}
.cta-inner .section-subtitle { margin: 0 auto 40px; }

.cta-inner .btn-primary {
  width: 100%;
  max-width: 380px;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────── */
#site-footer {
  padding: 36px 20px;
  background: var(--gray-900);
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.footer-inner { max-width: 860px; margin: 0 auto; }
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--orange); }
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.78rem; line-height: 1.7; }

/* ── Add bottom padding on mobile ─────────── */
@media (max-width: 768px) {
  #site-footer { padding-bottom: 40px; }
}

/* ── Scroll fade-up ───────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
