:root {
  --ink: #17211d;
  --muted: #61706a;
  --line: #dce5df;
  --teal: #0f766e;
  --blue: #0369a1;
  --green: #5bbd14;
  --coral: #ff6671;
  --navy: #061618;
  --surface: #f7faf7;
  --card: #ffffff;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

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

.page {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(247, 250, 247, 0.96) 0%, #ffffff 46%, #f3f8f5 100%);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 0.75rem 0;
  background: rgba(247, 250, 247, 0.88);
  backdrop-filter: blur(18px);
}

.nav-on-hero {
  position: fixed;
  right: 0;
  left: 0;
  color: #ffffff;
  background: rgba(6, 22, 24, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
}

.brand img {
  display: block;
  width: 178px;
  height: 58px;
  object-fit: contain;
  border-radius: 6px;
  background: #020807;
  box-shadow: 0 10px 30px rgba(23, 33, 29, 0.12);
}

.nav-links {
  display: inline-flex;
  justify-content: center;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-on-hero .nav-links {
  color: rgba(255, 255, 255, 0.72);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #6ee7d8;
}

.nav-cta,
.launch-btn,
.primary-btn,
.secondary-btn,
.price-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  color: #ffffff;
  background: var(--teal);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.2);
}

.top-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 8.5rem 1rem 5.8rem;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(6, 22, 24, 0.66), rgba(6, 22, 24, 0.94)),
    radial-gradient(circle at 30% 42%, rgba(3, 105, 161, 0.56), transparent 34%),
    radial-gradient(circle at 66% 48%, rgba(91, 189, 20, 0.43), transparent 32%),
    linear-gradient(135deg, #0d1f25, #071312 45%, #112018);
}

.top-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% -12%;
  height: 38%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 250, 247, 0.96) 76%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0 18px, rgba(236, 242, 241, 0.08) 18px 34px);
  filter: blur(15px);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 0 48%, transparent 78%);
}

.top-hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  transform: translateY(-54px);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 1.15rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(110, 231, 216, 0.24);
  border-radius: 999px;
  color: #9af7e5;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.top-hero h1 {
  margin: 0;
  font-size: 3.8rem;
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.client-strip {
  position: absolute;
  right: 0;
  bottom: 4.2rem;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.client-strip-track {
  width: min(760px, 100%);
  height: 72px;
  border: 1px solid rgba(110, 231, 216, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 92px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.hero-subtitle {
  max-width: 690px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.16rem;
  font-weight: 650;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.primary-btn {
  background: #0f766e;
}

.secondary-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.launch {
  position: relative;
  display: flex;
  min-height: min(650px, calc(100vh - 76px));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5.5rem 1rem 6rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 251, 250, 0.76) 48%, rgba(255, 255, 255, 0.98) 100%),
    linear-gradient(115deg, rgba(226, 238, 242, 0.75), rgba(255, 255, 255, 0.65) 38%, rgba(228, 235, 232, 0.72));
}

.proof-section {
  min-height: 620px;
  padding-top: 6rem;
}

.launch::before,
.launch::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.launch::before {
  bottom: 10%;
  width: min(860px, 116vw);
  height: 240px;
  opacity: 0.32;
  background:
    linear-gradient(140deg, transparent 0 18%, #5d777a 18% 31%, transparent 31%),
    linear-gradient(28deg, transparent 0 34%, #425d61 34% 48%, transparent 48%),
    linear-gradient(154deg, transparent 0 48%, #6f8587 48% 64%, transparent 64%),
    linear-gradient(24deg, transparent 0 52%, #344d51 52% 70%, transparent 70%);
  filter: blur(0.8px);
}

.launch::after {
  bottom: -17%;
  width: 130%;
  height: 52%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), #ffffff 82%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.72) 0 18px, rgba(232, 238, 237, 0.48) 18px 34px);
  filter: blur(14px);
  opacity: 0.92;
}

.launch > * {
  position: relative;
  z-index: 1;
}

.kicker,
.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker {
  color: rgba(23, 33, 29, 0.46);
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.launch h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: #3dbfaa;
  font-size: 4.25rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 9px 32px rgba(18, 86, 91, 0.1);
}

.lede {
  max-width: 660px;
  margin: 1rem auto 0;
  color: rgba(23, 33, 29, 0.62);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.7;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 1.6rem;
  width: min(620px, 100%);
  margin: 2.6rem auto 0;
}

.metric-ring {
  display: flex;
  width: 154px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 1.35rem;
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side, rgba(255, 255, 255, 0.9) 73%, transparent 74%),
    conic-gradient(var(--coral) var(--progress), rgba(196, 213, 216, 0.74) 0);
  box-shadow: 0 12px 35px rgba(216, 87, 58, 0.15);
}

.metric-ring strong {
  color: #445158;
  font-size: 1.82rem;
  font-weight: 900;
  line-height: 1;
}

.metric-ring span {
  max-width: 98px;
  margin-top: 0.35rem;
  color: rgba(23, 33, 29, 0.48);
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.launch-btn {
  min-width: 132px;
  min-height: 38px;
  margin-top: 1.8rem;
  border-radius: 2px;
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(255, 102, 113, 0.22);
}

.hero,
.section,
.pricing {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0;
}

.core-section {
  display: grid;
  min-height: 70vh;
  align-content: center;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 4rem;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 3rem auto auto -4rem;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.08);
  filter: blur(4px);
}

.hero > * {
  position: relative;
}

.hero-copy h2,
.section-heading h2,
.pricing h2 {
  color: var(--ink);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.core-section .section-heading {
  margin-bottom: 1.35rem;
}

.hero-copy p,
.pricing p,
.cards p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.report,
.cards article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(23, 33, 29, 0.07);
}

.report {
  padding: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 246, 0.92)),
    repeating-linear-gradient(90deg, rgba(15, 118, 110, 0.04) 0 1px, transparent 1px 26px);
}

.report-header,
.company-row,
.checklist div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.report-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.report span,
.company-row span,
.checklist span,
.price-card span,
.price-card small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.status {
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  color: #135d2c !important;
  background: #e9f7ee;
}

.company-row {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 8px;
  background: #f4f8f6;
}

.company-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  flex: 0 0 54px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--coral);
  font-weight: 900;
}

.checklist div {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.checklist div:last-child {
  border-bottom: 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.service-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  color: #0f5d57;
  background: rgba(15, 118, 110, 0.07);
  font-size: 0.82rem;
  font-weight: 850;
}

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

.cards article,
.price-card {
  padding: 1.25rem;
}

.cards article {
  min-height: 230px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.24);
  box-shadow: 0 24px 55px rgba(23, 33, 29, 0.1);
}

.cards span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.cards h3,
.price-card h3 {
  margin: 0.7rem 0 0.5rem;
  font-size: 1.1rem;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.72fr);
  gap: 4rem;
  align-items: center;
}

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

.price-card > strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 4.4rem;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
}

.price-link {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 1.25rem;
  background: var(--teal);
}

.footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer span {
  font-weight: 850;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--teal);
}

.legal-main {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.legal-main h1 {
  margin-bottom: 0.75rem;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
}

.legal-main h2 {
  margin: 2rem 0 0.7rem;
  font-size: 1.35rem;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-main ul {
  padding-left: 1.25rem;
}

.legal-note {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

@media (max-width: 960px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .top-hero h1,
  .launch h2 {
    font-size: 3rem;
  }

  .top-hero-content {
    transform: translateY(-36px);
  }

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

  .pricing-plans {
    grid-template-columns: 1fr;
  }

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

  .hero-copy h2,
  .section-heading h2,
  .pricing h2 {
    font-size: 2.55rem;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 24px, 1180px);
    min-height: 64px;
  }

  .brand img {
    width: 132px;
    height: 44px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0.65rem 0.8rem;
    font-size: 0.84rem;
  }

  .launch {
    min-height: 560px;
    padding-top: 2.4rem;
  }

  .top-hero h1,
  .launch h2 {
    font-size: 2rem;
  }

  .top-hero-content {
    transform: translateY(-24px);
  }

  .client-strip {
    bottom: 2.3rem;
  }

  .client-strip-track {
    height: 54px;
  }

  .lede {
    font-size: 0.95rem;
  }

  .metric-grid {
    grid-template-columns: 1fr;
    width: min(180px, 100%);
    gap: 1rem;
  }

  .metric-ring {
    width: 148px;
  }

  .metric-ring strong {
    font-size: 1.55rem;
  }

  .hero,
  .section,
  .pricing {
    width: min(100% - 24px, 1180px);
    padding: 3.2rem 0;
  }

  .hero-copy h2,
  .section-heading h2,
  .pricing h2 {
    font-size: 2.05rem;
  }

  .price-card > strong {
    font-size: 3rem;
  }

  .report-header,
  .company-row,
  .checklist div {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .legal-main h1 {
    font-size: 2.25rem;
  }
}
