:root {
  --bg: #eaf4f6;
  --surface: #f8fcfd;
  --card: #ffffff;
  --primary: #2f7d8c;
  --primary-dark: #245f6b;
  --text: #18343b;
  --muted: #56727a;
  --line: #d7e7ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #d8eef2 0, transparent 28%),
    linear-gradient(180deg, var(--bg), #f5fbfc);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(245, 251, 252, 0.78);
  border-bottom: 1px solid rgba(215, 231, 234, 0.88);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.72rem 0;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(36, 95, 107, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: nowrap;
  margin-left: auto;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.header-nav-button {
  text-decoration: none;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 125, 140, 0.16);
  background: rgba(47, 125, 140, 0.08);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.header-nav-button:hover {
  background: rgba(47, 125, 140, 0.14);
  border-color: rgba(47, 125, 140, 0.28);
}

.header-nav-button:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 4.6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: 1.6rem;
  align-items: center;
}

.hero-copy-wrap {
  min-width: 0;
}

.hero-product {
  display: grid;
  gap: 1rem;
}

.hero-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-product-card {
  background:
    radial-gradient(circle at top right, rgba(47, 125, 140, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,252,253,0.98));
  border: 1px solid rgba(215, 231, 234, 0.96);
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: 0 16px 30px rgba(36, 95, 107, 0.08);
}

.hero-product-primary {
  padding: 1.35rem;
}

.product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.product-pill,
.product-metric {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: rgba(47, 125, 140, 0.09);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-product-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.hero-product-card p {
  margin-bottom: 0;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.product-list li {
  position: relative;
  padding-left: 1rem;
}

.product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

h1,
h2,
h3,
p,
li {
  line-height: 1.35;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  max-width: 11ch;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 1rem;
}

.lead {
  max-width: 62ch;
  font-size: 1.15rem;
  color: var(--muted);
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.center-actions {
  justify-content: center;
}

.button {
  display: inline-block;
  padding: 0.92rem 1.22rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
}

.button.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 26px rgba(47, 125, 140, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  border: 1px solid var(--line);
}

.button.tertiary {
  background: rgba(24, 52, 59, 0.06);
  color: var(--text);
  border: 1px solid rgba(24, 52, 59, 0.1);
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-strip span {
  display: inline-flex;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 231, 234, 0.98);
  color: var(--primary-dark);
  font-size: 0.92rem;
}

.section {
  padding: 3.5rem 0;
}

.muted-section {
  background: rgba(248, 252, 253, 0.9);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.2rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card,
.price-card,
.cta-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.45rem;
  box-shadow: 0 14px 32px rgba(36, 95, 107, 0.08);
}

.card p,
.price-card p,
.cta-panel p {
  color: var(--muted);
}

.feature-card {
  background:
    radial-gradient(circle at top right, rgba(47, 125, 140, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,252,253,0.98));
}

.card h3,
.price-card h3 {
  margin-bottom: 0.6rem;
}

.price {
  font-size: 2rem;
  margin: 0.8rem 0;
  font-weight: bold;
  color: var(--primary-dark);
}

.pricing-lead {
  margin-bottom: 1.6rem;
}

.plan-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 125, 140, 0.08);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-tag {
  background: rgba(47, 125, 140, 0.14);
}

.featured {
  border: 2px solid var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(47, 125, 140, 0.14);
}

ul {
  padding-left: 1.2rem;
  margin: 0;
}

.price-card ul {
  margin-top: 1rem;
}

.price-card li + li {
  margin-top: 0.4rem;
}

.pricing-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: var(--muted);
}

.local-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.local-proof-card {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(36, 95, 107, 0.06);
}

.local-proof-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.local-proof-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.demo-section {
  padding-bottom: 5rem;
}

.cta-panel {
  text-align: center;
  padding: 2.1rem;
  background:
    radial-gradient(circle at top right, rgba(47, 125, 140, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,252,253,0.98));
}

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

@media (max-width: 700px) {
  .header-row {
    align-items: center;
    flex-direction: column;
  }

  .hero-grid,
  .hero-product-grid,
  .local-proof {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .section {
    padding: 2.8rem 0;
  }

  .featured {
    transform: none;
  }

  .actions,
  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}
