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

:root {
  --bg: #070B14;
  --surface: #0D1525;
  --surface-2: #111D30;
  --fg: #E8EDF5;
  --fg-muted: #7A8BA8;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --accent-glow: rgba(245, 166, 35, 0.25);
  --blue: #3A7BD5;
  --blue-dim: rgba(58, 123, 213, 0.15);
  --border: rgba(255,255,255,0.07);
  --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.15; }

.section-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.08em;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.07) 0%, transparent 65%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.4), transparent 70%);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58,123,213,0.5), transparent 70%);
  bottom: -50px; left: -80px;
}
.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-accent {
  color: var(--accent);
  display: block;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 32px;
  width: fit-content;
  backdrop-filter: blur(20px);
}
.stat { padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* === PROBLEM === */
.problem { padding: 100px 32px; }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
}
.problem-card:hover { border-color: rgba(245,166,35,0.3); }
.problem-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}
.problem-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

/* === SERVICES === */
.services { padding: 100px 32px; background: var(--surface); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-headline {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 56px;
  max-width: 500px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(245,166,35,0.25); }
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}
.service-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 20px; }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags span {
  font-size: 11px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--fg-muted);
}

/* === HOW IT WORKS === */
.howitworks { padding: 100px 32px; }
.howitworks-inner { max-width: 1100px; margin: 0 auto; }
.hiw-headline {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 64px;
}
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  padding-bottom: 48px;
}
.hiw-connector {
  position: absolute;
  left: 23px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(245,166,35,0.1));
}
.hiw-step:last-child .hiw-connector { display: none; }
.hiw-circle {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.hiw-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hiw-content p { font-size: 15px; color: var(--fg-muted); max-width: 480px; line-height: 1.65; }

/* === MANIFESTO === */
.manifesto { padding: 100px 32px; background: var(--surface); }
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-quote {
  position: relative;
  margin-bottom: 48px;
}
.quote-mark {
  font-family: 'Sora', sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 0.7;
  display: block;
  margin-bottom: -20px;
}
.manifesto-quote blockquote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.35;
  max-width: 800px;
  color: var(--fg);
}
.manifesto-body p {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* === CLOSING === */
.closing { padding: 120px 32px; text-align: center; position: relative; overflow: hidden; }
.closing-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.closing-visual {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.closing-orb {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.15), transparent 70%);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.closing-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.15);
}
.closing-ring-1 { width: 400px; height: 400px; }
.closing-ring-2 { width: 600px; height: 600px; border-color: rgba(245,166,35,0.08); }
.closing-ring-3 { width: 800px; height: 800px; border-color: rgba(245,166,35,0.04); }
.closing-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === FOOTER === */
.footer { padding: 48px 32px; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; color: var(--fg-muted); }
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 13px;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-content { padding: 60px 20px; }
  .hero-headline { font-size: 42px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px; width: 100%; }
  .stat { padding: 0; border-bottom: 1px solid var(--border); padding-bottom: 16px; width: 100%; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
  .stat-divider { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hiw-step { flex-direction: column; gap: 12px; }
  .hiw-connector { display: none; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .manifesto-quote blockquote { font-size: 20px; }
  .service-card { padding: 24px; }
  .problem-card { padding: 24px; }
}