:root {
  --navy: #0b1f33;
  --navy-soft: #14324f;
  --brand: #1a6fb5;
  --brand-hover: #155a94;
  --ice: #f3f7fb;
  --line: rgba(15, 45, 74, 0.12);
  --muted: #5b6b7c;
  --white: #ffffff;
  --accent: #7eb6e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
}

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

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

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

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--brand);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: white !important;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  transition: background 0.15s ease;
}

.btn:hover {
  background: var(--brand-hover);
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--navy) !important;
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--ice);
}

.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(126, 182, 232, 0.28), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(21, 101, 192, 0.12), transparent 35%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 70%);
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  max-width: 14ch;
}

.lede,
.section-lede {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 38rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.fine {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #0b1f33;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 51, 0.15) 0%,
    rgba(11, 31, 51, 0.55) 55%,
    rgba(11, 31, 51, 0.82) 100%
  );
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: calc(100% - 2rem);
  margin: 0 1rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
}

.panel-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b91c1c;
}

.panel-title {
  margin: 0.35rem 0 0;
  font-weight: 700;
}

.panel-score {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #b45309;
}

.panel-body {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.metrics {
  background: var(--navy);
  color: white;
  padding: 2.75rem 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.metrics article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.metric {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: white !important;
  margin-bottom: 0.35rem !important;
}

.how,
.pricing {
  padding: 5rem 0;
}

.how h2,
.pricing h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  max-width: 18ch;
  margin-top: 0.35rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.steps article,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--ice);
  padding: 1.5rem;
}

.steps h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.pricing {
  background: linear-gradient(180deg, #ffffff, #f3f7fb);
}

.pricing-card {
  max-width: 560px;
  background: white;
  box-shadow: none;
}

.price {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.price span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  margin-right: 0.25rem;
}

.price-note {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.pricing-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--navy-soft);
}

.pricing-card li {
  margin: 0.4rem 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-row a {
  margin-left: 1rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-grid,
  .metrics-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  nav a:not(.btn) {
    display: none;
  }

  h1 {
    max-width: none;
  }
}
