:root {
  --bg: #0a0a0f;
  --bg-elevated: #13131a;
  --fg: #f0ede6;
  --fg-muted: #9b97a0;
  --accent: #ff5722;
  --accent-glow: rgba(255, 87, 34, 0.15);
  --highlight: #ffd54f;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --max-width: 1100px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.7;
}

/* Tee Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tee-mockup {
  position: relative;
}

.tee-shape {
  width: 260px;
  height: 320px;
  background: var(--bg-elevated);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.tee-shape::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: var(--bg);
  border-radius: 0 0 30px 30px;
}

.design-area {
  text-align: center;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
}

.cursor-blink {
  animation: blink 1s step-end infinite;
  color: var(--accent);
  font-style: normal;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* How It Works */
.how-it-works {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem;
}

.how-it-works h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  gap: 1.5rem;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.04);
}

.step-highlight {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent-glow), var(--bg-elevated));
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* Features */
.features {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(255,255,255,0.12);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.closing-content {
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.closing-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.footer-location {
  color: var(--fg-muted);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 1.5rem;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .tee-shape {
    width: 200px;
    height: 250px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }

  .closing-stat {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
}