/* Intentosphere â€” Figma Home (17:176) */
:root {
  --bg: #000;
  --bg-elevated: #0a0a0a;
  --bg-card: #111;
  --bg-footer: #17181c;
  --text: #fff;
  --text-muted: #888;
  --text-soft: #a1a1a1;
  --text-dim: #787c91;
  --text-body: #858386;
  --border: #191919;
  --border-soft: rgba(255, 255, 255, 0.14);
  --border-card: rgba(255, 255, 255, 0.06);
  --green: #0ccf71;
  --green-dark: #008a44;
  --gold: #e6c74f;
  --max: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Josefin Sans", "Inter", sans-serif;
  --font-price: "Roboto", "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Website AI embed lives on this dark landing page — keep widget controls readable */
.ai-site-widget,
.ai-site-widget button:not(.primary):not(.ai-site-send):not(.ai-site-close-btn.primary) {
  color: #0f172a;
}

.ai-site-widget .ai-site-close-btn {
  color: #0f172a !important;
  background: #fff !important;
  border: 1px solid #d0d5dd !important;
}

.ai-site-widget .ai-site-close-btn.primary {
  color: #fff !important;
  background: #00a3e0 !important;
  border-color: #00a3e0 !important;
}

.container {
  width: min(100% - 2.5rem, 1320px);
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 27px;
  height: 29px;
  object-fit: contain;
}

.brand__logo--full {
  width: auto;
  height: 42px;
  max-width: min(220px, 46vw);
}

.brand__logo,
.footer__brand img {
  overflow: visible;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-size: 14px;
  color: var(--text-soft);
  transition: color 0.2s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link--muted {
  color: #888;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  overflow: hidden;
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.btn__content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  translate: 0 0;
  transition: translate 0.35s linear;
}

.btn:hover .btn__content {
  translate: -19px -5px;
}

.btn:active .btn__content {
  translate: 0 0;
}

.btn--ghost {
  height: 32px;
  padding: 0 12px;
  background: var(--bg-elevated);
  color: #ededed;
  border-radius: 6px;
  box-shadow: 0 0 0 1px var(--border-soft);
  font-size: 14px;
}

.btn--primary {
  height: 32px;
  padding: 0 12px;
  background: #fff;
  color: #000;
  border-radius: 6px;
  box-shadow: 0 0 0 1px var(--border-soft);
  font-size: 14px;
}

.btn--hero-primary {
  height: 48px;
  padding: 0 28px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  min-width: 184px;
}

.btn--hero-primary img {
  width: 36px;
  height: 36px;
}

@property --demo-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.btn--demo {
  position: relative;
  isolation: isolate;
  height: 48px;
  padding: 0 24px;
  background: var(--bg-elevated);
  color: #ededed;
  border: 1.5px solid #454545;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  min-width: 128px;
}

.hero .btn--demo {
  overflow: hidden;
}

.hero .btn--demo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--demo-angle),
    transparent 0%,
    #8900c4 12%,
    #0a1dca 28%,
    #4db0ff 40%,
    transparent 52%
  );
  box-shadow: 0 0 16px rgba(10, 29, 202, 0.45);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.hero .btn--demo .btn__content {
  position: relative;
  z-index: 1;
}

.hero .btn--demo:hover {
  border-color: transparent;
}

.hero .btn--demo:hover::before {
  opacity: 1;
  animation: demo-border-spin 1.4s linear infinite;
}

.hero .btn--demo:hover .btn__content {
  translate: 0;
}

@keyframes demo-border-spin {
  to {
    --demo-angle: 360deg;
  }
}

.btn--cta-primary {
  padding: 17px 40px;
  background: #fff;
  color: #000;
  border-radius: 4px;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.btn--cta-demo {
  height: 58px;
  min-width: 166px;
  background: var(--bg-elevated);
  color: #ededed;
  border: 1.5px solid #454545;
  border-radius: 8px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  border: 1px solid #333;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  transition: 0.25s;
}

/* ---------- Hero ---------- */
@property --spot-x {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 72%;
}

@property --spot-y {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 58%;
}

.hero {
  --spot-x: 72%;
  --spot-y: 58%;
  position: relative;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  animation: hero-spot-roam 16s ease-in-out infinite;
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__folds {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    #000 0,
    #070707 10px,
    #141414 36px,
    #050505 78px,
    #000 110px
  );
}

.hero__folds--lit {
  background: repeating-linear-gradient(
    90deg,
    #000814 0,
    #062a7a 12px,
    #1a6fff 28px,
    #4db0ff 42px,
    #0a1dca 70px,
    #020617 110px
  );
  -webkit-mask-image: radial-gradient(
    560px circle at var(--spot-x) var(--spot-y),
    #000 0%,
    rgba(0, 0, 0, 0.72) 32%,
    rgba(0, 0, 0, 0.2) 52%,
    transparent 70%
  );
  mask-image: radial-gradient(
    560px circle at var(--spot-x) var(--spot-y),
    #000 0%,
    rgba(0, 0, 0, 0.72) 32%,
    rgba(0, 0, 0, 0.2) 52%,
    transparent 70%
  );
}

.hero__spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px circle at var(--spot-x) var(--spot-y),
    rgba(77, 176, 255, 0.42) 0%,
    rgba(10, 29, 202, 0.22) 34%,
    transparent 68%
  );
  mix-blend-mode: screen;
  filter: blur(6px);
}

@keyframes hero-spot-roam {
  0% {
    --spot-x: 72%;
    --spot-y: 58%;
  }
  18% {
    --spot-x: 18%;
    --spot-y: 36%;
  }
  36% {
    --spot-x: 82%;
    --spot-y: 24%;
  }
  54% {
    --spot-x: 28%;
    --spot-y: 78%;
  }
  72% {
    --spot-x: 78%;
    --spot-y: 70%;
  }
  86% {
    --spot-x: 42%;
    --spot-y: 42%;
  }
  100% {
    --spot-x: 72%;
    --spot-y: 58%;
  }
}

.hero__glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  translate: 0 0;
}

.hero__glow-orb--1 {
  width: 300px;
  height: 300px;
  right: -40px;
  top: 250px;
  background: radial-gradient(circle, rgba(80, 120, 255, 0.55), transparent 70%);
}

.hero__glow-orb--2 {
  width: 538px;
  height: 538px;
  left: -98px;
  top: 330px;
  background: radial-gradient(circle, rgba(120, 60, 255, 0.4), transparent 70%);
}

.hero__glow-orb--3 {
  width: 538px;
  height: 538px;
  left: 27%;
  top: 500px;
  background: radial-gradient(circle, rgba(60, 180, 255, 0.35), transparent 70%);
}

.hero__glow-orb--4 {
  width: 450px;
  height: 450px;
  right: 0;
  top: 480px;
  background: radial-gradient(circle, rgba(160, 40, 220, 0.35), transparent 70%);
}

.hero.is-animated .hero__glow-orb--1 {
  animation: kf_17_37_translate_0 1.5s linear forwards;
}

.hero.is-animated .hero__glow-orb--2 {
  animation: kf_17_38_translate_0 1.5s linear forwards;
}

.hero.is-animated .hero__glow-orb--3 {
  animation: kf_17_39_translate_0 1.5s linear forwards;
}

.hero.is-animated .hero__glow-orb--4 {
  animation: kf_17_40_translate_0 1.5s linear forwards;
}

.hero__core {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  background-color: #8900c4;
  filter: blur(28px);
  opacity: 0.85;
  box-shadow: 0 0 40px 0 #8900c4, 0 0 50px 0 #8900c4 inset;
  translate: 0 0;
}

.hero.is-animated .hero__core {
  animation:
    kf_17_125_background-color_0 1s linear forwards,
    kf_17_125_translate_0 1s linear forwards,
    kf_17_123_box-shadow_0 1s linear forwards;
}

.hero__stripes {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0.22;
}

.hero__stripes span {
  background: linear-gradient(
    90deg,
    rgba(217, 217, 217, 0),
    rgba(0, 0, 0, 0.7) 76%,
    #fff
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 957px;
}

.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 28px;
  color: #cfcfcf;
  max-width: 871px;
  margin: 0 auto 56px;
}

.hero__ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Figma Home motion â€” node 17:176 (exact keyframe values) */
@keyframes kf_17_39_translate_0 {
  0% {
    animation-timing-function: ease-in-out;
    translate: 0 0;
  }
  100% {
    translate: -29px -651px;
  }
}

@keyframes kf_17_38_translate_0 {
  0% {
    animation-timing-function: ease-in-out;
    translate: 0 0;
  }
  100% {
    translate: 1000px -596px;
  }
}

@keyframes kf_17_37_translate_0 {
  0% {
    animation-timing-function: ease-in-out;
    translate: 0 0;
  }
  100% {
    translate: -1218px 89px;
  }
}

@keyframes kf_17_40_translate_0 {
  0% {
    animation-timing-function: ease-in-out;
    translate: 0 0;
  }
  100% {
    translate: -1051px -601px;
  }
}

@keyframes kf_17_125_background-color_0 {
  0% {
    animation-timing-function: linear;
    background-color: #8900c4;
  }
  100% {
    background-color: #0a1dca;
  }
}

@keyframes kf_17_125_translate_0 {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 100px 154px;
  }
}

@keyframes kf_17_123_box-shadow_0 {
  0% {
    box-shadow: 0 0 40px 0 #8900c4, 0 0 50px 0 #8900c4 inset;
  }
  100% {
    box-shadow: 0 0 40px 0 #0a1dca, 0 0 50px 0 #0a1dca inset;
  }
}

@keyframes kf_17_150_height_0 {
  0% {
    height: 29px;
  }
  100% {
    height: 1237px;
  }
}

@keyframes kf_17_153_height_0 {
  0% {
    height: 208px;
  }
  100% {
    height: 285px;
  }
}

@keyframes kf_17_153_width_0 {
  0% {
    width: 208px;
  }
  100% {
    width: 285px;
  }
}

@keyframes kf_17_153_translate_0 {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -77px -77px;
  }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ---------- Figma-exact sections 2 & 3 ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.figma-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  background: #000;
}

.figma-section--grow {
  padding: 24px 20px 0;
}

.grow-section {
  padding: 24px 20px 8px;
  background: #000;
}

.grow-section__frame {
  position: relative;
  width: min(100%, 1319px);
  margin: 0 auto;
  padding: 32px 28px 28px;
  border: 1px dashed #494949;
  border-radius: 29px;
  overflow: hidden;
}

.grow-section__glow {
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 70%;
  height: 55%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(20, 80, 220, 0.22), transparent 70%);
  pointer-events: none;
}

.grow-section__title {
  position: relative;
  text-align: center;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.grow-connect {
  position: relative;
  width: min(100%, 1133px);
  margin: 0 auto;
}

.grow-connect__pills {
  position: relative;
  height: clamp(36px, 5vw, 56px);
}

.grow-pill {
  position: absolute;
  left: var(--x);
  top: 0;
  width: max-content;
  min-width: 11.9%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(14px, 1.6vw, 28px);
  box-sizing: border-box;
  transform: translateX(-50%);
  border-radius: 56px;
  background: #0a0a0a;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 1px 2px rgba(0, 0, 0, 0.16);
  font-size: clamp(11px, 1.7vw, 24px);
  font-weight: 600;
  white-space: nowrap;
}

.grow-connect__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  margin-top: -2px;
}

.grow-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grow-drop {
  opacity: 0;
  pointer-events: none;
}

.grow-section__brand {
  position: relative;
  z-index: 1;
  width: min(303px, 72%);
  height: clamp(44px, 5vw, 56px);
  margin: -6px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #ededed;
  color: #0a0a0a;
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

@media (max-width: 700px) {
  .grow-section__frame {
    padding: 24px 14px 20px;
  }

  .grow-pill {
    min-width: 0;
    width: max-content;
    padding: 0 8px;
    font-size: 9px;
  }
}

.figma-section--flow {
  padding: 0 20px 40px;
  margin-top: -4px;
  overflow: hidden;
}

.flow-stage {
  position: relative;
  width: min(100%, 1260px);
}

/* Even circular glow (equal radius all sides) â€” behind art / nodes / pipe */
.flow-orb {
  position: absolute;
  left: 21%;
  top: 19%;
  width: 58%;
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  overflow: hidden;
  --orb-c: #ff0000;
  background:
    radial-gradient(
      circle at 66% 34%,
      var(--orb-c) 0%,
      color-mix(in srgb, var(--orb-c) 55%, transparent) 32%,
      transparent 58%
    ),
    radial-gradient(
      circle at 50% 50%,
      transparent 52%,
      color-mix(in srgb, var(--orb-c) 55%, transparent) 68%,
      color-mix(in srgb, var(--orb-c) 25%, transparent) 78%,
      transparent 88%
    );
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--orb-c) 70%, transparent),
    0 0 42px 4px color-mix(in srgb, var(--orb-c) 45%, transparent);
  filter: blur(4px);
  opacity: 0.95;
  transform-origin: center center;
  animation: flow-orb-cycle 7s linear infinite;
}

@property --orb-c {
  syntax: "<color>";
  inherits: true;
  initial-value: #ff0000;
}

/* Black center disc â€” above glow, below SVGs, hides mid overlap */
.flow-orb-core {
  position: absolute;
  left: 28.13%;
  top: 26.22%;
  width: 44.38%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #000;
  pointer-events: none;
  z-index: 1;
}

/* Continuous motion â€” no pause; color + spin keep moving smoothly */
@keyframes flow-orb-cycle {
  0% {
    --orb-c: #ff0000;
    transform: rotate(0deg);
  }
  14.285% {
    --orb-c: #4617e3;
    transform: rotate(51.428deg);
  }
  28.57% {
    --orb-c: #54a550;
    transform: rotate(102.857deg);
  }
  42.855% {
    --orb-c: #ff6600;
    transform: rotate(154.285deg);
  }
  57.14% {
    --orb-c: #ad0aaa;
    transform: rotate(205.714deg);
  }
  71.425% {
    --orb-c: #f6ff00;
    transform: rotate(257.142deg);
  }
  85.71% {
    --orb-c: #fffb00;
    transform: rotate(308.571deg);
  }
  100% {
    --orb-c: #ff0000;
    transform: rotate(360deg);
  }
}

.flow-nodes {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.flow-node {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.29%;
  aspect-ratio: 164.43 / 166.59;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  background: #000;
  box-sizing: border-box;
}

.flow-node em {
  font-style: normal;
  font-family: var(--font);
  font-size: clamp(9px, 1.05vw, 13px);
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  max-width: 86%;
}

.flow-node--1 {
  left: 21.07%;
  top: 43.19%;
}
.flow-node--2 {
  left: 35.11%;
  top: 43.19%;
}
.flow-node--3 {
  left: 49.15%;
  top: 43.19%;
}
.flow-node--4 {
  left: 63.2%;
  top: 43.19%;
}

.flow-dots {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.flow-dot {
  position: absolute;
  width: 1.77%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 4px #1e6bff;
}

.flow-dot--visitors {
  left: 47.92%;
  top: 7.74%;
}
.flow-dot--tracking {
  left: 7.03%;
  top: 39.91%;
}
.flow-dot--followups {
  left: 89.44%;
  top: 58.7%;
}
.flow-dot--conversions {
  left: 48%;
  top: 90.87%;
}

.flow-pipe {
  position: absolute;
  left: 7.68%;
  top: 0;
  width: 82.9%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}

.flow-path-color {
  pointer-events: none;
}

.figma-section--flow .figma-section__art {
  position: relative;
  z-index: 2;
  /* Black pixels drop out so the glow behind shows through */
  mix-blend-mode: screen;
}

.figma-section__art {
  width: min(100%, 1340px);
  height: auto;
  display: block;
}

.figma-section--flow .figma-section__art {
  width: min(100%, 1260px);
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero__glow-orb,
  .hero__core,
  .final-cta__glow,
  .btn__content,
  .hero .btn--demo::before,
  .flow-orb {
    animation: none !important;
    transition: none !important;
    --orb-c: #ad0aaa;
    transform: none;
  }

  .grow-line {
    stroke-dashoffset: 0 !important;
  }

  .grow-drop {
    opacity: 0 !important;
  }

  .hero .btn--demo:hover::before {
    opacity: 1;
  }

  .final-cta__glow {
    width: 285px;
    height: 285px;
    translate: -77px -77px;
  }

  .btn:hover .btn__content {
    translate: 0 0;
  }
}

/* ---------- Pillars ---------- */
.pillars {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

/*
  Figma Vector 17:254 in Main (1440Ã—2631):
  x=1262, y=0, w=1859, h=1813, transform scaleX(-1)
  absolute box -597 â†’ 1262 (visible inside frame: 0 â†’ 1262)
  Slightly reduced vs raw 129% so it doesnâ€™t cover copy
*/
.pillars__decor {
  position: absolute;
  left: 87.64%;
  top: 0;
  width: 112%;
  max-width: none;
  height: auto;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  transform: scaleX(-1);
  transform-origin: top left;
}

.pillars .container {
  position: relative;
  z-index: 1;
}

.pillars .feature-row,
.pillars .pillars__intro {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title--sm {
  font-size: clamp(26px, 3vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.section-lead {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-muted);
  max-width: 620px;
}

.section-lead--sm {
  font-size: 16px;
  line-height: 24px;
}

.pillars__intro {
  text-align: center;
  max-width: 675px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-row--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature-row--reverse .feature-row__visual {
  order: 2;
}

.feature-row--reverse .feature-row__copy {
  order: 1;
}

.feature-stack {
  position: relative;
  min-height: 480px;
}

.feature-stack__card {
  position: absolute;
  width: min(100%, 353px);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.5s var(--ease);
}

.feature-stack__card--back {
  left: 0;
  top: 0;
  z-index: 1;
}

.feature-stack__card--front {
  left: 28%;
  top: 18%;
  z-index: 2;
}

.feature-stack:hover .feature-stack__card--back {
  transform: translate(-6px, -6px) rotate(-1deg);
}

.feature-stack:hover .feature-stack__card--front {
  transform: translate(6px, 4px) rotate(1deg);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.feature-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.feature-item__icon {
  width: 46px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}

.feature-item__icon img {
  width: 22px;
  height: 20px;
  object-fit: contain;
}

.feature-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-muted);
}

/* ---------- Reports (Figma Group 174 + Audience â€” fixed canvas, scales) ---------- */
.reports {
  padding: 40px 0 32px;
  text-align: center;
  overflow: hidden;
}

.reports__intro {
  max-width: 646px;
  margin: 0 auto 48px;
}

.reports-stage-wrap {
  --rs-design-w: 1321;
  --rs-design-h: 590;
  width: min(100%, 1321px);
  margin: 0 auto;
  container-type: inline-size;
  height: calc(var(--rs-design-h) * 100cqw / var(--rs-design-w));
}

.reports-stage {
  position: relative;
  width: 1321px;
  height: 590px;
  transform-origin: top left;
  transform: scale(calc(100cqw / 1321));
  text-align: left;
}

/* Main panel â€” flex so stats + insights never overlap */
.reports-main {
  position: absolute;
  left: 240px;
  top: 0;
  width: 944px;
  height: 575px;
  background: #161616;
  border-radius: 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.reports-stats {
  display: grid;
  grid-template-columns: 261px 261px;
  flex: 0 0 auto;
  min-height: 100px;
  padding: 0;
}

.reports-stat {
  box-sizing: border-box;
  border: 1px solid #444;
  border-bottom: none;
  background: #000;
  border-radius: 16px 0 0 0;
  padding: 24px 20px 20px;
}

.reports-stat--page {
  background: #161616;
  border-radius: 0;
  border-left: none;
}

.reports-stat__label {
  display: block;
  font-size: 15px;
  line-height: 1;
  color: #888;
  margin-bottom: 12px;
}

.reports-stat__row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reports-stat .count-up {
  font-size: 32px;
  font-weight: 600;
  line-height: 34px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.reports-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4.5px 5px;
  border-radius: 2px;
  background: #142b17;
  color: #008a44;
  font-size: 8.5px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.reports-stage.is-animated .reports-badge {
  opacity: 1;
  transform: none;
  transition-delay: 0.55s;
}

.reports-insights {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  padding: 8px 40px 20px 26px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.reports-insights__title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
  flex: 0 0 auto;
}

.reports-chart {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 18px;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: 0;
}

.reports-chart__y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}

.reports-chart__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.reports-chart__svg {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  height: 0;
  min-height: 180px;
  overflow: visible;
}

.reports-chart__plot {
  transform-box: fill-box;
  transform-origin: center bottom;
  transform: scaleY(0);
  opacity: 0.35;
}

.reports-stage.is-animated .reports-chart__plot {
  animation: reports-chart-rise 1.35s var(--ease) forwards;
}

@keyframes reports-chart-rise {
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.reports-chart__line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.reports-stage.is-animated .reports-chart__line {
  animation: reports-line-draw 1.45s var(--ease) 0.05s forwards;
}

@keyframes reports-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.reports-chart__x {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  flex: 0 0 auto;
}

/* Real Experience Score card */
.reports-score {
  position: absolute;
  left: 0;
  top: 197px;
  width: 435px;
  height: 378px;
  background: #000;
  border: 1px solid #444;
  border-radius: 16px;
  padding: 26px 28px 18px;
  z-index: 3;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.reports-score__title {
  font-size: 27.4px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 14px;
  flex: 0 0 auto;
}

.reports-score__desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #87888c;
  max-width: 280px;
  margin: 0;
  flex: 0 0 auto;
}

.reports-gauge {
  position: relative;
  width: 100%;
  max-width: 318px;
  margin: auto auto 0;
  aspect-ratio: 318 / 170;
  flex: 0 0 auto;
  container-type: inline-size;
}

.reports-gauge__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.reports-gauge__fill {
  stroke-dasharray: 80 100;
  stroke-dashoffset: 80;
}

.reports-stage.is-animated .reports-gauge__fill {
  animation: reports-gauge-fill 1.4s var(--ease) 0.1s forwards;
}

@keyframes reports-gauge-fill {
  to {
    stroke-dashoffset: 0;
  }
}

.reports-gauge__value {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  font-size: clamp(28px, 14cqw, 46px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

/* Audience card */
.reports-audience {
  position: absolute;
  left: 901px;
  top: 40px;
  width: 420px;
  height: 246px;
  background: #000;
  border: 1px solid #888;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 40px;
  z-index: 4;
  box-sizing: border-box;
}

.reports-audience__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
  margin: 0 0 8px;
}

.reports-audience__desc {
  font-size: 16px;
  line-height: 24px;
  color: #7c839b;
  margin: 0;
  max-width: 303px;
}

/* Tablet+: keep scaled canvas. Phone: stack */
@media (max-width: 700px) {
  .reports {
    overflow: visible;
  }

  .reports-stage-wrap {
    height: auto;
    width: 100%;
  }

  .reports-stage {
    width: 100%;
    height: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .reports-main,
  .reports-score,
  .reports-audience {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }

  .reports-main {
    order: 1;
    min-height: 0;
    overflow: visible;
  }

  .reports-stats {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .reports-stat {
    padding: 16px 12px 18px;
    border-bottom: 1px solid #444;
    border-radius: 16px 0 0 0;
  }

  .reports-stat--page {
    border-radius: 0 16px 0 0;
    border-left: 1px solid #444;
    border-bottom: 1px solid #444;
  }

  .reports-stat__label {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .reports-stat .count-up {
    font-size: 22px;
    line-height: 1.1;
  }

  .reports-badge {
    font-size: 8px;
    padding: 3px 4px;
  }

  .reports-insights {
    padding: 16px 14px 18px;
  }

  .reports-insights__title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .reports-chart {
    grid-template-columns: 24px 1fr;
    gap: 8px;
    min-height: 200px;
  }

  .reports-chart__y,
  .reports-chart__x {
    font-size: 10px;
  }

  .reports-chart__svg {
    height: auto;
    min-height: 150px;
    flex: none;
    aspect-ratio: 784 / 246;
  }

  .reports-score {
    order: 2;
    padding: 22px 20px 16px;
    min-height: 0;
  }

  .reports-score__title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .reports-score__desc {
    font-size: 14px;
    line-height: 1.4;
    max-width: none;
  }

  .reports-gauge {
    width: min(280px, 88%);
    max-width: none;
    margin: 20px auto 0;
  }

  .reports-gauge__value {
    font-size: 36px;
    bottom: 6%;
  }

  .reports-audience {
    order: 3;
    height: auto;
    padding: 28px 20px;
  }

  .reports-audience__title {
    font-size: 18px;
  }

  .reports-audience__desc {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reports-stage.is-animated .reports-chart__plot,
  .reports-stage.is-animated .reports-chart__line,
  .reports-stage.is-animated .reports-gauge__fill {
    animation: none;
  }

  .reports-chart__plot {
    transform: none;
    opacity: 1;
  }

  .reports-chart__line {
    stroke-dashoffset: 0;
  }

  .reports-gauge__fill {
    stroke-dashoffset: 0;
  }

  .reports-badge {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Security ---------- */
.security {
  padding: 48px 0 80px;
  text-align: center;
}

.security__title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.security__lead {
  font-size: 18px;
  line-height: 28px;
  color: #cfcfcf;
  max-width: 871px;
  margin: 0 auto 56px;
}

.security__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.security-windows {
  position: relative;
  width: 100%;
  overflow: visible;
  isolation: isolate;
  /* Match connector height so path ends land on the card tops */
  padding-top: calc(60.2% * 98.93 / 481);
}

/* Soft ambient glows â€” always behind the cards + A/B badges */
.security-windows__glow {
  position: absolute;
  left: -6%;
  right: -6%;
  top: 22%;
  bottom: 8%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
  /* Keep glow off the A / B corner badges */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 78%,
    transparent 96%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 78%,
    transparent 96%
  );
}

.security-windows__glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.9;
}

.security-windows__glow-blob--blue {
  left: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: radial-gradient(
    ellipse at 40% 45%,
    rgba(43, 127, 190, 0.75) 0%,
    rgba(26, 90, 170, 0.35) 45%,
    rgba(26, 90, 170, 0) 70%
  );
}

.security-windows__glow-blob--magenta {
  left: 36%;
  top: 20%;
  width: 30%;
  height: 70%;
  background: radial-gradient(
    ellipse at center,
    rgba(185, 85, 110, 0.5) 0%,
    rgba(120, 40, 90, 0.22) 50%,
    rgba(120, 40, 90, 0) 72%
  );
}

.security-windows__glow-blob--teal {
  right: 0;
  left: auto;
  top: 0;
  width: 42%;
  height: 100%;
  background: radial-gradient(
    ellipse at 60% 45%,
    rgba(12, 151, 132, 0.72) 0%,
    rgba(8, 120, 110, 0.34) 45%,
    rgba(8, 120, 110, 0) 70%
  );
}

.security-windows__stage {
  position: relative;
  z-index: 1;
}

.security-windows__art {
  display: block;
  width: 100%;
  height: auto;
  /* Open the mid gap so glow shows between cards; keep full A / B badges */
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0%,
    #000 39.3%,
    transparent 40.6%,
    transparent 59.4%,
    #000 60.8%,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    #000 0%,
    #000 39.3%,
    transparent 40.6%,
    transparent 59.4%,
    #000 60.8%,
    #000 100%
  );
}

/* icon-14 / Vector 10 â€” connects at the top edges of both cards */
.security-connect {
  position: absolute;
  left: 19.85%;
  width: 60.2%;
  /* Pull up into the parent padding so ends sit on card tops */
  top: 0;
  margin-top: calc(-1 * 60.2% * 98.93 / 481);
  height: auto;
  aspect-ratio: 481 / 98.93;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}

.security-connect__line {
  fill: none;
  transition: none;
}

.security-connect__drop {
  opacity: 0;
  pointer-events: none;
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.security-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}

.security-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.security-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
}

.security-item__icon img {
  width: 18px;
  height: 18px;
}

.security-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.security-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ---------- Pricing — Figma Group 182 ---------- */
.pricing {
  padding: 80px 0 100px;
  overflow: visible;
}

.pricing__intro {
  text-align: center;
  max-width: 908px;
  margin: 0 auto 64px;
}

.pricing__intro h2 {
  font-family: var(--font-price);
  font-size: clamp(32px, 4vw, 49.5px);
  font-weight: 700;
  letter-spacing: -0.056em;
  line-height: 1.12;
  margin-bottom: 20px;
}

.pricing__intro p {
  font-family: var(--font-price);
  font-size: clamp(18px, 2vw, 27.6px);
  line-height: 1.3;
  color: #828386;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
  align-items: stretch;
  margin-bottom: 32px;
  padding-top: 24px;
}

.plan {
  position: relative;
  border-radius: 22px;
  border: 1.4px solid rgba(255, 255, 255, 0.06);
  background: #1b1b1b;
  padding: 44px 33px 36px;
  box-shadow: 0 5.5px 13.8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 800px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.plan--hobby {
  background:
    radial-gradient(ellipse 180px 150px at 22% 9%, rgba(12, 207, 113, 0.1), transparent 70%),
    #1b1b1b;
}

.plan--pro {
  overflow: visible;
  border-color: rgba(255, 255, 255, 0.04);
  background:
    radial-gradient(ellipse 280px 360px at 20% -5%, rgba(195, 140, 245, 0.22), transparent 55%),
    radial-gradient(ellipse 180px 140px at 22% 9%, rgba(195, 140, 245, 0.2), rgba(68, 55, 81, 0.12) 55%, transparent 75%),
    #1b1b1b;
}

.plan--economic {
  background:
    radial-gradient(ellipse 180px 150px at 22% 9%, rgba(92, 124, 230, 0.1), transparent 70%),
    #1b1b1b;
}

.plan__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px 0 6px;
  border-radius: 22px;
  border: 1.4px solid rgba(255, 255, 255, 0.06);
  width: fit-content;
  margin-bottom: 24px;
}

.plan__badge--hobby {
  background: linear-gradient(92deg, rgba(16, 141, 81, 0.2) 16%, rgba(23, 23, 23, 0.2) 63%);
}

.plan__badge--pro {
  background: linear-gradient(92deg, rgba(192, 112, 216, 0.3) 16%, rgba(23, 23, 23, 0.3) 63%);
}

.plan__badge--economic {
  background: linear-gradient(92deg, rgba(94, 106, 210, 0.2) 16%, rgba(23, 23, 23, 0.2) 63%);
}

.plan__badge img {
  width: 29px;
  height: 29px;
}

.plan__badge span {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #cecece;
}

.plan__popular {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 43px;
  min-width: 185px;
  padding: 0 18px;
  border-radius: 22px;
  border: 1.4px solid rgba(255, 255, 255, 0.04);
  box-shadow:
    0 5.5px 13.8px rgba(0, 0, 0, 0.3),
    inset 0 1.4px 0 rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(223deg, rgba(255, 255, 255, 0.2) 9%, transparent 38%),
    linear-gradient(38deg, rgba(195, 140, 245, 0.28) 12%, transparent 86%),
    rgba(27, 27, 27, 0.85);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.plan__price {
  font-family: var(--font-price);
  font-size: clamp(40px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.plan__desc {
  font-family: var(--font-price);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  min-height: 48px;
}

.plan__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 36px;
  border: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(222, 222, 222, 0.08));
  font-family: var(--font-price);
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 32px;
  transition: background 0.25s, color 0.25s;
}

.plan__cta:hover {
  background: rgba(255, 255, 255, 0.14);
}

.plan__cta--solid {
  background: #fff;
  border: 1.4px solid #fff;
  color: #09090a;
  font-weight: 700;
  box-shadow: 0 1.4px 2px rgba(0, 0, 0, 0.16);
}

.plan__cta--solid:hover {
  background: #e8e8e8;
  color: #09090a;
}

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.plan__features li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-price);
  font-size: 19px;
  color: #e2e8f0;
}

.plan--pro .plan__features li {
  color: #fff;
  gap: 17px;
}

.plan__features img {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
}

.plan--pro .plan__features img {
  width: 39px;
  height: 39px;
}

.plan-custom {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 0;
  border-radius: 22px;
  border: 2.8px solid rgba(255, 255, 255, 0.02);
  overflow: hidden;
  box-shadow: 0 5.5px 13.8px rgba(0, 0, 0, 0.3);
  background: #1b1b1b;
}

.plan-custom__main {
  padding: 48px 40px;
  border-right: 2.8px solid rgba(37, 37, 39, 0.2);
}

.plan-custom__main h3 {
  font-family: var(--font-price);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.036em;
  margin-bottom: 16px;
}

.plan-custom__main > p {
  font-family: var(--font-price);
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.25;
  max-width: 780px;
  margin-bottom: 28px;
}

.plan-custom__main h4 {
  font-family: var(--font-price);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.plan-custom__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  opacity: 0.9;
}

.plan-custom__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-price);
  font-size: clamp(16px, 1.5vw, 22px);
  color: #fff;
}

.plan-custom__list img {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
}

.plan-custom__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  background:
    radial-gradient(ellipse 280px 140px at 52% 12%, rgba(155, 126, 238, 0.22), transparent 70%),
    radial-gradient(ellipse 240px 220px at 50% 0%, rgba(27, 27, 27, 0), rgba(27, 27, 27, 0.8) 80%),
    rgba(12, 10, 11, 0.5);
}

.plan-custom__addon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 39px;
  padding: 0 22px;
  margin-bottom: 22px;
  border-radius: 22px;
  border: 1.4px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(92deg, rgba(130, 97, 226, 0.2) 16%, rgba(23, 23, 23, 0.2) 63%);
  font-family: var(--font-price);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #cecece;
}

.plan-custom__aside-price {
  font-family: var(--font);
  font-size: clamp(40px, 4vw, 55px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 22px;
}

.plan-custom__aside .plan__cta {
  width: 100%;
  max-width: 344px;
  margin-bottom: 14px;
  font-family: var(--font);
  font-weight: 500;
}

.plan-custom__hint {
  font-family: var(--font-price);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  padding: 80px 24px 100px;
  text-align: center;
  overflow: hidden;
}

.final-cta__glow {
  position: absolute;
  left: 50%;
  top: 130px;
  width: 208px;
  height: 208px;
  margin-left: -104px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 0, 196, 0.55), rgba(10, 29, 202, 0.2) 62%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
  translate: 0 0;
}

.final-cta.is-visible .final-cta__glow {
  animation:
    kf_17_153_height_0 1.5s linear forwards,
    kf_17_153_width_0 1.5s linear forwards,
    kf_17_153_translate_0 1.5s linear forwards;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 24px;
}

.final-cta p {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-body);
  margin-bottom: 40px;
}

.final-cta__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Get a Demo enquiry card */
.demo-enquiry {
  width: min(100%, 820px);
  margin: 0 auto;
  text-align: left;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.demo-enquiry__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.demo-enquiry__field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.demo-enquiry__row .demo-enquiry__field {
  margin-bottom: 0;
}

.demo-enquiry__field span {
  font-size: 13px;
  font-weight: 500;
  color: #cfcfcf;
}

.demo-enquiry__field span em {
  color: #0ccf71;
  font-style: normal;
}

.demo-enquiry__field input,
.demo-enquiry__field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: #0a0a0a;
  color: #fff;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-enquiry__field input::placeholder,
.demo-enquiry__field textarea::placeholder {
  color: #666;
}

.demo-enquiry__field input:focus,
.demo-enquiry__field textarea:focus {
  border-color: rgba(12, 207, 113, 0.55);
  box-shadow: 0 0 0 3px rgba(12, 207, 113, 0.12);
}

.demo-enquiry__field textarea {
  min-height: 120px;
  resize: vertical;
}

.demo-enquiry__feedback {
  margin: 0 0 12px;
  font-size: 14px;
}

.demo-enquiry__feedback.is-ok {
  color: #0ccf71;
}

.demo-enquiry__feedback.is-err {
  color: #f87171;
}

.demo-enquiry__submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #0a0a0a;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.demo-enquiry__submit:hover {
  background: #f3f3f3;
}

.demo-enquiry__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

@media (max-width: 700px) {
  .demo-enquiry__row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-footer);
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  padding: 64px 0 0;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer__brand img {
  width: auto;
  height: 40px;
  max-width: 200px;
  object-fit: contain;
}

.footer__brand span {
  font-weight: 500;
  font-size: 16px;
}

.footer__about {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.5;
  max-width: 387px;
}

.footer__col h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 28px;
}

.footer__col a,
.footer__col p {
  display: block;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: #fff;
}

.footer__col a.underline {
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 22px;
  flex-wrap: wrap;
}

.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal a {
  color: #3e404c;
  font-size: 14px;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-family: var(--font-price);
}

.footer__social {
  display: flex;
  margin-left: auto;
}

.footer__social a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-right: 1px solid #1f1f1f;
}

.footer__social img {
  width: 24px;
  height: 24px;
}

.footer__line {
  height: 3px;
  background: linear-gradient(90deg, #4fc1a2, #d9d1ac, #f68d27);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .feature-row,
  .feature-row--reverse,
  .security__grid,
  .pricing__grid,
  .plan-custom,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .feature-row--reverse .feature-row__visual,
  .feature-row--reverse .feature-row__copy {
    order: initial;
  }

  .feature-stack {
    min-height: 420px;
    display: flex;
    justify-content: center;
  }

  .feature-stack__card {
    position: relative;
    left: auto !important;
    top: auto !important;
  }

  .feature-stack__card--front {
    margin-left: -80px;
    margin-top: 40px;
  }

  .plan-custom__aside {
    border-left: none;
    border-top: 2.8px solid rgba(37, 37, 39, 0.2);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: grid;
  }

  .nav-actions {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px;
    background: #0a0a0a;
    border-bottom: 1px solid #222;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s var(--ease);
  }

  .nav-actions.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-actions .btn {
    width: 100%;
    height: 44px;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }

  .hero__title {
    font-size: 36px;
  }

  .security__title {
    font-size: 42px;
  }

  .plan {
    min-height: auto;
  }

  .plan-custom__list {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__social {
    margin-left: 0;
  }
}
