:root {
  color-scheme: dark;
  --bg: #040404;
  --card: #212121;
  --card-2: #131313;
  --text: #f4f4f4;
  --muted: #d3d3d3;
  --muted-2: rgba(244, 244, 244, 0.55);
  --border: rgba(244, 244, 244, 0.14);
  --purple: #b15af8;
  --orange: #ff8951;
  --orange-solid: #ff622b;
  --blue: #6a5bff;
  --grad: linear-gradient(104deg, var(--purple) 12%, var(--orange) 94%);
  --on-accent: #f7f7f7;
  --overlay-soft: rgba(244, 244, 244, 0.04);
  --overlay-track: rgba(244, 244, 244, 0.12);
  --overlay-cross: rgba(244, 244, 244, 0.06);
  --dots: rgba(244, 244, 244, 0.09);
  --nav-glass: rgba(19, 19, 19, 0.72);
  --blob-opacity: 0.55;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f5f1;
  --card: #ececE8;
  --card-2: #ffffff;
  --text: #14120f;
  --muted: #55524b;
  --muted-2: rgba(20, 18, 15, 0.6);
  --border: rgba(20, 18, 15, 0.12);
  --overlay-soft: rgba(20, 18, 15, 0.04);
  --overlay-track: rgba(20, 18, 15, 0.1);
  --overlay-cross: rgba(20, 18, 15, 0.06);
  --dots: rgba(20, 18, 15, 0.1);
  --nav-glass: rgba(255, 255, 255, 0.72);
  --blob-opacity: 0.28;
}

* {
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
}

body.bg-grid {
  background-image: radial-gradient(var(--dots) 1px, transparent 1.2px);
  background-size: 2.6rem 2.6rem;
  background-position: -0.5rem -0.5rem;
}

body.no-scroll {
  overflow: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea {
  font: inherit;
}

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

h1, h2, h3 {
  margin: 0;
  font-weight: 900;
}

p {
  margin: 0;
}

main > section {
  position: relative;
  padding: 6rem 1.5rem;
}

@media (min-width: 800px) {
  main > section {
    padding: 8rem 4rem;
  }
}

.section-head {
  max-width: 62rem;
  margin: 0 auto 3.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-sub {
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 44rem;
}

/* ---------- gradient ambient blobs ---------- */

.gradBlobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bgBlobs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* ---------- floating WhatsApp button ---------- */

.whatsappBtn {
  position: fixed !important;
  right: 1.5rem !important;
  bottom: 1.8rem !important;
  left: auto !important;
  top: auto !important;
  width: 3.5rem !important;
  height: 3.5rem !important;
  min-width: 3.5rem !important;
  min-height: 3.5rem !important;
  max-width: 3.5rem !important;
  max-height: 3.5rem !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-sizing: border-box !important;
  border-radius: 50% !important;
  background: #25d366 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35) !important;
  z-index: 2147483647 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  line-height: normal !important;
}

.whatsappBtn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}

.whatsappBtn svg {
  width: 1.9rem !important;
  height: 1.9rem !important;
  min-width: 1.9rem !important;
  min-height: 1.9rem !important;
  max-width: 1.9rem !important;
  max-height: 1.9rem !important;
  fill: #fff !important;
  flex-shrink: 0 !important;
  display: block !important;
}

@media (min-width: 800px) {
  .whatsappBtn {
    right: 3.5rem !important;
    bottom: 2.2rem !important;
  }
}

.gradBlobs__orb {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: var(--size, 20rem);
  height: var(--size, 20rem);
  border-radius: 50%;
  filter: blur(var(--blur, 8rem));
  opacity: var(--blob-opacity);
  transform: translate(-50%, -50%);
}

.gradBlobs__orb--orange {
  background: var(--orange-solid);
}

.gradBlobs__orb--purple {
  background: var(--purple);
}

.bgBlobs__orb--tr {
  --x: 92%;
  --y: 6%;
  --size: 22rem;
  --blur: 9rem;
}

.bgBlobs__orb--bl {
  --x: 4%;
  --y: 96%;
  --size: 26rem;
  --blur: 9rem;
}

@media (max-width: 640px) {
  .bgBlobs__orb--tr {
    --size: 10rem;
    --blur: 4.5rem;
  }

  .bgBlobs__orb--bl {
    --size: 12rem;
    --blur: 4.5rem;
  }
}

/* ---------- glow headline text ---------- */

.h-line {
  display: block;
}

.h-line--glow {
  position: relative;
  color: var(--text);
}

.h-line--glow::before,
.h-line--glow::after {
  content: attr(data-content);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.h-line--glow::before {
  color: var(--orange-solid);
  filter: blur(0.4rem);
  opacity: 0.85;
  transform: translate(0.1rem, 0.15rem) scaleX(1.01);
}

.h-line--glow::after {
  color: var(--purple);
  filter: blur(0.8rem);
  opacity: 0.75;
  transform: translate(0.2rem, 0.3rem) scaleX(1.02);
}

/* ---------- buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.6rem;
  padding: 0 1.9rem;
  border-radius: 0.6rem;
  background: var(--orange-solid);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.button__inner {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  color: var(--on-accent);
}

.button--ai {
  background: var(--grad);
}

.button:hover {
  filter: brightness(1.08);
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 1.1rem;
  left: 1.1rem;
  right: 1.1rem;
  z-index: 100;
}

.nav__bar {
  position: relative;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.6rem 0.6rem 1.1rem;
  border-radius: 999px;
  background: var(--nav-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  min-width: 1.8rem;
  transition: width 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav__logoMark {
  height: 1.5rem;
  width: auto;
  display: block;
  flex-shrink: 0;
  color: var(--text);
  overflow: visible;
  transition: height 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav.is-scrolled .nav__logoMark {
  height: 2.2rem;
}

.nav__logoLetter {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.55, 0, 1, 0.45), opacity 0.4s ease;
}

.nav.is-scrolled .nav__logoLetter {
  transform: translateY(140%);
  opacity: 0;
}

.nav__bar-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav__cta {
  height: 2.9rem;
  padding: 0 1.3rem;
  border-radius: 999px;
}

.nav__cta .button__inner {
  font-size: 0.78rem;
}

@media (max-width: 640px) {
  .nav__cta {
    display: none;
  }

  .nav {
    top: 0;
    left: 0;
    right: 0;
  }

  .nav__bar {
    border-radius: 0;
    background: var(--nav-glass);
    backdrop-filter: blur(14px);
    border: none;
    border-bottom: 1px solid var(--border);
  }

  .nav__menu {
    inset: 0;
    border-radius: 0;
  }
}

.nav__toggle {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--overlay-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
}

.nav__themeToggle {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--overlay-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}

.nav__themeIcon {
  grid-area: 1 / 1;
  width: 1.25rem;
  height: 1.25rem;
}

.nav__themeIcon--sun {
  display: none;
}

:root[data-theme="light"] .nav__themeIcon--sun {
  display: block;
}

:root[data-theme="light"] .nav__themeIcon--moon {
  display: none;
}

.nav__toggleIcon {
  width: 1.35rem;
  height: auto;
  color: var(--text);
  fill: currentColor;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav__toggle[aria-expanded="true"] .nav__toggleIcon {
  transform: rotate(90deg);
}

/* ---------- off-canvas menu ---------- */

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 4, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 80;
}

.nav.is-open .nav__overlay {
  opacity: 1;
  visibility: visible;
}

.nav__menu {
  position: fixed;
  inset: 1.1rem;
  z-index: 90;
  border-radius: 2rem;
  overflow: hidden;
  pointer-events: none;
}

.nav.is-open .nav__menu {
  pointer-events: auto;
}

.nav__menuBg {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: var(--card-2);
  border: 1px solid var(--border);
  opacity: 0;
  transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1), height 0.6s cubic-bezier(0.65, 0, 0.35, 1), border-radius 0.5s ease, opacity 0.25s ease;
}

.nav.is-open .nav__menuBg {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  opacity: 1;
}

.nav__menuScroll {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow-y: auto;
  padding: 7rem 1.75rem 3rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav.is-open .nav__menuScroll {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 700px) {
  .nav__menuScroll {
    padding: 8rem 4rem 3rem;
  }
}

.nav__stagger {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0ms;
}

.nav.is-open .nav__stagger {
  opacity: 1;
  transform: translateY(0);
}

.nav__linksHeader,
.nav__menuHeader {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin: 1.6rem 0 0.6rem;
}

.nav__linksHeader:first-child {
  margin-top: 0;
}

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

.nav__menuLink {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.nav__menuLinkNum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.nav__menuLinkText {
  font-size: clamp(1.5rem, 4.4vw, 2.3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.nav__menuLink:hover .nav__menuLinkText {
  color: var(--orange);
}

.nav__extraLinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.nav__extraLink {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav__extraLink:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.nav__extraLink:nth-child(even) {
  padding-left: 1.2rem;
}

.nav__extraLink:hover {
  color: var(--orange);
}

.nav__menuInfo {
  display: flex;
  flex-direction: column;
}

.nav__smallLink {
  color: var(--muted);
  font-size: 1rem;
}

.nav__smallLink:hover {
  color: var(--text);
}

.nav__menuCta {
  align-self: flex-start;
  margin-top: 2.2rem;
  padding: 0 2rem;
  border-radius: 0.7rem;
}

/* ---------- hero ---------- */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 8rem 3.5rem 6rem !important;
  text-align: left;
}

.hero__left {
  flex: 1 1 0;
  min-width: 0;
  max-width: 42rem;
}

.hero__right {
  /* Slightly more weight than the copy column, and the panel bleeds a
     little past the section padding toward the viewport edge — at equal
     weight it read as a small card marooned in a lot of empty space. */
  flex: 1.18 1 0;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: -1.6rem;
}

.hero__motion {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.3rem;
  border: 1px solid var(--border);
  /* The loop is rendered on exactly the site's dark --bg, so in dark mode
     the panel's interior is the same tone as the page and only the
     hairline edge and the glow define it — it reads as a screen set into
     the layout, not as a video pasted on top.
     Two earlier attempts are worth not repeating: mix-blend-mode: screen
     erased every dark element inside the loop (phone body, layout blocks,
     node fills) because screen only ever adds light; and masking the edges
     into the page can't work either, because the page background isn't
     flat there — it carries the ambient blob gradient, so a flat-ground
     video always cuts a visible rectangle out of it no matter how soft
     the mask, and a mask strong enough to hide the edge also eats the
     content. */
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.5),
    0 0 90px -30px rgba(177, 90, 248, 0.35);
}

:root[data-theme="light"] .hero__motion {
  /* Same panel, but on a light ground it is unavoidably a dark surface —
     which matches how the embedded growth demo already behaves here. */
  box-shadow: 0 30px 70px rgba(20, 18, 15, 0.18);
}

.hero__heading {
  position: relative;
  z-index: 1;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .hero {
    justify-content: center;
    text-align: center;
    padding: 8rem 1.2rem 6rem !important;
  }

  .hero__left {
    max-width: none;
  }

  .hero__right {
    display: none;
  }

  .hero__heading {
    font-size: clamp(2.6rem, 8.6vw, 6.4rem);
    line-height: 0.98;
  }
}

/* ---------- page-load entrance ---------- */

.nav__bar {
  opacity: 0;
  transform: translateY(-0.6rem);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-loaded .nav__bar {
  opacity: 1;
  transform: translateY(0);
}

.bgBlobs {
  opacity: 0;
  transition: opacity 0.9s ease;
}

body.is-loaded .bgBlobs {
  opacity: 1;
}

.h-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.h-word__inner {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-loaded .h-word__inner {
  transform: translateY(0);
}

.hero__sub,
.hero__arrow {
  /* opacity is scroll-driven by initScrollFadeGroup() in script.js, not
     this load-in transition - only the slide-up motion lives here, so the
     two don't fight over the same property */
  transform: translateY(0.7rem);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.55s;
}

body.is-loaded .hero__sub,
body.is-loaded .hero__arrow {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .nav__bar,
  .bgBlobs,
  .h-word__inner,
  .hero__sub,
  .hero__arrow {
    transition: none;
    opacity: 1;
    transform: none;
  }

  /* The hero loop is purely decorative and runs continuously, so it's
     removed outright rather than paused — there's no CSS way to stop
     video playback, and it carries no information the copy doesn't. */
  .hero__motion {
    display: none;
  }

  .nav__logo,
  .nav__logoMark,
  .nav__logoLetter {
    transition: none;
  }
}

.hero__bottom {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
}

@media (min-width: 800px) {
  .hero__bottom {
    bottom: 2.8rem;
  }
}

.hero__arrow {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 0.7rem;
  background: var(--card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--text);
}

.hero__arrow svg {
  width: 1.4rem;
  height: 1.4rem;
}

.hero__sub {
  font-size: clamp(0.85rem, 1.6vw, 1.15rem);
  color: var(--muted);
  padding: 0 1.5rem;
}

@media (max-width: 640px) {
  .hero__bottom {
    bottom: 1.4rem;
  }
}

/* ---------- pitch ---------- */

.pitch {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.pitch__left {
  flex: 1 1 22rem;
  min-width: 0;
}

.pitch__leftInner {
  position: sticky;
  top: 8rem;
}

.pitch__heading {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.pitch__highlight {
  display: inline-block;
  padding: 0 0.16em;
  background: var(--grad);
  border-radius: 0.15em;
  color: var(--on-accent);
}

.pitch__badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  background: var(--bg);
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pitch__right {
  flex: 1.3 1 26rem;
  min-width: 0;
}

.pitch__cards {
  display: grid;
  gap: 1.5rem;
}

.pitch__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 3.6rem 2.4rem 2.4rem;
  min-height: 11.5rem;
  min-width: 0;
  border-radius: 1.3rem;
  background: var(--card-2);
  border: 1px solid var(--border);
}

.pitch__cardNum {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-top-left-radius: 1.3rem;
  border-bottom-right-radius: 0.75rem;
  background: var(--card-2);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  z-index: 2;
}

.pitch__cardIcon {
  position: relative;
  width: 4.2rem;
  height: 4.2rem;
  flex-shrink: 0;
}

.pitch__cardIconBase,
.pitch__cardIconGrad {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease;
}

.pitch__cardIconBase {
  color: #5c5c5c;
  opacity: 1;
}

.pitch__cardIconGrad {
  opacity: 0;
}

.pitch__card.is-active .pitch__cardIconBase {
  opacity: 0;
}

.pitch__card.is-active .pitch__cardIconGrad {
  opacity: 1;
}

.pitch__cardLabel {
  min-width: 0;
  font-size: clamp(1.5rem, 2.3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: #5c5c5c;
  transition: color 0.4s ease;
  overflow-wrap: break-word;
}

.pitch__card.is-active .pitch__cardLabel {
  color: transparent;
}

/* ---------- benefits (scroll-pinned pixel reveal) ---------- */

.benefits {
  padding: 0 !important;
}

.benefits__track {
  position: relative;
  height: 380vh;
}

.benefits__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--grad);
  color: #f7f7f7;
}

.benefits__pixels {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.benefits__gridLines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(to right, rgba(4, 4, 4, 0.35) 0 1px, transparent 1px var(--pixel-cell, 190px)),
    repeating-linear-gradient(to bottom, rgba(4, 4, 4, 0.35) 0 1px, transparent 1px var(--pixel-cell, 190px));
}

.benefits__textStack {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 58rem;
  min-height: 16rem;
}

.benefits__intro,
.benefits__statements {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.benefits__intro.is-shown,
.benefits__statements.is-shown {
  opacity: 1;
}

.benefits__introHeading {
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.benefits__introSub {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  opacity: 0.75;
}

.benefits__statement {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 6.4vw, 4.4rem);
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefits__statement.is-active {
  opacity: 1;
  transform: translateY(0);
}

.benefits__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18vh;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

@media (max-width: 640px) {
  .benefits__track {
    height: 320vh;
  }
}

/* ---------- rolling banners ---------- */

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

.rollingBanner {
  position: relative;
  overflow: hidden;
  height: 4.6rem;
  display: flex;
  align-items: center;
  background: var(--card-2);
  border-bottom: 1px solid var(--border);
}

.rollingBanner--alt {
  background: var(--card);
}

.rollingBanner__rail {
  display: flex;
  width: max-content;
  animation: bannerScroll 26s linear infinite;
}

.rollingBanner__rail--reverse {
  animation-direction: reverse;
}

.rollingBanner__set {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding-right: 2.2rem;
  flex-shrink: 0;
}

.rollingBanner__set span {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.rollingBanner__set i {
  font-style: normal;
  color: var(--orange);
  font-size: 0.9rem;
}

@keyframes bannerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .rollingBanner__rail {
    animation: none;
  }
}

/* ---------- features (scroll-pinned card stack) ---------- */

.features {
  padding: 0 !important;
}

.features__track {
  position: relative;
  height: 400vh;
}

.features__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  padding: 1.1rem;
  overflow: hidden;
}

.features__cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.features__card {
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  background: var(--card-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transform: translateX(100%);
}

.features__card:first-child {
  transform: translateX(0);
}

.features__cardInner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  height: 100%;
  padding: 5rem 4.5rem;
  overflow-y: auto;
}

.features__cardNum {
  display: block;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}

.features__cardTag {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.features__cardHeading {
  margin-top: 1rem;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.08;
  text-transform: uppercase;
  max-width: 22ch;
}

.features__cardBody {
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 34rem;
}

.features__cardFoot {
  margin-top: 2rem;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.features__cardMedia {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.features__phone {
  position: relative;
  width: min(19rem, 80%);
  aspect-ratio: 9 / 18;
  border-radius: 2.6rem;
  border: 2px solid rgba(244, 244, 244, 0.32);
  background: linear-gradient(160deg, #1c1c1f, #050505 65%);
  padding: 0.9rem;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(244, 244, 244, 0.1),
    inset 0 0 0 1px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.features__phoneNotch {
  width: 5.5rem;
  height: 1.3rem;
  margin: 0 auto 0.6rem;
  border-radius: 1rem;
  background: #000;
  border: 1px solid rgba(244, 244, 244, 0.1);
  flex-shrink: 0;
}

.features__phoneScreen {
  width: 100%;
  flex: 1;
  min-height: 0;
  border-radius: 1.8rem;
  background: var(--card);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.features__phoneVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.features__phoneScreen .features__mediaArt {
  width: 68%;
  height: auto;
}

.features__progress {
  position: absolute;
  left: 3rem;
  right: 3rem;
  bottom: 1.8rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--overlay-track);
  overflow: hidden;
  z-index: 5;
}

.features__progressFill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: var(--grad);
}

/* ---------- fake calendar demo (features card 04) ---------- */

.calendarDemo {
  --cal-bg: #0b0b0d;
  --cal-panel: #1c1c1f;
  --cal-panel-border: #2c2c30;
  --cal-cell: #242428;
  --cal-text: #e8e8ea;
  --cal-muted: #8a8a90;
  --cal-grad-a: #8b5cf6;
  --cal-grad-b: #f97362;

  position: relative;
  width: 100%;
  max-width: 26rem;
  background: var(--cal-panel);
  border: 1px solid var(--cal-panel-border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  color: var(--cal-text);
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.calendarDemo__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.calendarDemo__head h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cal-text);
}

.calendarDemo__head span {
  color: var(--cal-muted);
  font-size: 0.82rem;
}

.calendarDemo__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  color: var(--cal-muted);
  font-size: 0.72rem;
  text-align: center;
  margin-bottom: 0.6rem;
}

.calendarDemo__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.calendarDemo__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  background: var(--cal-cell);
  font-size: 0.82rem;
  color: var(--cal-text);
  border: 1.5px solid transparent;
  position: relative;
}

.calendarDemo__day--muted {
  background: transparent;
  color: #4a4a50;
}

.calendarDemo__day.is-selected {
  background: linear-gradient(135deg, var(--cal-grad-a), var(--cal-grad-b));
  color: #fff;
  font-weight: 700;
}

.calendarDemo__label {
  font-size: 0.78rem;
  color: var(--cal-muted);
  margin-bottom: 0.6rem;
}

.calendarDemo__times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.calendarDemo__time {
  padding: 0.6rem 0;
  text-align: center;
  border-radius: 0.6rem;
  background: var(--cal-cell);
  font-size: 0.76rem;
  color: var(--cal-text);
  border: 1.5px solid transparent;
}

.calendarDemo__time.is-selected {
  background: linear-gradient(135deg, var(--cal-grad-a), var(--cal-grad-b));
  color: #fff;
  font-weight: 700;
}

.calendarDemo__cta {
  width: 100%;
  padding: 0.9rem 0;
  border-radius: 0.75rem;
  border: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.82rem;
  background: linear-gradient(90deg, var(--cal-grad-a), var(--cal-grad-b));
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.calendarDemo__cta.is-pressed {
  transform: scale(0.97);
}

.calendarDemo__cta.is-confirmed {
  opacity: 0.55;
}

.calendarDemo__confirm {
  text-align: center;
  color: var(--cal-muted);
  font-size: 0.8rem;
  margin-top: 0.75rem;
  height: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.calendarDemo__confirm.is-shown {
  opacity: 1;
  color: #7ee7a0;
}

.calendarDemo__cursor {
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 50;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.calendarDemo__cursor svg {
  width: 100%;
  height: 100%;
  display: block;
}

.calendarDemo__ripple {
  position: absolute;
  left: 0.1rem;
  top: 0.1rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transform: scale(0);
}

.calendarDemo__cursor.is-clicking .calendarDemo__ripple {
  animation: calendarRipple 0.5s ease-out;
}

@keyframes calendarRipple {
  0% {
    opacity: 0.5;
    transform: scale(0.4);
  }
  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}

/* ---------- growth demo iframe (features card 02) ---------- */

.features__iframeBox {
  position: relative;
}

.features__iframeWrap {
  width: 300px;
  max-width: 100%;
  aspect-ratio: 300 / 610;
  border-radius: 44px;
  overflow: hidden;
}

.features__iframeWrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 900px) {
  .features__cardInner {
    display: flex;
    flex-direction: column;
    padding: 5.6rem 1.5rem 1.4rem;
    gap: 0.4rem;
    overflow: hidden;
  }

  .features__cardText {
    flex-shrink: 0;
  }

  .features__cardNum {
    font-size: 1.6rem;
  }

  .features__cardTag {
    margin-top: 0.5rem;
    font-size: 0.7rem;
  }

  .features__cardHeading {
    margin-top: 0.45rem;
    font-size: 1.45rem;
    line-height: 1.14;
    max-width: none;
  }

  .features__cardBody {
    margin-top: 0.55rem;
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .features__cardFoot {
    margin-top: 0.65rem;
    font-size: 0.86rem;
  }

  .features__cardMedia {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    padding: 0.5rem 0;
  }

  .features__phone {
    width: auto;
    height: 100%;
    max-width: 12rem;
    max-height: 100%;
  }

  .features__iframeBox {
    height: 100%;
    width: auto;
    max-width: 12rem;
    aspect-ratio: 300 / 610;
    overflow: hidden;
  }

  .features__iframeWrap {
    width: 300px;
    max-width: none;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top left;
  }

  .calendarDemo {
    --cal-fit: 1;
    max-width: 15rem;
    width: calc(15rem * var(--cal-fit));
    max-height: 100%;
    overflow: hidden;
    padding: calc(0.85rem * var(--cal-fit));
  }

  .calendarDemo__head {
    margin-bottom: calc(0.6rem * var(--cal-fit));
  }

  .calendarDemo__head h3 {
    font-size: calc(0.86rem * var(--cal-fit));
  }

  .calendarDemo__head span {
    font-size: calc(0.64rem * var(--cal-fit));
  }

  .calendarDemo__weekdays {
    gap: calc(0.3rem * var(--cal-fit));
    margin-bottom: calc(0.3rem * var(--cal-fit));
    font-size: calc(0.56rem * var(--cal-fit));
  }

  .calendarDemo__days {
    gap: calc(0.3rem * var(--cal-fit));
    margin-bottom: calc(0.7rem * var(--cal-fit));
  }

  .calendarDemo__day {
    font-size: calc(0.6rem * var(--cal-fit));
    border-radius: calc(0.4rem * var(--cal-fit));
  }

  .calendarDemo__label {
    font-size: calc(0.6rem * var(--cal-fit));
    margin-bottom: calc(0.3rem * var(--cal-fit));
  }

  .calendarDemo__times {
    gap: calc(0.3rem * var(--cal-fit));
    margin-bottom: calc(0.7rem * var(--cal-fit));
  }

  .calendarDemo__time {
    padding: calc(0.35rem * var(--cal-fit)) 0;
    font-size: calc(0.56rem * var(--cal-fit));
  }

  .calendarDemo__cta {
    padding: calc(0.55rem * var(--cal-fit)) 0;
    font-size: calc(0.64rem * var(--cal-fit));
  }

  .features__progress {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.1rem;
  }
}

@media (max-width: 900px) and (max-height: 720px) {
  .features__cardInner {
    padding: 5.3rem 1.5rem 1.2rem;
    gap: 0.25rem;
  }

  .features__cardBody {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ---------- method ---------- */

.method__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.method__step {
  padding: 1.8rem;
  border-radius: 1.1rem;
  background: var(--card-2);
  border: 1px solid var(--border);
}

.method__num {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.method__step h3 {
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.method__step p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ---------- team ---------- */

.team {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.team__copy p {
  margin-top: 1.2rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 34rem;
}

.team__list {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.75rem;
}

.team__list li {
  padding-left: 1.3rem;
  position: relative;
  color: var(--text);
}

.team__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--orange);
}

.team__stats {
  display: grid;
  gap: 1rem;
}

.team__stat {
  display: grid;
  gap: 0.9rem;
  padding: 1.6rem;
  border-radius: 1.1rem;
  background: var(--card-2);
  border: 1px solid var(--border);
}

.team__statNum {
  display: inline-flex;
  width: 2.3rem;
  height: 2.3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 0.82rem;
  color: var(--orange);
}

/* ---------- portfolio ---------- */

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.portfolio__card {
  display: flex;
  flex-direction: column;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.portfolio__card--live:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
}

.portfolio__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.portfolio__media video,
.portfolio__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio__body {
  padding: 1.6rem;
  display: grid;
  gap: 0.6rem;
}

.portfolio__body h3 {
  text-transform: uppercase;
  font-size: 1.2rem;
}

.portfolio__body p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.portfolio__link {
  font-weight: 700;
  color: var(--orange);
}

.portfolio__card--cta {
  border-style: dashed;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.6rem;
}

.portfolio__card--cta .portfolio__body {
  padding: 0;
}

/* ---------- pricing ---------- */

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.pricing__tier {
  position: relative;
  padding: 2.2rem 1.8rem;
  border-radius: 1.2rem;
  background: var(--card-2);
  border: 1px solid var(--border);
  text-align: center;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.pricing__tier--featured {
  background: var(--card);
  border-color: rgba(177, 90, 248, 0.5);
}

.pricing__badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--on-accent);
}

.pricing__tier h3 {
  text-transform: uppercase;
  font-size: 1.4rem;
}

.pricing__tierDesc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  min-height: 2.7rem;
}

.pricing__cta {
  width: 100%;
  margin-top: 0.4rem;
}

.pricing__matrix {
  position: relative;
  z-index: 1;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card-2);
}

.pricing__matrixHead,
.pricing__row {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  align-items: center;
  gap: 0.5rem;
}

.pricing__matrixHead {
  padding: 1.1rem 1.5rem;
  background: var(--card);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: center;
}

.pricing__matrixHead span:first-child {
  text-align: left;
}

.pricing__row {
  padding: 1.1rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.pricing__row > span:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing__label {
  color: var(--muted);
  font-size: 0.85rem;
}

.tick,
.cross {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.tick {
  background: rgba(177, 90, 248, 0.16);
}

.tick::after {
  content: '';
  width: 0.5rem;
  height: 0.85rem;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: rotate(45deg) translate(-1px, -2px);
}

.cross {
  background: var(--overlay-cross);
}

.cross::after {
  content: '×';
  color: var(--muted-2);
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 800px) {
  .pricing__matrixHead span:not(:first-child) {
    font-size: 0.7rem;
  }
}

/* ---------- cta ---------- */

.cta {
  text-align: center;
  overflow: hidden;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: 0 auto;
}

.cta__heading {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.cta__sub {
  margin-top: 1.4rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--orange);
}

.cta__body p {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4.2rem;
  padding: 0 2.4rem;
  margin-top: 2.2rem;
  border-radius: 0.8rem;
  background: var(--grad);
  box-shadow: 0 20px 50px rgba(177, 90, 248, 0.28);
}

.cta__button .button__inner {
  font-size: 1rem;
}

/* ---------- faqs ---------- */

.faqs__inner {
  max-width: 52rem;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.faq {
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card-2);
}

.faq__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  position: relative;
}

.faq__header span {
  font-size: 1.05rem;
  font-weight: 700;
}

.faq__header::after {
  content: '';
  width: 0.9rem;
  height: 0.9rem;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq.is-open .faq__header::after {
  transform: rotate(225deg);
}

.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.5, 0, 0.25, 1);
}

.faq__contentInner {
  padding: 0 1.6rem 1.5rem;
}

.faq__contentInner p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ---------- contact ---------- */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact__copy p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.contact__details {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.contact__form {
  display: grid;
  gap: 1rem;
}

.contact__form label {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  color: var(--text);
  padding: 0.9rem 1rem;
  outline: none;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(177, 90, 248, 0.18);
}

.contact__form button {
  margin-top: 0.4rem;
  justify-self: start;
}

/* ---------- footer ---------- */

.footer {
  padding: 2.2rem 1.5rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 84rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.3rem;
}

.footer__nav a:hover,
.footer__inner a:hover {
  color: var(--text);
}

/* bloque «Servicios en Logroño y La Rioja»: las tarjetas de .method__step
   funcionan como enlace a cada página de servicio */
.method__step--link {
  display: block;
  color: inherit;
  transition: transform 0.3s ease;
}

.method__step--link:hover {
  transform: translateY(-4px);
}

.method__more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
}

.faq__contentInner a,
.contact__details a {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .pitch {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .pitch__left,
  .pitch__right {
    width: 100%;
    flex-basis: auto;
  }

  .pitch__leftInner {
    position: static;
  }

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

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

  .portfolio__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
  }

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

  .pricing__matrixHead span,
  .pricing__row > span {
    font-size: 0.72rem;
  }

  .pricing__row > span:first-child {
    font-size: 0.85rem;
  }
}

@media (max-width: 560px) {
  .method__grid {
    grid-template-columns: 1fr;
  }

  .pricing__matrixHead,
  .pricing__row {
    grid-template-columns: 1.3fr repeat(3, 0.8fr);
    gap: 0.3rem;
  }
}
