:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-panel: #0e0e13;
  --bg-glass: rgba(20, 20, 33, 0.65);
  --text-primary: #f3f5ff;
  --text-secondary: #adb0c6;
  --accent: #5bf3b5;
  --accent-2: #ff6a3d;
  --border: rgba(91, 243, 181, 0.25);
  --radius: 18px;
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

/* ========== Base Styles ========== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Zalando Sans Expanded', 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, rgba(22, 95, 74, 0.22), rgba(0, 0, 0, 0.85) 58%),
    radial-gradient(circle at 10% 20%, rgba(122, 44, 26, 0.2), rgba(0, 0, 0, 0.82) 48%),
    var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
}

body.has-custom-cursor {
  cursor: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 10% auto auto 60%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(91, 243, 181, 0.3), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent);
}

/* ========== Layout Shell ========== */

.page-grid {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px 140px;
}

main {
  margin-top: 0;
}

/* ========== Header ========== */

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(14, 14, 19, 0.9), rgba(10, 12, 20, 0.4));
  box-shadow: var(--shadow);
}

.site-header {
  position: relative;
  height: 85px;
  z-index: 2;
}

.site-header__logo {
  display: block;
  height: 18px;
  width: auto;
  object-fit: contain;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.site-header__cta {
  font-size: 0.95rem;
}

/* ========== Hero ========== */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 48px 80px;
  width: 100vw;
  margin-top: -40px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: transparent;
  /* background-color: red; */
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 45px 45px, 45px 45px;
  background-repeat: repeat;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

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

.hero__title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin: 12px 0 18px;
}

.hero__title-accent {
  display: inline-block;
  position: relative;
  background: linear-gradient(90deg, #c6edff 0%, #8ff0d1 40%, #5effa1 70%, #4ee0ff 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  filter: blur(6px);
  will-change: opacity, background-size, letter-spacing, filter, text-shadow;
  animation: heroWordFadeBurst 1.1s cubic-bezier(0.23, 1, 0.32, 1) 0.18s forwards;
}

@keyframes heroWordFadeBurst {
  0% {
    opacity: 0;
    background-size: 0% 100%;
    letter-spacing: -0.04em;
    text-shadow: none;
    filter: blur(8px);
  }
  55% {
    opacity: 1;
    background-size: 100% 100%;
    letter-spacing: 0.03em;
    text-shadow: 0 0 18px rgba(198, 237, 255, 0.5);
    filter: blur(1.6px);
  }
  100% {
    opacity: 1;
    background-size: 100% 100%;
    letter-spacing: 0;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title-accent {
    animation: none;
    opacity: 1;
    letter-spacing: 0;
    background-size: 100% 100%;
    filter: none;
  }
}

.hero__video-placeholder {
  width: clamp(320px, 50vw, 720px);
  margin: 32px auto 28px;
  display: flex;
  justify-content: center;
}

.hero__video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) * 1.2);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 0 30px rgba(255, 255, 255, 0.02);
  background: #06080f;
}

.hero__video-guard {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(4, 10, 18, 0.35), rgba(4, 10, 18, 0.58));
  color: var(--text-primary);
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-align: center;
  touch-action: pan-y;
}

.hero__video-play {
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.hero__video-play-icon {
  font-size: 1rem;
}

.hero__video-hint {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero__video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
}

.hero__video-embed.is-interactive .hero__video-guard {
  opacity: 0;
  pointer-events: none;
}

.hero__video-embed.is-interactive iframe {
  pointer-events: auto;
}

.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 32px;
  padding: 8px 30px;
  flex-wrap: wrap;
  border: #FFF;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #00000013;
  margin: 20px auto;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero__logos {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 0;
}

.hero__logo {
  height: 22px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
}

.hero__chip {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(91, 243, 182, 0.057);
  border: 1px solid rgba(91, 243, 182, 0.075);
  font-weight: 500;
  color: var(--text-primary);
}

.hero__stars {
  color: var(--accent);
  letter-spacing: 4px;
}

.hero__subhead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========== Flow Animation Section ========== */

.flow-visual {
  position: relative;
  width: 100vw;
  margin: -60px calc(50% - 50vw) 0;
  padding: 40px 0 140px;
  overflow: hidden;
}

.flow-visual__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.flow-visual__layout {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding: 0 clamp(20px, 4vw, 40px);
}

.flow-visual__animation {
  position: relative;
  width: 100%;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(24px, 4vw, 48px);
  background: transparent;
}

.flow-visual__boxes {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(490px, 12vw, 220px);
  padding: clamp(24px, 5vw, 80px) 0;
}

#line-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.component-box {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 140px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid #333;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-out;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.component-box svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: #555;
  stroke-width: 0.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s ease-out;
}

.component-label {
  margin-top: 15px;
  color: #555;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.4s ease-out;
}

.component-box.active {
  border-color: var(--theme-color, #ffffff);
  box-shadow: 0 0 40px var(--theme-shadow-strong, rgba(255, 255, 255, 0.2)),
    inset 0 0 20px var(--theme-shadow-weak, rgba(255, 255, 255, 0.1));
  transform: scale(1.02);
}

.component-box.active svg {
  stroke: var(--theme-color, #ffffff);
}

.component-box.active .component-label {
  color: var(--theme-color, #ffffff);
  text-shadow: 0 0 15px var(--theme-text-glow, rgba(255, 255, 255, 0.6));
}

.flow-detail-card {
  width: 100%;
  border-radius: calc(var(--radius) * 1.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 18, 0.75);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  padding: clamp(20px, 3vw, 36px);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 1;
  transform: translateY(0);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  align-self: stretch;
}

.flow-detail-card.is-active {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(91, 243, 181, 0.2);
}

.flow-detail-card__cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) * 1.2);
  background-image: linear-gradient(135deg, #0a1c12, #0df9a0);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: visible;
}

.flow-detail-card__cover--ai-video {
  overflow: hidden;
  position: relative;
}

.flow-detail-card__cover--results {
  background: #0a0c14;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.12);
}

.ai-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) brightness(1.02);
}

.ai-video__overlay {
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 40% 30%, rgba(0, 255, 255, 0.2), rgba(0, 0, 0, 0.7)); */
  mix-blend-mode: screen;
  pointer-events: none;
}

.flow-detail-card__subtitle {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent);
  margin: 0 0 8px;
}

.flow-detail-card__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 12px;
}

.flow-detail-card__body {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.flow-detail-list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

/* ========== Client Logo Marquee ========== */

.client-logos {
  width: 80vw;
  margin: 0 calc(50% - 40vw);
  padding: 12px 0 130px;
}

.client-logos__subhead {
  max-width: 900px;
  margin: 0 auto 12px;
  padding: 0 20px;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.6;
}

.client-logos__viewport {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  background: transparent;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.client-logos__viewport::before,
.client-logos__viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  z-index: 2;
}

.client-logos__viewport::before {
  left: 0;
  background: none;
}

.client-logos__viewport::after {
  right: 0;
  background: none;
}

.client-logos__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.client-logos__viewport:hover .client-logos__track {
  animation-play-state: paused;
}

.client-logos__image {
  flex: 0 0 auto;
  display: block;
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  padding: 12px 18px;
}

/* ========== Email Marquee ========== */

.email-marquee {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 0 80px;
  overflow: hidden;
}

.email-marquee__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.email-marquee__title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  letter-spacing: 0.02em;
  margin: 0;
}

.email-marquee__viewport {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.2);
  padding: 18px;
  background: linear-gradient(135deg, rgba(9, 12, 22, 0.9), rgba(15, 18, 30, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45), inset 0 0 40px rgba(255, 255, 255, 0.02);
}

.email-marquee__viewport::before,
.email-marquee__viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  z-index: 2;
}

.email-marquee__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 80%);
}

.email-marquee__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 80%);
}

.email-marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  align-items: flex-start;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.email-marquee__image {
  flex: 0 0 auto;
  width: 180px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  background: #0a0a0f;
}

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

/* ========== Service Tiers Section ========== */

.service-tiers {
  margin: 10px 0;
  padding: 0 20px;
  max-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.service-tiers__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.service-tiers__header {
  text-align: center;
  margin-bottom: 60px;
}

.service-tiers__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  margin: 16px 0 20px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-tiers__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.service-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.tier-card {
  position: relative;
  background: linear-gradient(135deg, rgba(14, 14, 19, 0.95), rgba(10, 12, 20, 0.7));
  border: 1px solid rgba(91, 243, 181, 0.15);
  border-radius: calc(var(--radius) * 1.5);
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tier-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) * 1.5);
  padding: 1px;
  background: linear-gradient(135deg, rgba(91, 243, 181, 0.3), transparent, rgba(255, 106, 61, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tier-card:hover {
  transform: translateY(-8px);
  border-color: rgba(91, 243, 181, 0.4);
  box-shadow: 0 20px 60px rgba(91, 243, 181, 0.15), 0 0 80px rgba(91, 243, 181, 0.08);
}

.tier-card:hover::before {
  opacity: 1;
}

.tier-card--featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(91, 243, 181, 0.08), rgba(14, 14, 19, 0.95));
}

.tier-card--featured::before {
  background: linear-gradient(135deg, var(--accent), rgba(91, 243, 181, 0.5), var(--accent-2));
  opacity: 0.6;
}

.tier-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent), #3dd89e);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.tier-card__decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 280px;
  height: 280px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tier-card:hover .tier-card__decoration {
  opacity: 0.25;
  transform: scale(1.1);
}

.tier-card__decoration--green {
  background: radial-gradient(circle, rgba(91, 243, 181, 0.6), transparent 70%);
}

.tier-card__decoration--green-bright {
  background: radial-gradient(circle, rgba(91, 243, 181, 0.8), transparent 70%);
}

.tier-card__decoration--orange {
  background: radial-gradient(circle, rgba(255, 106, 61, 0.7), transparent 70%);
}

.tier-card__content {
  position: relative;
  z-index: 1;
}

.tier-card__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tier-card__name {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text-primary);
}

.tier-card__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.tier-card__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tier-card__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tier-card__feature-value {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.tier-card__feature-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.tier-card__pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 20px;
  background: rgba(91, 243, 181, 0.05);
  border: 1px solid rgba(91, 243, 181, 0.15);
  border-radius: var(--radius);
}

.tier-card__icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.tier-card__pricing-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ========== Team Section ========== */

.team-section {
  margin: 80px 0;
  padding: 0 20px;
}

.team-title {
  margin: 0 0 32px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  color: var(--text-primary);
}

.team-grid {
  display: flex;
  justify-content: flex-start;
  gap: 48px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 20px 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.person-card {
  background: linear-gradient(180deg, rgba(11, 11, 20, 0.6) 0%, rgba(12, 12, 15, 0.6) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: 21px;
  padding: 24px 28px;
  display: inline-flex;
  gap: 35px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 0 0 0.5px rgba(255, 255, 255, 0.15) inset,
    0 8px 32px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  min-width: fit-content;
}

.person-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.25) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.4;
  z-index: 0;
}

.person-card__image-wrapper {
  flex-shrink: 0;
  position: relative;
}

.person-card__image {
  width: 210px;
  height: 210px;
  border-radius: 5000px;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.person-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 5000px;
  background: linear-gradient(135deg, rgba(92, 92, 92, 0.26) 0%, rgba(255, 255, 255, 0.26) 100%);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  z-index: 0;
  transition: all 0.2s ease-out;
}

.person-card__image::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 5000px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.5) 15%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 85%,
    rgba(255, 255, 255, 0.4) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.6;
  z-index: 2;
}

.person-card__image img {
  width: 100%;
  height: 100%;
  border-radius: 5000px;
  position: relative;
  z-index: 5;
  object-fit: cover;
}

.person-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  gap: 14px;
}

.person-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.person-card__name {
  font-family: 'Plus Jakarta Sans', 'Space Grotesk', sans-serif;
  font-size: 26.1px;
  font-weight: 500;
  margin: 0;
  color: #ffffff;
  word-wrap: break-word;
}

.person-card__title {
  font-family: 'Plus Jakarta Sans', 'Space Grotesk', sans-serif;
  font-size: 18.2px;
  font-weight: 300;
  margin: 0;
  color: #ffffff;
  word-wrap: break-word;
}

.person-card__linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 7px 55px;
  border-radius: 1909px;
  height: 41px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', 'Space Grotesk', sans-serif;
  font-size: 14.25px;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  word-wrap: break-word;
  transition: all 0.2s ease-out;
  cursor: pointer;
  text-shadow: 0px 2px 12px rgba(0, 0, 0, 0.4);
}

.person-card__linkedin::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1909px;
  background: rgba(0, 172, 46, 0.2);
  backdrop-filter: blur(8px) saturate(130%);
  -webkit-backdrop-filter: blur(8px) saturate(130%);
  z-index: -1;
  transition: all 0.2s ease-out;
  box-shadow: 
    0 0 0 0.5px rgba(0, 255, 100, 0.3) inset,
    0 1px 3px rgba(0, 255, 100, 0.15) inset,
    0 1px 4px rgba(0, 0, 0, 0.35);
}

.person-card__linkedin::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1909px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(0, 255, 100, 0.6) 15%,
    rgba(0, 255, 100, 0.2) 40%,
    rgba(255, 255, 255, 0.15) 60%,
    rgba(0, 255, 100, 0.3) 85%,
    rgba(255, 255, 255, 0.6) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.7;
  z-index: 0;
  transition: all 0.2s ease-out;
}

.person-card__linkedin:hover {
  transform: scale(1.02);
}

.person-card__linkedin:hover::before {
  background: rgba(0, 172, 46, 0.35);
  box-shadow: 
    0 0 0 0.5px rgba(0, 255, 100, 0.5) inset,
    0 1px 3px rgba(0, 255, 100, 0.25) inset,
    0 1px 4px rgba(0, 0, 0, 0.35);
}

.person-card__linkedin:hover::after {
  opacity: 0.9;
}

.person-card__linkedin:active {
  transform: scale(0.96);
}

.person-card__linkedin:active::before {
  background: rgba(0, 172, 46, 0.4);
}

.person-card__linkedin:active::after {
  opacity: 1;
}

/* ========== FAQ Section ========== */

.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-container {
  background: rgba(10, 12, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 1.2);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.faq-title {
  margin: 0 0 32px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  color: var(--text-primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(14, 14, 19, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.is-open {
  border-color: rgba(91, 243, 181, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  stroke: var(--accent);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 20px 18px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== Testimonials Section ========== */

.testimonials {
  max-width: 1200px;
  margin: 120px auto 160px;
  padding: 0 20px;
}

.testimonials__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonials__header {
  text-align: center;
}

.testimonials__eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0 0 12px;
}

.testimonials__title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-primary);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: rgba(10, 12, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 1.2);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 243, 181, 0.2);
}

.testimonial-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-card__title {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.testimonial-card__title strong {
  color: var(--text-primary);
  font-weight: 600;
}

.testimonial-card__stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  quotes: "\201C" "\201D";
}

.testimonial-card__quote::before {
  content: open-quote;
}

.testimonial-card__quote::after {
  content: close-quote;
}

.testimonial-card__video {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 aspect ratio for vertical video */
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}

.testimonial-card__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== Revenue Banner ========== */

.revenue-banner {
  margin: 32px auto 64px;
  padding: 0 20px;
}

.revenue-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 26px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(91, 243, 181, 0.12), rgba(91, 243, 181, 0.04));
  border: 1px solid rgba(91, 243, 181, 0.35);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25), inset 0 0 30px rgba(91, 243, 181, 0.05);
}

.revenue-banner__title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

/* ========== Cursor ========== */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0);
  mix-blend-mode: difference;
  backdrop-filter: invert(1) saturate(0.9) /*blur(2px) */;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1000;
}

.cursor.is-visible {
  opacity: 1;
}

/* ========== Results Section ========== */
.results {
  max-width: 1100px;
  margin: 80px auto 0;
  padding: 0 20px 80px;
}

.results__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: rgba(10, 12, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 1.2);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}

.results__eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0 0 12px;
}

.results__title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.results__copy {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.results__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.results__stat {
  background: rgba(14, 14, 19, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: calc(var(--radius) * 1.1);
  padding: 16px;
  text-align: center;
}

.results__stat-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.results__stat-label {
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.flow-detail-card__graphic {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  max-width: none;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.flow-detail-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 23%;
  display: block;
  border-radius: inherit;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
}

/* ========== Buttons ========== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button--primary {
  background: var(--accent);
  color: #04140d;
  box-shadow: 0 0 25px rgba(91, 243, 181, 0.3);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

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

/* ========== Footer ========== */

.site-footer {
  margin-top: 60px;
}

.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

/* ========== Responsive Tweaks ========== */

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    gap: 12px;
  }

  .site-header {
    margin-bottom: 6px;
  }

  .site-header__nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    margin-top: 10px;
    padding: 64px 24px 10px;
  }

  .hero__badges {
    padding: 8px 16px;
    gap: 14px;
    flex-wrap: nowrap;
  }

  .hero__logos {
    gap: 14px;
  }

  .hero__logo {
    height: 18px;
  }

  .hero__chip {
    padding: 6px 12px;
    font-size: 0.88rem;
  }

  .flow-visual {
    padding: 20px 0 80px;
  }

  .flow-visual__layout {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 28px;
    display: flex;
    flex-direction: column;
  }

  .flow-visual__animation {
    min-height: 520px;
    /* width: 100%; */
    padding: 24px 20px 48px;
    justify-content: center;
  }

  .flow-visual__boxes {
    flex-direction: column;
    gap: 200px;
    padding: 0;
    align-items: center;
  }

  .flow-detail-card {
    max-width: 100%;
    transform: translateY(0);
  }

  .client-logos {
    padding: 8px 0 90px;
  }

  .client-logos__viewport {
    padding: 12px;
  }

  .client-logos__track {
    gap: 22px;
  }

  .client-logos__image {
    height: 48px;
    padding: 10px 14px;
  }

  .email-marquee {
    padding: 20px 0 60px;
  }

  .email-marquee__viewport {
    padding: 12px;
  }

  .email-marquee__image {
    width: 180px;
  }

  .faq-section {
    margin: 40px auto;
  }

  .faq-container {
    padding: 24px 20px;
  }

  .faq-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }

  .team-section {
    margin: 40px auto;
  }

  .team-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }

  .person-card {
    flex-direction: column;
    gap: 24px;
    padding: 24px 20px;
  }

  .person-card__image {
    width: 200px;
    height: 200px;
    padding: 12px;
  }

  .person-card__content {
    min-height: auto;
    width: 100%;
  }

  .person-card__name {
    font-size: 28px;
    text-align: center;
  }

  .person-card__title {
    font-size: 18px;
    text-align: center;
  }

  .person-card__linkedin {
    padding: 12px 24px;
    font-size: 16px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }

  .testimonials {
    margin: 40px auto;
  }

  .testimonials__inner {
    gap: 32px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-card__quote {
    font-size: 1.15rem;
  }

  .cursor {
    display: none;
  }

  .results__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .service-tiers {
    margin: 60px 0;
  }

  .service-tiers__header {
    margin-bottom: 40px;
  }

  .service-tiers__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tier-card {
    padding: 32px 24px;
  }

  .tier-card__badge {
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .tier-card__decoration {
    width: 200px;
    height: 200px;
  }

  .tier-card__feature-value {
    font-size: 1.8rem;
  }
}

/* ========== Pricing Table Styles ========== */

.pricing-table {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: #121212;
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #5bf3b5, #FFFFFF, #5bf3b5);
  border-radius: 16px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: #5bf3b5;
  background: linear-gradient(135deg, #000 0%, #333 100%);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #5bf3b5;
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-title {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.plan-subtitle {
  font-size: 16px;
  color: #CCCCCC;
  margin-bottom: 30px;
  line-height: 1.4;
}

.plan-price {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.plan-price .currency {
  font-size: 24px;
  vertical-align: top;
}

.plan-price .period {
  font-size: 18px;
  font-weight: 400;
  color: #CCCCCC;
}

.custom-price {
  font-size: 36px;
  font-weight: 700;
  color: #FFF;
}

.feature-list {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.feature-list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  line-height: 1.4;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-name {
  flex: 1;
  color: #FFFFFF;
  font-weight: 500;
}

.feature-value {
  color: #5bf3b5;
  font-weight: 600;
  margin-left: 12px;
}

.feature-unavailable {
  color: #888888;
}

.checkmark {
  color: #5bf3b5;
  font-weight: bold;
  margin-right: 12px;
}

.cross {
  color: #888888;
  margin-right: 12px;
}

.cta-button {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: #5bf3b5;
  color: #000000;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #5bf3b5;
  margin-top: auto;
}

.cta-button:hover {
  background: transparent;
  color: #5bf3b5;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-button.secondary:hover {
  background: #FFFFFF;
  color: #111111;
}

@media (max-width: 768px) {
  .pricing-table {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 30px 24px;
  }

  .plan-price {
    font-size: 36px;
  }
}
