:root {
  --tomoro-lime: #d8ff00;
  --tomoro-blue: #1456fb;
  --tomoro-teal: #20c8bd;
  --tomoro-ice: #beeae5;
  --tomoro-sand: #eee8df;
  --tomoro-slate: #1c1f20;
  --tomoro-navy: #031b27;
  --tomoro-line-dark: rgba(238, 232, 223, 0.2);
  --tomoro-line-light: rgba(3, 27, 39, 0.22);
  --max-content: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Rethink Sans", sans-serif;
  background: var(--tomoro-sand);
  color: var(--tomoro-slate);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--tomoro-lime);
  color: var(--tomoro-slate);
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  z-index: 200;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  padding: 1rem 1.25rem;
}

.header-inner {
  width: min(var(--max-content), 100%);
  margin: 0 auto;
  background: rgba(3, 27, 39, 0.84);
  backdrop-filter: blur(8px);
  border: 1px solid var(--tomoro-line-dark);
  border-radius: 999px;
  padding: 0.6rem 0.7rem 0.6rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 14px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}

.site-nav a {
  color: var(--tomoro-sand);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  transition: color 150ms ease, background 150ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--tomoro-navy);
  background: var(--tomoro-lime);
}

.header-cta {
  text-decoration: none;
  color: var(--tomoro-slate);
  background: var(--tomoro-lime);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #c5ef00;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--tomoro-line-dark);
  background: transparent;
  color: var(--tomoro-sand);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
}

.container {
  width: min(var(--max-content), calc(100% - 2.5rem));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.narrow {
  max-width: 760px;
}

.section {
  padding: 6rem 0;
}

.theme-light {
  background: var(--tomoro-sand);
  color: var(--tomoro-slate);
}

.theme-dark {
  background: linear-gradient(180deg, #031b27 0%, #0d2534 100%);
  color: var(--tomoro-sand);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2rem;
  align-items: end;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 5.2vw, 4.9rem);
  line-height: 0.94;
  max-width: 17ch;
}

.lead {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 2vw, 1.22rem);
  max-width: 64ch;
  color: rgba(238, 232, 223, 0.9);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(238, 232, 223, 0.5);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
}

.eyebrow-dark {
  border-color: var(--tomoro-line-light);
  color: #24343f;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lime {
  background: var(--tomoro-lime);
  color: var(--tomoro-slate);
}

.btn-outline {
  border-color: rgba(238, 232, 223, 0.55);
  color: var(--tomoro-sand);
}

.btn-outline:hover {
  background: rgba(238, 232, 223, 0.12);
}

.btn-dark {
  background: var(--tomoro-navy);
  color: var(--tomoro-sand);
}

.btn-ghost {
  border-color: var(--tomoro-line-light);
  color: var(--tomoro-slate);
}

.btn-ghost:hover {
  background: rgba(20, 86, 251, 0.08);
}

.hero-card {
  border: 1px solid var(--tomoro-line-dark);
  background: rgba(238, 232, 223, 0.05);
  border-radius: 1rem;
  padding: 1.3rem;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}

.hero-card-title {
  color: var(--tomoro-lime);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}

.hero-card-stat {
  margin-top: 0.55rem;
  font-size: clamp(1.2rem, 2.6vw, 2.1rem);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.1;
}

.hero-card-copy {
  margin-top: 0.7rem;
  color: rgba(238, 232, 223, 0.85);
  font-size: 0.92rem;
}

.hero-tags {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span {
  border: 1px solid var(--tomoro-line-dark);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
}

.section-header {
  margin-bottom: 2.2rem;
}

.section-header h2,
.narrow h2 {
  font-size: clamp(1.8rem, 4.3vw, 3.1rem);
  line-height: 1.03;
}

.section-header + p,
.narrow p {
  margin-top: 1rem;
  font-size: 1.03rem;
  max-width: 70ch;
  color: rgba(28, 31, 32, 0.85);
}

.theme-dark .section-header + p,
.theme-dark .narrow p {
  color: rgba(238, 232, 223, 0.85);
}

.card-grid {
  display: grid;
  gap: 0.95rem;
}

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

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

.card {
  border: 1px solid var(--tomoro-line-dark);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.9rem;
  padding: 1.1rem;
  transition: transform 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 255, 0, 0.6);
}

.card h3 {
  font-size: 1.12rem;
}

.card p {
  margin-top: 0.55rem;
  color: rgba(238, 232, 223, 0.82);
  font-size: 0.92rem;
}

.card-light {
  border-color: var(--tomoro-line-light);
  background: rgba(255, 255, 255, 0.42);
}

.card-light p {
  color: rgba(28, 31, 32, 0.8);
}

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

.outcome {
  border: 1px solid var(--tomoro-line-light);
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.35);
}

.outcome h3 {
  font-size: 1.2rem;
}

.outcome p {
  margin-top: 0.6rem;
  color: rgba(28, 31, 32, 0.85);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.7rem;
  align-items: start;
}

.split-primary h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
}

.split-primary p {
  margin-top: 1rem;
  font-size: 1.02rem;
}

.check-list,
.number-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.check-list li,
.number-list li {
  color: rgba(238, 232, 223, 0.91);
}

.theme-light .check-list li,
.theme-light .number-list li {
  color: rgba(28, 31, 32, 0.85);
}

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

.offer {
  border: 1px solid var(--tomoro-line-dark);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.9rem;
  padding: 1rem;
  transition: transform 220ms ease, border-color 220ms ease;
}

.offer:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 200, 189, 0.8);
}

.offer-step {
  color: var(--tomoro-lime);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.offer h3 {
  margin-top: 0.2rem;
  font-size: 1.04rem;
}

.offer-range {
  margin-top: 0.32rem;
  color: rgba(216, 255, 0, 0.95);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer p:last-child {
  margin-top: 0.5rem;
  color: rgba(238, 232, 223, 0.82);
  font-size: 0.86rem;
}

.pathway {
  margin-top: 1.3rem;
  font-size: 0.9rem;
  color: rgba(238, 232, 223, 0.8);
}

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

.proof-card {
  border: 1px solid var(--tomoro-line-dark);
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
}

.proof-card h3 {
  font-size: 1.2rem;
}

.proof-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.proof-card li {
  color: rgba(238, 232, 223, 0.87);
}

.final-cta {
  text-align: center;
}

.footer-logo {
  height: 20px;
  width: auto;
}

.final-cta h2 {
  margin-top: 1rem;
  font-size: clamp(1.95rem, 4vw, 3rem);
}

.final-cta p {
  margin: 0.85rem auto 0;
  max-width: 58ch;
  color: rgba(28, 31, 32, 0.83);
}

.site-footer {
  border-top: 1px solid var(--tomoro-line-light);
  padding: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.aura {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(90px);
}

.aura-lime {
  top: -130px;
  right: -140px;
  width: 420px;
  height: 420px;
  background: rgba(216, 255, 0, 0.52);
}

.aura-blue {
  left: -200px;
  bottom: 8%;
  width: 420px;
  height: 420px;
  background: rgba(20, 86, 251, 0.34);
}

.aura-teal {
  right: 17%;
  bottom: -240px;
  width: 420px;
  height: 420px;
  background: rgba(32, 200, 189, 0.4);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .header-inner {
    grid-template-columns: auto auto 1fr auto;
  }
}

@media (max-width: 900px) {
  .hero-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .card-grid.six,
  .card-grid.three,
  .outcome-grid,
  .offer-grid,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(var(--max-content), 100%);
    background: rgba(3, 27, 39, 0.97);
    border: 1px solid var(--tomoro-line-dark);
    border-radius: 1rem;
    padding: 0.9rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 4.4rem 0;
  }

  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .header-cta {
    display: none;
  }

  .card-grid.six,
  .card-grid.three,
  .outcome-grid,
  .offer-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 7.3rem;
    min-height: auto;
  }

  .container {
    width: min(var(--max-content), calc(100% - 1.6rem));
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }
}
