:root {
  --bg-main: #f8faf9;
  --bg-card: rgba(255, 255, 255, 0.88);
  --text-main: #0a1018;
  --text-muted: #5a6a78;
  --line-soft: rgba(10, 16, 24, 0.08);
  --jade: #00c868;
  --jade-glow: rgba(0, 200, 104, 0.16);
  --vblue: #355fa8;
  --vblue-glow: rgba(53, 95, 168, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 200, 104, 0.06), transparent 26%),
    radial-gradient(circle at right top, rgba(53, 95, 168, 0.06), transparent 28%),
    var(--bg-main);
  color: var(--text-main);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(248, 250, 249, 0.92)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 14px,
      rgba(255, 255, 255, 0.02) 14px,
      rgba(255, 255, 255, 0.02) 28px
    );
  pointer-events: none;
  z-index: -2;
}

.ambient-glow {
  position: fixed;
  top: -10vh;
  left: 50%;
  width: 78vw;
  height: 78vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 104, 0.07) 0%, rgba(248, 250, 249, 0) 72%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 60px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(10, 16, 24, 0.04);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 12px 40px rgba(10, 16, 24, 0.03);
}

.n-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.n-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.n-logo img {
  height: 32px;
  width: auto;
}

.n-menu {
  position: relative;
  margin-left: auto;
  margin-right: 18px;
}

.n-menu summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.n-menu summary::-webkit-details-marker {
  display: none;
}

.n-menu summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  border-radius: 2px;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 0.22s ease;
}

.n-menu summary:hover,
.n-menu[open] summary {
  color: var(--jade);
}

.n-menu[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.n-menu-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 220px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 16, 24, 0.06);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(10, 16, 24, 0.08);
  backdrop-filter: blur(18px);
}

.n-menu-panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.n-menu-panel a:hover {
  background: rgba(0, 200, 104, 0.08);
  color: var(--jade);
  transform: translateX(2px);
}

.n-cta,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.n-cta,
.btn-primary {
  padding: 14px 28px;
  border-radius: 6px;
  background: var(--jade);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px var(--jade-glow);
}

.n-cta:hover,
.btn-primary:hover {
  background: var(--vblue);
  box-shadow: 0 12px 28px var(--vblue-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 16px 26px;
  border: 1px solid rgba(10, 16, 24, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-main);
  font-weight: 700;
}

.btn-secondary:hover {
  border-color: rgba(53, 95, 168, 0.24);
  color: var(--vblue);
  transform: translateY(-2px);
}

main {
  display: block;
}

.hero {
  padding: 168px 60px 82px;
}

.hero-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--jade);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-family: "Anton", sans-serif;
  font-size: clamp(3.8rem, 9vw, 7rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-copy h1 .accent {
  position: relative;
  display: inline-block;
  color: var(--jade);
  font-family: "Libre Baskerville", serif;
  font-size: 0.9em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero-copy h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.12em;
  height: 0.18em;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.18;
  transform: skewX(-12deg);
  z-index: -1;
}

.hero-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

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

.hero-proof {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 247, 244, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(10, 16, 24, 0.07);
}

.hero-proof .label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-proof .value {
  margin: 12px 0 10px;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-proof p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line-soft);
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
}

.section {
  padding: 24px 60px 88px;
}

.section-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading .kicker {
  color: var(--jade);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 12px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.grid-two,
.card-grid,
.proof-grid,
.link-grid {
  display: grid;
  gap: 22px;
}

.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.glass-card,
.content-card,
.step-card,
.faq-card,
.proof-card,
.cta-panel {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(10, 16, 24, 0.06);
  backdrop-filter: blur(18px);
}

.content-card,
.step-card,
.proof-card,
.faq-card {
  padding: 28px;
}

.content-card h3,
.step-card h3,
.proof-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.content-card p,
.step-card p,
.proof-card p,
.intro-list li,
.content-card li,
.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.intro-list,
.content-card ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 10px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--jade);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 200, 104, 0.2);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  float: right;
  color: var(--jade);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-answer {
  padding-top: 16px;
}

.proof-card .proof-title {
  color: var(--jade);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 52px;
  background:
    linear-gradient(135deg, rgba(53, 95, 168, 0.96), rgba(10, 16, 24, 0.96)),
    var(--vblue);
  color: #fff;
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 104, 0.3), rgba(0, 200, 104, 0));
  pointer-events: none;
}

.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta-panel p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.cta-panel .btn-primary {
  background: var(--jade);
}

.cta-panel .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.cta-panel .btn-secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.context-links {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.context-links a,
.inline-link {
  color: var(--vblue);
  font-weight: 700;
  text-decoration: none;
}

.context-links a:hover,
.inline-link:hover {
  color: var(--jade);
}

footer {
  background: #f0f4f2;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 44px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  text-align: left;
}

.f-logo {
  display: flex;
  align-items: center;
}

.f-logo img {
  height: 26px;
  width: auto;
  opacity: 0.92;
}

.f-txt {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.f-txt a {
  color: inherit;
  text-decoration: none;
}

.f-txt a:hover {
  color: var(--jade);
}

@media (max-width: 1100px) {
  .hero-shell,
  .grid-two,
  .card-grid,
  .proof-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  nav {
    padding: 22px 28px;
  }

  .n-menu {
    margin-right: 12px;
  }

  .n-cta {
    padding: 11px 18px;
  }

  .hero,
  .section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero {
    padding-top: 148px;
  }

  .cta-panel {
    padding: 36px 28px;
  }

  footer {
    padding: 36px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .n-menu-panel {
    right: 0;
    left: auto;
  }

  .n-left {
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-copy p,
  .section-heading p,
  .content-card p,
  .step-card p,
  .proof-card p,
  .faq-answer p {
    font-size: 1rem;
  }

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

  .content-card,
  .step-card,
  .proof-card,
  .faq-card {
    padding: 24px;
  }
}
