/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber: #f97316;
  --amber-dark: #ea580c;
  --amber-light: #fed7aa;
  --dark: #0c0a09;
  --dark-2: #1c1917;
  --dark-3: #292524;
  --white: #fafaf9;
  --muted: #a8a29e;
  --surface: #f5f5f4;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.1;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 600;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-line-1 { display: block; color: var(--white); }
.hero-line-2 {
  display: block;
  background: linear-gradient(135deg, var(--amber) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lede {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.meta-stat { text-align: left; }
.meta-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
}
.meta-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.meta-divider {
  width: 1px; height: 40px;
  background: var(--dark-3);
}

/* === SECTION LABEL === */
.section-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 1rem;
}

/* === PROBLEM === */
.problem {
  background: var(--dark-2);
  padding: 6rem 2rem;
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.problem-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.problem-text {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}
.problem-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.gap-card {
  background: var(--dark-3);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid #3f3a36;
}
.gap-icon { flex-shrink: 0; }
.gap-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-family: 'Space Grotesk', sans-serif;
}
.gap-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* === FEATURES === */
.features {
  padding: 6rem 2rem;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  max-width: 640px;
  margin-bottom: 4rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--dark-2);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--dark-3);
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--amber); }
.feature-card--highlight {
  background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(249,115,22,0.03));
  border: 1px solid rgba(249,115,22,0.3);
  box-shadow: 0 0 24px rgba(249,115,22,0.06);
}
.feature-card--highlight .feature-icon { background: rgba(249,115,22,0.15); }
.feature-card--highlight h3 { color: var(--amber); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* === PLATFORM / SPECS === */
.platform {
  background: var(--white);
  padding: 6rem 2rem;
  color: var(--dark);
}
.platform-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.platform .section-label { color: var(--amber-dark); }
.platform-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3rem;
}
.specs-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e7e5e4;
}
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e7e5e4;
  align-items: start;
}
.spec-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #78716c;
  padding-top: 4px;
}
.spec-value {
  font-size: 1rem;
  color: #1c1917;
  line-height: 1.6;
}

/* === QUOTE === */
.quote-section {
  padding: 6rem 2rem;
  background: var(--dark);
}
.quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark { margin-bottom: 2rem; }
.quote-section blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 2rem;
}
.quote-section cite {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* === CLOSING === */
.closing {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  padding: 6rem 2rem;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #0c0a09;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing-text {
  font-size: 1.1rem;
  color: rgba(12, 10, 9, 0.7);
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--dark-2);
  padding: 2rem;
  border-top: 1px solid var(--dark-3);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.footer-link {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--amber); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 1.5rem; }
  .hero-meta { gap: 1.5rem; }
  .features { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .problem { padding: 4rem 1.5rem; }
  .platform { padding: 4rem 1.5rem; }
  .quote-section { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .spec-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 400px) {
  .hero-meta { flex-direction: column; gap: 1rem; }
  .meta-divider { display: none; }
}