:root {
  --ve-green: #11c48c;
  --ve-green-dark: #0ea879;
  --ve-navy: #141d2e;
  --ve-black: #050505;
  --ve-white: #ffffff;
  --ve-text: #0f1520;
  --ve-muted: #64748b;
  --ve-line: rgba(255, 255, 255, 0.08);
  --ve-soft: #f7f9fc;
  --ve-card: #fbfcfd;
  --ve-border: rgba(15, 21, 32, 0.08);
  --ve-shadow: 0 28px 72px rgba(15, 21, 32, 0.08);
  --ve-container: min(100% - 3rem, 1600px);
}

html {
  scroll-behavior: smooth;
}

body.ve-landing-body {
  margin: 0 !important;
  padding: 0;
  background: var(--ve-white);
  color: var(--ve-text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.ve-landing-body * {
  box-sizing: border-box;
}

body.ve-landing-body img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.ve-landing-body a {
  color: inherit;
  text-decoration: none;
}

body.ve-landing-body button,
body.ve-landing-body input {
  font: inherit;
}

body.ve-landing-body .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ve-landing {
  position: relative;
  overflow: clip;
}

.ve-container {
  width: var(--ve-container);
  margin: 0 auto;
}

.ve-section-copy {
  text-align: center;
}

.ve-section-title {
  margin: 0;
  color: var(--ve-text);
  font-size: clamp(2.8rem, 4.3vw, 5.6rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.ve-section-title span {
  display: block;
}

.ve-section-title--light {
  color: var(--ve-white);
}

.ve-section-text {
  margin: 1.75rem auto 0;
  max-width: 72rem;
  color: var(--ve-muted);
  font-size: clamp(1.18rem, 1.5vw, 1.92rem);
  line-height: 1.65;
}

.ve-section-text--light {
  color: rgba(255, 255, 255, 0.9);
}

.ve-section-divider {
  width: 7.5rem;
  height: 0.34rem;
  margin: 4.8rem auto 0;
  background: var(--ve-green);
}

.ve-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.ve-brand__icon {
  width: 2rem;
  height: 2rem;
  color: var(--ve-green);
  flex: 0 0 auto;
}

.ve-brand__icon svg,
.ve-icon-box svg,
.ve-toolkit-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ve-brand__icon svg {
  stroke-width: 1.8;
}

.ve-brand__text {
  display: inline-block;
}

.ve-brand--hero {
  color: var(--ve-green);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ve-brand--footer {
  color: var(--ve-white);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.ve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.3rem;
  padding: 1.2rem 3.25rem;
  border: 0;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.ve-button:hover,
.ve-button:focus-visible {
  transform: translateY(-2px);
}

.ve-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}

.ve-button--primary {
  min-width: 23.8rem;
  background: var(--ve-green);
  color: var(--ve-white);
  box-shadow: 0 22px 60px rgba(17, 196, 140, 0.22);
}

.ve-button--primary:hover,
.ve-button--primary:focus-visible {
  background: var(--ve-green-dark);
}

.ve-button--dark {
  width: 100%;
  min-width: 17.3rem;
  background: var(--ve-black);
  color: var(--ve-white);
}

.ve-button--dark:hover,
.ve-button--dark:focus-visible {
  background: #121212;
}

.ve-button--wide {
  min-width: 25.5rem;
}

.ve-landing__hero {
  position: relative;
  min-height: 100svh;
  padding: 7rem 0 6rem;
  color: var(--ve-white);
  background-color: #09111b;
  background-image: var(--ve-hero-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ve-landing__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 23, 0.96) 0%, rgba(8, 14, 23, 0.94) 35%, rgba(8, 14, 23, 0.68) 58%, rgba(8, 14, 23, 0.2) 75%, rgba(8, 14, 23, 0.32) 100%);
}

.ve-landing__hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12rem;
  background: linear-gradient(180deg, rgba(8, 14, 23, 0) 0%, rgba(8, 14, 23, 0.26) 100%);
}

.ve-landing__hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - 13rem);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.ve-hero-copy {
  max-width: 53rem;
  margin-top: 4.8rem;
}

.ve-hero-title {
  margin: 0;
  color: var(--ve-white);
  font-size: clamp(3.8rem, 6.3vw, 7rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.ve-hero-title span {
  display: block;
}

.ve-hero-copy p {
  margin: 2.9rem 0 0;
  max-width: 50rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.35rem, 1.85vw, 2rem);
  line-height: 1.66;
}

.ve-hero-copy .ve-button {
  margin-top: 4.25rem;
}

.ve-landing__problem {
  padding: 8.8rem 0 9rem;
  background: var(--ve-black);
}

.ve-landing__problem .ve-section-copy {
  max-width: 78rem;
  margin: 0 auto;
}

.ve-landing__pillars {
  padding: 8.2rem 0 8.8rem;
  background: var(--ve-white);
}

.ve-pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 3rem 2.2rem;
  margin-top: 5.8rem;
}

.ve-pillar {
  text-align: center;
}

.ve-icon-box {
  display: grid;
  place-items: center;
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto 1.95rem;
  background: var(--ve-green);
  color: var(--ve-white);
}

.ve-icon-box svg {
  width: 2.35rem;
  height: 2.35rem;
  stroke-width: 1.9;
}

.ve-pillar h3 {
  margin: 0;
  color: var(--ve-text);
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.ve-pillar p {
  margin: 1rem auto 0;
  max-width: 15rem;
  color: var(--ve-muted);
  font-size: 1.28rem;
  line-height: 1.6;
}

.ve-landing__toolkit {
  padding: 8.2rem 0 9.2rem;
  background: var(--ve-soft);
}

.ve-toolkit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4.8rem;
}

.ve-toolkit-card {
  overflow: hidden;
  background: var(--ve-card);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--ve-shadow);
}

.ve-toolkit-card__image {
  width: 100%;
  height: 17.5rem;
  object-fit: cover;
}

.ve-toolkit-card__body {
  padding: 2.6rem 2.5rem 2.8rem;
}

.ve-toolkit-card__icon {
  width: 3.15rem;
  height: 3.15rem;
  color: var(--ve-green);
}

.ve-toolkit-card__icon svg {
  stroke-width: 1.75;
}

.ve-toolkit-card h3 {
  margin: 1.8rem 0 0;
  color: var(--ve-text);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.ve-toolkit-card p {
  margin: 1rem 0 0;
  color: var(--ve-muted);
  font-size: 1.23rem;
  line-height: 1.63;
}

.ve-landing__testimonials {
  padding: 7.8rem 0 9rem;
  background: var(--ve-white);
}

.ve-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.2rem;
  margin-top: 5.3rem;
}

.ve-testimonial {
  min-height: 17rem;
  padding: 2.2rem 0 1rem 2.5rem;
  border-left: 0.3rem solid var(--ve-green);
}

.ve-testimonial blockquote {
  margin: 0;
}

.ve-testimonial blockquote p {
  margin: 0;
  color: #22314a;
  font-size: clamp(1.4rem, 1.65vw, 2rem);
  font-style: italic;
  line-height: 1.72;
  letter-spacing: -0.035em;
}

.ve-testimonial__name {
  margin: 2.4rem 0 0;
  color: var(--ve-text);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.ve-testimonial__meta {
  margin: 0.75rem 0 0;
  color: var(--ve-muted);
  font-size: 1.35rem;
  line-height: 1.4;
}

.ve-landing__download {
  padding: 8rem 0 8.4rem;
  background: var(--ve-green);
}

.ve-landing__download .ve-section-copy {
  max-width: 76rem;
  margin: 0 auto;
}

.ve-download-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17.3rem;
  gap: 2.4rem;
  align-items: end;
  max-width: 60rem;
  margin: 4.8rem auto 0;
}

.ve-download-field {
  position: relative;
}

.ve-download-field input {
  width: 100%;
  height: 5.3rem;
  padding: 0 0 0.9rem;
  border: 0;
  border-bottom: 2px solid rgba(6, 57, 40, 0.25);
  background: transparent;
  color: #053322;
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  font-weight: 500;
  outline: none;
  transition: border-color 0.22s ease, color 0.22s ease;
}

.ve-download-field input::placeholder {
  color: rgba(5, 51, 34, 0.72);
}

.ve-download-field input:focus,
.ve-download-field input[aria-invalid="true"] {
  border-color: rgba(5, 51, 34, 0.64);
}

.ve-download-note {
  margin: 1.9rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.6;
}

.ve-form-message {
  min-height: 1.8rem;
  margin: 0.85rem 0 0;
  color: transparent;
  font-size: 0.98rem;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.ve-form-message[data-state="success"] {
  color: rgba(5, 51, 34, 0.88);
}

.ve-form-message[data-state="error"] {
  color: rgba(88, 11, 11, 0.9);
}

.ve-landing__cta {
  padding: 7.3rem 0 8.5rem;
  background: var(--ve-black);
}

.ve-landing__cta .ve-section-copy {
  max-width: 72rem;
  margin: 0 auto;
}

.ve-landing__cta .ve-button {
  margin-top: 4rem;
}

.ve-footer {
  padding: 3.6rem 0 4rem;
  background: var(--ve-navy);
  color: rgba(255, 255, 255, 0.78);
}

.ve-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ve-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.75rem 3rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.ve-footer__nav a {
  transition: color 0.2s ease;
}

.ve-footer__nav a:hover,
.ve-footer__nav a:focus-visible {
  color: var(--ve-white);
}

.ve-footer__bottom {
  margin-top: 3rem;
  padding-top: 2.6rem;
  border-top: 1px solid var(--ve-line);
}

.ve-footer__bottom p {
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.5;
}

.js body.ve-landing-body .ve-reveal {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.js body.ve-landing-body .ve-pillars-grid .ve-reveal:nth-child(2),
.js body.ve-landing-body .ve-toolkit-grid .ve-reveal:nth-child(2),
.js body.ve-landing-body .ve-testimonials-grid .ve-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.js body.ve-landing-body .ve-pillars-grid .ve-reveal:nth-child(3),
.js body.ve-landing-body .ve-toolkit-grid .ve-reveal:nth-child(3),
.js body.ve-landing-body .ve-testimonials-grid .ve-reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.js body.ve-landing-body .ve-pillars-grid .ve-reveal:nth-child(4),
.js body.ve-landing-body .ve-toolkit-grid .ve-reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.js body.ve-landing-body .ve-pillars-grid .ve-reveal:nth-child(5) {
  transition-delay: 0.32s;
}

body.admin-bar .ve-landing__hero {
  min-height: calc(100svh - 32px);
}

@media (max-width: 1200px) {
  :root {
    --ve-container: min(100% - 2.75rem, 1260px);
  }

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

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

@media (max-width: 960px) {
  :root {
    --ve-container: min(100% - 2.5rem, 940px);
  }

  .ve-landing__hero {
    background-position: 72% center;
  }

  .ve-landing__hero::before {
    background:
      linear-gradient(90deg, rgba(8, 14, 23, 0.96) 0%, rgba(8, 14, 23, 0.92) 48%, rgba(8, 14, 23, 0.64) 72%, rgba(8, 14, 23, 0.3) 100%);
  }

  .ve-landing__pillars,
  .ve-landing__toolkit,
  .ve-landing__testimonials,
  .ve-landing__download {
    padding-top: 6.8rem;
    padding-bottom: 7rem;
  }

  .ve-landing__problem,
  .ve-landing__cta {
    padding-top: 6.8rem;
    padding-bottom: 7rem;
  }

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

  .ve-download-form {
    grid-template-columns: 1fr;
    max-width: 36rem;
  }

  .ve-button--dark,
  .ve-button--primary,
  .ve-button--wide {
    min-width: 100%;
  }

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

  .ve-footer__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --ve-container: min(100% - 2rem, 680px);
  }

  .ve-brand--hero {
    font-size: 0.96rem;
    letter-spacing: 0.06em;
  }

  .ve-landing__hero {
    min-height: auto;
    padding: 6rem 0 4.5rem;
    background-position: 78% center;
  }

  .ve-landing__hero-inner {
    min-height: auto;
  }

  .ve-hero-copy {
    max-width: 24rem;
    margin-top: 3rem;
  }

  .ve-hero-copy p {
    margin-top: 1.85rem;
    max-width: 20rem;
    font-size: 1.18rem;
  }

  .ve-section-text {
    font-size: 1.08rem;
  }

  .ve-pillars-grid,
  .ve-toolkit-grid,
  .ve-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .ve-section-divider {
    margin-top: 3.2rem;
  }

  .ve-toolkit-card__image {
    height: 14.5rem;
  }

  .ve-testimonial {
    padding-left: 1.5rem;
  }

  .ve-footer {
    padding-top: 3rem;
    padding-bottom: 3.25rem;
  }

  .ve-footer__top {
    align-items: center;
  }

  .ve-brand--footer {
    font-size: 1.75rem;
  }

  .ve-footer__nav {
    justify-content: center;
    gap: 1rem 1.6rem;
    text-align: center;
  }
}

@media (max-width: 782px) {
  body.admin-bar .ve-landing__hero {
    min-height: calc(100svh - 46px);
  }
}

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

  .ve-button,
  .ve-download-field input,
  .js body.ve-landing-body .ve-reveal {
    transition: none !important;
  }
}
