/* ============================================
   UPGRADE JOB — Landing (design-matched)
   ============================================ */

:root {
  --lime: #a8d500;
  --lime-hover: #b8e60a;
  --lime-deep: #8fb300;
  --black: #101820;
  --charcoal: #111111;
  --charcoal-2: #181818;
  --gray-700: #2a2a2a;
  --gray-500: #6b6b6b;
  --gray-400: #8a8a8a;
  --gray-300: #b0b0b0;
  --gray-200: #e4e4e4;
  --gray-100: #f3f3f3;
  --white: #ffffff;
  --off-white: #f7f7f3;

  --font: "Montserrat", system-ui, sans-serif;
  --container: 1320px;
  --header-h: 91px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--off-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100% - 64px, var(--container));
  margin-inline: auto;
}

.text-accent {
  color: var(--lime);
}

/* ---------- Eyebrows / labels ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.eyebrow--lime {
  color: var(--lime);
}

.eyebrow__line {
  display: block;
  height: 1px;
  width: 2.4rem;
  background: currentColor;
  flex-shrink: 0;
}

.eyebrow__line--grow {
  flex: 1;
  width: auto;
  max-width: 4.5rem;
  min-width: 2rem;
}

.eyebrow__line--dark {
  background: #2a2a2a;
  flex: 1;
  max-width: 5rem;
}

.eyebrow__dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.eyebrow__square {
  width: 0.38rem;
  height: 0.38rem;
  background: var(--lime);
  flex-shrink: 0;
}

/* ---------- Links ---------- */
.link-underline,
.link-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap 0.25s var(--ease), color 0.2s;
}

.link-underline {
  color: #fff;
  border-bottom: 1.5px solid var(--lime);
  padding-bottom: 2px;
}

.link-underline--light {
  color: #fff;
}

.link-accent {
  color: var(--lime);
  border-bottom: 1.5px solid var(--lime);
  padding-bottom: 2px;
  margin-top: 1.5rem;
}

.link-underline:hover,
.link-accent:hover {
  gap: 0.75rem;
  color: var(--lime);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  min-height: 3.35rem;
  padding: 0.85rem 1.15rem;
  border-radius: 0.4rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--lime);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--lime-hover);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1px solid #9da5a3;
}

.btn--outline:hover {
  border-color: var(--black);
  background: var(--white);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  background: #1a1a1a;
}

.btn--ghost-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}

.btn--ghost-dark:hover {
  background: var(--black);
  color: var(--lime);
}

.btn--sm {
  min-height: 2.75rem;
  padding: 0.6rem 0.95rem;
  gap: 1.1rem;
  font-size: 0.74rem;
}

.btn--hero {
  min-height: 3.25rem;
  padding: 0.8rem 1.15rem;
  gap: 1.15rem;
  font-size: 0.78rem;
}

/* ---------- Logo ---------- */
.logo {
  display: grid;
  width: 11.5rem;
  height: 3.8rem;
  place-items: center;
  flex-shrink: 0;
}

.logo__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo__img--footer {
  max-width: 10.5rem;
}

.logo--footer {
  width: 10.5rem;
  height: auto;
}

/* ---------- Header ---------- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.header.is-scrolled {
  position: fixed;
  background: rgba(247, 247, 243, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.header > .container,
.hero > .container {
  width: calc(100% - clamp(3rem, 6vw, 7rem));
  max-width: none;
}

.header__inner {
  min-height: 5.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.6rem);
}

.nav__link {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--lime-deep);
}

.nav__platform-link {
  display: none;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 83% 18%, rgba(168, 213, 0, 0.1), transparent 24%),
    linear-gradient(135deg, #fbfbf8, #f4f6ef);
  padding: 5.7rem 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: -24vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(168, 213, 0, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 7vw rgba(168, 213, 0, 0.025),
    0 0 0 14vw rgba(168, 213, 0, 0.018);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 15%;
  width: min(39vw, 620px);
  height: min(39vw, 620px);
  background: linear-gradient(135deg, #b8e600, #8fbf00);
  clip-path: polygon(3% 43%, 66% 43%, 52% 29%, 62% 19%, 96% 52%, 62% 85%, 52% 75%, 66% 61%, 3% 61%);
  transform: rotate(-45deg);
  filter: drop-shadow(0 22px 34px rgba(143, 191, 0, 0.22));
  pointer-events: none;
}

.hero__glow {
  display: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 5.7rem);
}

.hero__grid::after {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(260px, 0.55fr);
  column-gap: clamp(2rem, 8vw, 9rem);
  width: 100%;
  max-width: none;
  padding: clamp(2rem, 5vh, 3.5rem) 0;
  animation: fadeUp 0.85s var(--ease) both;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  grid-column: 1 / -1;
  max-width: 18rem;
  margin: 0 0 1.5rem;
}

.hero__brand-name {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  white-space: nowrap;
}

.hero__brand-line {
  display: block;
  height: 1.5px;
  flex: 1;
  min-width: 3rem;
  background: linear-gradient(90deg, var(--lime), rgba(168, 213, 0, 0.15));
  transform-origin: left center;
  animation: brandLine 1.1s 0.25s var(--ease) both;
}

.hero__brand-dot {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  box-shadow: none;
}

.hero__title {
  grid-column: 1 / -1;
  margin: 0 0 clamp(1.4rem, 3vh, 2.25rem);
  font-size: clamp(4rem, 7.6vw, 8.25rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-transform: uppercase;
}

.hero__title > span {
  display: block;
  white-space: nowrap;
}

.hero__title em {
  color: var(--lime);
  font-style: normal;
}

.hero__text {
  grid-column: 1;
  max-width: 31rem;
  color: #4d565b;
  font-size: clamp(0.95rem, 1.08vw, 1.08rem);
  line-height: 1.55;
  font-weight: 500;
}

.hero__text strong {
  color: var(--lime);
  font-weight: 700;
}

.hero__actions {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.35rem;
}

.hero__proof {
  grid-column: 1;
  grid-row: auto;
  align-self: auto;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__avatars {
  display: flex;
  flex-shrink: 0;
}

.hero__avatars img {
  width: 2.35rem;
  height: 2.35rem;
  margin-left: -0.55rem;
  border: 2px solid var(--off-white);
  border-radius: 50%;
  object-fit: cover;
}

.hero__avatars img:first-child {
  margin-left: 0;
}

.hero__proof-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: #4d565b;
  font-size: 0.7rem;
  line-height: 1.35;
}

.hero__proof-text strong {
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__proof-arrow {
  width: 3.6rem;
  height: auto;
  margin-left: 0.25rem;
  color: var(--lime);
}

.hero__media {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 43%;
  overflow: hidden;
  animation: heroMediaIn 1s 0.12s var(--ease) both;
}

.hero__dashboard {
  position: absolute;
  inset: 4% 2% 5% 0;
}

.hero__dashboard-orbit {
  position: absolute;
  top: 5%;
  right: 5%;
  width: min(30vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(168, 213, 0, 0.22);
  border-radius: 50%;
}

.hero__dashboard-orbit::before,
.hero__dashboard-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.hero__dashboard-orbit::before {
  inset: 12%;
  border: 1px dashed rgba(168, 213, 0, 0.22);
}

.hero__dashboard-orbit::after {
  inset: 27%;
  background: radial-gradient(circle, rgba(168, 213, 0, 0.19), transparent 70%);
}

.career-card {
  position: absolute;
  z-index: 2;
  left: 5%;
  top: 9%;
  width: min(78%, 650px);
  min-height: 76%;
  padding: clamp(1.4rem, 2.4vw, 2.25rem);
  overflow: hidden;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #172129, #0d141a 78%);
  color: var(--white);
  box-shadow: 0 32px 80px rgba(16, 24, 32, 0.2);
}

.career-card::before {
  content: "";
  position: absolute;
  right: -18%;
  top: -30%;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 213, 0, 0.18), transparent 68%);
}

.career-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.career-card__head > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.career-card__head span {
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.career-card__head strong {
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  text-transform: uppercase;
}

.career-card__status {
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(168, 213, 0, 0.3);
  border-radius: 2rem;
}

.career-card__value {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-top: clamp(1rem, 3vh, 2rem);
}

.career-card__value strong {
  color: var(--lime);
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.career-card__value span {
  padding-bottom: 0.35rem;
  color: #aeb6b8;
  font-size: 0.72rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.career-card__chart {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 10%;
  width: 92%;
  height: 47%;
}

.career-card__legend {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 5%;
  display: flex;
  justify-content: space-between;
  color: #7f898d;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-card {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-width: 9.2rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 45px rgba(16, 24, 32, 0.13);
  backdrop-filter: blur(10px);
}

.metric-card > span {
  color: #7a8386;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.metric-card > strong {
  margin: 0.15rem 0;
  color: var(--black);
  font-size: 1.65rem;
  line-height: 1;
}

.metric-card small {
  color: #70797c;
  font-size: 0.62rem;
}

.metric-card--students {
  right: 2%;
  top: 16%;
}

.metric-card--support {
  right: 0;
  bottom: 17%;
}

.metric-card--result {
  right: 12%;
  top: 49%;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  min-width: 10.5rem;
}

.metric-card--result > div {
  display: flex;
  flex-direction: column;
}

.metric-card--result > div strong {
  color: var(--black);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.metric-card__check {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black) !important;
  font-size: 1rem !important;
  font-weight: 800;
}

.hero__timeline {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 0;
  width: clamp(120px, 11.5%, 170px);
  padding-left: 1.35rem;
  transform: translateY(-46%);
}

.hero__timeline::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  bottom: 1.65rem;
  left: 0.25rem;
  width: 1px;
  background: #8f9793;
}

.hero__timeline li {
  position: relative;
  min-height: clamp(7.25rem, 21vh, 9rem);
}

.hero__timeline li:last-child {
  min-height: 0;
}

.hero__timeline-dot {
  position: absolute;
  top: 0.38rem;
  left: -1.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--lime);
}

.hero__timeline-num {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--lime);
  font-size: clamp(1.15rem, 1.75vw, 1.65rem);
  font-weight: 700;
  line-height: 1;
}

.hero__timeline p {
  color: var(--black);
  font-size: clamp(0.66rem, 0.78vw, 0.78rem);
  font-weight: 500;
  line-height: 1.45;
}

/* ---------- Features bar ---------- */
.features {
  background: var(--charcoal);
  color: var(--white);
  padding: 34px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.features__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 6px 24px;
  border-right: 1px solid #2c2c2c;
}

.features__item:first-child {
  padding-left: 0;
}

.features__item:last-child {
  border-right: none;
  padding-right: 0;
}

.features__icon {
  width: 34px;
  height: 34px;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}

.features__icon svg {
  width: 100%;
  height: 100%;
}

.features__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--white);
}

.features__rule {
  display: block;
  position: relative;
  width: 2.8rem;
  height: 1px;
  background: var(--lime);
}

.features__rule::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  transform: translateY(-50%);
}

.features__desc {
  font-size: 0.78rem;
  color: #a8a8a8;
  line-height: 1.4;
}

/* ---------- Philosophy ---------- */
.philosophy {
  position: relative;
  background: #000;
  color: var(--white);
  overflow: hidden;
}

.philosophy__stage {
  position: relative;
  min-height: clamp(560px, 78vh, 720px);
  overflow: hidden;
}

.philosophy__bg-word {
  position: absolute;
  right: max(4%, calc((100% - var(--container)) / 2 + 48px));
  top: 2%;
  width: min(40vw, 460px);
  display: flex;
  justify-content: center;
  font-family: "Oswald", "Montserrat", sans-serif;
  font-size: min(380px, 32vw);
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.85;
  color: #242424;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  text-transform: uppercase;
  transform: scaleX(0.68) scaleY(2.05);
  transform-origin: center top;
  -webkit-text-stroke: 0.04em #000;
  paint-order: stroke fill;
}

.philosophy__fx {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.philosophy__orbit {
  position: absolute;
  left: 18%;
  top: 0;
  width: 82%;
  height: 100%;
  opacity: 0.9;
}

.philosophy__person {
  position: absolute;
  right: max(4%, calc((100% - var(--container)) / 2 + 48px));
  bottom: 0;
  width: min(40vw, 460px);
  z-index: 4;
  pointer-events: none;
  line-height: 0;
  filter: drop-shadow(0 0 28px rgba(168, 213, 0, 0.18));
}

.philosophy__person img {
  width: 100%;
  height: auto;
  max-height: min(680px, 86vh);
  object-fit: contain;
  object-position: bottom center;
}

.philosophy__grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.05fr;
  gap: 24px;
  align-items: center;
  min-height: clamp(560px, 78vh, 720px);
  padding: 64px 0 56px;
}

.philosophy__content {
  position: relative;
  z-index: 6;
  max-width: 500px;
}

.philosophy__content .eyebrow {
  max-width: 16rem;
}

.philosophy__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.philosophy__text {
  max-width: 400px;
  color: #d0d0d0;
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 28px;
}

.philosophy__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.philosophy__visual {
  min-height: 1px;
}

/* ---------- Process ---------- */
.process {
  background: var(--gray-100);
  padding: 100px 0 110px;
}

.process__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 1.35fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.process__intro .eyebrow {
  max-width: 18rem;
}

.process__title {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 1.1rem;
}

.process__lead {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.process__track {
  position: relative;
  padding-top: 0.5rem;
  min-height: 240px;
}

.process__wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.process__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process__step {
  position: relative;
  padding-top: 0.5rem;
}

.process__num {
  display: block;
  font-size: clamp(3.5rem, 6vw, 5.2rem);
  font-weight: 800;
  color: #e4e4e4;
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: -0.35rem;
  user-select: none;
}

.process__name {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  position: relative;
}

.process__desc {
  color: #666;
  max-width: 220px;
  font-size: 0.88rem;
  line-height: 1.45;
}

/* ---------- Support ---------- */
.support {
  background:
    radial-gradient(circle at 76% 48%, rgba(168, 213, 0, 0.035), transparent 34%),
    #090c0e;
  color: var(--white);
  padding: clamp(7rem, 11vh, 9rem) 0 clamp(8rem, 13vh, 10.5rem);
  overflow: hidden;
}

.support > .container {
  width: calc(100% - clamp(4rem, 6vw, 7rem));
  max-width: 1760px;
}

.support__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(0, 1.5fr);
  gap: clamp(3.5rem, 5vw, 6.5rem);
  align-items: center;
}

.support__intro .eyebrow {
  max-width: 17rem;
  margin-bottom: 2rem;
}

.support__title {
  font-size: clamp(2.65rem, 3.4vw, 3.9rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin-bottom: 2.25rem;
}

.support__title-line {
  white-space: nowrap;
}

.support__text {
  color: #aeb4b6;
  margin-bottom: 2.5rem;
  max-width: 430px;
  font-size: clamp(0.95rem, 1vw, 1.12rem);
  line-height: 1.7;
}

.support__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.65rem, 1vw, 1.1rem);
  align-items: start;
  padding: 0.5rem 0 3rem;
  perspective: 1400px;
}

.support__line {
  position: absolute;
  left: -1.4rem;
  right: -1rem;
  top: 56%;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), #c9ef18 82%, #fff);
  z-index: 5;
  pointer-events: none;
  transform: translateY(-50%);
  box-shadow:
    0 0 8px rgba(168, 213, 0, 0.9),
    0 0 22px rgba(168, 213, 0, 0.48);
}

.support__glow {
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  transform: translate(-40%, -50%);
  border: 3px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 18px rgba(168, 213, 0, 1);
}

.support__arrow {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  filter: drop-shadow(0 0 6px rgba(168, 213, 0, 0.5));
}

.support__card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(500px, 64vh, 620px);
  background:
    linear-gradient(150deg, rgba(30, 34, 36, 0.97), rgba(11, 14, 16, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  padding: clamp(1.6rem, 2.2vw, 2.4rem) clamp(1.1rem, 1.5vw, 1.65rem);
  transform: perspective(1200px) rotateY(-8deg);
  transition: border-color 0.3s, transform 0.35s var(--ease);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.015);
}

.support__cards > .support__card:nth-of-type(1) {
  transform: perspective(1200px) rotateY(-8deg) translateY(3.5rem);
}

.support__cards > .support__card:nth-of-type(2) {
  transform: perspective(1200px) rotateY(-8deg) translateY(2.35rem);
}

.support__cards > .support__card:nth-of-type(3) {
  transform: perspective(1200px) rotateY(-8deg) translateY(1.15rem);
}

.support__cards > .support__card:nth-of-type(4) {
  transform: perspective(1200px) rotateY(-8deg) translateY(0);
}

.support__card:hover {
  border-color: rgba(168, 213, 0, 0.4);
  z-index: 4;
  filter: brightness(1.08);
}

.support__card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.4rem, 3vh, 2.25rem);
  padding-bottom: 4rem;
}

.support__card-bottom {
  padding-top: 3.5rem;
}

.support__num {
  display: block;
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(168, 213, 0, 0.35);
}

.support__icon {
  display: block;
  width: clamp(2.8rem, 4vw, 4.5rem);
  height: clamp(2.8rem, 4vw, 4.5rem);
  color: var(--lime);
}

.support__icon svg {
  width: 100%;
  height: 100%;
}

.support__card-title {
  font-size: clamp(0.95rem, 1.15vw, 1.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.15rem;
}

.support__card-text {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #c0c4c5;
  line-height: 1.65;
}

/* ---------- Roles (full-bleed split) ---------- */
.roles {
  background: var(--black);
  padding: 0;
}

.roles__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(720px, 92vh);
}

.roles__pivot {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.role-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}

.role-panel__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.role-panel:hover .role-panel__bg {
  transform: scale(1.04);
}

.role-panel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.role-panel--dark .role-panel__overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

.role-panel--light .role-panel__overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(247, 247, 243, 0.55) 45%,
    rgba(247, 247, 243, 0.92) 100%
  );
}

.role-panel__body {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 56px);
  width: 100%;
  max-width: 460px;
}

.role-panel--dark .role-panel__body {
  color: var(--white);
}

.role-panel--light .role-panel__body {
  color: var(--black);
}

.role-panel__num {
  display: block;
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lime);
  margin: 0.4rem 0 0.8rem;
  opacity: 0.9;
}

.role-panel__title {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.role-panel__text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 340px;
}

.role-panel--dark .role-panel__text {
  color: #d4d4d4;
}

.role-panel--light .role-panel__text {
  color: #444;
}

.role-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.25s var(--ease);
}

.role-panel--dark .role-panel__link {
  color: var(--white);
}

.role-panel--light .role-panel__link {
  color: var(--black);
}

.role-panel__link span {
  color: var(--lime);
}

.role-panel__link:hover {
  gap: 0.75rem;
}

/* ---------- Stats ---------- */
.stats {
  background: var(--white);
  padding: 100px 0;
}

.stats__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.stats__intro .eyebrow {
  max-width: 11rem;
}

.stats__title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.stats__lead {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 360px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 0.5rem;
}

.stats__icon {
  display: block;
  width: 42px;
  height: 42px;
  color: var(--lime);
  margin-bottom: 18px;
}

.stats__icon svg {
  width: 100%;
  height: 100%;
}

.stats__value {
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  color: var(--lime);
}

.stats__label {
  font-size: 0.86rem;
  color: #555;
  max-width: 160px;
  line-height: 1.4;
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--charcoal);
  color: var(--white);
  padding: 100px 0;
  overflow: hidden;
}

.reviews__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.reviews__head .eyebrow {
  max-width: 18rem;
}

.reviews__title {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.reviews__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.reviews__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  color: var(--white);
  display: grid;
  place-items: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.reviews__btn:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--black);
}

.reviews__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(520px, 90vw);
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 22px;
  min-height: 370px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.review-card:hover {
  border-color: rgba(168, 213, 0, 0.35);
  transform: translateY(-4px);
}

.review-card__rating {
  display: flex;
  height: 128px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 213, 0, 0.24);
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(168, 213, 0, 0.16), transparent 60%),
    #111517;
}

.review-card__rating span {
  color: #7f898c;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card__rating strong {
  margin: 0.25rem 0 0.1rem;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.review-card__rating i {
  color: var(--lime);
  font-size: 1rem;
  font-style: normal;
}

.review-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.review-card__title {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.review-card__text {
  font-size: 0.9rem;
  color: #c8c8c8;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}

.review-card__meta strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.review-card__meta span {
  font-size: 0.76rem;
  color: #888;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  background: var(--lime);
  padding: 84px 0;
  overflow: hidden;
}

.final-cta__arrow {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(340px, 38vw);
  pointer-events: none;
}

.final-cta__arrow svg {
  width: 100%;
  height: auto;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.final-cta__title {
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
  max-width: 580px;
}

.final-cta__step {
  white-space: nowrap;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: #b0b0b0;
  padding: 72px 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}

.footer__about {
  margin-top: 18px;
  font-size: 0.88rem;
  color: #888;
  max-width: 280px;
  line-height: 1.5;
}

.footer__info {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-content: start;
  padding-top: 8px;
}

.footer__details,
.footer__documents {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__details strong {
  color: var(--white);
  font-size: 0.88rem;
}

.footer__details span,
.footer__documents span {
  color: #858585;
  font-size: 0.8rem;
  line-height: 1.45;
}

.footer__documents span {
  color: #a0a0a0;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #333;
  color: #cfcfcf;
  display: grid;
  place-items: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer__social a:hover {
  color: var(--black);
  background: var(--lime);
  border-color: var(--lime);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
  align-content: start;
  padding-top: 8px;
}

.footer__col a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: #9a9a9a;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--lime);
}

.footer__col--legal a {
  font-size: 0.8rem;
  color: #777;
}

.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: flex-end;
  font-size: 0.8rem;
  color: #666;
}

/* ---------- Lead form modal ---------- */
.lead-modal {
  width: min(calc(100% - 2rem), 720px);
  max-width: none;
  max-height: calc(100dvh - 2rem);
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 1rem;
  background: transparent;
  color: var(--black);
}

.lead-modal[open] {
  animation: modalIn 0.28s var(--ease) both;
}

.lead-modal::backdrop {
  background: rgba(5, 9, 12, 0.78);
  backdrop-filter: blur(8px);
}

.lead-modal__panel {
  position: relative;
  max-height: calc(100dvh - 2rem);
  padding: clamp(1.75rem, 4vw, 3rem);
  overflow-y: auto;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 96% 0%, rgba(168, 213, 0, 0.18), transparent 32%),
    #fbfbf8;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
}

.lead-modal__close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid rgba(16, 24, 32, 0.16);
  border-radius: 50%;
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.lead-modal__close:hover {
  background: var(--black);
  color: var(--lime);
  transform: rotate(8deg);
}

.lead-form__eyebrow {
  margin-bottom: 0.75rem;
  color: var(--lime-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-form h2,
.lead-success h2 {
  margin-bottom: 1rem;
  padding-right: 3rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.lead-form__intro {
  max-width: 560px;
  margin-bottom: 1.75rem;
  color: #687175;
  font-size: 0.92rem;
  line-height: 1.55;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.lead-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lead-field--wide {
  grid-column: 1 / -1;
}

.lead-field > span {
  color: #596266;
  font-size: 0.72rem;
  font-weight: 700;
}

.lead-field input,
.lead-field select {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.8rem 1rem;
  border: 1px solid #cbd0cd;
  border-radius: 0.45rem;
  outline: none;
  background: #fff;
  color: var(--black);
  font: inherit;
  font-size: 0.88rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-field input:focus,
.lead-field select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(168, 213, 0, 0.16);
}

.lead-form.was-validated .lead-field input:invalid,
.lead-form.was-validated .lead-field select:invalid {
  border-color: #d94343;
  box-shadow: 0 0 0 3px rgba(217, 67, 67, 0.1);
}

.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.15rem 0 1.35rem;
  color: #687175;
  font-size: 0.72rem;
  line-height: 1.4;
  cursor: pointer;
}

.lead-consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.05rem;
  accent-color: var(--lime);
  flex-shrink: 0;
}

.lead-form.was-validated .lead-consent input:invalid {
  outline: 2px solid #d94343;
  outline-offset: 2px;
}

.lead-form__submit {
  width: 100%;
}

.lead-success {
  min-height: 390px;
  padding: 2rem 0;
  place-content: center;
  text-align: center;
}

.lead-success:not([hidden]) {
  display: grid;
}

.lead-success__icon {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  font-size: 2rem;
  font-weight: 900;
}

.lead-success h2 {
  padding-right: 0;
}

.lead-success p:not(.lead-form__eyebrow) {
  max-width: 450px;
  margin: 0 auto 1.5rem;
  color: #687175;
  line-height: 1.55;
}

.lead-success .btn {
  min-width: 11rem;
  margin: 0 auto;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandLine {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes heroMediaIn {
  from {
    opacity: 0;
    transform: translateX(36px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroGlow {
  from {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  to {
    transform: translate(-3%, 4%) scale(1.08);
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .hero__content {
    width: 100%;
  }

  .hero__title {
    font-size: clamp(3.8rem, 7.2vw, 6.5rem);
  }

  .hero__media {
    inset: 0 0 0 43%;
  }

  .hero__timeline {
    width: 12.5%;
  }

  .support__cards {
    gap: 10px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 1024px) {
  .hero__grid {
    min-height: calc(100svh - 5.7rem);
  }

  .hero__content {
    width: 100%;
    max-width: none;
    padding: 2rem 0;
  }

  .hero__title {
    font-size: clamp(3.4rem, 7vw, 5.2rem);
  }

  .hero__media {
    inset: 0 0 0 44%;
  }

  .hero__timeline {
    width: 13%;
  }

  .philosophy__stage,
  .philosophy__grid {
    min-height: 0;
  }

  .philosophy__grid {
    grid-template-columns: 1fr;
    padding: 56px 0 0;
  }

  .philosophy__bg-word {
    left: 50%;
    right: auto;
    width: min(78%, 380px);
    font-size: min(280px, 42vw);
    transform: translateX(-50%) scaleX(0.68) scaleY(1.85);
  }

  .philosophy__orbit {
    opacity: 0.35;
    left: 0;
    width: 100%;
  }

  .philosophy__person {
    position: relative;
    right: auto;
    width: min(78%, 380px);
    margin: 12px auto 0;
  }

  .process__grid,
  .support__grid,
  .stats__layout,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .support__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .support__card {
    transform: none;
    min-height: 260px;
  }

  .support__cards > .support__card:nth-of-type(1),
  .support__cards > .support__card:nth-of-type(2),
  .support__cards > .support__card:nth-of-type(3),
  .support__cards > .support__card:nth-of-type(4) {
    transform: none;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .features__item {
    border-right: none;
    padding: 0 16px 0 0;
  }

  .features__item:nth-child(odd) {
    border-right: 1px solid #2c2c2c;
    padding-right: 20px;
  }

  .features__item:nth-child(even) {
    padding-left: 20px;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
  }

  .nav__platform-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding: 14px 16px;
    border: 0;
    border-radius: 0.4rem;
    background: var(--lime);
    color: var(--black);
    font-weight: 700;
  }

  .nav__platform-link:hover {
    color: var(--black);
    background: var(--lime-hover);
  }

  .header__cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .logo {
    width: 8.5rem;
    height: 3rem;
  }

  .hero__grid {
    display: block;
    min-height: 610px;
  }

  .hero__grid::after {
    right: -10%;
    width: 34%;
  }

  .hero__content {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    padding: 2rem 0 3rem;
  }

  .hero__media {
    position: absolute;
    inset: 38% -10% 0 46%;
    width: auto;
    min-height: 0;
    height: auto;
    pointer-events: none;
  }

  .hero__dashboard {
    inset: 5% 0;
  }

  .metric-card {
    display: none;
  }

  .career-card {
    left: 0;
    top: 0;
    width: 92%;
    min-height: 100%;
  }

  .hero__title {
    max-width: 30rem;
    font-size: clamp(3rem, 8vw, 4.3rem);
  }

  .hero__text {
    max-width: 24rem;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .hero__proof {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 2rem;
  }

  .hero__timeline {
    display: none;
  }

  .roles__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .roles__pivot {
    display: none;
  }

  .role-panel {
    min-height: 480px;
  }

  .process__wave {
    opacity: 0.35;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .final-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta__arrow {
    opacity: 0.3;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header > .container,
  .hero > .container {
    width: calc(100% - 32px);
  }

  :root {
    --header-h: 68px;
  }

  .hero {
    padding-top: 5.25rem;
  }

  .hero::after {
    display: none;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .hero__brand {
    max-width: 14.5rem;
    margin-bottom: 1.35rem;
  }

  .hero__brand-name {
    font-size: 0.72rem;
  }

  .hero__content {
    width: 100%;
    max-width: none;
    padding: 1.65rem 0 2rem;
  }

  .hero__text {
    max-width: 20rem;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
  }

  .hero__actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 2.65rem;
    gap: 0.45rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.6rem;
    white-space: nowrap;
  }

  .hero__media {
    display: none;
  }

  .hero__grid {
    min-height: 470px;
  }

  .hero__grid::after {
    display: none;
  }

  .support__title {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .support__title-line {
    white-space: normal;
  }

  .lead-modal {
    width: min(calc(100% - 1rem), 720px);
    max-height: calc(100dvh - 1rem);
  }

  .lead-modal__panel {
    max-height: calc(100dvh - 1rem);
    padding: 1.5rem 1.1rem;
  }

  .lead-form__grid {
    grid-template-columns: 1fr;
  }

  .lead-field--wide {
    grid-column: auto;
  }

  .footer__info {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero__proof {
    gap: 0.55rem;
    margin-top: 2.25rem;
  }

  .hero__avatars img {
    width: 1.95rem;
    height: 1.95rem;
    margin-left: -0.5rem;
  }

  .hero__proof-text {
    font-size: 0.58rem;
  }

  .hero__proof-text strong {
    font-size: 0.62rem;
  }

  .hero__proof-arrow {
    width: 3rem;
    margin-left: 0;
  }

  .features__grid,
  .support__cards,
  .stats__grid,
  .footer__cols {
    grid-template-columns: 1fr;
  }

  .features__item,
  .features__item:nth-child(odd),
  .features__item:nth-child(even) {
    border-right: none;
    padding: 14px 0;
    border-bottom: 1px solid #2c2c2c;
  }

  .features__item:last-child {
    border-bottom: none;
  }

  .support__line {
    display: none;
  }

  .support__card {
    min-height: auto;
  }

  .review-card {
    grid-template-columns: 72px 1fr;
    gap: 14px;
    min-height: 430px;
    padding: 18px;
  }

  .review-card__rating {
    height: 100px;
  }

  .review-card__rating strong {
    font-size: 1.45rem;
  }

  .review-card__title {
    font-size: 0.95rem;
  }

  .process,
  .support,
  .stats,
  .reviews {
    padding: 72px 0;
  }

  .final-cta {
    padding: 64px 0;
  }

  .footer__bottom {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }

  .philosophy__actions .btn,
  .final-cta__actions .btn,
  .hero__actions .btn {
    width: auto;
    flex: 1 1 auto;
  }
}

@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;
  }
}
