:root {
  --navy: #0b1727;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --slate: #475569;
  --light: #f8fafc;
  --border: #e2e8f0;
  --card: #ffffff;
  --green: #16a34a;
  --amber: #f59e0b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.2rem;
  min-width: 280px;
  line-height: 1.1;
}

.logo span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 36px;
  font-weight: 600;
  font-size: 1rem;
  color: #334155;
}
.navlinks a {
  transition: color 0.2s ease;
}

.navlinks a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37,99,235,.18);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.16), transparent 35%),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -0.06em;
  margin: 20px 0;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 16px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.lead {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #334155;
  font-weight: 650;
  font-size: .92rem;
}

.trust-row span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
}

.dashboard-card {
   background: #ffffff;
  color: #0b1727;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(15,23,42,.12);
}

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 18px;
}

.metric {
   background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px;
  border-radius: 18px;
  flex: 1;
}

.metric strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.metric small {
  color: #334155;
}
  font-weight: 600;
}

.fake-table {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.fake-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 10px;
  padding: 11px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: #0b1727;
  font-size: .88rem;
}

.score {
  color: #86efac;
  font-weight: 900;
}

.section {
  padding: 73px 0;
}

.section-muted {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15,23,42,.04);
}

.card p {
  color: var(--slate);
  margin: 0;
}

.icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: #eff6ff;
  color: var(--blue);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 8px 0;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card ul,
.pricing-card .feature-list {
  flex-grow: 1;
}

.pricing-card .btn,
.pricing-card .pricing-button {
  margin-top: auto;
}

.price {
  font-size: 2.3rem;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin: 10px 0 6px;
}

.price small {
  font-size: 1rem;
  color: var(--slate);
  font-weight: 700;
}

.featured {
  border-color: #93c5fd;
  box-shadow: 0 18px 40px rgba(37,99,235,.14);
  position: relative;
}

.badge {
  display: inline-flex;
  background: #dcfce7;
  color: #166534;
  font-weight: 900;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cta {
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta p {
  color: #cbd5e1;
}

.footer {
  padding: 42px 0;
  background: #020617;
  color: #cbd5e1;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer a {
  color: #e2e8f0;
  margin-right: 16px;
}

.page-hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.kicker {
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}

/* Hero + header refinement */

.container {
  width: min(1180px, calc(100% - 40px));
}

.navlinks {
  gap: 28px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav .btn-primary {
  padding: 14px 22px;
}

.hero {
  padding: 48px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}

.hero-image-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15,23,42,.18);
}

.hero-image-card img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {

  .hero-grid,
  .grid-2,
  .grid-3,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card img {
    min-height: 280px;
  }

  .nav {
    height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .navlinks {
    display: none;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .fake-row {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-image-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
}

.hero-image-card img {
  display: block;
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.dashboard-card {
  margin-top: 22px;
  background: #ffffff;
  color: #0b1727;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(15,23,42,.10);
}

.metric {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.metric small {
  color: #475569;
}

.fake-row {
  background: #f8fafc;
  color: #0b1727;
}

.score {
  color: #16a34a;
}
/* Mobile cleanup */

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 100%);
  }

  .header {
    position: relative;
  }

  .nav {
    height: auto;
    padding: 14px 0;
  }

  .logo {
    min-width: 0;
    font-size: 1.1rem;
  }

  .logo span {
    font-size: 0.62rem;
    line-height: 1.3;
  }

  .hero {
    padding: 36px 0 32px;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .lead {
    font-size: 1.05rem;
  }

  .hero-image-card img {
    min-height: 240px;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
  }

  .dash-top {
    flex-direction: column;
  }

  .fake-row {
    grid-template-columns: 1.3fr 0.5fr 0.5fr 0.5fr;
    font-size: 0.9rem;
    gap: 8px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row span {
    font-size: 0.85rem;
  }

  .cta {
    padding: 28px;
  }

  .footer-grid {
    flex-direction: column;
  }
}
.scorecard-intro {
  margin-bottom: 20px;
}

.scorecard-intro h3 {
  font-size: 1.55rem;
  margin: 6px 0 8px;
}

.scorecard-intro p {
  color: #475569;
  margin: 0;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .dashboard-card {
    padding: 20px;
  }

  .scorecard-intro h3 {
    font-size: 1.35rem;
  }

  .scorecard-intro p {
    font-size: 0.95rem;
  }

  .dash-top {
    gap: 10px;
  }

  .fake-row {
    grid-template-columns: 1.4fr 0.55fr 0.55fr 0.55fr;
    font-size: 0.88rem;
  }
}
.feature-highlights {
  margin-top: 36px;
}

.feature-highlights h3 {
  margin-bottom: 18px;
  font-size: 1.3rem;
}

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

.feature-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
}

.feature-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.feature-item span {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dashboard-card {
  margin-top: 0;
}
.export-builder {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 18px;
  align-items: end;
}

.export-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.export-field label {
  font-weight: 700;
  color: #0f1b2d;
}

.export-field input,
.export-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
}

@media (max-width: 900px) {
  .export-builder {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .export-builder {
    grid-template-columns: 1fr;
  }
}
.export-builder-multi {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
}

.export-builder-multi select[multiple] {
  min-height: 150px;
}

@media (max-width: 900px) {
  .export-builder-multi {
    grid-template-columns: 1fr;
  }
}
.field-help {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin: 4px 0 8px;
}
