@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700;800;900&display=swap");

:root {
  --color-accent: #7C3AED;
  --color-accent-cta-hover: #9254F3;
  --color-bg: #0a070a;
  --color-text: #ffffff;
  --ease-out-premium: cubic-bezier(0.22, 0.61, 0.36, 1);
  --hero-offset-desktop: 130px; /* overridden on desktop ≥1025px for slim header */
}

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

html {
  overflow-x: hidden;
  max-width: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
  position: relative;
}

.site-header-wrap {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 30;
}

.site-header {
  width: min(1160px, calc(100vw - 28px));
  margin: 0 auto;
  height: 100px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.72);
  background: #000000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    0 14px 50px rgba(0, 0, 0, 0.55);
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  display: block;
  height: 76px;
  width: auto;
  max-width: min(400px, 46vw);
  object-fit: contain;
  border-radius: 6px;
}

/* Desktop ≥1025px: full-width slim top bar (not floating pill); tablet/phone keep rules below */
@media (min-width: 1025px) {
  :root {
    --hero-offset-desktop: 72px;
  }

  .site-header-wrap {
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
  }

  .site-header {
    width: 100%;
    max-width: none;
    margin: 0;
    height: auto;
    min-height: 64px;
    padding: 8px clamp(20px, 3.5vw, 56px);
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: #000000;
    box-shadow:
      0 1px 0 rgba(124, 58, 237, 0.65),
      0 6px 28px rgba(0, 0, 0, 0.45);
  }

  .nav-item {
    padding-bottom: 12px;
    margin-bottom: -12px;
  }

  .site-logo img {
    height: 44px;
    max-width: min(220px, 22vw);
    border-radius: 4px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 18px;
    font-size: 0.84rem;
  }

  .mobile-nav {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* Homepage: less empty space between hero image and diagonal ticker only */
  .dual-diagonal-ticker {
    margin-top: -136px;
    padding: clamp(4px, 0.9vw, 12px) 0 clamp(44px, 6vw, 64px);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 28px);
  position: relative;
}

.site-nav a,
.mobile-nav a,
.mobile-nav button {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav button:hover,
.mobile-nav button:focus-visible {
  color: var(--color-accent);
}

.nav-item {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}

.nav-item > .nav-link {
  gap: 6px;
}

.nav-item > .nav-link::after {
  content: "▾";
  font-size: 0.66rem;
  opacity: 0.78;
  transform: translateY(1px);
}

/* Parent label only — not a link (e.g. Free Tools); submenu items stay clickable */
.site-nav .nav-item > .nav-link--dropdown-label {
  cursor: default;
  user-select: none;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav .nav-item:hover > .nav-link--dropdown-label,
.site-nav .nav-item:focus-within > .nav-link--dropdown-label {
  color: var(--color-accent);
}

.nav-dropdown,
.nav-mega-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  border-radius: 18px;
  border: 1px solid rgba(124, 58, 237, 0.74);
  background: #000000;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(124, 58, 237, 0.2), inset 0 0 20px rgba(124, 58, 237, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
  pointer-events: none;
  z-index: 60;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item:hover .nav-mega-menu,
.nav-item:focus-within .nav-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown {
  min-width: 226px;
  padding: 10px;
}

.nav-dropdown a {
  display: block;
  padding: 11px 13px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.08);
}

.nav-item--mega {
  position: static;
}

.nav-mega-menu {
  left: 50%;
  transform: translate(-50%, 12px);
  width: min(980px, calc(100vw - 90px));
  padding: 18px 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nav-item--mega:hover .nav-mega-menu,
.nav-item--mega:focus-within .nav-mega-menu {
  transform: translate(-50%, 0);
}

.mega-col {
  padding: 2px 10px;
}

.mega-col + .mega-col {
  border-left: 1px solid rgba(124, 58, 237, 0.25);
}

.mega-col h4 {
  margin: 0 0 12px;
  color: #7c3aed;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mega-col a {
  display: block;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.94);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.mega-col a:hover,
.mega-col a:focus-visible {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background-color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  will-change: transform;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--color-accent-cta-hover);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.42);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 250ms ease, opacity 250ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  width: min(1160px, calc(100vw - 28px));
  margin: 8px auto 0;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.5);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 360ms var(--ease-out-premium), opacity 320ms ease, padding 320ms ease;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  padding: 0;
}

.mobile-nav-link {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.mobile-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-accordion-toggle,
.mobile-sub-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
  padding: 14px 16px;
  cursor: pointer;
}

.mobile-accordion-toggle {
  color: #7c3aed;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-accordion-toggle::after {
  content: "▾";
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 220ms ease;
}

.mobile-accordion.open > .mobile-accordion-toggle::after {
  transform: rotate(180deg);
}

.mobile-accordion-panel,
.mobile-sub-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease-out-premium);
}

.mobile-accordion.open > .mobile-accordion-panel,
.mobile-sub-accordion.open > .mobile-sub-panel {
  max-height: 800px;
}

.mobile-sub-toggle {
  color: #7c3aed;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-sub-toggle::after {
  content: "▾";
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 220ms ease;
}

.mobile-sub-accordion.open > .mobile-sub-toggle::after {
  transform: rotate(180deg);
}

.mobile-accordion-panel > a,
.mobile-sub-panel > a {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
}

.mobile-sub-panel > a {
  padding-left: 30px;
  font-size: 0.86rem;
}

.mobile-accordion:last-child {
  border-bottom: 0;
}

.site-header-wrap.menu-open .mobile-nav {
  max-height: min(72vh, 680px);
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}

.hero-system {
  position: relative;
  margin-top: var(--hero-offset-desktop);
  width: 100%;
  height: calc(100vh - var(--hero-offset-desktop));
  background: #0a070a;
  overflow: hidden;
}

.hero-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #0a070a;
  transition: opacity 620ms var(--ease-out-premium), visibility 620ms var(--ease-out-premium);
}

.hero-panel--video {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  place-items: start center;
  padding-top: 14px;
}

.hero-panel--content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-system.is-hero-two .hero-panel--video {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-system.is-hero-two .hero-panel--content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-video-wrap {
  width: min(56vw, 680px);
  height: min(42vh, 360px);
  display: grid;
  place-items: center;
}

.hero-one-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-two-inner {
  width: min(1220px, 92vw);
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 60px);
}

.hero-two-content {
  width: 55%;
  text-align: left;
}

.hero-two-title {
  margin: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(4px, 0.7vw, 10px);
  font-size: clamp(0.72rem, 3.6vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 800;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.hero-two-brand-video {
  width: clamp(230px, 22vw, 360px);
  height: auto;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
  background: #0a070a;
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 2px;
  padding-right: 2px;
  margin-top: -3px;
  margin-bottom: -3px;
  transform: translateY(0);
}

.hero-two-title-text {
  display: inline-block;
  font-size: 1.08em;
  line-height: 0;
  font-weight: inherit;
  white-space: nowrap;
  padding-top: 1px;
  padding-bottom: 22px;
  padding-left: 1px;
  padding-right: 1px;
  margin-top: -3px;
  margin-bottom: -3px;
  margin-left: -1px;
  margin-right: -1px;
  vertical-align: bottom;
  transform: translateY(-4px);
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.58), 0 0 18px rgba(124, 58, 237, 0.36), 0 0 34px rgba(124, 58, 237, 0.2);
}

.hero-two-title-text span {
  display: inline;
}

.hero-two-title-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-two-badges {
  margin-top: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-two-badge-group {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px 8px;
  border-radius: 12px;
  border: 1px solid rgba(124, 58, 237, 0.42);
  background: rgba(16, 11, 22, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 0 18px rgba(124, 58, 237, 0.14), 0 10px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-two-rating {
  margin-top: 10px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  transition: transform 460ms var(--ease-out-premium), opacity 460ms ease;
}

.hero-system.is-hero-two .hero-two-rating {
  opacity: 1;
  transform: translateY(0);
}

.hero-two-stars {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-two-star {
  color: #ffd700;
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0;
  transform: scale(0);
}

.hero-system.is-hero-two .hero-two-star {
  animation: heroTwoStarPop 320ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-system.is-hero-two .hero-two-star:nth-child(1) { animation-delay: 0ms; }
.hero-system.is-hero-two .hero-two-star:nth-child(2) { animation-delay: 220ms; }
.hero-system.is-hero-two .hero-two-star:nth-child(3) { animation-delay: 440ms; }
.hero-system.is-hero-two .hero-two-star:nth-child(4) { animation-delay: 660ms; }
.hero-system.is-hero-two .hero-two-star:nth-child(5) { animation-delay: 880ms; }


.hero-two-reviews {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}

#heroTwoReviewCount {
  font-variant-numeric: tabular-nums;
}

@keyframes heroTwoStarPop {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  68% {
    opacity: 1;
    transform: scale(1.18);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


.hero-two-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: transform 760ms var(--ease-out-premium), opacity 760ms ease;
}

.hero-two-badge-item img {
  display: block;
  max-height: 28px;
  max-width: 82px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero-two-badge--left {
  transform: translateX(-28px);
}

.hero-two-badge--center {
  transform: translateY(28px);
}

.hero-two-badge--right {
  transform: translateX(28px);
}

.hero-system.is-hero-two .hero-two-badge-item {
  opacity: 1;
  transform: translate(0, 0);
}

.hero-two-subtitle {
  margin: -50px 0 0;
  width: min(620px, 100%);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Kanit", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.hero-two-rocket {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transform: translate3d(360px, 180px, 0) rotate(30deg) scale(0.42);
  transform-origin: center;
}

.hero-two-rocket img {
  display: block;
  width: min(240px, 26vw);
  height: auto;
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
  will-change: transform, filter;
}

.hero-system.is-hero-two .hero-two-rocket {
  animation: heroTwoRocketOrbitIn 3.4s cubic-bezier(0.18, 0.84, 0.24, 1) 3s forwards, heroTwoRocketIdle 3.2s ease-in-out 6.4s infinite;
}

.hero-two-rocket:hover img,
.hero-two-rocket:focus-visible img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.42));
}

@keyframes heroTwoRocketOrbitIn {
  0% {
    opacity: 0;
    transform: translate3d(520px, 220px, 0) rotate(32deg) scale(0.36);
  }
  8% {
    opacity: 1;
    transform: translate3d(480px, -170px, 0) rotate(16deg) scale(0.68);
  }
  17.06% {
    opacity: 1;
    transform: translate3d(480px, -170px, 0) rotate(16deg) scale(0.68);
  }
  38% {
    opacity: 1;
    transform: translate3d(140px, -240px, 0) rotate(-10deg) scale(0.88);
  }
  43.88% {
    opacity: 1;
    transform: translate3d(140px, -240px, 0) rotate(-10deg) scale(0.88);
  }
  66% {
    opacity: 1;
    transform: translate3d(340px, 80px, 0) rotate(20deg) scale(0.96);
  }
  71.88% {
    opacity: 1;
    transform: translate3d(340px, 80px, 0) rotate(20deg) scale(0.96);
  }
  92% {
    opacity: 1;
    transform: translate3d(40px, 26px, 0) rotate(-2deg) scale(1.04);
  }
  98% {
    opacity: 1;
    transform: translate3d(40px, 26px, 0) rotate(-2deg) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes heroTwoRocketIdle {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(0, -5px, 0) rotate(1deg) scale(1.01);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

.hero-two-visual {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-two-person-wrap {
  position: relative;
  width: min(145%, 1080px);
  display: flex;
  justify-content: center;
  margin-left: clamp(26px, 4vw, 56px);
  margin-top: 35px;
  opacity: 0;
  transform: translateY(56px);
  transition: transform 900ms var(--ease-out-premium), opacity 900ms ease;
}

.hero-system.is-hero-two .hero-two-person-wrap {
  opacity: 1;
  transform: translateY(0);
}

.hero-two-person-wrap::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 88%;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.44) 0%, rgba(124, 58, 237, 0.18) 38%, rgba(124, 58, 237, 0.05) 62%, rgba(124, 58, 237, 0) 80%);
  filter: blur(34px);
  z-index: 0;
  pointer-events: none;
}

.hero-two-person-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(145%, 1040px);
  height: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
}

@media (min-width: 761px) and (max-width: 1024px) {
  .hero-two-person-wrap {
    margin-bottom: -20px;
  }
}

@media (min-width: 1025px) {
  .hero-two-person-wrap {
    margin-top: 56px;
    margin-bottom: -52px;
  }
}

.hero-two-speaker {
  position: absolute;
  top: -54px;
  right: -28px;
  z-index: 3;
  width: min(32%, 250px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  transform-origin: 70% 55%;
  animation: heroTwoSpeakerFloat 4s ease-in-out infinite;
}

@keyframes heroTwoSpeakerFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
    filter: drop-shadow(0 6px 16px rgba(255, 44, 116, 0.2));
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(1deg) scale(1.04);
    filter: drop-shadow(0 14px 28px rgba(255, 44, 116, 0.34));
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
    filter: drop-shadow(0 6px 16px rgba(255, 44, 116, 0.2));
  }
}

.header-ticker {
  margin-top: 10px;
  width: 100%;
  height: 30px;
  background: var(--color-accent);
  color: #050505;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marqueeLoop 20s linear infinite;
}

.ticker-track span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 28px;
  padding-right: 54px;
  white-space: nowrap;
}

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

.hero-shell {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--hero-offset-desktop));
  margin-top: var(--hero-offset-desktop);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 15%, rgba(124, 58, 237, 0.08), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.04), transparent 50%),
    var(--color-bg);
  isolation: isolate;
}

.video-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: start center;
  padding-top: 0;
  z-index: 3;
  opacity: 1;
  transform: scale(1);
  transition: opacity 900ms var(--ease-out-premium), transform 900ms var(--ease-out-premium);
}

.video-frame {
  width: min(64vw, 840px);
  aspect-ratio: 16 / 9;
  border: 2px solid var(--color-accent);
  border-radius: 18px;
  overflow: hidden;
  background: #020202;
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.35),
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(124, 58, 237, 0.14);
}

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

.hero-content {
  width: min(980px, 90vw);
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: scale(0.96) translateY(18px);
  transition: opacity 900ms var(--ease-out-premium), transform 900ms var(--ease-out-premium);
  pointer-events: none;
}

.hero-headline {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 18px);
  min-height: clamp(64px, 9vw, 106px);
  font-size: clamp(2.4rem, 6.9vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.brand-word-video {
  height: 1em;
  width: auto;
  display: block;
  border-radius: 0;
  object-fit: contain;
  flex: 0 0 auto;
  background: #0a070a;
  filter: none;
  box-shadow: none;
}

.typed-line {
  display: inline-flex;
  align-items: baseline;
  min-height: 1em;
  font-size: 1em;
  line-height: 1;
  font-weight: inherit;
  color: var(--color-text);
}

.typing-cursor {
  width: 0.085em;
  height: 0.88em;
  background: var(--color-text);
  margin-left: 0.1em;
  animation: cursorBlink 850ms steps(1, end) infinite;
  transition: opacity 380ms ease;
}

.typed-line.cursor-hidden .typing-cursor {
  opacity: 0;
}

@keyframes cursorBlink {
  0%,
  45% {
    opacity: 1;
  }
  55%,
  100% {
    opacity: 0;
  }
}

.subheading {
  margin: 24px auto 0;
  width: min(720px, 100%);
  font-size: clamp(1rem, 1.9vw, 1.32rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.hero-subheading {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 620ms var(--ease-out-premium), transform 620ms var(--ease-out-premium);
}

.hero-subheading.show {
  opacity: 1;
  transform: translateY(0);
}

.cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #050505;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.hero-cta {
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transition: transform 420ms var(--ease-out-premium), opacity 420ms ease, box-shadow 250ms ease;
}

.hero-cta.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(124, 58, 237, 0.36);
}

.hero-shell.revealed .video-stage {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

.hero-shell.revealed .hero-content {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.services-section {
  padding: 2px 0 80px;
  position: relative;
  background: #0d0118;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 84px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%231a0533' d='M0,72 C180,8 360,10 560,46 C740,78 920,88 1120,56 C1248,36 1358,30 1440,46 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
  pointer-events: none;
}

.services-section::after {
  content: "";
  position: absolute;
  right: -12%;
  top: 16%;
  width: min(640px, 58vw);
  height: min(560px, 52vw);
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.services-inner {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-heading-wrap {
  display: inline-block;
}

.services-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.05rem, 3.7vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.services-title-accent {
  display: block;
  margin-top: 10px;
  width: min(180px, 58%);
  height: 5px;
  border-radius: 999px;
  background: #7c3aed;
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.42);
}

.services-tab-shell {
  position: relative;
  margin-top: 24px;
  width: fit-content;
  max-width: 100%;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(6, 0, 16, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-tab-shell::-webkit-scrollbar {
  display: none;
}

.services-tab-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  border-radius: 999px;
  background: #7c3aed;
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.14);
  transition: transform 320ms var(--ease-out-premium), width 320ms var(--ease-out-premium);
  z-index: 0;
}

.services-tab {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 11px 20px;
  border-radius: 999px;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 220ms ease;
  white-space: nowrap;
  font-family: inherit;
}

.services-tab.is-active {
  opacity: 1;
}

.services-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  transition: opacity 150ms ease;
}

.services-grid.is-fading {
  opacity: 0;
}

.service-card {
  position: relative;
  background: #060010;
  border: 1px solid rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 212px;
  opacity: 0;
  transform: translateY(18px) scale(0.86);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 68px;
  height: 4px;
  border-radius: 12px 0 8px 0;
  background: #7c3aed;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.6);
}

.service-card-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 11px;
  border-radius: 20px;
  line-height: 1;
  background: #13061f;
  border: 1px solid transparent;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card-badge--hot {
  border-color: #ff4d00;
  color: #ffd9cc;
  background: #2a0f08;
  box-shadow: 0 8px 16px rgba(255, 77, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card-badge--new {
  border-color: #b991ff;
  color: #f4ebff;
  background: #251036;
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  margin: 12px 0 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.55;
}

.service-card-features {
  list-style: none;
  margin: 12px 0 14px;
  padding: 0;
}

.service-card-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.service-card-feature:last-child {
  border-bottom: 0;
}

.service-card-feature-check {
  flex-shrink: 0;
  font-weight: 700;
  color: #7c3aed;
  font-size: 13px;
  line-height: 1.6;
}

.service-card-feature-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.6;
}

.service-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-more-btn,
.service-order-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 10px;
  text-decoration: none;
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-more-btn {
  border: 1px solid #7c3aed;
  color: #ffffff;
  background: #7c3aed;
}

.service-order-btn {
  border: 1px solid #22c55e;
  color: #ffffff;
  background: #16a34a;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.22);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.9);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.service-card:hover .service-more-btn,
.service-more-btn:focus-visible {
  background: #7c3aed;
  color: #ffffff;
}

.service-card:hover .service-order-btn,
.service-order-btn:focus-visible {
  background: #22c55e;
  border-color: #22c55e;
  color: #052e16;
}

@media (min-width: 1024px) {
  .service-more-btn {
    position: relative;
    overflow: hidden;
    transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, padding-right 300ms ease;
  }

  .service-more-btn::after {
    content: "→";
    display: inline-block;
    width: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: width 300ms ease, opacity 300ms ease, transform 300ms ease;
  }

  .service-more-btn:hover,
  .service-more-btn:focus-visible {
    padding-right: 20px;
  }

  .service-more-btn:hover::after,
  .service-more-btn:focus-visible::after {
    width: 14px;
    opacity: 1;
    transform: translateX(0);
  }

  .service-order-btn:hover,
  .service-order-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(34, 197, 94, 0.28);
  }
}

.service-card.is-visible {
  animation: serviceCardIn 560ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.service-card.from-right {
  transform: translateX(24px) scale(0.82);
}

.service-card.from-down {
  transform: translateY(-24px) scale(0.82);
}

@keyframes serviceCardIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

.trusted-partners-section {
  position: relative;
  background: #ffffff;
  padding: clamp(12px, 1.8vw, 26px) 0 clamp(18px, 2.8vw, 32px);
  overflow: hidden;
}

.trusted-partners-section::before {
  content: "";
  position: absolute;
  top: -82px;
  left: 0;
  width: 100%;
  height: 82px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%230d0118'/%3E%3Cstop offset='100%25' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g)' d='M0,64 C180,26 340,22 530,50 C710,78 890,88 1080,58 C1225,35 1338,27 1440,46 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
  pointer-events: none;
}

.trusted-partners-inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trusted-heading-wrap {
  text-align: center;
  max-width: 640px;
}

.trusted-title {
  margin: 0;
  color: #0a070a;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trusted-line-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.trusted-title-line {
  display: block;
  width: min(180px, 58%);
  height: 5px;
  background: #7c3aed;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.42);
  transform: scaleX(0);
  transform-origin: left center;
}

.trusted-partners-section.is-visible .trusted-title-line {
  animation: trustedLineDraw 0.75s var(--ease-out-premium) forwards;
}

@keyframes trustedLineDraw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.trusted-subtext {
  margin: 8px 0 0;
  color: #666666;
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
}

.trusted-video-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(8px, 1.6vw, 14px);
  overflow: hidden;
}

.trusted-partners-video {
  width: min(620px, 92%);
  max-width: 620px;
  height: auto;
  display: block;
  background: #ffffff;
  border: 0;
  outline: 0;
  box-shadow: none;
  border-radius: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4px, #000 calc(100% - 4px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 4px, #000 calc(100% - 4px), transparent 100%);
}

.trusted-partners-video::-webkit-media-controls {
  display: none !important;
}

.trusted-partners-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.trusted-logos {
  margin-top: clamp(20px, 3.2vw, 30px);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(10px, 1.6vw, 14px);
  width: 100%;
}

.trusted-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 228px;
  min-width: 228px;
}

.trusted-logo-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0a070a;
  text-align: center;
  line-height: 1.25;
}

.trusted-logo-card {
  background: #ffffff;
  border: 1px solid #7c3aed;
  border-radius: 12px;
  padding: 16px 24px;
  width: 100%;
  min-height: 96px;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.22), 0 0 0 1px rgba(124, 58, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0ms;
}

.trusted-logo-card img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.trusted-logo-card:hover {
  border-color: #7c3aed;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.22), 0 0 0 1px rgba(124, 58, 237, 0.12);
  transform: translateY(0) scale(1.03);
}

.trusted-partners-section.is-visible .trusted-logo-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.trusted-partners-section.is-visible .trusted-logo-item:nth-child(1) .trusted-logo-card {
  transition-delay: 80ms;
}

.trusted-partners-section.is-visible .trusted-logo-item:nth-child(2) .trusted-logo-card {
  transition-delay: 180ms;
}

.trusted-partners-section.is-visible .trusted-logo-item:nth-child(3) .trusted-logo-card {
  transition-delay: 280ms;
}

.trusted-partners-section.is-visible .trusted-logo-item:nth-child(4) .trusted-logo-card {
  transition-delay: 380ms;
}

@media (prefers-reduced-motion: reduce) {
  .trusted-logo-card {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: border-color 240ms ease, box-shadow 240ms ease, opacity 80ms ease, transform 80ms ease;
  }

  .trusted-partners-section.is-visible .trusted-logo-card {
    opacity: 1;
    transform: none;
  }

  .trusted-partners-section.is-visible .trusted-logo-item:nth-child(n) .trusted-logo-card {
    transition-delay: 0ms;
  }
}

.dual-diagonal-ticker {
  margin-top: -65px;
  padding: clamp(34px, 5vw, 54px) 0 clamp(44px, 6vw, 64px);
  background: #0a070a;
  overflow: hidden;
}

.diag-strip {
  width: 120vw;
  margin-left: -10vw;
  transform: rotate(-2.5deg);
  overflow: hidden;
}

.diag-strip--top {
  background: #7c3aed;
  box-shadow: inset 0 3px 16px rgba(56, 16, 122, 0.45), inset 0 -3px 16px rgba(56, 16, 122, 0.45);
}

.diag-strip--bottom {
  margin-top: -10px;
  background: #ffffff;
}

.diag-track {
  display: flex;
  width: max-content;
  align-items: center;
  white-space: nowrap;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.18rem, 2.25vw, 1.62rem);
  line-height: 1;
  color: #0a070a;
  padding: 14px 0;
}

.diag-strip--top .diag-track {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.38), 0 0 16px rgba(255, 255, 255, 0.24);
}

.diag-strip--bottom .diag-track {
  color: #0a070a;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.diag-track span {
  display: inline-block;
  padding-right: 2.2rem;
}

.diag-track--left {
  animation: diagTickerLeft 20s linear infinite;
}

.diag-track--right {
  animation: diagTickerRight 20s linear infinite;
}

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

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

/* Tablet + phone: hamburger header (desktop nav is too tight below this width) */
@media (max-width: 1024px) {
  .site-header-wrap {
    top: max(8px, env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  /* 100% of wrap content box — avoids 100vw + padding horizontal scroll */
  .site-header {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(8px, 2.5vw, 12px);
    align-items: center;
    justify-items: stretch;
    min-height: 0;
    height: auto;
    padding: 8px 12px;
    box-sizing: border-box;
  }

  .site-nav {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    order: 1;
    justify-self: start;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    -webkit-tap-highlight-color: transparent;
  }

  .site-logo {
    order: 2;
    justify-self: center;
    justify-content: center;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .site-logo img {
    display: block;
    margin: 0 auto;
    height: 64px;
    width: auto;
    max-width: min(320px, 62vw);
    object-fit: contain;
  }

  .header-cta {
    order: 3;
    justify-self: end;
    flex-shrink: 0;
    min-height: 42px;
    min-width: 0;
    padding: 0 12px;
    font-size: 0.78rem;
    box-sizing: border-box;
  }

  .mobile-nav {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  :root {
    --hero-offset-desktop: max(108px, calc(env(safe-area-inset-top, 0px) + 92px));
  }
}

body.site-mobile-nav-open {
  overflow: hidden;
  touch-action: none;
}

@media (min-width: 1025px) {
  body.site-mobile-nav-open {
    overflow: auto;
    touch-action: auto;
  }
}

@media (max-width: 760px) {
  .site-header-wrap {
    padding-left: max(10px, env(safe-area-inset-left, 0px));
    padding-right: max(10px, env(safe-area-inset-right, 0px));
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    height: auto;
    min-height: 58px;
    padding: 7px 10px;
  }

  .site-logo img {
    height: 54px;
    max-width: min(280px, 72vw);
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  :root {
    --hero-offset-desktop: 108px;
  }

  /* Hero Two (index): allow illustration to scale up and overlap without clipping */
  .hero-system.is-hero-two {
    height: auto;
    min-height: calc(100dvh - var(--hero-offset-desktop));
    overflow: visible;
    padding-bottom: 24px;
  }

  .hero-system.is-hero-two .hero-panel--content {
    position: relative;
    inset: auto;
    min-height: calc(100dvh - var(--hero-offset-desktop));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  .hero-video-wrap {
    width: min(90vw, 560px);
    height: min(40vh, 280px);
  }

  .hero-panel--video {
    place-items: center;
    padding-top: 0;
  }

  .hero-two-title {
    font-size: clamp(1.55rem, 8vw, 3.7rem);
    position: relative;
    transform: translateY(-8px);
  }

  .hero-two-brand-video {
    width: auto;
    height: 130px;
    transform: translateX(22px);
  }

  .hero-two-title-text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
    line-height: 0.98;
    font-size: 0.97em;
    font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
    font-weight: 900;
    letter-spacing: -0.015em;
    padding-top: 0;
    padding-bottom: 2px;
    transform: translateY(0);
    margin-right: 0;
  }

  .hero-two-title-text span {
    display: block;
  }

  .hero-two-badges {
    margin-top: 0;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 94%;
    transform: translateX(-50%);
    width: auto;
    z-index: 4;
  }

  .hero-two-rating {
    justify-content: center;
    margin-top: 14px;
    width: 100%;
    gap: 8px;
  }

  .hero-two-star {
    font-size: 1rem;
  }

  .hero-two-reviews {
    font-size: 0.86rem;
  }

  .hero-two-title-copy {
    align-items: center;
  }

  .hero-two-badge-group {
    gap: 8px;
    padding: 8px 10px 6px;
  }

  .hero-two-badge-item,
  .hero-two-badge--left,
  .hero-two-badge--center,
  .hero-two-badge--right,
  .hero-system.is-hero-two .hero-two-badge-item {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .hero-two-badge-item img {
    max-height: 24px;
    max-width: 76px;
  }

  .hero-two-subtitle {
    margin-top: 34px;
    width: min(320px, 90vw);
    font-size: clamp(0.95rem, 4.1vw, 1.08rem);
  }

  .hero-two-rocket {
    margin-top: 24px;
    position: relative;
    z-index: 3;
  }

  .hero-two-rocket img {
    width: min(180px, 56vw);
  }

  .hero-system.is-hero-two .hero-two-rocket {
    animation: heroTwoRocketOrbitInMobile 2.9s cubic-bezier(0.2, 0.86, 0.28, 1) 0.7s forwards, heroTwoRocketIdle 3.2s ease-in-out 3.8s infinite;
  }

  @keyframes heroTwoRocketOrbitInMobile {
    0% {
      opacity: 0;
      transform: translate3d(170px, 92px, 0) rotate(28deg) scale(0.54);
    }
    8% {
      opacity: 1;
      transform: translate3d(148px, -76px, 0) rotate(14deg) scale(0.72);
    }
    18% {
      opacity: 1;
      transform: translate3d(148px, -76px, 0) rotate(14deg) scale(0.72);
    }
    40% {
      opacity: 1;
      transform: translate3d(54px, -112px, 0) rotate(-8deg) scale(0.9);
    }
    48% {
      opacity: 1;
      transform: translate3d(54px, -112px, 0) rotate(-8deg) scale(0.9);
    }
    70% {
      opacity: 1;
      transform: translate3d(124px, 44px, 0) rotate(14deg) scale(0.98);
    }
    78% {
      opacity: 1;
      transform: translate3d(124px, 44px, 0) rotate(14deg) scale(0.98);
    }
    94% {
      opacity: 1;
      transform: translate3d(18px, 10px, 0) rotate(-2deg) scale(1.02);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
  }

  .hero-two-inner {
    width: min(940px, 100%);
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 22px;
    overflow: visible;
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(0px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  .hero-two-content,
  .hero-two-visual {
    width: 100%;
    overflow: visible;
  }

  .hero-two-content {
    text-align: center;
  }

  .hero-two-title {
    justify-content: center;
  }

  .hero-two-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-two-visual {
    overflow: visible;
  }

  .hero-two-person-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    box-sizing: border-box;
    overflow: visible;
  }

  .hero-system.is-hero-two .hero-two-person-wrap {
    overflow: visible;
  }

  .hero-two-person-image {
    display: block;
    width: 126%;
    height: auto;
    max-width: none;
    margin-top: -24px;
    margin-left: -13%;
    overflow: visible;
  }

  .hero-two-speaker {
    display: none;
  }

  .video-frame {
    width: 92vw;
    border-radius: 14px;
  }

  .hero-headline {
    display: flex;
    flex-wrap: wrap;
    row-gap: 8px;
    font-size: clamp(2rem, 9.1vw, 3.2rem);
  }

  .typed-line {
    font-size: 1em;
  }

  .subheading {
    margin-top: 18px;
  }

  .cta {
    margin-top: 28px;
  }

  .services-section {
    padding: 46px 0 70px;
  }

  .services-title {
    font-size: clamp(1.8rem, 8.2vw, 2.4rem);
  }

  .services-heading-wrap {
    margin-top: -18px;
  }

  .services-tab-shell {
    width: 100%;
    justify-content: flex-start;
    gap: 6px;
    padding: 6px 6px 8px;
  }

  .services-tab {
    font-size: 0.86rem;
    padding: 10px 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: 0;
    padding: 20px 20px 24px;
    transform: translateY(18px) scale(0.96);
  }

  .service-card.from-right,
  .service-card.from-down {
    transform: translateY(18px) scale(0.96);
  }

  .service-card-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: auto;
  }

  .service-more-btn,
  .service-order-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .dual-diagonal-ticker {
    margin-top: -64px;
    padding: 26px 0 36px;
  }

  .diag-strip {
    width: 136vw;
    margin-left: -18vw;
  }

  .diag-strip--bottom {
    margin-top: -8px;
  }

  .diag-track {
    font-size: clamp(0.85rem, 4.4vw, 1.05rem);
    letter-spacing: 0.04em;
    padding: 11px 0;
  }

  .diag-track span {
    padding-right: 1.35rem;
  }

  .trusted-partners-section {
    padding: clamp(28px, 7vw, 44px) 0 clamp(14px, 4vw, 24px);
  }

  .trusted-title {
    font-size: clamp(1.65rem, 7.2vw, 2.2rem);
  }

  .trusted-partners-video {
    width: 92%;
    max-width: 620px;
  }

  .trusted-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 14px 12px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .trusted-logo-item {
    width: 100%;
    max-width: 200px;
    min-width: 0;
    flex: 0 1 auto;
  }

  .trusted-logo-card {
    padding: 12px 16px;
    width: 100%;
    min-height: 82px;
  }

  .trusted-logo-card img {
    max-width: 140px;
  }
}

/* —— Our Portfolio —— */
.portfolio-section {
  --portfolio-card-w: min(820px, 92vw);
  position: relative;
  background: #0a070a;
  padding: 0 0 clamp(32px, 5vw, 56px);
  overflow-x: hidden;
  overflow-y: visible;
}

.portfolio-wave {
  width: 100%;
  height: 66px;
  line-height: 0;
  display: block;
  margin: 0;
  padding: 0;
}

.portfolio-wave-svg {
  display: block;
  width: 100%;
  height: 66px;
}

.portfolio-inner {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
  padding-top: 0;
}

.portfolio-heading {
  text-align: left;
  max-width: 1160px;
  margin: 0 auto;
}

.portfolio-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.05rem, 3.7vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.portfolio-title-accent {
  display: block;
  margin-top: 10px;
  width: min(180px, 58%);
  height: 5px;
  border-radius: 999px;
  background: #7c3aed;
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.42);
}

.portfolio-proof-title {
  margin: 24px 0 0;
  color: #ffffff;
  text-align: center;
  font-family: "Arial Black", Arial, "Inter", sans-serif;
  font-size: clamp(22px, 3.1vw, 34px);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-shadow: 0 0 14px rgba(124, 58, 237, 0.22);
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 520ms var(--ease-out-premium),
    transform 520ms var(--ease-out-premium),
    filter 520ms var(--ease-out-premium);
}

.portfolio-section.portfolio-section--proof-visible .portfolio-proof-title {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.portfolio-typing-text {
  display: inline-block;
  min-height: 1.15em;
}

.portfolio-proof-line {
  display: block;
}

.portfolio-proof-line + .portfolio-proof-line {
  margin-top: 0;
}

.portfolio-proof-line.is-typing::after {
  content: "|";
  margin-left: 2px;
  color: #7c3aed;
  animation: portfolioCursorBlink 0.8s steps(2, end) infinite;
}

.portfolio-typing-char {
  color: #ffffff;
}

.portfolio-typing-char.is-scrambling {
  color: #7c3aed;
  text-shadow: 0 0 12px rgba(124, 58, 237, 0.45);
}

.portfolio-pulse-word {
  color: #ffffff;
}

.portfolio-pulse-word.is-pulsing {
  animation: portfolioWordPulse 2s ease-in-out infinite;
}

.portfolio-pulse-word--rankings.is-pulsing {
  animation-delay: 0.8s;
}

.portfolio-pulse-word--themselves.is-pulsing {
  animation-delay: 1.6s;
}

@keyframes portfolioCursorBlink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes portfolioWordPulse {
  0%,
  100% {
    color: #ffffff;
    text-shadow: none;
  }
  50% {
    color: #7c3aed;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.9), 0 0 40px rgba(124, 58, 237, 0.5);
  }
}

.portfolio-proof-text {
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  max-width: 760px;
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 380ms ease, transform 380ms ease;
}

.portfolio-proof-text.portfolio-proof-text--visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-showcase {
  margin-top: clamp(20px, 3vw, 30px);
  display: flex;
  justify-content: center;
}

.portfolio-slider-shell {
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 520ms var(--ease-out-premium), transform 520ms var(--ease-out-premium);
}

.portfolio-section.portfolio-section--entered .portfolio-slider-shell {
  opacity: 1;
  transform: scale(1);
}

.portfolio-curtain-card {
  position: relative;
  width: var(--portfolio-card-w);
  max-width: 820px;
  border-radius: 16px;
  overflow: hidden;
  background: #141018;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.3), 0 16px 40px rgba(0, 0, 0, 0.5);
  touch-action: pan-y;
}

.portfolio-curtain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1.5px rgba(124, 58, 237, 0.85);
  pointer-events: none;
  z-index: 3;
}

.portfolio-curtain-card img {
  display: block;
  width: 100%;
  height: auto;
}

.portfolio-curtain {
  position: relative;
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: #0a070a;
  transform: translateY(-100%);
  will-change: transform;
  pointer-events: none;
  z-index: 2;
}

.portfolio-curtain::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(124, 58, 237, 0) 0%,
    rgba(124, 58, 237, 0.1) 46%,
    rgba(124, 58, 237, 0.2) 50%,
    rgba(124, 58, 237, 0.1) 54%,
    rgba(124, 58, 237, 0) 100%
  );
  transform: translateX(-120%);
  opacity: 0.7;
}

.portfolio-curtain.is-moving::after {
  animation: portfolioCurtainSheen 520ms ease-out;
}

@keyframes portfolioCurtainSheen {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

.portfolio-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 0 12px;
}

.portfolio-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.portfolio-dot.is-active {
  background: #7c3aed;
  border-color: #7c3aed;
  transform: scale(1.22);
}

.portfolio-dot:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 3px;
}

.portfolio-nav {
  margin-top: clamp(16px, 2.4vw, 24px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease;
}

.portfolio-nav.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.portfolio-nav-btn {
  appearance: none;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid #7c3aed;
  color: #7c3aed;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.28s var(--ease-out-premium),
    color 0.28s var(--ease-out-premium),
    box-shadow 0.28s var(--ease-out-premium),
    transform 0.2s var(--ease-out-premium);
}

.portfolio-nav-btn:hover {
  background: #7c3aed;
  color: #ffffff;
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.45);
}

.portfolio-nav-btn:active {
  transform: scale(0.98);
}

.portfolio-counter {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  min-width: 4.5rem;
  text-align: center;
}

@media (max-width: 760px) {
  .portfolio-section {
    --portfolio-card-w: 92vw;
  }

  .portfolio-proof-title {
    margin-top: 20px;
    font-size: clamp(20px, 6.4vw, 30px);
    gap: 6px;
  }

  .portfolio-proof-text {
    font-size: 0.9rem;
  }

  .portfolio-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px 12px;
    align-items: center;
    width: 100%;
  }

  .portfolio-nav-btn {
    min-width: 0;
    padding: 10px 12px;
    width: 100%;
    font-size: 0.88rem;
  }

  .portfolio-counter {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .portfolio-nav-btn--prev {
    grid-column: 1;
    grid-row: 1;
  }

  .portfolio-nav-btn--next {
    grid-column: 3;
    grid-row: 1;
  }

  .portfolio-dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .portfolio-dots {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-curtain,
  .portfolio-nav-btn,
  .portfolio-slider-shell {
    transition-duration: 0.01ms !important;
  }

  .portfolio-proof-line.is-typing::after {
    animation-duration: 0.01ms !important;
  }
}

/* —— Our Pricing Plans —— */
.pricing-section {
  background: #0a070a;
  margin-top: -56px;
  padding: 0 0 clamp(76px, 10vw, 116px);
  overflow: hidden;
}

.pricing-wave {
  width: 100%;
  height: 8px;
  line-height: 0;
}

.pricing-wave-svg {
  width: 100%;
  height: 8px;
  display: block;
}

.pricing-inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding-top: clamp(22px, 2.8vw, 34px);
}

.pricing-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-subtext {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
}

.pricing-grid {
  margin-top: clamp(34px, 5vw, 54px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: end;
}

.pricing-card {
  position: relative;
  border-radius: 20px;
  padding: 24px 22px 22px;
  overflow: hidden;
  opacity: 0;
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.pricing-card--left,
.pricing-card--right {
  background: linear-gradient(145deg, #1a0a2e, #0d0118);
  border: 1px solid rgba(124, 58, 237, 0.4);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.pricing-card--left {
  transform: translateX(-56px);
}

.pricing-card--right {
  transform: translateX(56px);
}

.pricing-card--center {
  background: linear-gradient(145deg, #7c3aed, #4a1fa8);
  border: 0;
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.5), 0 20px 60px rgba(124, 58, 237, 0.3);
  transform: translateY(48px);
}

.pricing-section.is-visible .pricing-card {
  opacity: 1;
}

.pricing-section.is-visible .pricing-card--left,
.pricing-section.is-visible .pricing-card--right {
  transform: translateX(0);
}

.pricing-section.is-visible .pricing-card--center {
  transform: translateY(-18px) scale(1.04);
}

.pricing-card--left:hover,
.pricing-card--right:hover {
  border-color: #7c3aed;
  transform: translateY(-8px);
  box-shadow: 0 0 34px rgba(124, 58, 237, 0.35), 0 22px 42px rgba(0, 0, 0, 0.5);
}

.pricing-badge {
  position: absolute;
  right: 16px;
  top: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}

.pricing-card--left .pricing-badge,
.pricing-card--right .pricing-badge {
  border: 1px solid #7c3aed;
  color: #7c3aed;
  background: transparent;
}

.pricing-card--center .pricing-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.pricing-plan-name {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  max-width: calc(100% - 116px);
}

.pricing-price-row {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-currency {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  padding-top: 8px;
}

.pricing-card--center .pricing-currency {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-amount {
  color: #ffffff;
  font-family: "Space Grotesk", "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.pricing-divider {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 14px;
  background: rgba(124, 58, 237, 0.3);
}

.pricing-card--center .pricing-divider {
  background: rgba(255, 255, 255, 0.2);
}

.pricing-features {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-feature-item {
  position: relative;
  padding-left: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.pricing-feature-item + .pricing-feature-item {
  margin-top: 8px;
}

.pricing-feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7c3aed;
  font-weight: 700;
}

.pricing-card--center .pricing-feature-item {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card--center .pricing-feature-item::before {
  color: #ffffff;
}

.pricing-card.is-features-visible .pricing-feature-item {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card.is-features-visible .pricing-feature-item:nth-child(1) {
  transition-delay: 0ms;
}
.pricing-card.is-features-visible .pricing-feature-item:nth-child(2) {
  transition-delay: 60ms;
}
.pricing-card.is-features-visible .pricing-feature-item:nth-child(3) {
  transition-delay: 120ms;
}
.pricing-card.is-features-visible .pricing-feature-item:nth-child(4) {
  transition-delay: 180ms;
}
.pricing-card.is-features-visible .pricing-feature-item:nth-child(5) {
  transition-delay: 240ms;
}
.pricing-card.is-features-visible .pricing-feature-item:nth-child(6) {
  transition-delay: 300ms;
}
.pricing-card.is-features-visible .pricing-feature-item:nth-child(7) {
  transition-delay: 360ms;
}
.pricing-card.is-features-visible .pricing-feature-item:nth-child(8) {
  transition-delay: 420ms;
}
.pricing-card.is-features-visible .pricing-feature-item:nth-child(9) {
  transition-delay: 480ms;
}

.pricing-cta-btn {
  margin-top: 18px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.pricing-card--left .pricing-cta-btn,
.pricing-card--right .pricing-cta-btn {
  background: #7c3aed;
  color: #ffffff;
}

.pricing-card--left .pricing-cta-btn:hover,
.pricing-card--right .pricing-cta-btn:hover {
  background: #8d4ff3;
  transform: scale(1.02);
}

.pricing-card--center .pricing-cta-btn {
  background: #ffffff;
  color: #7c3aed;
}

.pricing-card--center .pricing-cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

a.pricing-cta-btn {
  text-decoration: none;
  text-align: center;
  display: block;
  box-sizing: border-box;
}

/* Pricing cards: <a> CTAs match former <button> layout */
a.mb-buy,
a.nb-buy,
a.rf-buy {
  display: block;
}

a.mb-buy,
a.nb-buy,
a.nr-buy-solo,
a.fb-buy,
a.wl-buy,
a.ss-buy,
a.rf-buy {
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 960px) {
  .pricing-inner {
    padding-top: 44px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-section.is-visible .pricing-card--center {
    transform: translateY(0) scale(1);
  }

  .pricing-card--left,
  .pricing-card--right,
  .pricing-card--center {
    transform: translateY(32px);
  }

  .pricing-section.is-visible .pricing-card--left,
  .pricing-section.is-visible .pricing-card--right,
  .pricing-section.is-visible .pricing-card--center {
    transform: translateY(0);
  }
}

/* —— About iRank —— */
.about-irank-section {
  position: relative;
  background: #0a070a;
  margin-top: -64px;
  padding: 1px 0 2px;
  overflow: hidden;
}

.about-irank-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(72px, 10vw, 120px);
  line-height: 0;
  transform: translateY(-99%);
}

.about-irank-wave-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.about-irank-inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 30%) minmax(0, 35%) minmax(0, 35%);
  gap: 28px;
  align-items: center;
}

.about-irank-left-col,
.about-irank-video-col {
  opacity: 0;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-irank-left-col {
  display: grid;
  gap: 14px;
  transform: translateX(-42px);
}

.about-irank-video-col {
  position: relative;
  display: flex;
  justify-content: center;
  transform: scale(0.85);
}

.about-irank-video-glow {
  display: none;
}

.about-irank-video {
  position: relative;
  width: auto;
  max-width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  border: none;
  box-shadow: none;
  z-index: 1;
}

.about-irank-content-col {
  display: grid;
  gap: 18px;
  transform: translateX(42px);
  opacity: 0;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-irank-badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.15);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
}

.about-irank-heading {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 42px);
  font-family: "Space Grotesk", "Arial Black", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.about-irank-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.about-irank-word.is-word-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-irank-subheading {
  margin: 0;
  color: #7c3aed;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.about-irank-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.about-irank-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.about-irank-stat-card {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 16px;
  padding: 16px 20px;
  opacity: 0;
  transform: translateX(-24px);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.about-irank-stat-card:hover {
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.24);
  transform: translateY(-2px);
}

.about-irank-stat-value {
  margin: 0;
  color: #7c3aed;
  font-size: 38px;
  line-height: 1;
  font-family: "Space Grotesk", "Arial Black", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.about-irank-stat-label {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.about-irank-stat-progress {
  margin-top: 10px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.18);
  overflow: hidden;
}

.about-irank-stat-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6d28d9 0%, #7c3aed 50%, #a855f7 100%);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.45);
}

.about-irank-cta {
  justify-self: start;
  margin-top: 4px;
  border: 0;
  border-radius: 50px;
  padding: 16px 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #7c3aed;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.about-irank-cta-arrow {
  display: inline-block;
  transition: transform 240ms ease;
}

.about-irank-cta:hover {
  background: #8b46ff;
  box-shadow: 0 0 26px rgba(124, 58, 237, 0.42);
}

.about-irank-cta:hover .about-irank-cta-arrow {
  transform: translateX(4px);
}

.about-irank-section.is-visible .about-irank-left-col,
.about-irank-section.is-visible .about-irank-content-col {
  opacity: 1;
  transform: translateX(0);
}

.about-irank-section.is-visible .about-irank-video-col {
  opacity: 1;
  transform: scale(1);
}

.about-irank-stat-card.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.about-irank-subheading.is-revealed,
.about-irank-body.is-revealed,
.about-irank-cta.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .about-irank-section {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .about-irank-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-irank-left-col {
    order: 1;
  }

  .about-irank-video-col {
    order: 2;
  }

  .about-irank-content-col {
    order: 3;
  }

  .about-irank-video-col {
    justify-content: center;
  }

  .about-irank-video {
    width: 75%;
    height: auto;
    max-height: none;
  }

  .about-irank-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .about-irank-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .about-irank-stat-card {
    padding: 16px;
  }

  .about-irank-stat-value {
    font-size: 36px;
  }
}

/* —— Testimonials —— */
.testimonials-section {
  position: relative;
  background: #f5f0ff;
  padding: 60px 0 56px;
  overflow: hidden;
}

.testimonials-wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: clamp(78px, 10vw, 128px);
  line-height: 0;
  transform: translateY(-98%);
}

.testimonials-wave-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.testimonials-inner {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
}

.testimonials-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  opacity: 0;
  transform: translateY(28px);
  transition: transform 860ms cubic-bezier(0.22, 1, 0.36, 1), opacity 860ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-heading-left {
  display: grid;
  gap: 12px;
}

.testimonials-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 700;
}

.testimonials-title {
  margin: 0;
  color: #0a070a;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 900;
  font-family: "Space Grotesk", "Arial Black", Arial, sans-serif;
}

.testimonials-title-accent {
  display: block;
  margin-top: 2px;
  width: min(180px, 58%);
  height: 5px;
  border-radius: 999px;
  background: #7c3aed;
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.42);
}

.testimonials-heading-right {
  border-left: 3px solid #7c3aed;
  padding-left: 20px;
}

.testimonials-intro {
  margin: 0;
  color: #444444;
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
}

.testimonials-divider {
  display: block;
  height: 1px;
  margin-top: 30px;
  width: 100%;
  background: rgba(124, 58, 237, 0.2);
}

.testimonials-carousel-shell {
  margin-top: 46px;
  perspective: 1400px;
  opacity: 0;
  transform: scale(0.9);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-carousel-track {
  position: relative;
  min-height: 360px;
  transform-style: preserve-3d;
}

.testimonial-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(560px, calc(100vw - 72px));
  min-height: 350px;
  padding: 30px 36px 12px;
  border-radius: 24px;
  border: 2px solid rgba(124, 58, 237, 0.65);
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15), 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
  will-change: transform, opacity, filter;
  cursor: pointer;
}

.testimonial-card.is-active {
  z-index: 4;
  opacity: 1;
  filter: blur(0);
  transform: translate3d(-50%, 0, 0) rotateY(0deg) scale(1);
}

.testimonial-card.is-left {
  z-index: 2;
  opacity: 0.6;
  filter: blur(2px);
  transform: translate3d(calc(-50% - 290px), 28px, -190px) rotateY(45deg) scale(0.75);
}

.testimonial-card.is-right {
  z-index: 2;
  opacity: 0.6;
  filter: blur(2px);
  transform: translate3d(calc(-50% + 290px), 28px, -190px) rotateY(-45deg) scale(0.75);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #7c3aed;
}

.testimonial-stars {
  color: #f6b300;
  letter-spacing: 2px;
  font-size: 20px;
}

.testimonial-quote {
  position: absolute;
  left: 26px;
  top: 16px;
  font-size: 80px;
  line-height: 1;
  color: #7c3aed;
  opacity: 0.15;
  pointer-events: none;
}

.testimonial-review {
  margin: 24px 0 0;
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  font-style: italic;
}

.testimonial-client {
  margin-top: 12px;
}

.testimonial-name {
  margin: 0;
  color: #0a070a;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-role {
  margin: 6px 0 0;
  color: #7c3aed;
  font-size: 13px;
  font-weight: 600;
}

.testimonials-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonials-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid #7c3aed;
  background: transparent;
  cursor: pointer;
  transition: width 280ms ease, background-color 280ms ease, transform 280ms ease;
}

.testimonials-dot.is-active {
  width: 30px;
  background: #7c3aed;
}

.testimonials-section.is-visible .testimonials-heading-row {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-section.is-visible .testimonials-carousel-shell {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 960px) {
  .testimonials-section {
    padding: 48px 0 48px;
  }

  .testimonials-heading-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .testimonials-divider {
    margin-top: 22px;
  }

  .testimonials-carousel-shell {
    margin-top: 30px;
    perspective: none;
  }

  .testimonials-carousel-track {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .testimonial-card {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    left: auto;
    top: auto;
    width: 92vw;
    max-width: 560px;
    margin: 0 auto;
    min-height: auto;
    padding: 28px 22px 22px;
    cursor: default;
    justify-self: center;
    align-self: start;
    background: linear-gradient(165deg, #ffffff 0%, #faf7ff 55%, #f3ecff 100%);
    border: 2px solid rgba(124, 58, 237, 0.45);
    box-shadow:
      0 22px 50px rgba(124, 58, 237, 0.2),
      0 8px 24px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px) scale(0.96);
    filter: none;
    transition:
      opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.48s,
      box-shadow 0.35s ease,
      border-color 0.35s ease;
  }

  .testimonial-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, #7c3aed, #a78bfa, #7c3aed);
    opacity: 0.95;
  }

  .testimonial-card.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    z-index: 2;
  }

  .testimonials-dots {
    margin-top: 16px;
  }

  .testimonials-dot {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.12);
  }

  .testimonials-dot.is-active {
    box-shadow: 0 0 14px rgba(124, 58, 237, 0.45);
  }
}

@media (max-width: 960px) and (prefers-reduced-motion: reduce) {
  .testimonial-card {
    transition-duration: 0.01ms;
  }
}

/* —— Our Value (Why Choose Us + Core Values) —— */
.our-value-section {
  position: relative;
  background: #0a070a;
  padding: 52px 0 20px;
  overflow: hidden;
}

.our-value-glow {
  position: absolute;
  top: -140px;
  left: -160px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0.02) 45%, transparent 70%);
  z-index: 0;
}

.our-value-wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: clamp(72px, 10vw, 120px);
  line-height: 0;
  transform: translateY(-99%);
  z-index: 1;
  pointer-events: none;
}

.our-value-wave-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.our-value-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
}

.our-value-choose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.our-value-choose-heading {
  margin: 0;
  max-width: none;
}

.our-value-subtext {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
  max-width: 520px;
}

.our-value-stats {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
}

.our-value-stat {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.our-value-stat-num {
  margin: 0;
  color: #ffffff;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  font-family: "Space Grotesk", "Arial Black", Arial, sans-serif;
}

.our-value-stat-label {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.35;
}

.our-value-stat-divider {
  width: 1px;
  align-self: stretch;
  min-height: 72px;
  background: rgba(45, 18, 95, 0.75);
  flex-shrink: 0;
}

.our-value-banner {
  margin-top: 14px;
}

.our-value-banner-inner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.our-value-banner-img {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
}

.our-value-banner-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: none;
}

.our-value-banner-curtain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #0a070a;
  transform: translateX(0);
  transition: transform 1s ease;
  will-change: transform;
}

.our-value-banner.is-revealed .our-value-banner-curtain {
  transform: translateX(-100%);
}

@media (max-width: 960px) {
  .our-value-section {
    padding: 44px 0 20px;
  }

  .our-value-choose {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .our-value-banner {
    margin-top: 12px;
  }

  .our-value-subtext {
    max-width: none;
  }

  .our-value-stats {
    gap: 8px;
  }

  .our-value-stat-num {
    font-size: clamp(28px, 7vw, 40px);
  }

  .our-value-stat-label {
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .our-value-stat-divider {
    min-height: 56px;
  }

  .our-value-banner-inner {
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .our-value-banner-curtain {
    transition-duration: 0.01ms !important;
  }
}

/* —— FAQs — Terminal split —— */
.faqs-section {
  position: relative;
  background: #0a070a;
  padding: 36px 0 100px;
  overflow: hidden;
}

.faqs-wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: clamp(72px, 10vw, 120px);
  line-height: 0;
  transform: translateY(-99%);
  pointer-events: none;
  z-index: 1;
}

.faqs-wave-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.faqs-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.faqs-heading {
  text-align: center;
  margin-bottom: 60px;
}

.faqs-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-family: "Space Grotesk", "Arial Black", Arial, sans-serif;
}

.faqs-subtext {
  margin: 14px auto 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
}

.faqs-split {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: 40px;
  align-items: stretch;
}

.faqs-split-col--left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.faqs-split-col--right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.faqs-section.is-visible .faqs-split-col--left,
.faqs-section.is-visible .faqs-split-col--right {
  opacity: 1;
  transform: translateX(0);
}

.faqs-questions {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

@media (min-width: 961px) {
  .faq-item {
    display: contents;
  }

  .faq-answer {
    display: none !important;
  }
}

.faq-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 20px 16px;
  border: 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: inherit;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0;
  border-left: 3px solid transparent;
}

.faq-row:last-child {
  border-bottom: 0;
}

.faq-row-num {
  color: #7c3aed;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.faq-row-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.faq-row-arrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  transition: transform 0.35s ease, color 0.3s ease;
}

.faq-row:hover {
  background: rgba(124, 58, 237, 0.05);
}

.faq-row:hover .faq-row-text {
  color: rgba(255, 255, 255, 0.95);
}

.faq-row.is-active {
  border-left-color: #7c3aed;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 8px;
  border-bottom-color: transparent;
}

.faq-row.is-active .faq-row-text {
  color: #7c3aed;
}

.faq-row.is-active .faq-row-arrow {
  color: #7c3aed;
  transform: rotate(90deg);
}

.faqs-terminal {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.2);
}

.faqs-terminal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  padding: 12px 16px;
  background: #1a1a2e;
  border-radius: 12px 12px 0 0;
}

.faqs-terminal-dots {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 7px;
}

.faqs-terminal-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.faqs-terminal-dot--red {
  background: #ff5f57;
}

.faqs-terminal-dot--yellow {
  background: #febc2e;
}

.faqs-terminal-dot--green {
  background: #28c840;
}

.faqs-terminal-titlebar {
  font-family: "Courier New", Courier, "Consolas", monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.faqs-terminal-body {
  flex: 1;
  min-height: 380px;
  background: #0d0d1a;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  padding: 30px;
}

.faqs-terminal-content {
  font-family: "Courier New", Courier, "Consolas", monospace;
  font-size: 14px;
  line-height: 1.65;
  min-height: 280px;
  transition: opacity 0.18s ease;
}

.faqs-terminal-content.is-fading {
  opacity: 0;
}

.faqs-terminal-line {
  margin: 0 0 10px;
  white-space: pre-wrap;
  word-break: break-word;
}

.faqs-terminal-line--prompt {
  color: #7c3aed;
  font-weight: 700;
}

.faqs-terminal-line--question {
  color: rgba(255, 255, 255, 0.6);
}

.faqs-terminal-line--comment {
  color: rgba(124, 58, 237, 0.6);
  margin-top: 8px;
}

.faqs-terminal-line--answer {
  color: #ffffff;
}

.faqs-terminal-line--idle {
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

.faqs-terminal-line--blank {
  min-height: 0.6em;
  margin-bottom: 0;
}

.faqs-terminal-cursor {
  display: inline-block;
  color: #28c840;
  font-weight: 700;
  animation: faqs-cursor-blink 1s step-end infinite;
}

.faqs-terminal-cursor--inline {
  margin-left: 2px;
}

@keyframes faqs-cursor-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .faqs-section {
    padding: 28px 0 88px;
  }

  .faqs-split {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faqs-split-col--right {
    display: none;
  }

  .faq-item {
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  }

  .faq-item:last-child {
    border-bottom: 0;
  }

  .faq-row {
    border-bottom: 0;
    border-radius: 0;
  }

  .faq-row.is-active {
    border-bottom-color: transparent;
    border-radius: 8px 8px 0 0;
  }

  .faq-item.is-open .faq-row.is-active {
    border-radius: 8px 8px 0 0;
  }

  .faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
  }

  .faq-answer-inner {
    min-height: 0;
    overflow: hidden;
  }

  .faq-answer-text {
    margin: 0;
    padding: 0 16px 20px 48px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.65;
  }

  .faqs-heading {
    margin-bottom: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faqs-split-col--left,
  .faqs-split-col--right {
    transition-duration: 0.01ms !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .faqs-terminal-cursor {
    animation: none !important;
    opacity: 1 !important;
  }

  .site-footer-col {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .site-footer-cta-copy,
  .site-footer-cta-title,
  .site-footer-cta-btn,
  .site-footer-cta-strip > .site-footer-cta-person-img {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }

  .site-footer-cta-strip::before,
  .site-footer-cta-strip::after {
    animation: none !important;
    opacity: 0 !important;
  }

}

/* —— Site footer —— */
.site-footer {
  position: relative;
  background: #060010;
  overflow: visible;
  z-index: 2;
}

.site-footer-wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: clamp(72px, 10vw, 120px);
  line-height: 0;
  transform: translateY(-99%);
  pointer-events: none;
  z-index: 1;
}

.site-footer-wave-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -18%);
  width: 800px;
  height: 800px;
  max-width: 100vw;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0.02) 42%, transparent 68%);
}

.site-footer-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-footer-cta-strip {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #ffffff 0%, #f5f3fa 100%);
  border-top: 1px solid rgba(124, 58, 237, 0.18);
  border-bottom: 1px solid rgba(124, 58, 237, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 0 rgba(10, 7, 10, 0.04);
  padding: 40px 0;
  overflow: visible;
  isolation: isolate;
}

.site-footer-cta-strip::before,
.site-footer-cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.site-footer-cta-strip::before {
  background: linear-gradient(108deg, transparent 22%, rgba(255, 255, 255, 0.78) 49%, transparent 76%);
  transform: translateX(-140%) skewX(-14deg);
  opacity: 0;
}

.site-footer-cta-strip::after {
  background:
    radial-gradient(circle at 78% 44%, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.06) 24%, transparent 50%),
    radial-gradient(circle at 28% 58%, rgba(124, 58, 237, 0.1) 0%, transparent 44%);
  opacity: 0;
}

.site-footer.is-visible .site-footer-cta-strip::before {
  opacity: 0.95;
  animation: footerCtaSheenSweep 1.25s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s both;
}

.site-footer.is-visible .site-footer-cta-strip::after {
  opacity: 1;
  animation: footerCtaAuraIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.site-footer-cta-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 0;
}

.site-footer-cta-strip > .site-footer-cta-person-img {
  position: absolute;
  z-index: 4;
  right: 86px;
  bottom: 0;
  display: block;
  height: 370px;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(42px, 24px, 0) scale(0.86) rotate(-4deg);
  filter: blur(2px);
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.15),
    filter 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer.is-visible .site-footer-cta-strip > .site-footer-cta-person-img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  filter: blur(0);
  transition-delay: 0.14s;
  animation: footerCtaPersonIdle 4.6s ease-in-out 1.55s infinite;
}

.site-footer-cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.96);
  filter: blur(7px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer.is-visible .site-footer-cta-copy {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0.04s;
}

.site-footer-cta-title {
  margin: 0;
  color: #0a070a;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: "Space Grotesk", "Arial Black", Arial, sans-serif;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer.is-visible .site-footer-cta-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.14s;
}

.site-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 50px;
  background: #7c3aed;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.94);
  transition:
    opacity 0.84s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.84s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s var(--ease-out-premium),
    box-shadow 0.35s var(--ease-out-premium),
    filter 0.35s var(--ease-out-premium);
  filter: drop-shadow(0 0 0 rgba(124, 58, 237, 0));
}

.site-footer.is-visible .site-footer-cta-btn {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0.28s;
  animation: footerCtaButtonBreathe 2.8s ease-in-out 1.6s infinite;
}

.site-footer-cta-btn:hover {
  background: #9254f3;
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.45), 0 0 56px rgba(124, 58, 237, 0.2);
  transform: translateY(-2px) scale(1.02);
}

@keyframes footerCtaSheenSweep {
  0% {
    transform: translateX(-140%) skewX(-14deg);
  }
  100% {
    transform: translateX(132%) skewX(-14deg);
  }
}

@keyframes footerCtaAuraIn {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes footerCtaPersonIdle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -6px, 0) scale(1.008) rotate(-0.7deg);
  }
}

@keyframes footerCtaButtonBreathe {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(124, 58, 237, 0);
  }
  50% {
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.34);
  }
}

.site-footer-cta-btn:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.8);
  outline-offset: 3px;
}

.site-footer-main {
  position: relative;
  z-index: 2;
  padding: 56px 0 48px;
}

.site-footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 30%) minmax(0, 30%);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.site-footer-col {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer.is-visible .site-footer-col:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}

.site-footer.is-visible .site-footer-col:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 150ms;
}

.site-footer.is-visible .site-footer-col:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 300ms;
}

.site-footer-logo-link {
  display: inline-block;
  line-height: 0;
}

.site-footer-logo {
  display: block;
  max-height: 76px;
  max-width: min(380px, 92vw);
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-footer-tagline {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-style: italic;
  line-height: 1.45;
}

.site-footer-desc {
  margin: 14px 0 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer-social li {
  margin: 0;
  padding: 0;
}

.site-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #25d366;
  text-decoration: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease-out-premium),
    box-shadow 0.3s ease;
}

.site-footer-social-link--fb {
  color: #1877f2;
}

.site-footer-social-link:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: #7c3aed;
  transform: scale(1.1);
}

.site-footer-social-icon {
  display: block;
  flex-shrink: 0;
}

.site-footer-heading {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
}

.site-footer-heading-line {
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 12px;
  background: #7c3aed;
  border-radius: 1px;
}

.site-footer-nav {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.site-footer-quick-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s var(--ease-out-premium);
}

.site-footer-quick-link::before {
  content: "→";
  display: inline-block;
  width: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(-6px);
  color: #7c3aed;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  transition:
    opacity 0.3s ease,
    transform 0.3s var(--ease-out-premium),
    width 0.3s ease,
    margin 0.3s ease;
}

.site-footer-quick-link:hover {
  color: #7c3aed;
  transform: translateX(4px);
}

.site-footer-quick-link:hover::before {
  width: 1.1em;
  margin-right: 6px;
  opacity: 1;
  transform: translateX(0);
}

.site-footer-quick-link:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.7);
  outline-offset: 2px;
  border-radius: 2px;
}

.site-footer-wa-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer-wa-row-icon {
  flex-shrink: 0;
  color: #25d366;
}

.site-footer-wa-row:hover {
  color: #25d366;
}

.site-footer-wa-row:focus-visible {
  outline: 2px solid rgba(37, 211, 102, 0.7);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-footer-wa-note {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
}

.site-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  padding: 24px 0;
}

.site-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.site-footer-legal-link {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer-bottom .site-footer-legal-link:link,
.site-footer-bottom .site-footer-legal-link:visited {
  color: rgba(255, 255, 255, 0.35);
}

.site-footer-legal-link:hover {
  color: #7c3aed;
}

.site-footer-legal-sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: 13px;
  user-select: none;
}

/* Design credit sits in .site-footer-copy so it inherits the same size/color as the copyright line */
.site-footer-copy .site-footer-design-credit {
  font-weight: 400;
}

.site-footer-copy .site-footer-design-credit-link {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}

.site-footer-copy .site-footer-design-credit-link:link,
.site-footer-copy .site-footer-design-credit-link:visited {
  color: inherit;
}

.site-footer-copy .site-footer-design-credit-link:hover {
  color: #7c3aed;
}

@media (max-width: 960px) {
  .site-footer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer-col--brand {
    text-align: center;
  }

  .site-footer-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer-social {
    justify-content: center;
  }

  .site-footer-col--links .site-footer-heading-line,
  .site-footer-col--contact .site-footer-heading-line {
    margin-left: 0;
    margin-right: auto;
  }

  .site-footer-col--links .site-footer-heading,
  .site-footer-col--contact .site-footer-heading {
    text-align: left;
  }

  .site-footer-nav {
    align-items: flex-start;
  }

  .site-footer-quick-link {
    justify-content: flex-start;
    padding: 12px 8px;
    min-height: 44px;
  }

  .site-footer-col--contact {
    text-align: left;
  }

  .site-footer-wa-row {
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
  }

  .site-footer-cta-inner {
    justify-content: flex-start;
    padding-right: clamp(160px, 48vw, 240px);
    padding-left: 0;
  }

  .site-footer-cta-strip > .site-footer-cta-person-img {
    display: block;
    right: 12px;
    height: clamp(250px, 72vw, 360px);
  }

  .site-footer-cta-copy {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer-cta-btn {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .site-footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .site-footer-legal {
    justify-content: center;
  }
}

.page-anchor {
  height: 0;
  overflow: hidden;
  scroll-margin-top: calc(var(--hero-offset-desktop, 130px) + 12px);
  pointer-events: none;
}

/* Off-page service heroes: "View Packages" + Workar order (same URLs as index services tab) */
.service-page-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  margin-top: 28px;
}

.service-page-hero-cta-row > a[class$="-cta-pill"] {
  margin-top: 0;
}

.service-page-hero-order-workar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 50px;
  border: 2px solid #7c3aed;
  background: rgba(124, 58, 237, 0.12);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: filter 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
}

.service-page-hero-order-workar:hover {
  filter: brightness(1.08);
  background: rgba(124, 58, 237, 0.28);
  border-color: var(--color-accent-cta-hover, #9254f3);
}

/*
 * Service pages: hero primary CTA centered on small screens.
 * Use [class*="…"] not [$=…]: sections get e.g. "mb-hero is-loaded", defer gets "mb-hero-defer is-visible".
 */
@media (max-width: 900px) {
  main section[class*="-hero"] [class*="-hero-defer"] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* Nandla, Niche, etc.: CTA sits in *-hero-left without a *-hero-defer wrapper */
  main section[class*="-hero"] [class*="hero-left"] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* Hero pill badge (Off-Page SEO, etc.): keep hug-content outline, not full-bleed bar */
  main section[class*="-hero"] [class*="hero-left"] > span[class$="-badge"] {
    align-self: flex-start;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
  }

  main section[class*="-hero"] .service-page-hero-cta-row {
    align-self: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  main section[class*="-hero"] a[class$="-cta-pill"] {
    display: flex !important;
    justify-content: center;
    align-self: center;
    width: fit-content;
    max-width: min(100%, calc(100vw - 40px));
    margin-left: auto !important;
    margin-right: auto !important;
  }

  main section[class*="-hero"] .service-page-hero-cta-row > a[class$="-cta-pill"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    align-self: auto;
  }
}
