@import url("https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #f5fbf6;
  --bg-soft: #eef7ef;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: #ffffff;
  --text: #162117;
  --muted: #5c6f61;
  --line: rgba(22, 33, 23, 0.1);
  --green: #22c55e;
  --green-dark: #169447;
  --shadow: 0 28px 70px rgba(18, 35, 21, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Onest", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #f9fcf9 100%);
  overflow-x: hidden;
}

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

.page-glow {
  position: fixed;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.34;
}

.page-glow-a {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
  background: rgba(34, 197, 94, 0.18);
}

.page-glow-b {
  width: 380px;
  height: 380px;
  right: -110px;
  top: 200px;
  background: rgba(16, 185, 129, 0.12);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 22px 0 28px;
}

.topbar,
.hero,
.feature-card,
.location-card,
.cta-strip,
.footer {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--panel-strong);
  border: 2px solid rgba(34, 197, 94, 0.3);
  color: var(--green-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.topnav a:hover,
.topbar-link:hover,
.footer a:hover {
  color: var(--green-dark);
}

.topbar-link {
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 22px;
  margin-top: 22px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.hero h1,
.section-head h2,
.cta-strip h2,
.feature-card h2,
.feature-card h3,
.location-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(2.5rem, 6vw, 5.3rem);
  line-height: 0.96;
  max-width: 10ch;
}

.hero-lead,
.section-head p,
.feature-card p,
.metric-card span,
.location-card p,
.location-card small {
  color: var(--muted);
}

.hero-lead {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions,
.hero-pills,
.feature-grid,
.location-grid {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #1faa55, #22c55e);
  color: #fff;
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.28);
}

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

.hero-pills {
  gap: 10px;
  margin-top: 18px;
}

.hero-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-panel {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(22, 196, 93, 0.08), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(34, 197, 94, 0.16);
}

.hero-panel-label {
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-metrics {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 33, 23, 0.08);
}

.metric-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
}

.service-card strong {
  font-size: 1.15rem;
  line-height: 1.15;
}

.service-card span {
  display: block;
  margin-top: 8px;
  line-height: 1.55;
}

.feature-grid {
  gap: 18px;
  margin-top: 22px;
}

.feature-card {
  flex: 1 1 260px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.feature-card-accent {
  min-width: min(100%, 440px);
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.2), transparent 24%),
    var(--panel-strong);
}

.feature-kicker {
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card h2 {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  max-width: 12ch;
}

.feature-card h3 {
  font-size: 1.35rem;
}

.feature-card p {
  margin: 12px 0 0;
  line-height: 1.65;
}

.locations {
  margin-top: 22px;
}

.cloud {
  margin-top: 22px;
}

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

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.section-head p {
  margin-top: 12px;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.product-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 246, 0.92));
  box-shadow: var(--shadow);
}

.product-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.product-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.location-grid {
  gap: 16px;
  margin-top: 22px;
}

.location-card {
  flex: 1 1 220px;
  min-width: 0;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.location-card-primary {
  background:
    linear-gradient(180deg, rgba(34, 197, 94, 0.14), rgba(255, 255, 255, 0.9)),
    var(--panel-strong);
  border-color: rgba(34, 197, 94, 0.22);
}

.location-latency {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--green-dark);
}

.location-card h3 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.location-card p {
  margin: 8px 0 0;
}

.location-card small {
  display: block;
  margin-top: 10px;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 24px 26px;
  border-radius: var(--radius-xl);
}

.cta-strip h2 {
  margin-top: 10px;
  max-width: 18ch;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 0 0;
  padding: 18px 20px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 960px) {
  .topbar,
  .hero,
  .cta-strip,
  .footer {
    border-radius: 24px;
  }

  .topbar,
  .hero,
  .cta-strip,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .cta-strip h2,
  .section-head h2,
  .feature-card h2 {
    max-width: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100vw - 18px, 100%);
    padding-top: 10px;
  }

  .topbar,
  .hero,
  .feature-card,
  .location-card,
  .cta-strip,
  .footer {
    padding: 18px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .footer {
    border-radius: 24px;
  }
}
