:root {
  --color-dark: #212121;
  --color-ink: #151515;
  --color-muted: #6b6b6b;
  --color-light: #f0f5f9;
  --color-line: #e7edf2;
  --color-white: #ffffff;
  --color-primary: #F80757;
  --color-primary-soft: rgba(248, 7, 87, 0.12);
  --font-body: "Inter", sans-serif;
  --font-display: "Oswald", sans-serif;
  --section-space: clamp(76px, 9vw, 120px);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 2;
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--color-white);
  background: var(--color-primary);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

a:hover,
a:focus {
  color: var(--color-primary);
}

p {
  margin: 0;
}

p + p {
  margin-top: 18px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.28;
  color: var(--color-dark);
  margin: 0;
}

h1 {
  font-size: clamp(34px, 4.15vw, 50px);
  line-height: 1.2;
  color: var(--color-white);
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
}

h3 {
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: 0.08em;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 18px;
  color: var(--color-white);
  background: var(--color-primary);
}

.skip-link:focus {
  top: 16px;
  color: var(--color-white);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 880px);
}

.rel-1 {
  position: relative;
  z-index: 1;
}

.masked {
  position: relative;
}

.masked::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(14, 14, 14, 0.72);
}

.section {
  padding-block: var(--section-space);
}

.bgc-light {
  background: var(--color-light);
}

.section-header {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header p {
  color: var(--color-muted);
}

.text-white h2,
.text-white p,
.text-white .eyebrow {
  color: var(--color-white);
}

.spacer {
  position: relative;
  width: 50px;
  height: 1px;
  margin: 20px auto 22px;
  background: var(--color-primary);
}

.spacer .dot {
  position: absolute;
  left: 50%;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateX(-50%);
}

.spacer-white,
.spacer-white .dot {
  background: var(--color-white);
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.eyebrow,
.microcopy,
.recommendation,
.dashboard-top,
.metric-row span,
.brand,
.nav-links,
.footer-links,
label span,
legend {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--color-primary);
  margin-bottom: 16px;
}

.hero .eyebrow {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
  -webkit-font-smoothing: auto;
  text-rendering: auto;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 30px 12px;
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.btn:hover,
.btn:focus {
  color: var(--color-primary);
  background: transparent;
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 42px;
  padding: 8px 18px 7px;
  font-size: 11px;
}

.btn-b-white {
  border-color: var(--color-white);
  background: transparent;
}

.btn-b-white:hover,
.btn-b-white:focus {
  color: var(--color-dark);
  border-color: var(--color-white);
  background: var(--color-white);
}

.btn-b-dark {
  color: var(--color-dark);
  border-color: var(--color-dark);
  background: transparent;
}

.btn-b-dark:hover,
.btn-b-dark:focus {
  color: var(--color-white);
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--color-white);
  background: rgba(20, 20, 20, 0.18);
  backdrop-filter: blur(14px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(20, 20, 20, 0.96);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--container));
  height: 80px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand:hover,
.brand:focus {
  color: var(--color-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
}

.nav-links a {
  color: var(--color-white);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--color-primary);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.language-switcher button {
  min-width: 34px;
  min-height: 28px;
  padding: 4px 8px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--color-white);
  background: var(--color-primary);
}

.language-switcher button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 106px 0 44px;
  color: var(--color-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 14, 14, 0.92), rgba(14, 14, 14, 0) 52%, rgba(14, 14, 14, 0)),
    url("https://www.clevoxa.com/assets/img/slide1.jpg") center / cover no-repeat;
  transform: scale(1.02);
  animation: heroBgZoom 4.8s ease-out both;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.66fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
}

.hero-lead {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.62;
}

.hero-text {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 26px;
}

.microcopy {
  max-width: 700px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.growth-dashboard {
  position: relative;
  padding: clamp(20px, 2.4vw, 28px);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: rgba(20, 20, 20, 0.76);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  isolation: isolate;
}

.hero .hero-copy.reveal,
.hero .growth-dashboard.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero .eyebrow,
.hero h1,
.hero .hero-lead,
.hero .hero-text,
.hero .hero-actions,
.hero .microcopy {
  opacity: 0;
}

.hero .eyebrow {
  animation: heroEyebrowIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero h1 {
  animation: heroTitleIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}

.hero .hero-lead {
  animation: heroTextIn 0.8s ease-out 1.35s both;
}

.hero .hero-text {
  animation: heroTextIn 0.8s ease-out 1.55s both;
}

.hero .hero-actions {
  animation: heroTextIn 0.75s ease-out 1.75s both;
}

.hero .microcopy {
  animation: heroTextIn 0.75s ease-out 1.9s both;
}

.hero .growth-dashboard {
  opacity: 0;
  animation: heroPanelIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1.1s both;
}

.hero .dashboard-top,
.hero .metric-row,
.hero .signal-chart,
.hero .system-tags,
.hero .dashboard-note {
  opacity: 0;
  animation: heroTextIn 0.7s ease-out both;
}

.hero .dashboard-top {
  animation-delay: 1.55s;
}

.hero .metric-row {
  animation-delay: 1.7s;
}

.hero .signal-chart {
  animation-delay: 1.85s;
}

.hero .system-tags {
  animation-delay: 2s;
}

.hero .dashboard-note {
  animation-delay: 2.15s;
}

.growth-dashboard::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-top,
.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-top {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.dashboard-top strong,
.metric-row strong {
  color: var(--color-white);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}

.metric-row div {
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.metric-row strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-chart {
  height: 132px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 11px;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 100% 25%,
    rgba(255, 255, 255, 0.04);
}

.signal-chart span {
  display: block;
  min-height: 30px;
  background: linear-gradient(180deg, var(--color-primary), rgba(248, 7, 87, 0.26));
  animation: barPulse 3.6s ease-in-out infinite alternate;
}

.signal-chart span:nth-child(2n) {
  animation-delay: 0.6s;
}

.system-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.system-tags span,
.trust-items span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 5px 10px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.dashboard-note .dot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 8px var(--color-primary-soft);
}

.trust-bar {
  padding: 36px 0;
  color: var(--color-white);
  background: var(--color-dark);
}

.trust-bar .container {
  width: min(calc(100% - 40px), 1320px);
  display: grid;
  grid-template-columns: minmax(360px, 430px) 1fr;
  align-items: center;
  gap: 52px;
}

.trust-bar p {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 9px;
}

.trust-items span {
  border-color: rgba(255, 255, 255, 0.18);
}

.card-grid,
.pillar-grid,
.process-grid,
.inclusion-grid,
.pricing-grid,
.fit-grid,
.split-grid {
  display: grid;
  gap: 24px;
}

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

.feature-card,
.pillar-card,
.step-card,
.list-panel,
.price-card,
.timeline-item {
  border: 2px solid var(--color-line);
  background: var(--color-white);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card {
  min-height: 150px;
  padding: 28px;
  font-weight: 650;
  line-height: 1.65;
}

.feature-card:hover,
.pillar-card:hover,
.step-card:hover,
.list-panel:hover,
.price-card:hover,
.timeline-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.07);
}

.statement {
  max-width: 920px;
  margin: 52px auto 0;
  padding: 32px;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

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

.pillar-card {
  min-height: 420px;
  padding: 30px 24px;
}

.pillar-card span,
.step-card span,
.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.step-card span {
  width: auto;
  min-width: 86px;
  padding: 0 12px;
  white-space: nowrap;
}

.pillar-card p,
.step-card p,
.list-panel li,
.price-card p,
.timeline-item p {
  color: var(--color-muted);
}

.pillar-card h3,
.step-card h3,
.list-panel h3,
.price-card h3,
.timeline-item h3 {
  margin-bottom: 18px;
}

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

.step-card {
  padding: 32px;
}

.step-goal {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
  font-weight: 700;
}

.offer-section {
  background:
    linear-gradient(rgba(20, 20, 20, 0), rgba(20, 20, 20, 0)),
    url("https://www.clevoxa.com/assets/img/reviews.jpg") center / cover no-repeat;
}

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

.inclusion-card {
  padding: 30px;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(20, 20, 20, 0.62);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.inclusion-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.inclusion-card h3 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.inclusion-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.inclusion-card li::before,
.check-list li::before,
.dash-list li::before {
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.inclusion-card li::before,
.dash-list li::before {
  content: "—";
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 36px 30px;
}

.price-card.recommended {
  border-color: var(--color-primary);
  box-shadow: 0 24px 60px rgba(248, 7, 87, 0.16);
}

.price-card .recommendation {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--color-white);
  background: var(--color-primary);
  font-weight: 800;
}

.price {
  margin: 14px 0 20px;
  color: var(--color-dark);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.price span,
.price strong {
  display: block;
}

.price span {
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 20px;
  letter-spacing: 0.06em;
}

.price strong {
  color: var(--color-dark);
  font-size: clamp(28px, 2.4vw, 34px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.included {
  margin-top: 20px;
  margin-bottom: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
  font-weight: 700;
}

.price-card .btn {
  margin-top: auto;
}

.fit-grid,
.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.list-panel {
  padding: 34px;
}

.list-panel li {
  position: relative;
  padding-left: 24px;
  line-height: 1.75;
}

.list-panel li + li {
  margin-top: 10px;
}

.check-list li::before {
  content: "+";
  top: 0;
  font-weight: 800;
}

.dash-list li::before {
  top: 0;
}

.split-grid {
  gap: 56px;
}

.split-grid .statement {
  margin-top: 34px;
  text-align: left;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  min-height: 300px;
  padding: 28px 22px;
}

.timeline-item span {
  min-width: 36px;
  height: 36px;
}

.faq-list {
  border-top: 2px solid var(--color-line);
}

details {
  border-bottom: 2px solid var(--color-line);
}

summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-body);
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 0 26px;
  color: var(--color-muted);
}

.final-cta {
  text-align: center;
  color: var(--color-white);
  background:
    linear-gradient(rgba(20, 20, 20, 0), rgba(20, 20, 20, 0)),
    url("https://www.clevoxa.com/assets/img/slide3.jpg") center / cover no-repeat;
}

.final-cta h2 {
  color: var(--color-white);
  margin-bottom: 22px;
}

.final-cta .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: #ff4f86;
  background: rgba(248, 7, 87, 0.14);
  border: 1px solid rgba(248, 7, 87, 0.55);
  border-radius: 999px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.final-cta .btn {
  margin-top: 30px;
}

.final-cta .microcopy {
  margin-inline: auto;
  text-align: center;
}

.qualification-form {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 46px);
  border: 2px solid var(--color-line);
  background: var(--color-white);
}

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

.full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 9px;
}

label span,
legend {
  color: var(--color-dark);
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
  border-radius: 0;
  background: transparent;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-soft);
}

fieldset {
  margin: 28px 0;
  padding: 24px;
  border: 2px solid var(--color-line);
}

legend {
  padding: 0 10px;
}

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

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 2px solid var(--color-line);
  font-weight: 700;
}

.checkbox-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--color-primary);
}

.form-message {
  min-height: 28px;
  margin-top: 18px;
  color: var(--color-primary);
  font-weight: 700;
}

.form-message.is-error {
  color: #b00020;
}

.qualification-form > .btn {
  margin-top: 30px;
}

.qualification-form > .btn[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-dark);
}

.footer-top {
  padding: 55px 0;
  background: #1a1a1a;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer h2 {
  margin-bottom: 14px;
  color: var(--color-white);
  font-size: 22px;
}

.footer-links {
  display: grid;
  gap: 12px;
  text-align: right;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--color-primary);
}

.footer-bottom {
  padding: 28px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes barPulse {
  from {
    transform: scaleY(0.92);
    filter: saturate(0.9);
  }

  to {
    transform: scaleY(1.04);
    filter: saturate(1.3);
  }
}

@keyframes heroBgZoom {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1.02);
  }
}

@keyframes heroEyebrowIn {
  0% {
    opacity: 0;
    letter-spacing: 0.45em;
    filter: blur(5px);
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    letter-spacing: 0;
    filter: blur(0);
  }
}

@keyframes heroTitleIn {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(34px);
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
    filter: blur(0);
  }
}

@keyframes heroTextIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes heroPanelIn {
  0% {
    opacity: 0;
    transform: translateX(46px) scale(0.96);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-card {
    min-height: auto;
  }

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 80px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 20px 26px;
    background: rgba(20, 20, 20, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }

  .site-header.is-open .nav-links {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 0;
  }

  .nav-links .btn {
    margin-top: 10px;
    padding-inline: 18px;
  }

  .hero-grid,
  .trust-bar .container,
  .fit-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .trust-items {
    justify-content: flex-start;
  }

  .symptoms-grid,
  .process-grid,
  .inclusion-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .container,
  .narrow,
  .nav-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell {
    height: 70px;
  }

  .nav-links {
    inset: 70px 0 auto;
  }

  .brand {
    font-size: 24px;
  }

  .hero {
    padding: 104px 0 62px;
  }

  .hero-actions,
  .footer-grid {
    display: grid;
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
  }

  .growth-dashboard {
    padding: 20px;
  }

  .metric-row,
  .symptoms-grid,
  .pillar-grid,
  .process-grid,
  .inclusion-grid,
  .pricing-grid,
  .timeline,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .statement {
    padding: 24px;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 27px;
  }

  .signal-chart {
    height: 140px;
  }

  .list-panel,
  .step-card,
  .price-card,
  .qualification-form {
    padding: 24px;
  }
}
