/* ── SHARED SECTION ── */
section {
  padding: 80px 2.5rem;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal-darkest);
  padding: 0 2.5rem;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img {
  height: 28px;
  object-fit: contain;
}
.nav-pipe {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}
.nav-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-lighten-40);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fff;
}

/* ── HERO ── */
.hero {
  background: var(--color-background);
  color: var(--color-foreground);
  padding: 80px 2.5rem 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  color: #fff;
}
.hero h1 .pill {
  background: #fff;
  color: var(--teal-darkest);
  padding: 0 10px 3px;
  border-radius: 8px;
  display: inline-block;
}
.hero h1 .yellow {
  color: var(--color-secondary);
}
.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── WAVE ── */
.wave {
  line-height: 0;
  background: var(--color-background);
}
.wave svg {
  display: block;
}

/* ── SERVICES ── */
.services {
  background: var(--color-secondary-background);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

/* ── TOOLS ── */
.tools {
  background: #fff;
}
.tools-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.tool-featured {
  background: var(--color-background);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.tool-featured::after {
  content: "POG";
  position: absolute;
  right: -24px;
  top: -24px;
  font-family: "Baloo 2", cursive;
  font-size: 10rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.055);
  line-height: 1;
  pointer-events: none;
}
.tf-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 0.75rem;
}
.tf-title {
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: #fff;
}
.tf-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.tools-upcoming {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* ── PROCESS ── */
.process {
  background: var(--color-background);
}
.process .section-label {
  color: rgba(255, 255, 255, 0.5);
}
.process .section-title {
  color: #fff;
}
.process .section-sub {
  color: rgba(255, 255, 255, 0.7);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
}

/* ── CTA ── */
.cta-section {
  background: var(--teal-darkest);
  text-align: center;
  padding: 80px 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(91, 196, 191, 0.1);
  pointer-events: none;
}
.cta-section .section-label {
  color: var(--color-lighten-40);
  position: relative;
}
.cta-section h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  position: relative;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 300;
  max-width: 380px;
  margin: 0 auto 2.5rem;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: var(--teal-darkest);
  color: rgba(255, 255, 255, 0.38);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 22px;
  object-fit: contain;
  opacity: 0.35;
}
.footer-brand span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.07em;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.72);
}
.footer-copy {
  font-size: 11px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 0 1.25rem;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 56px 1.25rem 56px;
  }
  section {
    padding: 60px 1.25rem;
  }
  .tool-featured {
    grid-template-columns: 1fr;
  }
  .tool-featured::after {
    display: none;
  }
  footer {
    padding: 1.5rem 1.25rem;
  }
}
