@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --landing-dark: #010101;
  --landing-dark-soft: #0b0f17;
  --landing-light: #f8fafc;
  --landing-white: #ffffff;
  --landing-text: #101827;
  --landing-muted: #566174;
  --landing-border: #e2e8f0;
  --landing-blue: #2563eb;
  --landing-blue-light: #60a5fa;
  --landing-highlight-light: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  --landing-highlight-dark: linear-gradient(90deg, #60a5fa 0%, #93c5fd 100%);
  --landing-font-primary: "DM Sans", sans-serif;
  --landing-font-heading: "DM Sans", sans-serif;
}

body.page-template-page-landing #site-header,
body.page-template-page-landing .site-header {
  display: none;
}

.landing-page {
  width: 100%;
  overflow-x: hidden;
  background: var(--landing-dark);
  color: var(--landing-text);
  font-family: var(--landing-font-primary);
  line-height: 1.6;
}

.landing-page {
  scroll-behavior: smooth;
}

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

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p {
  margin-top: 0;
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  color: inherit;
  font-family: var(--landing-font-heading);
  letter-spacing: 0;
}

.landing-page h1,
.landing-page h2 {
  letter-spacing: -4px;
}

.landing-page p {
  color: inherit;
  font-family: var(--landing-font-primary);
}

.landing-section,
.landing-hero {
  position: relative;
  padding: 6rem 0;
}

.landing-section__container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.landing-nav {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.58),
    rgba(15, 23, 42, 0.38)
  );
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  color: var(--landing-white);
}

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

.landing-nav__brand {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.landing-nav__brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.landing-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.6vw, 2rem);
}

.landing-nav__links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.landing-nav__cta {
  display: inline-flex;
  min-height: 2.75rem;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 5rem;
  background:
    linear-gradient(var(--landing-blue), var(--landing-blue)) padding-box,
    linear-gradient(
        115deg,
        rgba(96, 165, 250, 0.2),
        #93c5fd,
        #2563eb,
        #93c5fd,
        rgba(96, 165, 250, 0.2)
      )
      border-box;
  background-size:
    100% 100%,
    220% 220%;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
  color: var(--landing-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  animation: landing-cta-border-glow 4.8s linear infinite;
}

.landing-nav__cta::before {
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.16) 28%,
    rgba(255, 255, 255, 0.34) 42%,
    transparent 58%
  );
  content: "";
  opacity: 0.86;
  pointer-events: none;
  translate: -120% 0;
  animation: landing-cta-shine 3.8s ease-in-out infinite;
}

.landing-nav__cta:hover,
.landing-nav__cta:focus-visible {
  color: var(--landing-white);
  transform: translateY(-2px);
}

.landing-nav__mobile {
  display: none;
}

.landing-section--dark {
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(37, 99, 235, 0.24),
      transparent 30rem
    ),
    var(--landing-dark);
  color: var(--landing-white);
}

.landing-section--light {
  background: var(--landing-light);
  color: var(--landing-text);
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--landing-blue-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.landing-kicker::before {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--landing-blue-light);
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
}

.landing-section--light .landing-kicker {
  color: var(--landing-blue);
}

.landing-section--light .landing-kicker::before {
  background: var(--landing-blue);
}

.landing-section__heading {
  width: min(680px, 100%);
  margin: 0 auto 3rem;
  text-align: center;
}

.landing-section__heading--left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.landing-section__heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 4.2vw, 3.125rem);
  font-weight: 800;
  line-height: 1.05;
}

.landing-section__heading h2 span,
.landing-cta h2 span,
.landing-about__content h2 span,
.landing-plan-addons__heading h2 span {
  background: var(--landing-highlight-light);
  background-clip: text;
  -webkit-box-decoration-break: clone;
  -webkit-background-clip: text;
  box-decoration-break: clone;
  color: transparent;
  padding: 0 0.05em 0.06em;
  margin: 0 -0.05em -0.06em;
  -webkit-text-fill-color: transparent;
}

.landing-section--dark .landing-section__heading h2 span,
.landing-section--dark .landing-cta h2 span,
.landing-section--dark .landing-about__content h2 span,
.landing-section--dark .landing-plan-addons__heading h2 span {
  background-image: var(--landing-highlight-dark);
}

.landing-section__heading p {
  margin-bottom: 0;
  color: var(--landing-muted);
  font-size: 1.05rem;
}

.landing-section--dark .landing-section__heading p,
.landing-section--dark p {
  color: rgba(255, 255, 255, 0.74);
}

.landing-button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  overflow: hidden;
  isolation: isolate;
  min-height: 3.25rem;
  padding: 1.2rem 2.2rem;
  border: 1px solid transparent;
  border-radius: 5rem;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.landing-button::before {
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 28%,
    rgba(255, 255, 255, 0.34) 42%,
    transparent 58%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  translate: -120% 0;
}

.landing-button img {
  display: block;
  width: 0.82rem;
  height: 0.82rem;
  flex: 0 0 0.82rem;
  object-fit: contain;
}

.landing-button:hover {
  transform: translateY(-2px);
}

.landing-button--primary {
  background:
    linear-gradient(115deg, #1d4ed8 0%, #2563eb 42%, #60a5fa 100%) padding-box,
    linear-gradient(
        115deg,
        rgba(96, 165, 250, 0.2),
        #93c5fd,
        #2563eb,
        #93c5fd,
        rgba(96, 165, 250, 0.2)
      )
      border-box;
  background-size:
    160% 160%,
    220% 220%;
  box-shadow:
    0 18px 36px rgba(37, 99, 235, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  color: var(--landing-white);
  animation:
    landing-cta-gradient 7s ease-in-out infinite,
    landing-cta-border-glow 4.8s linear infinite;
}

.landing-button--primary:hover {
  color: var(--landing-white);
}

.landing-button--primary::before {
  opacity: 0.76;
  animation: landing-cta-shine 5.8s ease-in-out infinite;
}

.landing-button--ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--landing-white);
}

.landing-button--ghost:hover {
  border-color: var(--landing-blue-light);
  color: var(--landing-white);
}

.landing-button--large {
  min-height: 3.5rem;
  padding-right: 1.75rem;
  padding-left: 1.75rem;
}

.landing-hero {
  isolation: isolate;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  padding-top: 9.5rem;
  padding-bottom: 3rem;
  scroll-margin-top: 7.5rem;
  background:
    radial-gradient(
      ellipse at 50% 38%,
      rgba(1, 1, 1, 0.58) 0%,
      rgba(1, 1, 1, 0.46) 34%,
      transparent 66%
    ),
    radial-gradient(
      ellipse at center,
      rgba(1, 8, 18, 0.2) 0%,
      rgba(1, 8, 18, 0.26) 42%,
      rgba(1, 1, 1, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(1, 8, 18, 0.22) 0%,
      rgba(1, 8, 18, 0.34) 36%,
      rgba(1, 1, 1, 0.52) 100%
    ),
    url("../img/bg-7.png") center / cover no-repeat,
    var(--landing-dark);
  color: var(--landing-white);
}

.landing-hero::before {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(8rem, 16vw, 13rem);
  background: radial-gradient(
    ellipse 74% 82% at 50% 108%,
    rgba(1, 1, 1, 0.58) 0%,
    rgba(1, 1, 1, 0.28) 42%,
    transparent 78%
  );
  content: "";
  pointer-events: none;
}

.landing-hero::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(96, 165, 250, 0.75),
    transparent
  );
  content: "";
}

.landing-hero__grid {
  display: flex;
  position: relative;
  z-index: 3;
  justify-content: center;
}

.landing-hero__content {
  max-width: 880px;
  text-align: center;
}

.landing-hero h1 {
  max-width: 980px;
  margin: 0 auto 1.55rem;
  font-size: clamp(3rem, 7.2vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.landing-hero h1 span {
  background: var(--landing-highlight-dark);
  background-clip: text;
  -webkit-box-decoration-break: clone;
  -webkit-background-clip: text;
  box-decoration-break: clone;
  color: transparent;
  padding: 0 0.05em 0.06em;
  margin: 0 -0.05em -0.06em;
  -webkit-text-fill-color: transparent;
}

.landing-hero p {
  max-width: 620px;
  margin-bottom: 2rem;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2.35rem;
}

.landing-hero__projects {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 1rem;
}

.landing-hero__projects::before,
.landing-hero__projects::after {
  position: absolute;
  z-index: 3;
  top: -3rem;
  bottom: -0.5rem;
  width: min(38vw, 32rem);
  content: "";
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 7%,
    rgba(0, 0, 0, 0.92) 12%,
    #000000 17%,
    #000000 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 7%,
    rgba(0, 0, 0, 0.92) 12%,
    #000000 17%,
    #000000 100%
  );
}

.landing-hero__projects::before {
  left: 0;
  background:
    radial-gradient(
      ellipse 104% 150% at 0% 50%,
      rgba(1, 6, 14, 1) 0%,
      rgba(2, 12, 27, 0.96) 30%,
      rgba(2, 13, 30, 0.62) 58%,
      transparent 84%
    ),
    linear-gradient(
      90deg,
      rgba(1, 6, 14, 0.98) 0%,
      rgba(2, 12, 27, 0.82) 34%,
      rgba(2, 13, 30, 0.34) 68%,
      transparent 100%
    );
}

.landing-hero__projects::after {
  right: 0;
  background:
    radial-gradient(
      ellipse 104% 150% at 100% 50%,
      rgba(1, 6, 14, 1) 0%,
      rgba(1, 10, 25, 0.96) 30%,
      rgba(6, 28, 58, 0.54) 58%,
      transparent 84%
    ),
    linear-gradient(
      270deg,
      rgba(1, 6, 14, 0.98) 0%,
      rgba(1, 10, 25, 0.82) 34%,
      rgba(6, 28, 58, 0.3) 68%,
      transparent 100%
    );
}

.landing-hero__projects-viewport {
  width: 100%;
  overflow: hidden;
}

.landing-hero__projects-track {
  display: flex;
  width: max-content;
  animation: landing-projects-scroll 34s linear infinite;
}

.landing-hero__project-card {
  display: block;
  width: clamp(19rem, 29vw, 26rem);
  margin-right: 1.25rem;
}

.landing-hero__project-image {
  display: grid;
  height: clamp(11.5rem, 17vw, 15.5rem);
  place-items: center;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #0b0f17;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

.landing-hero__project-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero__project-image span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.landing-hero__projects-duplicate {
  display: flex;
}

.landing-hero__projects-empty {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.landing-hero__content > *,
.landing-hero__projects {
  animation: landing-load-in 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-hero__content > *:nth-child(1) {
  animation-delay: 120ms;
}

.landing-hero__content > *:nth-child(2) {
  animation-delay: 220ms;
}

.landing-hero__content > *:nth-child(3) {
  animation-delay: 320ms;
}

.landing-hero__content > *:nth-child(4) {
  animation-delay: 430ms;
}

.landing-hero__projects {
  animation-delay: 560ms;
}

.landing-motion-ready .landing-reveal {
  opacity: 0;
  translate: 0 2.25rem;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--landing-reveal-delay, 0ms);
  will-change: opacity, translate;
}

.landing-motion-ready .landing-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@keyframes landing-load-in {
  from {
    opacity: 0;
    filter: blur(8px);
    translate: 0 1.8rem;
  }

  to {
    opacity: 1;
    filter: blur(0);
    translate: 0 0;
  }
}

@keyframes landing-cta-gradient {
  0%,
  100% {
    background-position:
      0% 50%,
      0% 50%;
  }

  50% {
    background-position:
      100% 50%,
      100% 50%;
  }
}

@keyframes landing-cta-border-glow {
  0% {
    background-position:
      0% 50%,
      0% 50%;
  }

  100% {
    background-position:
      0% 50%,
      100% 50%;
  }
}

@keyframes landing-cta-shine {
  0%,
  28% {
    opacity: 0;
    translate: -120% 0;
  }

  46% {
    opacity: 0.86;
  }

  72%,
  100% {
    opacity: 0;
    translate: 120% 0;
  }
}

@keyframes landing-projects-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero__content > *,
  .landing-hero__projects {
    animation: none;
  }

  .landing-nav__cta,
  .landing-button--primary,
  .landing-button--primary::before,
  .landing-nav__cta::before {
    animation: none;
  }

  .landing-motion-ready .landing-reveal {
    opacity: 1;
    translate: 0 0;
    transition: none;
  }

  .landing-hero__projects-track {
    animation-play-state: paused;
  }
}

.landing-section[id] {
  scroll-margin-top: 7.5rem;
}

.landing-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(0, 500px);
  gap: clamp(4rem, 9vw, 130px);
  align-items: start;
  justify-content: center;
}

.landing-intro .landing-section__heading {
  margin-bottom: 0;
}

.landing-intro .landing-section__heading p {
  max-width: 680px;
  color: var(--landing-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.landing-method__list {
  border-top: 1px solid var(--landing-border);
}

.landing-method__item {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--landing-border);
}

.landing-method__icon {
  display: grid;
  width: 3.05rem;
  height: 3.05rem;
  place-items: center;
  flex: 0 0 3.05rem;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 0.45rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.landing-method__icon img {
  display: block;
  width: 1.62rem;
  height: 1.62rem;
  object-fit: contain;
}

.landing-method__item h3 {
  margin-bottom: 0.3rem;
  color: var(--landing-text);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.landing-method__item p {
  margin-bottom: 0;
  color: var(--landing-muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.landing-about {
  overflow: hidden;
  background: #eef6ff;
}

.landing-about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.landing-about__photo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-height: clamp(22rem, 36vw, 31rem);
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(255, 255, 255, 0.74)),
    #ffffff;
  box-shadow:
    0 26px 70px rgba(37, 99, 235, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.88) inset;
}

.landing-about__photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(23rem, 39vw, 34rem);
  object-fit: cover;
  object-position: top center;
}

.landing-about__content h2 {
  max-width: 680px;
  margin-bottom: 1rem;
  color: var(--landing-text);
  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}

.landing-about__content p {
  max-width: 680px;
  margin-bottom: 1.75rem;
  color: var(--landing-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.landing-about__facts {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-about__facts li {
  display: grid;
  grid-template-columns: 1.45rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  color: var(--landing-text);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.landing-about__facts img {
  display: block;
  width: 1.15rem;
  height: 1.1rem;
  margin-top: 0.13rem;
  object-fit: contain;
}

.landing-about__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.landing-about__social a {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 50%;
  background: var(--landing-white);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.1);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.landing-about__social a:hover,
.landing-about__social a:focus-visible {
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.16);
  transform: translateY(-2px);
}

.landing-about__social img {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.landing-plans {
  overflow: visible;
  background:
    linear-gradient(
      180deg,
      rgba(11, 15, 23, 0.56) 0%,
      rgba(1, 1, 1, 0.72) 100%
    ),
    url("../img/bg-1.png") center / cover no-repeat,
    #010101;
  color: var(--landing-white);
}

.landing-plans__grid {
  display: grid;
  width: min(100%, 900px);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.landing-plan-card {
  display: flex;
  min-height: 100%;
  position: relative;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.45rem, 3vw, 2rem);
  border: 1px solid transparent;
  border-radius: 0.5rem;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.9)
    ),
    var(--landing-white);
  box-shadow:
    0 24px 70px rgba(15, 23, 42, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.landing-plan-card--featured::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.28rem;
  background: linear-gradient(
    90deg,
    var(--landing-blue),
    var(--landing-blue-light)
  );
  content: "";
}

.landing-plan-card--featured {
  overflow: visible;
  border-color: rgba(37, 99, 235, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(226, 239, 255, 0.98)),
    var(--landing-white);
  box-shadow:
    0 36px 100px rgba(37, 99, 235, 0.22),
    0 18px 44px rgba(15, 23, 42, 0.12),
    0 0 0 2px rgba(96, 165, 250, 0.18) inset;
  transform: translateY(-0.6rem) scale(1.02);
}

.landing-plan-card__badge {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.58rem 1rem;
  border-radius: 999px;
  background: var(--landing-blue);
  color: var(--landing-white);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.32);
  text-transform: uppercase;
  white-space: nowrap;
}

.landing-plan-card__header {
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--landing-border);
}

.landing-plan-card h3 {
  margin-bottom: 0;
  color: var(--landing-text);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.05;
}

.landing-plan-card--featured h3 {
  color: var(--landing-blue);
}

.landing-plan-card__features {
  display: grid;
  gap: 0.68rem;
  margin: 1.3rem 0 1.65rem;
  padding: 0;
  list-style: none;
}

.landing-plan-card__features li {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  color: #263244;
  font-size: 0.91rem;
  font-weight: 600;
  line-height: 1.38;
}

.landing-plan-card__features span {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--landing-blue);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.landing-plan-card__button {
  width: 100%;
  margin-top: auto;
}

.landing-plan-addons {
  border-top: 1px solid rgba(96, 165, 250, 0.14);
  border-bottom: 1px solid rgba(96, 165, 250, 0.14);
  background:
    radial-gradient(
      circle at 86% 0%,
      rgba(37, 99, 235, 0.24),
      transparent 28rem
    ),
    var(--landing-dark);
}

.landing-plan-addons__list {
  display: grid;
  width: min(100%, 900px);
  gap: 0.85rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.landing-plan-addons__item {
  overflow: hidden;
  padding: clamp(1rem, 2.2vw, 1.25rem) clamp(1.1rem, 2.4vw, 1.5rem);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 0.5rem;
  background: var(--landing-white);
  box-shadow: 0 18px 46px rgba(1, 8, 18, 0.18);
}

.landing-plan-addons__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.landing-plan-addons__item summary::-webkit-details-marker {
  display: none;
}

.landing-plan-addons__item summary > span:first-child {
  color: var(--landing-text);
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.05rem;
}

.landing-plan-addons__meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-left: auto;
}

.landing-plan-addons__price {
  color: var(--landing-blue);
  text-align: right;
  font-size: clamp(0.9rem, 2.2vw, 0.7rem);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}

.landing-plan-addons__toggle {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 1.75rem;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 50%;
  color: var(--landing-blue);
}

.landing-plan-addons__toggle::before {
  content: "+";
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.landing-plan-addons__item[open] .landing-plan-addons__toggle::before {
  content: "-";
}

.landing-plan-addons__item p {
  max-width: 690px;
  margin: 0.95rem 2.75rem 0 0;
  color: var(--landing-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.landing-plan-addons__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.landing-process {
  overflow: hidden;
}

.landing-process__heading {
  margin-bottom: 4.75rem;
}

.landing-process__heading .landing-kicker {
  margin-bottom: 1.2rem;
}

.landing-process__timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-process__timeline::before {
  position: absolute;
  z-index: 0;
  top: 2.375rem;
  right: 12%;
  left: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(96, 165, 250, 0.62) 0,
    rgba(96, 165, 250, 0.62) 12px,
    transparent 12px,
    transparent 22px
  );
  content: "";
}

.landing-process__step {
  position: relative;
  z-index: 1;
  min-height: 16.25rem;
  padding: 0 1rem;
  text-align: center;
}

.landing-process__step:first-child,
.landing-process__step:last-child {
  padding-right: 1rem;
  padding-left: 1rem;
}

.landing-process__number {
  display: grid;
  width: 4.75rem;
  height: 4.75rem;
  position: relative;
  z-index: 1;
  margin: 0 auto 1.5rem;
  place-items: center;
  border: 0.5rem solid #010101;
  border-radius: 50%;
  background: var(--landing-blue);
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.38),
    0 14px 28px rgba(37, 99, 235, 0.28);
  color: var(--landing-white);
  font-family: "DM Sans", sans-serif;
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.landing-process__step:hover .landing-process__number {
  background: var(--landing-blue-light);
  box-shadow:
    0 0 0 1px rgba(147, 197, 253, 0.58),
    0 16px 34px rgba(96, 165, 250, 0.32);
  color: #071222;
}

.landing-process__content {
  max-width: none;
}

.landing-process__content h3 {
  margin-bottom: 0.8rem;
  color: var(--landing-white);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.landing-process__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.65;
}

.landing-testimonials {
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 52%, #f8fafc 100%);
  scroll-margin-top: 7.5rem;
}

.landing-testimonials__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
}

.landing-testimonials__card {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 0.45rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 0.5rem;
  background: var(--landing-white);
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.landing-testimonials__card:hover {
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(96, 165, 250, 0.24) inset;
  transform: translateY(-0.35rem);
}

.landing-testimonials__card img {
  display: block;
  width: 100%;
  aspect-ratio: 591 / 1280;
  border-radius: 0.35rem;
  background: #eef2f7;
  object-fit: cover;
  object-position: top center;
}

.portfolio-grid,
.benefits-grid,
.testimonials-grid,
.process-grid {
  display: grid;
  gap: 1.25rem;
}

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

.portfolio-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.portfolio-card:hover {
  border-color: rgba(96, 165, 250, 0.55);
  transform: translateY(-4px);
}

.portfolio-card__screenshot {
  display: grid;
  min-height: 210px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(96, 165, 250, 0.1)),
    #101827;
  overflow: hidden;
}

.portfolio-card__image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.portfolio-card__screenshot-placeholder {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
  font-weight: 700;
}

.portfolio-card__content {
  padding: 1rem;
}

.portfolio-card__content span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--landing-blue-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-card__content h3 {
  margin-bottom: 0;
  color: var(--landing-white);
  font-size: 1.15rem;
  line-height: 1.2;
}

.portfolio-empty {
  grid-column: 1 / -1;
  margin-bottom: 0;
  padding: 2rem;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 0.75rem;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

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

.benefit-card,
.process-step {
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--landing-border);
  border-radius: 0.75rem;
  background: var(--landing-white);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.benefit-card__number {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--landing-blue);
  font-family: var(--landing-font-heading);
  font-size: 0.86rem;
  font-weight: 800;
}

.benefit-card h3,
.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.28rem;
  line-height: 1.2;
}

.benefit-card p,
.process-step p {
  margin-bottom: 0;
  color: var(--landing-muted);
}

.landing-testimonials__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: center;
}

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

.testimonial-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.07);
}

.testimonial-bubble {
  max-width: 88%;
  padding: 0.95rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.98rem;
  line-height: 1.45;
}

.testimonial-bubble--sent {
  justify-self: flex-end;
  background: var(--landing-blue);
  color: var(--landing-white);
}

.testimonial-bubble--received {
  justify-self: flex-start;
  background: var(--landing-white);
  color: var(--landing-text);
}

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

.process-step {
  position: relative;
}

.process-step span {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 0.55rem;
  background: var(--landing-dark);
  color: var(--landing-white);
  font-family: var(--landing-font-heading);
  font-weight: 800;
}

.process-step:nth-child(even) span {
  background: var(--landing-blue);
}

.landing-cta {
  text-align: center;
}

.landing-cta__content {
  width: min(820px, 100%);
  margin: 0 auto;
}

.landing-cta h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 4.2vw, 3.125rem);
  font-weight: 800;
  line-height: 1.05;
}

.landing-cta p {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.landing-footer {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: #010101;
  color: var(--landing-white);
}

.landing-footer__container {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 1.85rem;
  text-align: center;
}

.landing-footer__content {
  width: min(760px, 100%);
}

.landing-footer__content h2 {
  margin-bottom: 1rem;
  color: var(--landing-white);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.05;
}

.landing-footer__content h2 span {
  background: var(--landing-highlight-dark);
  background-clip: text;
  -webkit-box-decoration-break: clone;
  -webkit-background-clip: text;
  box-decoration-break: clone;
  color: transparent;
  padding: 0 0.05em 0.06em;
  margin: 0 -0.05em -0.06em;
  -webkit-text-fill-color: transparent;
}

.landing-footer__content p {
  max-width: 620px;
  margin: 0 auto 1.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.65;
}

#site-footer.site-footer {
  display: block;
  padding: 1.15rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #010101;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--landing-font-primary);
  text-align: center;
}

#site-footer.site-footer > * {
  display: none;
}

#site-footer.site-footer::before {
  content: "Todos os direitos reservados.";
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .landing-hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .landing-intro__grid,
  .landing-about__grid,
  .landing-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .landing-plans__grid {
    grid-template-columns: 1fr;
  }

  .landing-plan-card--featured {
    transform: none;
  }

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

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

  .landing-process__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 2rem;
  }

  .landing-process__timeline::before {
    display: none;
  }

  .landing-process__step {
    padding: 0 1rem;
  }
}

@media (max-width: 720px) {
  .landing-section,
  .landing-hero {
    padding: 4rem 0;
  }

  .landing-hero {
    padding-top: 6rem;
  }

  .landing-section__container {
    width: min(100% - 1.25rem, 1180px);
  }

  .landing-nav {
    padding: 1rem 0;
  }

  .landing-nav__container {
    gap: 1rem;
  }

  .landing-nav__links {
    display: none;
  }

  .landing-nav__cta {
    min-height: 3rem;
    padding: 0.78rem 0.88rem;
    font-size: 0.7rem;
  }

  .landing-nav__mobile {
    position: relative;
    display: block;
  }

  .landing-nav__mobile summary {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    align-content: center;
    justify-items: center;
    gap: 0.28rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0.4rem;
    background: rgba(1, 1, 1, 0.4);
    cursor: pointer;
    list-style: none;
  }

  .landing-nav__mobile summary::-webkit-details-marker {
    display: none;
  }

  .landing-nav__mobile summary span {
    width: 1.05rem;
    height: 2px;
    background: var(--landing-white);
    transition: transform 0.2s ease;
  }

  .landing-nav__mobile[open] summary span:first-child {
    transform: translateY(0.38rem) rotate(45deg);
  }

  .landing-nav__mobile[open] summary span:nth-child(2) {
    transform: scaleX(0);
  }

  .landing-nav__mobile[open] summary span:last-child {
    transform: translateY(-0.38rem) rotate(-45deg);
  }

  .landing-nav__mobile nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    display: grid;
    width: min(17rem, calc(100vw - 1.25rem));
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.5rem;
    background: #0b0f17;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  }

  .landing-nav__mobile nav a {
    padding: 0.8rem;
    border-radius: 0.3rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
  }

  .landing-nav__mobile nav a:hover,
  .landing-nav__mobile nav a:focus-visible {
    background: rgba(37, 99, 235, 0.2);
    color: var(--landing-white);
  }

  .landing-section__heading,
  .landing-section__heading--left {
    margin-bottom: 2rem;
    text-align: left;
  }

  .landing-hero h1 {
    font-size: clamp(2.45rem, 14vw, 3.8rem);
  }

  .landing-hero {
    gap: 2.5rem;
  }

  .landing-hero__project-card {
    width: 17rem;
  }

  .landing-hero__project-image {
    height: 11rem;
  }

  .landing-hero__projects::before,
  .landing-hero__projects::after {
    top: -1rem;
    bottom: -0.25rem;
    width: 3.75rem;
  }

  .landing-hero__projects::before {
    background: linear-gradient(
      90deg,
      rgba(1, 6, 14, 0.88) 0%,
      rgba(2, 12, 27, 0.58) 48%,
      transparent 100%
    );
  }

  .landing-hero__projects::after {
    background: linear-gradient(
      270deg,
      rgba(1, 6, 14, 0.88) 0%,
      rgba(1, 10, 25, 0.58) 48%,
      transparent 100%
    );
  }

  .landing-hero__actions {
    display: grid;
  }

  .landing-button {
    width: 100%;
  }

  .landing-about__social {
    justify-content: center;
  }

  .portfolio-grid,
  .benefits-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .process-step {
    padding: 1.25rem;
  }

  .landing-method__item {
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 1rem;
  }

  .landing-about__photo {
    min-height: 22rem;
  }

  .landing-plan-addons__item summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-plan-addons__meta {
    justify-content: flex-start;
    margin-left: 0;
  }

  .landing-plan-addons__price {
    text-align: left;
    white-space: normal;
  }

  .landing-plan-addons__item p {
    margin-right: 0;
  }

  .landing-testimonials__gallery {
    grid-auto-columns: minmax(15.5rem, 78vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    margin-right: -0.625rem;
    padding-right: 0.625rem;
    padding-bottom: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .landing-testimonials__card {
    scroll-snap-align: start;
  }

  .landing-process__heading {
    margin-bottom: 3rem;
  }

  .landing-process__timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 28.75rem;
    margin: 0 auto;
  }

  .landing-process__timeline::before {
    display: block;
    top: 2.375rem;
    bottom: 2.375rem;
    left: 2.375rem;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(
      180deg,
      rgba(96, 165, 250, 0.62) 0,
      rgba(96, 165, 250, 0.62) 12px,
      transparent 12px,
      transparent 22px
    );
    box-shadow: none;
  }

  .landing-process__step,
  .landing-process__step:first-child,
  .landing-process__step:last-child {
    display: grid;
    grid-template-columns: 4.75rem minmax(0, 1fr);
    gap: 1rem;
    padding: 0 0 2.2rem;
    text-align: left;
  }

  .landing-process__step:last-child {
    padding-bottom: 0;
  }

  .landing-process__number {
    grid-row: span 2;
    margin: 0;
  }

  .landing-process__content {
    max-width: none;
    padding-top: 0.3rem;
  }
}
