@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --navy: #202223;
  --accent: #5c6ac4;
  --accent-hover: #4959bd;
  --accent-subtle: rgb(92 106 196 / 0.1);
  --muted: #6d7175;
  --muted-light: #8c9196;
  --border: #e1e3e5;
  --mark: #28295e;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-brand: "Figtree", "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 0 0 1px rgb(63 63 68 / 0.05), 0 1px 3px rgb(63 63 68 / 0.08);
  --shadow-lg: 0 20px 50px -16px rgb(40 44 52 / 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgb(225 227 229 / 0.6);
  background: rgb(255 255 255 / 0.96);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 28px; height: 28px; }
.logo-text { font-family: var(--font-brand); font-size: 17px; letter-spacing: -0.02em; }
.logo-text .pilot { font-weight: 700; color: var(--accent); }
.logo-text .floor { font-weight: 600; }

.nav { display: none; gap: 28px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--muted); }
.nav a:hover { color: var(--navy); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 600; border-radius: 999px;
  border: none; cursor: pointer; transition: background 0.15s;
}
.btn-sm { height: 36px; padding: 0 18px; font-size: 14px; }
.btn-lg { height: 48px; padding: 0 28px; font-size: 15px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { background: #fff; border: 1px solid var(--border); color: var(--navy); }
.btn-outline:hover { background: #f6f6f7; }
.btn-white { background: #fff; color: var(--navy); }
.btn-block { width: 100%; }

/* Hero */
.hero { padding: 56px 0 48px; text-align: center; }
.hero .eyebrow {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent);
}
.hero h1 {
  margin-top: 16px; max-width: 720px; margin-left: auto; margin-right: auto;
  font-size: clamp(32px, 5vw, 52px); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.03em;
}
.hero .lead {
  margin: 20px auto 0; max-width: 600px;
  font-size: 18px; color: var(--muted); line-height: 1.65;
}
.hero-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--muted-light); }

.hero-shot {
  margin: 48px auto 0; max-width: 960px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #f6f6f7;
}
.hero-shot img { width: 100%; }
.hero-shot-placeholder {
  padding: 80px 24px; text-align: center; color: var(--muted);
  font-size: 14px;
}

/* Sections */
.section { padding: 72px 0; border-top: 1px solid rgb(225 227 229 / 0.5); }
.section-muted { background: #fafafa; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.section-head h2 {
  font-size: clamp(26px, 4vw, 34px); font-weight: 700;
  letter-spacing: -0.02em;
}
.section-head p { margin-top: 12px; font-size: 16px; color: var(--muted); }

/* Pillars */
.pillars { display: grid; gap: 20px; }
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  padding: 24px; border-radius: 14px; border: 1px solid var(--border);
  background: #fff;
}
.pillar svg { width: 22px; height: 22px; color: var(--accent); }
.pillar h3 { margin-top: 12px; font-size: 16px; font-weight: 600; }
.pillar p { margin-top: 6px; font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Feature grid — simple */
.features {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: 12px;
  border: 1px solid var(--border); background: #fff;
}
.feature svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.feature h3 { font-size: 14px; font-weight: 600; }
.feature p { margin-top: 4px; font-size: 13px; color: var(--muted); line-height: 1.45; }

/* Why */
.why-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why {
  padding: 28px; border-radius: 14px; background: var(--mark); color: #fff;
}
.why h3 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; opacity: 0.85;
}
.why p { margin-top: 10px; font-size: 15px; line-height: 1.55; opacity: 0.92; }

/* Screenshots */
.shots { display: grid; gap: 20px; margin-top: 8px; }
@media (min-width: 768px) { .shots { grid-template-columns: repeat(2, 1fr); } }
.shot {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  background: #f6f6f7;
}
.shot img { width: 100%; }
.shot figcaption {
  padding: 10px 14px; font-size: 13px; font-weight: 500;
  color: var(--muted); background: #fff; border-top: 1px solid var(--border);
}

/* Pricing */
.pricing {
  max-width: 400px; margin: 0 auto; padding: 32px;
  border-radius: 16px; border: 1px solid var(--border);
  background: #fff; box-shadow: var(--shadow); text-align: center;
}
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: var(--accent-subtle); color: var(--accent);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.pricing h3 { margin-top: 16px; font-size: 20px; font-weight: 600; }
.price { margin-top: 8px; font-size: 44px; font-weight: 700; letter-spacing: -0.02em; }
.price span { font-size: 16px; font-weight: 500; color: var(--muted); }
.pricing ul { margin-top: 20px; text-align: left; list-style: none; }
.pricing li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; margin-bottom: 10px;
}
.pricing li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* CTA */
.cta {
  padding: 64px 24px; text-align: center;
  background: var(--mark); color: #fff;
}
.cta h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 700; }
.cta p { margin: 14px auto 0; max-width: 480px; font-size: 16px; opacity: 0.8; }
.cta .btn { margin-top: 28px; }

/* Footer */
.footer {
  padding: 40px 24px 28px; border-top: 1px solid var(--border);
  background: #fafafa; text-align: center;
}
.footer .logo { justify-content: center; }
.footer p { margin-top: 12px; font-size: 13px; color: var(--muted); }
.footer-links { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.footer-links a { font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--navy); }
.copy { margin-top: 24px; font-size: 12px; color: var(--muted-light); }

@media (min-width: 768px) {
  .nav { display: flex; }
  .hide-md { display: inline-flex; }
}
.hide-md { display: none; }
