:root {
  --bg: #0b0b0b;
  --bg-soft: #111111;
  --bg-elevated: #161616;
  --surface: #f4efe7;
  --surface-soft: #ece5db;
  --surface-strong: #fffaf2;
  --text: #f5efe6;
  --text-soft: rgba(245, 239, 230, 0.74);
  --text-muted: rgba(245, 239, 230, 0.52);
  --ink: #121212;
  --ink-soft: #56514b;
  --line-dark: rgba(255, 250, 242, 0.1);
  --line-light: rgba(18, 18, 18, 0.1);
  --accent: #d6ff65;
  --accent-soft: rgba(214, 255, 101, 0.14);
  --shadow-dark: 0 32px 96px rgba(0, 0, 0, 0.4);
  --shadow-light: 0 30px 80px rgba(17, 17, 17, 0.12);
  --radius: 32px;
  --radius-large: 42px;
  --radius-small: 20px;
  --container: 1140px;
  --nav-height: 88px;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --section-space-y: 4.5rem;
  --section-space-y-compact-bottom: 3.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 255, 101, 0.08), transparent 18%),
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.045), transparent 20%),
    linear-gradient(180deg, #0b0b0b 0%, #101010 24%, #0b0b0b 100%);
}

.accent-text {
  color: var(--accent);
}

.accent-text-dark {
  color: #7d9f2a;
}

.accent-underline,
.ink-underline {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.08em;
}

.accent-underline {
  text-decoration-color: var(--accent);
}

.accent-marker {
  color: inherit;
  background:
    linear-gradient(
      180deg,
      rgba(214, 255, 101, 0) 0%,
      rgba(214, 255, 101, 0) 24%,
      rgba(214, 255, 101, 0.8) 24%,
      rgba(214, 255, 101, 0.8) 90%,
      rgba(214, 255, 101, 0) 90%,
      rgba(214, 255, 101, 0) 100%
    );
  padding: 0 0.08em;
  border-radius: 0.16em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.ink-underline {
  text-decoration-color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 860px);
}

.section {
  position: relative;
  padding: var(--section-space-y) 0;
}

.section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

.section--compact {
  padding: var(--space-6) 0 var(--section-space-y-compact-bottom);
}

.services::after,
.results::after,
.contact::after,
.solution::after,
.section--tint::after {
  background: linear-gradient(90deg, transparent, rgba(18, 18, 18, 0.08), transparent);
}

.section--dark {
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 255, 101, 0.035), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
    transparent;
}

.section--tint {
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(214, 255, 101, 0.18), transparent 20%),
    linear-gradient(180deg, var(--surface-strong), var(--surface-soft));
}

.services,
.results,
.contact,
.solution {
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 255, 101, 0.14), transparent 18%),
    linear-gradient(180deg, var(--surface-strong), var(--surface));
}

.solution::before,
.results::before,
.contact::before,
.section--tint::before,
.problem::before,
.differentiator::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5.5rem;
  pointer-events: none;
}

.solution::before,
.results::before,
.contact::before,
.section--tint::before {
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.08), rgba(11, 11, 11, 0));
}

.problem::before,
.cta-band::before {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(11, 11, 11, 0.68);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.header-inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 3.5rem;
  padding: 0.2rem 0;
}

.brand__logo {
  display: block;
  width: auto;
  height: clamp(2rem, 4vw, 2.7rem);
  max-width: min(42vw, 12rem);
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(214, 255, 101, 0.08))
    drop-shadow(0 6px 16px rgba(0, 0, 0, 0.22));
}

.site-nav {
  position: fixed;
  inset: var(--nav-height) 1rem auto 1rem;
  padding: 1rem;
  display: grid;
  gap: 0.4rem;
  border-radius: 28px;
  border: 1px solid var(--line-dark);
  background: rgba(17, 17, 17, 0.96);
  box-shadow: var(--shadow-dark);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  color: var(--text-soft);
  font-weight: 500;
  transition: background-color 220ms ease, color 220ms ease;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.nav-toggle {
  width: 3rem;
  height: 3rem;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 1px;
  margin: 0;
  border-radius: 999px;
  background: var(--surface-strong);
  opacity: 0.92;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.6rem;
  padding: 0 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.button--dark {
  color: var(--ink);
  background: linear-gradient(135deg, var(--accent), #f2f7cf);
  box-shadow: 0 18px 34px rgba(214, 255, 101, 0.18);
}

.button--dark:hover,
.button--dark:focus-visible {
  filter: saturate(1.04);
  box-shadow: 0 22px 40px rgba(214, 255, 101, 0.24);
}

.button--light {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-dark);
}

.button--light:hover,
.button--light:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(214, 255, 101, 0.06);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-dark);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(214, 255, 101, 0.05);
}

.services .button--dark,
.results .button--dark,
.contact .button--dark {
  color: var(--surface-strong);
  background: linear-gradient(135deg, #111111, #242424);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
}

.services .button--dark:hover,
.results .button--dark:hover,
.contact .button--dark:hover,
.services .button--dark:focus-visible,
.results .button--dark:focus-visible,
.contact .button--dark:focus-visible {
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.button--small {
  min-height: 2.95rem;
  padding: 0 1.15rem;
}

.button--large {
  min-height: 4.2rem;
  padding: 0 1.9rem;
}

.button--full {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: var(--space-4);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(214, 255, 101, 0.08);
}

.services .eyebrow,
.results .eyebrow,
.contact .eyebrow,
.solution .eyebrow,
.section--tint .eyebrow {
  color: rgba(18, 18, 18, 0.5);
}

.section-heading {
  max-width: 860px;
}

.section-heading h2,
.hero h1 {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.section-intro {
  margin: 0 0 var(--space-4);
  max-width: 34rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(18, 18, 18, 0.68);
}

.hero {
  padding-top: 4.5rem;
  padding-bottom: 3.65rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 30rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 255, 101, 0.1), transparent 22%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.06), transparent 20%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: var(--space-10);
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: var(--space-6) 0 var(--space-2);
}

.hero-copy__support {
  display: block;
}

.hero-panel__support {
  display: none;
}

.hero-footer {
  display: none;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 10vw, 8rem);
}

.hero-text {
  max-width: 34rem;
  margin: var(--space-6) 0 0;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.75;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.proof-item,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-panel {
  position: relative;
  padding: 1rem;
  border-radius: var(--radius-large);
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(18, 18, 18, 0.9);
  box-shadow:
    var(--shadow-dark),
    0 0 40px rgba(214, 255, 101, 0.05);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -4rem -3rem auto;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 255, 101, 0.18), transparent 66%);
  pointer-events: none;
}

.chip {
  background: rgba(255, 255, 255, 0.02);
}

.hero-panel__card {
  padding: 1.7rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(214, 255, 101, 0.08), rgba(214, 255, 101, 0.01) 32%),
    #111111;
}

.panel-label {
  margin: 0 0 var(--space-4);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-stat + .panel-stat {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-dark);
}

.panel-stat strong,
.impact-number strong,
.panel-stat strong {
  font-size: 1.3rem;
}

.panel-stat span,
.impact-highlight p,
.timeline-step p,
.service-card p,
.contact-copy p,
.contact-form p {
  display: block;
  margin-top: 0.45rem;
  line-height: 1.75;
  color: inherit;
  opacity: 0.78;
}

.proof-strip {
  display: grid;
  gap: var(--space-4);
}

.proof-item {
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.2rem;
}

.problem .section-heading {
  max-width: 740px;
}

.problem .statement {
  max-width: 20ch;
  margin: var(--space-6) 0 0;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--text-soft);
}

.solution-card {
  padding: var(--space-8);
  border-radius: var(--radius-large);
  border: 1px solid var(--line-light);
  background:
    radial-gradient(circle at top right, rgba(214, 255, 101, 0.14), transparent 24%),
    rgba(255, 250, 242, 0.82);
  box-shadow:
    var(--shadow-light),
    0 0 26px rgba(214, 255, 101, 0.06);
}

.solution-card .section-heading {
  max-width: 980px;
}

.solution-highlights {
  display: none;
}

.differentiator {
  overflow: hidden;
}

.differentiator::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(214, 255, 101, 0.08), transparent 68%);
  pointer-events: none;
}

.differentiator-grid,
.contact-grid,
.results-grid {
  display: grid;
  gap: var(--space-10);
}

.differentiator-copy h2,
.contact-copy h2,
.cta-band__inner h2 {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.differentiator-copy h2,
.contact-copy h2,
.cta-band__inner h2 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.differentiator-copy p {
  max-width: 34rem;
  margin: var(--space-5) 0 0;
  line-height: 1.78;
  color: var(--text-soft);
}

.differentiator-message {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--text) !important;
}

.differentiator-preview {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin-top: 2rem;
  border-radius: 1.2rem;
}

.impact-card {
  position: relative;
  padding: 1.4rem;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(214, 255, 101, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #111111;
  box-shadow:
    var(--shadow-dark),
    0 0 52px rgba(214, 255, 101, 0.06);
}

.impact-card__top,
.impact-numbers {
  display: grid;
  gap: 0.85rem;
}

.impact-card__top {
  grid-template-columns: repeat(2, max-content);
}

.impact-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--accent), #edf3c2);
}

.impact-badge--link {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.impact-badge--link:hover,
.impact-badge--link:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 10px 24px rgba(214, 255, 101, 0.2);
  outline: none;
}

.impact-badge--muted {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.impact-numbers {
  margin: var(--space-5) 0 var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.impact-number {
  min-width: 0;
  padding: 1.5rem;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
}

.impact-label {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact-number strong {
  display: block;
  max-width: 100%;
  font-size: clamp(2.3rem, 4.4vw, 4.4rem);
  line-height: 0.96;
  color: var(--text);
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.impact-number p {
  margin: 0.7rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-soft);
}

@media (max-width: 1160px) {
  .impact-numbers {
    grid-template-columns: minmax(0, 1fr);
  }
}

.impact-highlight {
  margin: 0 0 var(--space-4);
  padding: var(--space-5) 0 var(--space-6);
  border-bottom: 1px solid var(--line-dark);
}

.impact-highlight p {
  margin: 0;
}

.impact-outcomes {
  padding: var(--space-2) 0 var(--space-5);
}

.impact-outcomes p {
  margin: 0 0 var(--space-4);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-outcomes ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.impact-outcomes li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.impact-outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(214, 255, 101, 0.2);
}

.service-card span,
.timeline-step span {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.service-card,
.timeline-step,
.contact-form {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: rgba(255, 250, 242, 0.74);
  box-shadow:
    var(--shadow-light),
    0 0 22px rgba(214, 255, 101, 0.03);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
}

.service-card:hover,
.service-card:focus-within,
.timeline-step:hover,
.timeline-step:focus-within,
.contact-form:hover,
.contact-form:focus-within {
  transform: translateY(-6px);
  border-color: rgba(18, 18, 18, 0.16);
  box-shadow:
    0 32px 60px rgba(17, 17, 17, 0.14),
    0 0 28px rgba(214, 255, 101, 0.06);
  background: rgba(255, 250, 242, 0.92);
}

.service-card::after,
.timeline-step::after {
  content: "";
  position: absolute;
  inset: auto -1.6rem -1.6rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 255, 101, 0.18), transparent 66%);
  pointer-events: none;
}

.service-card span,
.timeline-step span {
  color: rgba(18, 18, 18, 0.48);
}

.service-card h3,
.timeline-step h3 {
  margin: var(--space-4) 0 var(--space-3);
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.services .service-card h3 {
  margin-top: 0;
}

.process {
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(214, 255, 101, 0.07), transparent 20%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
}

.process::before {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0));
}

.process::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.process .section-heading {
  max-width: 860px;
}

.process .section-heading h2 {
  color: var(--text);
}

.process .timeline::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.process .timeline-step {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at bottom right, rgba(214, 255, 101, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(17, 17, 17, 0.96);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(214, 255, 101, 0.04);
}

.process .timeline-step:hover,
.process .timeline-step:focus-within {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at bottom right, rgba(214, 255, 101, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(17, 17, 17, 0.98);
  box-shadow:
    0 30px 62px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(214, 255, 101, 0.05);
}

.process .timeline-step span {
  color: var(--text-muted);
}

.process .timeline-step h3 {
  color: var(--text);
}

.process .timeline-step p {
  color: var(--text-soft);
  opacity: 1;
}

.timeline {
  position: relative;
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.timeline::before {
  content: "";
  position: absolute;
  inset: 1.2rem auto 1.2rem 1rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.18), rgba(18, 18, 18, 0.04));
  display: none;
}

.timeline-step {
  overflow: hidden;
}

.cta-band {
  padding-top: var(--section-space-y);
  padding-bottom: var(--section-space-y);
}

.results-grid {
  gap: var(--space-6);
}

.logo-slider {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-4);
  padding: var(--space-3) 0 var(--space-4);
  background: transparent;
  box-shadow: none;
  border: 0;
}

.logo-slider__track {
  display: flex;
  gap: var(--space-4);
  width: max-content;
  animation: client-marquee 32s linear infinite;
  will-change: transform;
}

.logo-slider:hover .logo-slider__track,
.logo-slider:focus-within .logo-slider__track {
  animation-play-state: paused;
}

.logo-card {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 clamp(15rem, 34vw, 18rem);
  min-height: 9.75rem;
  padding: var(--space-5);
  border-radius: var(--radius);
  border: 1px solid rgba(18, 18, 18, 0.05);
  background:
    radial-gradient(circle at top right, rgba(214, 255, 101, 0.08), transparent 24%),
    rgba(255, 250, 242, 0.98);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 2px 10px rgba(0, 0, 0, 0.02),
    0 0 20px rgba(214, 255, 101, 0.025);
  overflow: hidden;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
}

.logo-card:hover,
.logo-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(18, 18, 18, 0.08);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.06),
    0 4px 14px rgba(0, 0, 0, 0.025),
    0 0 24px rgba(214, 255, 101, 0.04);
  background:
    radial-gradient(circle at top right, rgba(214, 255, 101, 0.1), transparent 24%),
    rgba(255, 250, 242, 1);
}

.logo-card::after {
  content: "";
  position: absolute;
  inset: auto -1.8rem -1.8rem auto;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 255, 101, 0.1), transparent 68%);
  pointer-events: none;
}

.logo-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 11.5rem;
  max-height: 4.9rem;
  object-fit: contain;
  filter: saturate(0.98) contrast(1.02);
}

.cta-band__inner {
  display: grid;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-8);
  border-radius: var(--radius-large);
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at top left, rgba(214, 255, 101, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  box-shadow:
    var(--shadow-dark),
    0 0 36px rgba(214, 255, 101, 0.05);
}

.contact-copy p {
  max-width: 34rem;
  color: rgba(18, 18, 18, 0.7);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-8);
}

.contact-email {
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(18, 18, 18, 0.16);
}

.funding-back {
  flex-shrink: 0;
}

.funding-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(214, 255, 101, 0.08), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.055), transparent 22%),
    var(--bg);
}

.funding-section {
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  align-items: center;
}

.funding-layout {
  display: grid;
  gap: var(--space-10);
  justify-items: center;
  max-width: 1100px;
}

.funding-copy {
  max-width: 900px;
  text-align: center;
}

.funding-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.funding-copy p {
  max-width: 820px;
  margin: var(--space-6) auto 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.8;
}

.funding-poster-card {
  width: min(100%, 760px);
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(214, 255, 101, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    var(--shadow-dark),
    0 0 34px rgba(214, 255, 101, 0.05);
}

.funding-poster-image {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 12px);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

@media (max-width: 719px) {
  .hero-grid,
  .differentiator-grid,
  .contact-grid,
  .results-grid {
    gap: var(--space-8);
  }

  .hero {
    padding-top: 3.25rem;
    padding-bottom: 3.15rem;
  }

  .hero-copy {
    padding-top: var(--space-3);
    padding-bottom: 0;
  }

  .hero-copy__support .hero-text,
  .hero-panel__support .hero-text {
    margin-top: var(--space-5);
  }

  .hero-actions {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: var(--space-6);
  }

  .hero-actions .button {
    min-height: 3.3rem;
    padding: 0 1.05rem;
    font-size: 0.94rem;
    white-space: nowrap;
    flex: 0 1 auto;
  }

  .logo-slider {
    margin-top: var(--space-5);
    padding-bottom: var(--space-5);
  }

  .logo-card {
    flex-basis: clamp(13.5rem, 64vw, 16rem);
    min-height: 8.8rem;
  }

  .contact-copy p {
    max-width: none;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    margin-top: var(--space-6);
  }

  .contact-actions .button {
    min-height: 3.25rem;
    padding: 0 1rem;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .contact-email {
    min-width: 0;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.contact-form {
  display: grid;
  gap: var(--space-3);
}

.contact-form label {
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(18, 18, 18, 0.8);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(18, 18, 18, 0.34);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(18, 18, 18, 0.05);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(18, 18, 18, 0.58);
}

.site-footer {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-top: 1px solid rgba(214, 255, 101, 0.16);
  background:
    radial-gradient(circle at 80% 0%, rgba(214, 255, 101, 0.09), transparent 26%),
    linear-gradient(180deg, #101010 0%, #0b0b0b 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 255, 101, 0.48), transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: -6rem auto auto 50%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 255, 101, 0.06), transparent 68%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  display: grid;
  gap: var(--space-8);
  color: var(--text-muted);
  font-size: 0.94rem;
}

.footer-main {
  display: grid;
  gap: clamp(2rem, 7vw, 4.5rem);
}

.footer-brand,
.footer-column,
.footer-bottom {
  min-width: 0;
}

.footer-brand {
  display: grid;
  row-gap: 0.9rem;
  max-width: 24rem;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.55rem;
}

.footer-logo img {
  width: auto;
  height: 2.4rem;
  max-width: 11.5rem;
  object-fit: contain;
  filter:
    drop-shadow(0 0 16px rgba(214, 255, 101, 0.06))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.footer-brand p,
.footer-column p,
.footer-bottom p {
  margin: 0;
}

.footer-small {
  max-width: 20rem;
  color: rgba(245, 239, 230, 0.46);
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.footer-title {
  color: rgba(245, 239, 230, 0.52);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(245, 239, 230, 0.66);
  line-height: 1.35;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--accent);
  outline: none;
}

.footer-contact {
  gap: 0.8rem;
}

.footer-bottom {
  display: grid;
  gap: 0.75rem;
  padding-top: var(--space-5);
  border-top: 1px solid var(--line-dark);
  color: rgba(245, 239, 230, 0.44);
}

.footer-funding {
  color: inherit;
  font-size: inherit;
}

.footer-funding a {
  color: rgba(245, 239, 230, 0.7);
  font-weight: 600;
  border-bottom: 1px solid rgba(245, 239, 230, 0.18);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-funding a:hover,
.footer-funding a:focus-visible {
  color: var(--text);
  border-color: rgba(214, 255, 101, 0.52);
  outline: none;
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 255, 101, 0.14);
  border-radius: 999px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(214, 255, 101, 0.1), rgba(214, 255, 101, 0.03)),
    rgba(16, 16, 16, 0.84);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(214, 255, 101, 0.05);
  backdrop-filter: blur(16px);
  transition:
    width 260ms ease,
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible,
.floating-whatsapp:active {
  width: 9.7rem;
  justify-content: flex-start;
  gap: 0.7rem;
  padding: 0 1rem 0 0.7rem;
  transform: translateY(-3px);
  border-color: rgba(214, 255, 101, 0.24);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(214, 255, 101, 0.08);
  outline: none;
}

.floating-whatsapp__icon {
  flex: 0 0 auto;
  width: 2.05rem;
  height: 2.05rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #edf3c2);
  box-shadow: 0 0 0 0 rgba(214, 255, 101, 0.35);
  animation: pulse 2.5s infinite;
}

.floating-whatsapp__icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: #0f0f0f;
}

.floating-whatsapp__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  font-size: 0.98rem;
  font-weight: 600;
  transform: translateX(-0.2rem);
  transition:
    max-width 220ms ease,
    opacity 180ms ease,
    transform 220ms ease;
}

.floating-whatsapp:hover .floating-whatsapp__label,
.floating-whatsapp:focus-visible .floating-whatsapp__label,
.floating-whatsapp:active .floating-whatsapp__label {
  max-width: 6.4rem;
  opacity: 1;
  transform: translateX(0);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 255, 101, 0.34);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(214, 255, 101, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(214, 255, 101, 0);
  }
}

@keyframes client-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--marquee-shift, 50%)));
  }
}

@media (min-width: 720px) {
  :root {
    --section-space-y: 6rem;
    --section-space-y-compact-bottom: 4rem;
  }

  .section {
    padding: var(--section-space-y) 0;
  }

  .section--compact {
    padding: var(--space-6) 0 var(--section-space-y-compact-bottom);
  }

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .impact-numbers {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band__inner {
    grid-template-columns: 1.5fr auto;
    padding: var(--space-10);
  }

  .floating-whatsapp {
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.15fr) minmax(10rem, 0.55fr) minmax(13rem, 0.7fr);
    align-items: start;
  }

  .footer-bottom {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .footer-funding {
    justify-self: end;
    text-align: right;
  }
}

@media (min-width: 960px) {
  :root {
    --section-space-y: 6.75rem;
  }

  .container {
    width: min(calc(100% - 4rem), var(--container));
  }

  .site-footer {
    padding-top: 3rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-header {
    background: rgba(11, 11, 11, 0.58);
    backdrop-filter: blur(24px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  }

  .site-nav {
    position: static;
    inset: auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.8rem 1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(3rem, 5vw, 4rem);
    align-items: center;
  }

  .differentiator-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.92fr);
    gap: 4.5rem;
    align-items: center;
  }

  .hero {
    padding-top: 5.5rem;
    padding-bottom: 2.25rem;
  }

  .brand__logo {
    height: 2.9rem;
    max-width: 13rem;
  }

  .hero-copy {
    max-width: 42rem;
    padding: 0;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(3.5rem, 5vw, 5.5rem);
  }

  .hero-text {
    max-width: 42rem;
    margin-top: 0;
  }

  .hero-actions {
    margin-top: 1.5rem;
  }

  .hero-panel {
    margin-top: 0;
    max-width: 37rem;
    margin-left: auto;
    align-self: center;
    padding: 1.15rem;
  }

  .hero-panel__card {
    padding: 2rem;
  }

  .hero-copy__support {
    display: none;
  }

  .hero-panel__support {
    display: none;
  }

  .hero-footer {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    justify-content: space-between;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
    margin: clamp(2rem, 3vw, 2.5rem) 0 0;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.18),
      0 0 40px rgba(180, 255, 80, 0.08);
    text-align: left;
    transition: all 0.25s ease;
  }

  .hero-footer:hover {
    transform: translateY(-2px);
  }

  .hero-footer .hero-text {
    max-width: 560px;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.72;
    color: rgba(245, 239, 230, 0.82);
  }

  .hero-footer .hero-actions {
    justify-content: flex-end;
    align-items: center;
    gap: 0.95rem;
    margin-top: 0;
    flex-shrink: 0;
  }

  .hero-footer .button {
    min-height: 3.6rem;
  }

  .differentiator-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: clamp(2.5rem, 3.8vw, 3.5rem);
  }

  .differentiator-copy {
    max-width: 620px;
  }

  .differentiator-copy h2 {
    max-width: 620px;
    font-size: clamp(4rem, 5vw, 5.625rem);
    line-height: 0.97;
  }

  .differentiator-copy p {
    max-width: 620px;
  }

  .services-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .services .section-heading {
    max-width: 58rem;
  }

  .services .section-heading h2 {
    max-width: 18ch;
    font-size: clamp(3rem, 4.1vw, 4.35rem);
    line-height: 0.98;
    text-wrap: balance;
  }

  .services-grid > .service-card:nth-child(-n + 3) {
    grid-column: span 2;
  }

  .services-grid > .service-card:nth-child(n + 4) {
    grid-column: span 3;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .section-heading {
    max-width: 760px;
  }

  .solution-card,
  .impact-card,
  .cta-band__inner {
    padding: 3rem;
  }

  .impact-card {
    max-width: 33rem;
    margin-left: auto;
  }

  .timeline,
  .services-grid {
    margin-top: 2.75rem;
  }

  .logo-slider {
    margin-top: 1.35rem;
  }

  .floating-whatsapp {
    right: 2rem;
    bottom: 2rem;
    width: auto;
    min-width: 8.2rem;
    height: 3.3rem;
    justify-content: flex-start;
    gap: 0.65rem;
    padding: 0 1rem 0 0.75rem;
    border-color: rgba(214, 255, 101, 0.16);
    box-shadow:
      0 12px 26px rgba(0, 0, 0, 0.2),
      0 0 18px rgba(214, 255, 101, 0.04);
  }

  .floating-whatsapp:hover,
  .floating-whatsapp:focus-visible,
  .floating-whatsapp:active {
    width: auto;
    min-width: 8.7rem;
    padding: 0 1.05rem 0 0.75rem;
    box-shadow:
      0 16px 30px rgba(0, 0, 0, 0.22),
      0 0 20px rgba(214, 255, 101, 0.06);
  }

  .floating-whatsapp__label {
    max-width: 5.6rem;
    opacity: 1;
    transform: translateX(0);
  }

  .timeline::before {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
