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

:root {
  --bg: #0f1923;
  --bg-2: #162030;
  --bg-3: #1a2840;
  --fg: #f0f4f8;
  --fg-muted: #8fa3b8;
  --accent: #f59e0b;
  --accent-dim: #d97706;
  --border: rgba(240,244,248,0.08);
  --card-bg: #131e2e;
}

html { scroll-behavior: smooth; }

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

/* — Navigation — */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  border-bottom: 1px solid var(--border);
}

.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo {
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 16px;
  border-radius: 8px;
}
.nav__name {
  font-weight: 600; font-size: 15px; letter-spacing: 0.03em;
  color: var(--fg);
}
.nav__badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px; border-radius: 100px;
}

/* — Hero — */
.hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  padding: 100px 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.hero__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 18px; color: var(--fg-muted); max-width: 480px;
  line-height: 1.7;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.stat {
  background: var(--card-bg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
}

.stat__value {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  font-size: 12px; color: var(--fg-muted); line-height: 1.4;
}

/* — Services — */
.services {
  padding: 100px 60px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services__header { margin-bottom: 60px; }

.services__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}

.services__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  max-width: 560px;
  line-height: 1.2;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
}

.service-card {
  background: var(--card-bg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.2s;
}

.service-card:hover { background: var(--bg-3); }

.service-card__icon {
  color: var(--accent);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,158,11,0.1);
  border-radius: 10px;
  border: 1px solid rgba(245,158,11,0.2);
}

.service-card h3 {
  font-size: 16px; font-weight: 600;
  color: var(--fg);
}

.service-card p {
  font-size: 14px; color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
}

/* — How It Works — */
.hiw {
  padding: 100px 60px;
  background: var(--bg);
}

.hiw__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hiw__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}

.hiw__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
}

.hiw__body {
  color: var(--fg-muted);
  font-size: 16px; line-height: 1.7;
  margin-bottom: 16px;
}

/* Screen mockup */
.screen {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.screen__bar {
  background: var(--bg-3);
  padding: 12px 16px;
  display: flex; gap: 8px;
}

.screen__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(240,244,248,0.15);
}

.screen__content { padding: 24px; }

.screen__project {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.screen__proj-name { font-size: 13px; font-weight: 600; }

.screen__proj-status {
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 100px;
}

.on-track {
  background: rgba(16,185,129,0.15); color: #10b981;
}

.screen__bars { margin-bottom: 20px; }

.screen__bar-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; color: var(--fg-muted);
  margin-bottom: 8px;
}

.screen__bar-row span { width: 110px; flex-shrink: 0; }

.screen__bar-fill {
  height: 6px; background: var(--accent); border-radius: 3px;
  opacity: 0.7;
}

.screen__tasks { display: flex; flex-direction: column; gap: 8px; }

.screen__task {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--fg-muted);
}

.screen__task-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(240,244,248,0.15); flex-shrink: 0;
}

.screen__task-dot.done { background: var(--accent); }

/* — Platform — */
.platform {
  padding: 80px 60px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.platform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.platform__card { display: flex; flex-direction: column; gap: 16px; }

.platform__card-icon {
  color: var(--accent);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,158,11,0.08);
  border-radius: 12px;
  border: 1px solid rgba(245,158,11,0.15);
}

.platform__card h3 {
  font-size: 18px; font-weight: 600;
}

.platform__card p {
  font-size: 14px; color: var(--fg-muted); line-height: 1.7;
}

/* — Closing — */
.closing {
  padding: 120px 60px;
  background: var(--bg);
  text-align: center;
}

.closing__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.closing__sub {
  font-size: 17px; color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* — Footer — */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer__left { display: flex; align-items: center; gap: 10px; }

.footer__brand {
  width: 28px; height: 28px;
  background: var(--accent); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 12px; border-radius: 6px;
}

.footer__name { font-weight: 600; font-size: 14px; }
.footer__right { font-size: 12px; color: var(--fg-muted); text-align: right; line-height: 1.6; }

/* — Responsive — */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 40px; }
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .hiw__grid { grid-template-columns: 1fr; gap: 48px; }
  .platform__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 60px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px 16px; }
  .stat__value { font-size: 28px; }
  .services, .hiw, .platform { padding: 60px 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { flex-direction: column; gap: 16px; padding: 24px; }
  .footer__right { text-align: center; }
}