:root {
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: #5a5a5a;
  --line: #e8e8e8;
  --line-soft: #f2f2f2;
  --accent-1: #009586;
  --accent-2: #7209B7;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius: 0px;
  --transition: 180ms ease;
}

@font-face {
  font-family: "Aspergit";
  src: url("fonts/AspergitLight.otf") format("opentype");
  font-weight: 200 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aspergit";
  src: url("fonts/Aspergit.otf") format("opentype");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aspergit";
  src: url("fonts/AspergitBold.otf") format("opentype");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: 0;
  background: white;
  pointer-events: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 72px;
  position: relative;
  z-index: 1;
}

body.fullpage-active {
  overflow: hidden;
  overscroll-behavior: none;
  height: 100vh;
}

body.fullpage-active .page {
  padding: 0 24px;
  height: 100vh;
}

.fullpage {
  position: relative;
  height: auto;
  overflow: visible;
  touch-action: pan-y;
}

.fp-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: auto;
  overflow: visible;
}

body.fullpage-active .fullpage {
  height: 100vh;
  overflow: visible;
  touch-action: pan-y;
}

body.fullpage-active .fp-section {
  position: absolute;
  inset: 0;
  height: 100vh;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  overflow: visible;
}

body.fullpage-active .fp-section.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

body.fullpage-active .fp-section.is-active.is-scrollable {
  overflow-y: auto;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
}

body.no-fullpage .page {
  padding: 56px 24px 72px;
  height: auto;
}

body.no-fullpage .fullpage {
  height: auto;
  overflow: visible;
  touch-action: auto;
}

body.no-fullpage .fp-section {
  position: relative;
  min-height: auto;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

h1, h2, h3 {
  font-family: "Aspergit", "Manrope", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: none;
}

.logo {
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  line-height: 0;
  padding: 2px 0;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-cta {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.26rem;
  border-bottom: 1px solid var(--accent-1);
  padding-bottom: 0px;
  transition: border-color var(--transition), color var(--transition);
}

.nav-cta:hover {
  color: var(--accent-1);
  border-bottom-color: var(--accent-2);
}

.hero {
  padding-top: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  padding: 48px 0 24px;
  max-width: 760px;
  margin: 0 auto;
}

.hero .nav {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
}

.hero-copy {
  max-width: 720px;
}

.subheadline {
  font-size: 1.1rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  background: var(--text);
  color: #fff;
  border: 1px solid var(--text);
  padding: 14px 26px;
  border-radius: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: var(--accent-1);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.fine {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.card-title {
  margin-bottom: 8px;
}

.card-sub {
  margin-bottom: 24px;
}

.lead-form {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.field {
  display: grid;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: var(--muted);
}

.field input {
  padding: 12px 14px;
  border-radius: 0;
  border: 1px solid #e6e6e6;
  background: var(--section-input, #fafafa);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(0, 149, 134, 0.12);
  background: #fff;
}

.microcopy {
  font-size: 0.8rem;
  color: var(--muted);
}

.form-status {
  font-size: 0.9rem;
  margin: 0;
  min-height: 1.2em;
}

.form-status.success {
  color: var(--accent-1);
}

.form-status.error {
  color: var(--accent-2);
}

.section {
  padding: 64px 0;
  border-top: none;
  position: relative;
  color: var(--text);
  --section-bg: #ffffff;
  --section-text: #0b0b0b;
  --section-muted: #5a5a5a;
  --section-line: #e8e8e8;
  --section-card: #ffffff;
  --section-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --section-input: #fafafa;
  --text: var(--section-text);
  --muted: var(--section-muted);
  --line: var(--section-line);
  --shadow: var(--section-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--section-bg);
  z-index: -1;
}

body.fullpage-active .section::before {
  display: none;
}

body.fullpage-active .fullpage::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--fullpage-bg, #ffffff);
  z-index: 0;
  transition: background 320ms ease;
}

.section:nth-of-type(even) {
  --section-bg: #0b0b0b;
  --section-text: #f7f7f7;
  --section-muted: rgba(247, 247, 247, 0.68);
  --section-line: rgba(247, 247, 247, 0.16);
  --section-card: #121212;
  --section-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  --section-input: rgba(255, 255, 255, 0.06);
}

.section:nth-of-type(even) h2::after {
  background: linear-gradient(90deg, rgba(0, 149, 134, 0.6), rgba(114, 9, 183, 0.65));
}

.section:nth-of-type(even) .btn {
  background: #f7f7f7;
  color: #0b0b0b;
  border-color: #f7f7f7;
}

.section:nth-of-type(even) .btn:hover {
  border-color: var(--accent-1);
}

.section:nth-of-type(even) .btn-ghost {
  background: transparent;
  color: #f7f7f7;
  border-color: rgba(247, 247, 247, 0.35);
}

.section:nth-of-type(even) .field input {
  background: var(--section-input);
  border-color: rgba(247, 247, 247, 0.2);
  color: #f7f7f7;
}

.section:nth-of-type(even) .field input::placeholder {
  color: rgba(247, 247, 247, 0.55);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.6fr);
  gap: 40px 80px;
  align-items: start;
  width: 100%;
}

.gains-layout {
  grid-template-columns: 1fr;
  gap: 24px;
}

.section-cta {
  margin-top: 24px;
}

.section-cta.center {
  display: flex;
  justify-content: center;
}

.quote-grid {
  grid-template-columns: minmax(240px, 1.1fr) minmax(280px, 1.6fr);
  align-items: center;
}

.quote-block {
  max-width: 360px;
}

.quote-text {
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.4;
  color: var(--muted);
  margin-bottom: 24px;
}

.quote-author {
  font-size: 0.85rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.quote-copy {
  max-width: 560px;
}

.facts-head {
  text-align: center;
  margin-bottom: 32px;
}

.facts-section {
  justify-content: center;
}

.facts-wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.fact-card {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  padding: 10px 8px;
}

.fact-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--text);
  opacity: 0.85;
}

.fact-icon svg {
  width: 36px;
  height: 36px;
}

.fact-number {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.fact-label {
  font-size: 0.95rem;
  margin: 0;
}
.section h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(90deg, rgba(0, 149, 134, 0.6), rgba(114, 9, 183, 0.45));
}

.pillars {
  display: grid;
  gap: 20px;
}

.pillar-card {
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 0;
  background: var(--section-card);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.clean-list li {
  padding: 12px 0 12px 16px;
  position: relative;
  border-bottom: none;
}

.clean-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--accent-1);
  position: absolute;
  left: 0;
  top: 10px;
}

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

.gain-card {
  position: relative;
  min-height: 190px;
  border: 1px solid currentColor;
  padding: 22px 22px 56px;
  background: transparent;
  transition: border-color var(--transition), transform var(--transition);
}

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

.gain-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0;
}

.gain-toggle {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 2.8rem;
  font-weight: 100;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}

.gain-toggle:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.gain-body {
  margin-top: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 240ms ease, opacity 240ms ease;
}

.gain-body p {
  font-family: "Aspergit", "Manrope", system-ui, sans-serif;
  font-weight: 300;
}

.gain-card.is-open .gain-body {
  opacity: 1;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: none;
  padding-bottom: 16px;
}

.step-number {
  font-family: "Aspergit", "Manrope", system-ui, sans-serif;
  font-size: 1.05rem;
  color: var(--accent-2);
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}

.footer {
  display: grid;
  gap: 12px;
  padding-top: 48px;
  border-top: none;
  font-size: 0.85rem;
  margin-top: 32px;
}

.footer-line {
  width: 120px;
  height: 1px;
  background: transparent;
  display: none;
}

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

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

@media (max-width: 900px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 32px;
    max-width: 100%;
  }

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

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

@media (max-width: 640px) {
  .page {
    padding: 32px 18px 48px;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-card {
    padding: 24px;
  }

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

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