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

:root {
  --purple-950: #180638;
  --purple-900: #271052;
  --purple-850: #34146b;
  --purple-800: #451d85;
  --purple-700: #5b27b0;
  --purple-600: #7438db;
  --purple-500: #8c5cf6;
  --purple-400: #ae8bff;

  --blue-700: #4052dd;
  --blue-600: #5368f5;
  --blue-500: #7688ff;

  --pink-600: #c83db6;
  --pink-500: #dd50ca;
  --pink-400: #ef82df;

  --cyan-500: #28bfd5;
  --cyan-400: #49d8e8;
  --cyan-300: #87eaf4;

  --green-500: #18b879;
  --green-400: #50d8a0;

  --ink: #171225;
  --text: #4d4562;
  --muted: #77708c;

  --surface-light: #f5f1ff;
  --surface-lavender: #e7dfff;
  --surface-medium: #cfc2ff;

  --line: rgba(82, 58, 135, 0.14);

  --primary-gradient:
    linear-gradient(
      135deg,
      #5368f5 0%,
      #7438db 52%,
      #c348d3 100%
    );

  --hero-gradient:
    linear-gradient(
      135deg,
      #15072f 0%,
      #271052 35%,
      #431b80 68%,
      #5a2b9e 100%
    );

  --deep-gradient:
    linear-gradient(
      145deg,
      #24104f 0%,
      #421878 48%,
      #6e29a5 100%
    );

  --shadow-small:
    0 16px 42px rgba(44, 23, 92, 0.1);

  --shadow-medium:
    0 27px 72px rgba(44, 23, 92, 0.17);

  --shadow-large:
    0 40px 110px rgba(11, 4, 31, 0.34);

  --container: 1480px;
}

/* ==================================================
   BASE
================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;

  color: var(--text);

  background: var(--surface-light);

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  overflow: clip;
}

section[id] {
  scroll-margin-top: 110px;
}

.container {
  width:
    min(
      var(--container),
      calc(100% - 72px)
    );

  margin-inline: auto;
}

/* ==================================================
   NAVIGATION
================================================== */

.site-header {
  position: fixed;
  z-index: 1000;

  top: 0;
  right: 0;
  left: 0;

  padding: 14px 24px;

  pointer-events: none;

  transition:
    padding 0.2s ease;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.site-nav {
  width: min(1460px, 100%);

  margin-inline: auto;

  border:
    1px solid rgba(255, 255, 255, 0.72);

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.92);

  box-shadow:
    0 18px 52px rgba(25, 8, 67, 0.17);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  pointer-events: auto;
}

.nav-inner {
  min-height: 70px;

  display: grid;

  grid-template-columns:
    auto
    minmax(420px, 1fr)
    auto;

  align-items: center;

  gap: 34px;

  padding: 0 18px;
}

.nav-brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--ink);

  font-size: 1rem;
  font-weight: 800;

  white-space: nowrap;
}

.brand-mark {
  width: 22px;
  height: 22px;

  flex: 0 0 auto;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #dd50ca 0%,
      #8c5cf6 48%,
      #5368f5 100%
    );

  box-shadow:
    0 7px 18px rgba(116, 56, 219, 0.32);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 26px;
}

.nav-links a,
.nav-login {
  position: relative;

  color: #514968;

  font-size: 0.88rem;
  font-weight: 700;

  white-space: nowrap;

  transition:
    color 0.18s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: -8px;
  left: 0;

  height: 2px;

  border-radius: 999px;

  background: var(--primary-gradient);

  transform: scaleX(0);
  transform-origin: center;

  transition:
    transform 0.2s ease;
}

.nav-links a:hover,
.nav-login:hover {
  color: var(--purple-600);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 10px;
}

.nav-button {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;

  border-radius: 11px;

  font-size: 0.84rem;
  font-weight: 800;

  white-space: nowrap;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

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

.nav-button-secondary {
  color: var(--purple-600);

  border:
    1px solid rgba(116, 56, 219, 0.2);

  background:
    rgba(255, 255, 255, 0.9);

  box-shadow:
    0 8px 20px rgba(63, 33, 122, 0.07);
}

.nav-button-secondary:hover {
  background: #f5efff;
}

.nav-button-primary {
  color: #ffffff;

  border:
    1px solid rgba(255, 255, 255, 0.15);

  background: var(--primary-gradient);

  box-shadow:
    0 12px 28px rgba(116, 56, 219, 0.29);
}

.nav-button-primary:hover {
  box-shadow:
    0 17px 36px rgba(116, 56, 219, 0.4);
}

.nav-toggle {
  display: none;

  width: 42px;
  height: 42px;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;

  padding: 0;

  border:
    1px solid rgba(116, 56, 219, 0.16);

  border-radius: 11px;

  background: #ffffff;
}

.nav-toggle span {
  width: 18px;
  height: 2px;

  border-radius: 999px;

  background: #342a51;
}

.mobile-navigation {
  display: none;
}

/* ==================================================
   SHARED
================================================== */

.section {
  position: relative;

  padding:
    clamp(94px, 9vw, 138px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 18px;

  color: var(--purple-600);

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";

  width: 24px;
  height: 1px;

  background: currentColor;
}

.eyebrow-light {
  color: #ddd2ff;
}

.section-heading {
  max-width: 820px;
}

.section-heading-center {
  margin-inline: auto;

  text-align: center;
}

.section-heading h2 {
  margin: 0;

  color: var(--ink);

  font-size:
    clamp(2.45rem, 4vw, 4.15rem);

  line-height: 1.05;
  letter-spacing: -0.052em;
}

.section-heading p {
  max-width: 760px;

  margin: 22px auto 0;

  color: var(--muted);

  font-size: 1.02rem;
  line-height: 1.8;
}

.section-heading-light h2 {
  color: #ffffff;
}

.section-heading-light p {
  color:
    rgba(255, 255, 255, 0.74);
}

/* ==================================================
   BUTTONS
================================================== */

.button {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 23px;

  border:
    1px solid transparent;

  border-radius: 12px;

  font-weight: 800;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

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

.button-primary {
  color: #ffffff;

  background: var(--primary-gradient);

  box-shadow:
    0 18px 42px rgba(116, 56, 219, 0.35);
}

.button-primary:hover {
  box-shadow:
    0 24px 54px rgba(116, 56, 219, 0.44);
}

.button-ghost {
  color: #ffffff;

  border-color:
    rgba(255, 255, 255, 0.28);

  background:
    rgba(255, 255, 255, 0.09);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color:
    rgba(255, 255, 255, 0.42);

  background:
    rgba(255, 255, 255, 0.16);
}

/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding:
    154px 0 96px;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 84% 17%,
      rgba(73, 216, 232, 0.21),
      transparent 31%
    ),
    radial-gradient(
      circle at 11% 84%,
      rgba(221, 80, 202, 0.19),
      transparent 33%
    ),
    var(--hero-gradient);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: -2;

  opacity: 0.11;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );

  background-size: 64px 64px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 24%,
      black 74%,
      transparent
    );
}

.hero-glow {
  position: absolute;
  z-index: -1;

  border-radius: 50%;

  filter: blur(95px);
}

.hero-glow-one {
  top: 50px;
  right: -140px;

  width: 500px;
  height: 500px;

  background:
    rgba(83, 104, 245, 0.23);
}

.hero-glow-two {
  bottom: 10px;
  left: -170px;

  width: 450px;
  height: 450px;

  background:
    rgba(221, 80, 202, 0.17);
}

.hero-grid {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns:
    minmax(0, 0.78fr)
    minmax(650px, 1.22fr);

  gap:
    clamp(60px, 7vw, 112px);

  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.hero h1 {
  max-width: 9.5ch;

  margin: 0;

  color: #ffffff;

  font-size:
    clamp(4rem, 6vw, 6.6rem);

  line-height: 0.96;
  letter-spacing: -0.066em;
}

.hero h1 span {
  display: block;

  color: transparent;

  background:
    linear-gradient(
      100deg,
      #c0c9ff 0%,
      #a9edff 45%,
      #e2bcff 100%
    );

  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 660px;

  margin: 29px 0 0;

  color:
    rgba(237, 240, 255, 0.77);

  font-size:
    clamp(1rem, 1.3vw, 1.16rem);

  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;

  margin: 26px 0 0;
  padding: 0;

  color:
    rgba(231, 234, 251, 0.72);

  font-size: 0.86rem;

  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li::before {
  content: "✓";

  color: #73efbe;

  font-weight: 900;
}

/* ==================================================
   HERO MASCOT
================================================== */

.hero-visual {
  min-width: 0;
}

.mascot-guide {
  width: min(100%, 500px);

  display: flex;
  align-items: flex-end;
  gap: 16px;

  margin:
    0 0 18px 28px;
}

.cloud-mascot {
  position: relative;

  width: 124px;
  height: 98px;

  flex: 0 0 auto;

  padding: 0;

  border: none;

  background: transparent;

  filter:
    drop-shadow(
      0 16px 18px rgba(10, 6, 34, 0.23)
    );

  animation:
    mascotFloat 4.8s ease-in-out infinite;
}

.cloud-mascot:focus-visible {
  outline:
    3px solid rgba(135, 234, 244, 0.9);

  outline-offset: 7px;

  border-radius: 34px;
}

.mascot-cloud {
  position: absolute;

  left: 13px;
  bottom: 18px;

  width: 98px;
  height: 52px;

  border-radius: 44px;

  background:
    linear-gradient(
      145deg,
      #dcfcff 0%,
      #79e0ec 30%,
      #7585ff 70%,
      #a84fdc 100%
    );

  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.72);
}

.mascot-cloud::before,
.mascot-cloud::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  background: inherit;
}

.mascot-cloud::before {
  width: 48px;
  height: 48px;

  left: 13px;
  top: -27px;
}

.mascot-cloud::after {
  width: 58px;
  height: 58px;

  right: 9px;
  top: -34px;
}

.mascot-eye {
  position: absolute;
  z-index: 2;

  top: 21px;

  width: 7px;
  height: 10px;

  border-radius: 999px;

  background: #272046;
}

.mascot-eye-left {
  left: 37px;
}

.mascot-eye-right {
  right: 37px;
}

.mascot-mouth {
  position: absolute;
  z-index: 2;

  top: 36px;
  left: 45px;

  width: 16px;
  height: 8px;

  border-bottom:
    3px solid #272046;

  border-radius:
    0 0 20px 20px;
}

.mascot-shield {
  position: absolute;
  z-index: 4;

  right: -7px;
  bottom: -7px;

  width: 35px;
  height: 39px;

  display: grid;
  place-items: center;

  color: #ffffff;

  clip-path:
    polygon(
      50% 0,
      92% 17%,
      85% 69%,
      50% 100%,
      15% 69%,
      8% 17%
    );

  background:
    linear-gradient(
      145deg,
      #5368f5,
      #7438db
    );

  font-size: 0.9rem;
  font-weight: 900;
}

.mascot-arm {
  position: absolute;

  width: 27px;
  height: 7px;

  border-radius: 999px;

  background: #79dfea;
}

.mascot-arm-left {
  left: 3px;
  bottom: 37px;

  transform: rotate(24deg);
}

.mascot-arm-right {
  right: 4px;
  bottom: 40px;

  transform: rotate(-28deg);
}

.mascot-shadow {
  position: absolute;

  bottom: 0;
  left: 25px;

  width: 83px;
  height: 14px;

  border-radius: 50%;

  background:
    rgba(12, 7, 38, 0.23);

  filter: blur(5px);
}

.cloud-mascot:hover .mascot-arm-right {
  animation:
    mascotWave 0.55s ease-in-out infinite alternate;
}

.cloud-mascot.is-reacting {
  animation:
    mascotReact 0.65s ease;
}

.mascot-message {
  position: relative;

  width: min(320px, 100%);
  min-height: 76px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 14px 17px;

  color: #342b50;

  border:
    1px solid rgba(116, 56, 219, 0.12);

  border-radius:
    18px 18px 18px 7px;

  background:
    rgba(255, 255, 255, 0.97);

  box-shadow:
    0 18px 44px rgba(22, 8, 57, 0.2);

  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.45;
}

.mascot-message::before {
  content: "";

  position: absolute;

  left: -10px;
  bottom: 18px;

  width: 20px;
  height: 20px;

  background:
    rgba(255, 255, 255, 0.97);

  transform: rotate(45deg);

  clip-path:
    polygon(
      0 0,
      100% 0,
      100% 100%
    );
}

.mascot-message small {
  display: block;

  margin-top: 4px;

  color: var(--muted);

  font-size: 0.65rem;
  font-weight: 600;
}

#mascot-message {
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

#mascot-message.is-changing {
  opacity: 0;

  transform: translateY(4px);
}

/* ==================================================
   PRODUCT PREVIEW
================================================== */

.product-stage {
  position: relative;
}

.product-preview {
  position: relative;
  z-index: 2;

  padding: 23px;

  color: var(--ink);

  border:
    1px solid rgba(255, 255, 255, 0.3);

  border-radius: 30px;

  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.97),
      rgba(248, 247, 255, 0.95) 56%,
      rgba(237, 239, 255, 0.93)
    );

  box-shadow:
    var(--shadow-large),
    0 0 0 1px rgba(174, 139, 255, 0.1);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  animation:
    productFloat 6.5s ease-in-out infinite;
}

.preview-topbar,
.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.preview-topbar {
  margin-bottom: 19px;
}

.preview-label {
  display: block;

  margin-bottom: 4px;

  color: var(--muted);

  font-size: 0.76rem;
}

.preview-topbar strong {
  color: var(--ink);

  font-size: 1rem;
}

.preview-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: #087d51;

  font-size: 0.8rem;
  font-weight: 800;

  white-space: nowrap;
}

.preview-live i {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--green-500);

  box-shadow:
    0 0 0 6px rgba(24, 184, 121, 0.13);
}

.preview-image-wrap {
  overflow: hidden;

  border:
    1px solid rgba(71, 57, 112, 0.12);

  border-radius: 18px;

  background: #f6f4fc;
}

.preview-image-wrap img {
  width: 100%;
}

.preview-footer {
  margin-top: 16px;

  color: var(--muted);

  font-size: 0.78rem;
}

.preview-footer span:last-child {
  color: var(--blue-600);

  font-weight: 800;
}

.floating-alert {
  position: absolute;
  z-index: 5;

  min-width: 215px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;

  border:
    1px solid rgba(255, 255, 255, 0.26);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.94);

  box-shadow:
    0 20px 50px rgba(11, 5, 34, 0.25);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.floating-alert small,
.floating-alert strong {
  display: block;
}

.floating-alert small {
  color: var(--muted);

  font-size: 0.69rem;
}

.floating-alert strong {
  margin-top: 2px;

  color: var(--ink);

  font-size: 0.82rem;
}

.floating-alert-risk {
  left: -58px;
  bottom: 18%;

  animation:
    alertFloat 5.4s ease-in-out infinite;
}

.floating-alert-safe {
  top: 20%;
  right: -45px;

  animation:
    alertFloat 5.8s ease-in-out infinite reverse;
}

.floating-alert-icon {
  width: 33px;
  height: 33px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  color: #ffffff;

  border-radius: 10px;

  font-weight: 900;
}

.risk-icon {
  background:
    linear-gradient(
      145deg,
      #dd50ca,
      #ef82df
    );
}

.safe-icon {
  background:
    linear-gradient(
      145deg,
      #18b879,
      #49d8e8
    );
}

/* ==================================================
   HERO FEATURE STRIP
================================================== */

.hero-feature-strip {
  position: relative;
  z-index: 3;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 15px;

  margin-top: 58px;
}

.mini-feature {
  min-height: 94px;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px;

  color: #ffffff;

  border:
    1px solid rgba(255, 255, 255, 0.16);

  border-radius: 18px;

  box-shadow:
    0 18px 46px rgba(5, 4, 22, 0.18);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  transition:
    transform 0.2s ease;
}

.mini-feature:hover {
  transform: translateY(-5px);
}

.mini-feature-blue {
  background:
    linear-gradient(
      135deg,
      rgba(83, 104, 245, 0.48),
      rgba(140, 92, 246, 0.4)
    );
}

.mini-feature-pink {
  background:
    linear-gradient(
      135deg,
      rgba(221, 80, 202, 0.42),
      rgba(140, 92, 246, 0.4)
    );
}

.mini-feature-cyan {
  background:
    linear-gradient(
      135deg,
      rgba(73, 216, 232, 0.36),
      rgba(83, 104, 245, 0.42)
    );
}

.mini-feature-purple {
  background:
    linear-gradient(
      135deg,
      rgba(140, 92, 246, 0.46),
      rgba(221, 80, 202, 0.35)
    );
}

.mini-feature strong,
.mini-feature small {
  display: block;
}

.mini-feature strong {
  font-size: 0.87rem;
}

.mini-feature small {
  margin-top: 3px;

  color:
    rgba(255, 255, 255, 0.72);

  font-size: 0.72rem;
}

.mini-feature-icon {
  width: 40px;
  height: 40px;

  flex: 0 0 auto;

  position: relative;

  border-radius: 13px;

  background:
    rgba(255, 255, 255, 0.15);
}

.monitor-icon::before {
  content: "";

  position: absolute;

  inset: 10px;

  border:
    2px solid #ffffff;

  border-radius: 50%;
}

.monitor-icon::after {
  content: "";

  position: absolute;

  top: 7px;
  left: 19px;

  width: 2px;
  height: 13px;

  background: #ffffff;

  transform: rotate(27deg);
  transform-origin: bottom;
}

.priority-icon::before {
  content: "";

  position: absolute;

  left: 9px;
  bottom: 9px;

  width: 5px;
  height: 11px;

  border-radius: 3px;

  background: #ffffff;

  box-shadow:
    9px -5px 0 #ffffff,
    18px -12px 0 #ffffff;
}

.identity-icon::before,
.identity-icon::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  background: #ffffff;
}

.identity-icon::before {
  top: 8px;
  left: 15px;

  width: 11px;
  height: 11px;
}

.identity-icon::after {
  bottom: 7px;
  left: 10px;

  width: 21px;
  height: 12px;

  border-radius:
    12px 12px 7px 7px;
}

.action-icon {
  display: grid;
  place-items: center;

  font-weight: 900;
}

/* ==================================================
   VALUE
================================================== */

.value-section {
  overflow: hidden;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(83, 104, 245, 0.11),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 78%,
      rgba(221, 80, 202, 0.12),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #f7f2ff 0%,
      #f0e9ff 56%,
      #ebe3ff 100%
    );
}

.section-orb,
.assistant-orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(84px);

  pointer-events: none;
}

.section-orb-left {
  bottom: -110px;
  left: -130px;

  width: 340px;
  height: 340px;

  background:
    rgba(83, 104, 245, 0.1);
}

.section-orb-right {
  top: -90px;
  right: -130px;

  width: 360px;
  height: 360px;

  background:
    rgba(221, 80, 202, 0.1);
}

.value-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;

  margin-top: 58px;
}

.value-card {
  min-height: 350px;

  padding: 34px;

  border:
    1px solid rgba(116, 56, 219, 0.12);

  border-radius: 28px;

  box-shadow: var(--shadow-small);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.value-card:hover {
  transform: translateY(-7px);

  box-shadow: var(--shadow-medium);
}

.value-card-blue {
  background:
    linear-gradient(
      145deg,
      #e5ebff 0%,
      #d9e0ff 54%,
      #eee9ff 100%
    );
}

.value-card-pink {
  background:
    linear-gradient(
      145deg,
      #ffe5f7 0%,
      #f3dcff 54%,
      #efddff 100%
    );
}

.value-card-cyan {
  background:
    linear-gradient(
      145deg,
      #dcfaff 0%,
      #d7efff 54%,
      #e2e3ff 100%
    );
}

.card-number {
  display: inline-flex;

  margin-top: 25px;

  color: var(--purple-600);

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.value-card h3 {
  margin: 15px 0 13px;

  color: var(--ink);

  font-size: 1.3rem;
}

.value-card p {
  margin: 0;

  color: var(--text);

  line-height: 1.78;
}

.value-visual {
  height: 104px;

  position: relative;
}

.severity-visual {
  display: flex;
  align-items: end;
  gap: 12px;
}

.severity-visual span {
  width: 23%;

  border-radius:
    10px 10px 4px 4px;
}

.severity-visual span:nth-child(1) {
  height: 30%;

  background: #8492ff;
}

.severity-visual span:nth-child(2) {
  height: 51%;

  background: #7c62ef;
}

.severity-visual span:nth-child(3) {
  height: 72%;

  background: #a957dc;
}

.severity-visual span:nth-child(4) {
  height: 93%;

  background: #dd50ca;
}

.relationship-visual {
  max-width: 205px;
}

.relation-node {
  position: absolute;

  border-radius: 50%;
}

.relation-main {
  top: 34px;
  left: 79px;

  width: 38px;
  height: 38px;

  background:
    linear-gradient(
      145deg,
      #7438db,
      #dd50ca
    );
}

.relation-a {
  top: 5px;
  left: 8px;

  width: 27px;
  height: 27px;

  background: #5368f5;
}

.relation-b {
  bottom: 6px;
  left: 5px;

  width: 27px;
  height: 27px;

  background: #49d8e8;
}

.relation-c {
  top: 24px;
  right: 7px;

  width: 27px;
  height: 27px;

  background: #ef82df;
}

.relation-line {
  position: absolute;

  height: 2px;

  transform-origin: left center;

  background:
    linear-gradient(
      90deg,
      rgba(116, 56, 219, 0.25),
      rgba(116, 56, 219, 0.84)
    );
}

.relation-line-a {
  top: 31px;
  left: 32px;

  width: 67px;

  transform: rotate(21deg);
}

.relation-line-b {
  top: 76px;
  left: 31px;

  width: 70px;

  transform: rotate(-24deg);
}

.relation-line-c {
  top: 52px;
  left: 113px;

  width: 66px;

  transform: rotate(-10deg);
}

.shield-visual {
  display: grid;
  place-items: center;
}

.shield-visual span {
  width: 82px;
  height: 94px;

  display: grid;
  place-items: center;

  color: #ffffff;

  clip-path:
    polygon(
      50% 0,
      92% 16%,
      86% 68%,
      50% 100%,
      14% 68%,
      8% 16%
    );

  background:
    linear-gradient(
      145deg,
      #49d8e8,
      #5368f5 52%,
      #7438db
    );

  font-size: 2rem;
  font-weight: 900;
}

/* ==================================================
   MONITORING
================================================== */

.monitoring-section {
  isolation: isolate;
  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(73, 216, 232, 0.17),
      transparent 30%
    ),
    radial-gradient(
      circle at 10% 84%,
      rgba(221, 80, 202, 0.19),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #1c083e 0%,
      #351464 48%,
      #56218f 100%
    );
}

.monitoring-glow {
  position: absolute;
  z-index: -1;

  top: -90px;
  right: -150px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    rgba(73, 216, 232, 0.12);

  filter: blur(90px);
}

.monitoring-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.78fr)
    minmax(600px, 1.22fr);

  gap:
    clamp(65px, 8vw, 120px);

  align-items: center;
}

.monitoring-benefits {
  display: grid;
  gap: 12px;

  margin-top: 31px;
}

.monitoring-benefits span {
  display: flex;
  align-items: center;
  gap: 11px;

  color:
    rgba(255, 255, 255, 0.8);

  font-size: 0.91rem;
  font-weight: 600;
}

.monitoring-benefits span::before {
  content: "✓";

  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  color: #ffffff;

  border-radius: 8px;

  background:
    rgba(73, 216, 232, 0.2);

  font-size: 0.72rem;
}

.monitor-console {
  padding: 30px;

  border:
    1px solid rgba(255, 255, 255, 0.15);

  border-radius: 29px;

  background:
    rgba(12, 8, 37, 0.37);

  box-shadow:
    0 35px 92px rgba(11, 4, 32, 0.36);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding-bottom: 19px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.12);
}

.console-header span {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: #ffffff;

  font-weight: 800;
}

.console-header span i {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--green-400);

  box-shadow:
    0 0 0 6px rgba(80, 216, 160, 0.12);
}

.console-header small {
  color:
    rgba(255, 255, 255, 0.58);
}

.activity-timeline {
  display: grid;

  margin-top: 13px;
}

.activity-timeline article {
  position: relative;

  display: grid;

  grid-template-columns:
    54px 20px 1fr;

  gap: 13px;
  align-items: center;

  padding: 15px 12px;

  border-radius: 15px;
}

.activity-timeline article::after {
  content: "";

  position: absolute;

  left: 76px;
  bottom: -8px;

  width: 2px;
  height: 16px;

  background:
    rgba(255, 255, 255, 0.12);
}

.activity-timeline article:last-child::after {
  display: none;
}

.activity-highlight {
  background:
    linear-gradient(
      135deg,
      rgba(221, 80, 202, 0.17),
      rgba(116, 56, 219, 0.16)
    );
}

.activity-timeline time {
  color:
    rgba(255, 255, 255, 0.58);

  font-size: 0.73rem;
}

.timeline-dot {
  width: 11px;
  height: 11px;

  border-radius: 50%;
}

.dot-neutral {
  background: #9b95ad;
}

.dot-risk {
  background: var(--pink-400);

  box-shadow:
    0 0 0 6px rgba(239, 130, 223, 0.12);
}

.dot-purple {
  background: var(--purple-400);
}

.dot-safe {
  background: var(--green-400);
}

.activity-timeline small,
.activity-timeline strong {
  display: block;
}

.activity-timeline small {
  color:
    rgba(255, 255, 255, 0.55);

  font-size: 0.7rem;
}

.activity-timeline strong {
  margin-top: 2px;

  color: #ffffff;

  font-size: 0.88rem;
}

.console-recommendation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-top: 19px;
  padding: 18px;

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: 17px;

  background:
    rgba(255, 255, 255, 0.08);
}

.console-recommendation small,
.console-recommendation strong {
  display: block;
}

.console-recommendation small {
  color: #d4c8ff;

  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-recommendation strong {
  margin-top: 4px;

  color: #ffffff;

  font-size: 0.85rem;
}

.console-recommendation a {
  flex: 0 0 auto;

  padding: 10px 13px;

  color: var(--purple-800);

  border-radius: 10px;

  background: #ffffff;

  font-size: 0.76rem;
  font-weight: 800;
}

/* ==================================================
   WORKFLOW
================================================== */

.workflow-section {
  overflow: hidden;

  background:
    radial-gradient(
      circle at 86% 14%,
      rgba(73, 216, 232, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 86%,
      rgba(221, 80, 202, 0.16),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #d5ceff 0%,
      #c5b7ff 48%,
      #dec4f5 100%
    );
}

.section-top-accent {
  position: absolute;

  top: 0;
  right: 0;
  left: 0;

  height: 5px;

  background:
    linear-gradient(
      90deg,
      #5368f5,
      #8c5cf6,
      #dd50ca,
      #49d8e8
    );
}

.steps-grid {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 24px;

  margin-top: 60px;
}

.steps-grid::before {
  content: "";

  position: absolute;
  z-index: 0;

  top: 51px;
  left: 8%;
  right: 8%;

  height: 3px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #5368f5,
      #8c5cf6,
      #dd50ca,
      #7438db
    );
}

.step-card {
  position: relative;
  z-index: 1;

  min-height: 340px;

  padding: 30px;

  border:
    1px solid rgba(255, 255, 255, 0.5);

  border-radius: 27px;

  box-shadow:
    0 22px 56px rgba(55, 28, 112, 0.15);

  transition:
    transform 0.2s ease;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-card-blue {
  background:
    linear-gradient(
      160deg,
      #edf1ff,
      #dbe3ff
    );
}

.step-card-lavender {
  background:
    linear-gradient(
      160deg,
      #f1eaff,
      #ded2ff
    );
}

.step-card-pink {
  background:
    linear-gradient(
      160deg,
      #ffe9fa,
      #efcff0
    );
}

.step-card-gradient {
  color: #ffffff;

  border-color: transparent;

  background:
    linear-gradient(
      145deg,
      #5368f5,
      #7438db 52%,
      #c348d3
    );

  box-shadow:
    0 26px 64px rgba(98, 56, 213, 0.32);
}

.step-number {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--purple-600);

  border-radius: 12px;

  background:
    rgba(255, 255, 255, 0.88);

  box-shadow:
    0 8px 20px rgba(61, 45, 111, 0.1);

  font-weight: 900;
}

.step-card h3 {
  margin: 24px 0 12px;

  color: var(--ink);

  font-size: 1.25rem;
}

.step-card p {
  margin: 0;

  color: var(--text);

  line-height: 1.75;
}

.step-card-gradient h3,
.step-card-gradient p {
  color: #ffffff;
}

.step-card-gradient p {
  opacity: 0.84;
}

.step-visual {
  height: 95px;

  margin-top: 23px;

  position: relative;
}

.visual-cloud {
  position: absolute;

  width: 51px;
  height: 21px;

  border-radius: 999px;

  background:
    linear-gradient(
      145deg,
      #9ca7ff,
      #6d75f6
    );
}

.visual-cloud::before,
.visual-cloud::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  background: inherit;
}

.visual-cloud::before {
  top: -13px;
  left: 8px;

  width: 24px;
  height: 24px;
}

.visual-cloud::after {
  top: -17px;
  right: 7px;

  width: 29px;
  height: 29px;
}

.cloud-one {
  top: 34px;
  left: 5px;
}

.cloud-two {
  top: 49px;
  right: 4px;

  opacity: 0.72;
}

.cloud-chip {
  position: absolute;

  top: 14px;
  right: 51px;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  color: #ffffff;

  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      #7438db,
      #dd50ca
    );

  font-size: 0.69rem;
  font-weight: 900;
}

.visual-connection {
  position: absolute;

  top: 45px;
  left: 54px;

  width: 94px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #6d75f6,
      #dd50ca
    );
}

.discover-visual span {
  position: absolute;

  width: 29px;
  height: 29px;

  border-radius: 50%;

  box-shadow:
    0 12px 24px rgba(116, 56, 219, 0.16);
}

.discover-visual span:nth-child(1) {
  top: 8px;
  left: 8px;

  background: #5368f5;
}

.discover-visual span:nth-child(2) {
  top: 49px;
  left: 72px;

  background: #8c5cf6;
}

.discover-visual span:nth-child(3) {
  top: 3px;
  right: 18px;

  background: #dd50ca;
}

.discover-visual span:nth-child(4) {
  right: 58px;
  bottom: 2px;

  background: #49d8e8;
}

.prioritise-visual {
  display: flex;
  align-items: end;
  gap: 12px;
}

.prioritise-visual span {
  width: 25%;

  border-radius:
    10px 10px 3px 3px;
}

.prioritise-visual span:nth-child(1) {
  height: 38%;

  background: #5368f5;
}

.prioritise-visual span:nth-child(2) {
  height: 68%;

  background: #8c5cf6;
}

.prioritise-visual span:nth-child(3) {
  height: 92%;

  background: #dd50ca;
}

.verify-visual {
  display: grid;
  place-items: center;
}

.verify-visual span {
  width: 75px;
  height: 75px;

  display: grid;
  place-items: center;

  color: #ffffff;

  border:
    2px solid rgba(255, 255, 255, 0.58);

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.14);

  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.06);

  font-size: 2rem;
  font-weight: 900;
}

/* ==================================================
   CAPABILITIES
================================================== */

.capability-section {
  isolation: isolate;
  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(73, 216, 232, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 8% 85%,
      rgba(221, 80, 202, 0.18),
      transparent 32%
    ),
    var(--deep-gradient);
}

.capability-glow {
  position: absolute;
  z-index: -1;

  border-radius: 50%;

  filter: blur(90px);
}

.capability-glow-one {
  top: 60px;
  right: -130px;

  width: 420px;
  height: 420px;

  background:
    rgba(83, 104, 245, 0.2);
}

.capability-glow-two {
  bottom: -120px;
  left: -120px;

  width: 360px;
  height: 360px;

  background:
    rgba(239, 130, 223, 0.14);
}

.capability-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;

  margin-top: 60px;
}

.capability-card {
  min-height: 440px;

  padding: 34px;

  border:
    1px solid rgba(255, 255, 255, 0.15);

  border-radius: 29px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 28px 76px rgba(16, 5, 46, 0.23);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition:
    transform 0.22s ease;
}

.capability-card:hover {
  transform: translateY(-7px);
}

.capability-card-blue {
  background:
    linear-gradient(
      145deg,
      rgba(83, 104, 245, 0.28),
      rgba(116, 56, 219, 0.17)
    );
}

.capability-card-featured {
  transform: translateY(-12px);

  border-color:
    rgba(255, 255, 255, 0.29);

  background:
    linear-gradient(
      145deg,
      rgba(83, 104, 245, 0.4),
      rgba(116, 56, 219, 0.34),
      rgba(221, 80, 202, 0.23)
    );
}

.capability-card-featured:hover {
  transform: translateY(-17px);
}

.capability-card-green {
  background:
    linear-gradient(
      145deg,
      rgba(80, 216, 160, 0.22),
      rgba(73, 216, 232, 0.16),
      rgba(140, 92, 246, 0.18)
    );
}

.capability-icon {
  width: 82px;
  height: 82px;

  position: relative;

  margin-bottom: 28px;

  border-radius: 24px;

  background:
    rgba(255, 255, 255, 0.12);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.shield-icon::before {
  content: "";

  position: absolute;

  inset: 18px;

  clip-path:
    polygon(
      50% 0,
      90% 16%,
      84% 68%,
      50% 100%,
      16% 68%,
      10% 16%
    );

  background:
    linear-gradient(
      145deg,
      #49d8e8,
      #5368f5
    );
}

.network-icon span {
  position: absolute;

  width: 20px;
  height: 20px;

  border-radius: 50%;
}

.network-icon span:nth-child(1) {
  top: 18px;
  left: 31px;

  background: #49d8e8;
}

.network-icon span:nth-child(2) {
  bottom: 16px;
  left: 16px;

  background: #ef82df;
}

.network-icon span:nth-child(3) {
  right: 16px;
  bottom: 16px;

  background: #8794ff;
}

.check-icon {
  display: grid;
  place-items: center;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      rgba(80, 216, 160, 0.42),
      rgba(73, 216, 232, 0.2)
    );

  font-size: 2rem;
  font-weight: 900;
}

.capability-label {
  display: inline-flex;

  margin-bottom: 18px;

  color: #ded3ff;

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-card h3 {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: 1.35rem;
}

.capability-card p,
.capability-card li {
  color:
    rgba(255, 255, 255, 0.76);
}

.capability-card ul {
  margin: 28px 0 0;
  padding: 22px 0 0;

  border-top:
    1px solid rgba(255, 255, 255, 0.12);

  list-style: none;
}

.capability-card li {
  position: relative;

  margin: 12px 0;
  padding-left: 20px;
}

.capability-card li::before {
  content: "";

  position: absolute;

  top: 0.68em;
  left: 0;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--cyan-400);
}

/* ==================================================
   AI ASSISTANT
================================================== */

.assistant-section {
  isolation: isolate;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 86% 14%,
      rgba(73, 216, 232, 0.13),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 84%,
      rgba(221, 80, 202, 0.12),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #f6f1ff 0%,
      #eee6ff 56%,
      #e7deff 100%
    );
}

.assistant-orb-left {
  bottom: -120px;
  left: -130px;

  width: 370px;
  height: 370px;

  background:
    rgba(221, 80, 202, 0.1);
}

.assistant-orb-right {
  top: -130px;
  right: -130px;

  width: 390px;
  height: 390px;

  background:
    rgba(73, 216, 232, 0.11);
}

.assistant-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.84fr)
    minmax(550px, 1.16fr);

  gap:
    clamp(65px, 8vw, 125px);

  align-items: center;
}

.ai-orb {
  position: relative;

  width: 150px;
  height: 150px;

  margin-bottom: 34px;

  animation:
    aiFloat 5s ease-in-out infinite;
}

.ai-core {
  position: absolute;

  inset: 40px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 34% 28%,
      #ffffff,
      #8de9f2 18%,
      #7e6af0 52%,
      #dd50ca
    );

  box-shadow:
    0 0 45px rgba(110, 223, 244, 0.32),
    0 0 72px rgba(221, 80, 202, 0.2);
}

.ai-ring {
  position: absolute;

  inset: 18px;

  border:
    1px solid rgba(116, 56, 219, 0.3);

  border-radius: 50%;
}

.ai-ring-one {
  transform:
    rotate(24deg)
    scaleX(1.08)
    scaleY(0.72);
}

.ai-ring-two {
  transform:
    rotate(-36deg)
    scaleX(0.76)
    scaleY(1.08);
}

.ai-star {
  position: absolute;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--purple-500);

  box-shadow:
    0 0 18px rgba(140, 92, 246, 0.54);
}

.ai-star-one {
  top: 12px;
  right: 27px;
}

.ai-star-two {
  bottom: 20px;
  left: 14px;
}

.ai-star-three {
  top: 70px;
  right: 2px;
}

.question-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;

  margin-top: 30px;
}

.question-chip {
  padding: 10px 14px;

  color: var(--purple-700);

  border:
    1px solid rgba(116, 56, 219, 0.17);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.79);

  box-shadow:
    0 8px 20px rgba(55, 20, 117, 0.06);

  font-size: 0.8rem;
  font-weight: 700;

  transition:
    transform 0.18s ease,
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.question-chip:hover,
.question-chip.is-active {
  color: #ffffff;

  background: var(--primary-gradient);

  box-shadow:
    0 12px 25px rgba(116, 56, 219, 0.22);

  transform: translateY(-2px);
}

.assistant-panel {
  padding: 34px;

  border:
    1px solid rgba(116, 56, 219, 0.17);

  border-radius: 29px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(243, 236, 255, 0.95)
    );

  box-shadow:
    0 34px 92px rgba(55, 20, 117, 0.17);
}

.assistant-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  margin-bottom: 28px;
}

.assistant-panel-header strong {
  color: var(--purple-600);
}

.assistant-panel-header span {
  color: var(--muted);

  font-size: 0.78rem;
}

.assistant-content {
  transition:
    opacity 0.17s ease,
    transform 0.17s ease;
}

.assistant-content.is-updating {
  opacity: 0;

  transform: translateY(5px);
}

.assistant-panel h3 {
  margin: 0 0 14px;

  color: var(--ink);

  font-size: 1.35rem;
}

.assistant-panel p {
  color: var(--text);

  line-height: 1.75;
}

.assistant-facts {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 14px;

  margin: 26px 0;
}

.assistant-facts article {
  padding: 16px;

  border:
    1px solid rgba(84, 68, 128, 0.12);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.85);
}

.assistant-facts small,
.assistant-facts strong {
  display: block;
}

.assistant-facts small {
  color: var(--muted);

  font-size: 0.72rem;
}

.assistant-facts strong {
  margin-top: 5px;

  color: var(--ink);
}

.assistant-recommendation {
  display: grid;
  gap: 8px;

  padding: 20px;

  color: #44369b;

  border:
    1px solid rgba(116, 56, 219, 0.14);

  border-radius: 17px;

  background:
    linear-gradient(
      135deg,
      #e9ecff,
      #f3e7ff
    );
}

.assistant-recommendation small {
  font-weight: 800;
}

.assistant-disclaimer {
  margin:
    18px 0 0 !important;

  color:
    var(--muted) !important;

  font-size: 0.78rem;
}

/* ==================================================
   REMEDIATION
================================================== */

.remediation-section {
  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(73, 216, 232, 0.16),
      transparent 29%
    ),
    radial-gradient(
      circle at 11% 84%,
      rgba(221, 80, 202, 0.14),
      transparent 31%
    ),
    linear-gradient(
      135deg,
      #d7d4ff 0%,
      #c7c0f6 48%,
      #dbc6ed 100%
    );
}

.remediation-flow {
  display: grid;

  grid-template-columns:
    1fr auto 1fr auto 1fr;

  gap: 20px;
  align-items: stretch;

  margin-top: 58px;
}

.remediation-card {
  min-height: 350px;

  padding: 32px;

  border:
    1px solid rgba(255, 255, 255, 0.54);

  border-radius: 27px;

  box-shadow:
    0 22px 58px rgba(55, 28, 112, 0.15);
}

.remediation-risk {
  background:
    linear-gradient(
      150deg,
      #ffdff3,
      #f1d6f4
    );
}

.remediation-change {
  background:
    linear-gradient(
      150deg,
      #e0e6ff,
      #d5d3ff
    );
}

.remediation-success {
  background:
    linear-gradient(
      150deg,
      #d8faeb,
      #d7edf6
    );
}

.remediation-icon {
  width: 82px;
  height: 82px;

  display: grid;
  place-items: center;

  margin-bottom: 30px;

  color: #ffffff;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      #dd50ca,
      #ef82df
    );

  font-size: 2rem;
  font-weight: 900;
}

.remediation-change .remediation-icon {
  background:
    linear-gradient(
      145deg,
      #5368f5,
      #8c5cf6
    );
}

.remediation-success .remediation-icon {
  background:
    linear-gradient(
      145deg,
      #18b879,
      #49d8e8
    );
}

.change-symbol {
  position: relative;
}

.change-symbol i {
  position: absolute;

  width: 42px;
  height: 4px;

  border-radius: 999px;

  background: #ffffff;
}

.change-symbol i:first-child {
  transform: rotate(45deg);
}

.change-symbol i:last-child {
  transform: rotate(-45deg);
}

.remediation-card > span {
  display: inline-flex;

  margin-bottom: 16px;

  color: var(--purple-700);

  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.remediation-card h3 {
  margin: 0 0 14px;

  color: var(--ink);

  font-size: 1.3rem;
}

.remediation-card p {
  margin: 0;

  color: var(--text);
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--purple-700);

  font-size: 1.8rem;
}

.metric-row {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 16px;

  margin-top: 24px;
}

.metric-row article {
  padding: 20px;

  border:
    1px solid rgba(255, 255, 255, 0.5);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.65);

  box-shadow:
    0 12px 28px rgba(55, 28, 112, 0.08);
}

.metric-row small,
.metric-row strong {
  display: block;
}

.metric-row small {
  color: var(--muted);
}

.metric-row strong {
  margin-top: 5px;

  color: var(--ink);
}

/* ==================================================
   REPORTS
================================================== */

.reports-section {
  isolation: isolate;
  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(73, 216, 232, 0.17),
      transparent 30%
    ),
    radial-gradient(
      circle at 8% 82%,
      rgba(239, 130, 223, 0.18),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #24104f,
      #40176f 50%,
      #64259a
    );
}

.reports-glow {
  position: absolute;
  z-index: -1;

  top: -120px;
  right: -120px;

  width: 390px;
  height: 390px;

  border-radius: 50%;

  background:
    rgba(73, 216, 232, 0.12);

  filter: blur(90px);
}

.reports-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.84fr)
    minmax(550px, 1.16fr);

  gap:
    clamp(65px, 8vw, 125px);

  align-items: center;
}

.text-link-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 28px;

  color: #ffffff;

  font-weight: 800;
}

.report-preview {
  padding: 34px;

  color: var(--text);

  border:
    1px solid rgba(255, 255, 255, 0.25);

  border-radius: 30px;

  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.97),
      rgba(241, 232, 255, 0.94)
    );

  box-shadow:
    0 38px 102px rgba(13, 4, 35, 0.35);
}

.report-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding-bottom: 20px;

  border-bottom:
    1px solid rgba(84, 68, 128, 0.12);
}

.report-preview-header strong,
.report-preview-header small {
  display: block;
}

.report-preview-header strong {
  color: var(--ink);
}

.report-preview-header small {
  margin-top: 3px;

  color: var(--muted);
}

.report-preview-header > span {
  padding: 8px 11px;

  color: #087d51;

  border-radius: 999px;

  background: #e8faf2;

  font-size: 0.74rem;
  font-weight: 800;
}

.report-score {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 30px 0;
}

.report-score small,
.report-score strong {
  display: block;
}

.report-score small {
  color: var(--muted);
}

.report-score strong {
  margin-top: 4px;

  color: var(--ink);

  font-size: 3.5rem;
  line-height: 1;
}

.score-ring {
  width: 106px;
  height: 106px;

  display: grid;
  place-items: center;

  position: relative;

  border-radius: 50%;

  background:
    conic-gradient(
      var(--purple-600) 0 84%,
      #e7e1f2 84% 100%
    );
}

.score-ring::before {
  content: "";

  position: absolute;

  inset: 11px;

  border-radius: 50%;

  background: #ffffff;
}

.score-ring span {
  position: relative;
  z-index: 1;

  color: var(--ink);

  font-weight: 900;
}

.report-bars {
  display: grid;
  gap: 13px;

  margin-bottom: 26px;
}

.report-bars article {
  display: grid;

  grid-template-columns:
    80px 1fr;

  gap: 12px;
  align-items: center;
}

.report-bars span {
  color: var(--muted);

  font-size: 0.78rem;
}

.report-bars i {
  position: relative;

  height: 9px;

  overflow: hidden;

  border-radius: 999px;

  background: #ebe7f4;
}

.report-bars i::after {
  content: "";

  position: absolute;

  inset: 0 auto 0 0;

  width: var(--progress);

  border-radius: inherit;

  background: var(--primary-gradient);
}

.report-preview ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.report-preview li {
  padding: 13px 0;

  color: var(--text);

  border-top:
    1px solid rgba(84, 68, 128, 0.1);
}

.report-preview li::before {
  content: "✓";

  margin-right: 10px;

  color: var(--green-500);

  font-weight: 900;
}

/* ==================================================
   AUDIENCE
================================================== */

.audience-section {
  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(73, 216, 232, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 84%,
      rgba(221, 80, 202, 0.18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #cec7ff 0%,
      #bdaefa 46%,
      #d8b9ed 100%
    );
}

.audience-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 24px;

  margin-top: 56px;
}

.audience-card {
  min-height: 270px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 30px;

  border:
    1px solid rgba(255, 255, 255, 0.48);

  border-radius: 26px;

  box-shadow:
    0 24px 58px rgba(54, 28, 111, 0.16);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.audience-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 32px 72px rgba(54, 28, 111, 0.23);
}

.audience-card-blue {
  background:
    linear-gradient(
      145deg,
      rgba(220, 229, 255, 0.98),
      rgba(192, 205, 255, 0.92)
    );
}

.audience-card-purple {
  background:
    linear-gradient(
      145deg,
      rgba(237, 222, 255, 0.98),
      rgba(205, 183, 255, 0.92)
    );
}

.audience-card-pink {
  background:
    linear-gradient(
      145deg,
      rgba(255, 224, 246, 0.98),
      rgba(244, 192, 230, 0.92)
    );
}

.audience-card-cyan {
  background:
    linear-gradient(
      145deg,
      rgba(214, 249, 255, 0.98),
      rgba(180, 232, 248, 0.92)
    );
}

.audience-icon {
  width: 70px;
  height: 70px;

  display: grid;
  place-items: center;

  position: relative;

  margin-bottom: auto;

  color: #ffffff;

  border-radius: 20px;

  background: var(--primary-gradient);

  box-shadow:
    0 14px 30px rgba(116, 56, 219, 0.26);

  font-size: 1.45rem;
  font-weight: 900;
}

.team-icon i {
  position: absolute;

  width: 16px;
  height: 16px;

  border-radius: 50%;

  background: #ffffff;
}

.team-icon i:nth-child(1) {
  top: 17px;
  left: 27px;
}

.team-icon i:nth-child(2) {
  bottom: 17px;
  left: 14px;
}

.team-icon i:nth-child(3) {
  right: 14px;
  bottom: 17px;
}

.audience-card h3 {
  margin: 25px 0 8px;

  color: var(--ink);

  font-size: 1.08rem;
}

.audience-card p {
  margin: 0;

  color: var(--text);

  font-size: 0.9rem;
}

/* ==================================================
   FINAL CTA
================================================== */

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 110px 0;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 82% 16%,
      rgba(73, 216, 232, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 14% 88%,
      rgba(239, 130, 223, 0.24),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #35126c,
      #5128bd 40%,
      #7438db 72%,
      #a33fdb
    );
}

.final-glow {
  position: absolute;
  z-index: -1;

  border-radius: 50%;

  filter: blur(90px);
}

.final-glow-one {
  top: -170px;
  right: -130px;

  width: 450px;
  height: 450px;

  background:
    rgba(73, 216, 232, 0.14);
}

.final-glow-two {
  bottom: -160px;
  left: -130px;

  width: 420px;
  height: 420px;

  background:
    rgba(239, 130, 223, 0.16);
}

.final-cta-inner {
  max-width: 900px;

  text-align: center;
}

.final-cta h2 {
  margin: 0;

  font-size:
    clamp(2.8rem, 5vw, 4.8rem);

  line-height: 1.03;
  letter-spacing: -0.055em;
}

.final-cta p {
  max-width: 720px;

  margin: 22px auto 0;

  color:
    rgba(255, 255, 255, 0.82);

  font-size: 1.08rem;
}

.final-actions {
  justify-content: center;
}

.button-light {
  color: var(--purple-700);

  background: #ffffff;

  box-shadow:
    0 18px 38px rgba(35, 13, 82, 0.22);
}

.button-outline-light {
  color: #ffffff;

  border-color:
    rgba(255, 255, 255, 0.36);

  background:
    rgba(255, 255, 255, 0.09);
}

.button-outline-light:hover {
  background:
    rgba(255, 255, 255, 0.16);
}

.final-cta small {
  display: block;

  margin-top: 24px;

  color:
    rgba(255, 255, 255, 0.7);
}

/* ==================================================
   PURPLE FOOTER
================================================== */

.site-footer {
  padding: 68px 0 28px;

  color:
    rgba(255, 255, 255, 0.78);

  background:
    radial-gradient(
      circle at 84% 14%,
      rgba(73, 216, 232, 0.12),
      transparent 25%
    ),
    radial-gradient(
      circle at 15% 84%,
      rgba(221, 80, 202, 0.13),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #280d57 0%,
      #411876 48%,
      #5d2295 100%
    );

  border-top:
    1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.45fr 1fr 1fr 1fr;

  gap: 42px;
}

.footer-logo {
  color: #ffffff;
}

.footer-brand p {
  max-width: 310px;

  margin: 18px 0 0;

  line-height: 1.85;
}

.footer-column strong {
  display: block;

  margin-bottom: 16px;

  color: #ffffff;
}

.footer-column a {
  display: block;

  margin: 10px 0;

  color:
    rgba(255, 255, 255, 0.72);

  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-column a:hover {
  color: #ffffff;

  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-top: 52px;
  padding-top: 22px;

  color:
    rgba(255, 255, 255, 0.58);

  border-top:
    1px solid rgba(255, 255, 255, 0.11);

  font-size: 0.78rem;
}

/* ==================================================
   REVEAL EFFECTS
================================================== */

.js .reveal {
  opacity: 0;

  transform: translateY(46px);

  transition:
    opacity 0.82s ease,
    transform 0.82s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal-left {
  transform: translateX(-58px);
}

.js .reveal-right {
  transform: translateX(58px);
}

.js .reveal.is-visible {
  opacity: 1;

  transform: translate(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s !important;
}

.reveal-delay-2 {
  transition-delay: 0.16s !important;
}

.reveal-delay-3 {
  transition-delay: 0.24s !important;
}

.reveal-delay-4 {
  transition-delay: 0.32s !important;
}

/* ==================================================
   ANIMATIONS
================================================== */

@keyframes mascotFloat {
  0%,
  100% {
    transform:
      translateY(0)
      rotate(-1deg);
  }

  50% {
    transform:
      translateY(-8px)
      rotate(1deg);
  }
}

@keyframes mascotWave {
  from {
    transform: rotate(-25deg);
  }

  to {
    transform: rotate(-62deg);
  }
}

@keyframes mascotReact {
  0%,
  100% {
    transform: scale(1);
  }

  35% {
    transform:
      scale(1.08)
      rotate(-3deg);
  }

  65% {
    transform:
      scale(0.97)
      rotate(2deg);
  }
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes alertFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes aiFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ==================================================
   LARGE DESKTOP
================================================== */

@media (min-width: 1700px) {
  :root {
    --container: 1560px;
  }

  .hero-grid {
    grid-template-columns:
      minmax(0, 0.74fr)
      minmax(740px, 1.26fr);
  }
}

/* ==================================================
   LAPTOP / TABLET
================================================== */

@media (max-width: 1280px) {
  .hero-grid,
  .monitoring-layout,
  .assistant-layout,
  .reports-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    max-width: 950px;
  }

  .floating-alert-risk {
    left: -25px;
  }

  .floating-alert-safe {
    right: -20px;
  }

  .value-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card-featured {
    transform: none;
  }

  .capability-card-featured:hover {
    transform: translateY(-7px);
  }

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

  .steps-grid::before {
    display: none;
  }

  .hero-feature-strip,
  .audience-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }
}

@media (max-width: 1120px) {
  .nav-inner {
    grid-template-columns:
      auto
      1fr
      auto;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }
}

/* ==================================================
   SMALL TABLET
================================================== */

@media (max-width: 820px) {
  .container {
    width:
      min(
        calc(100% - 30px),
        var(--container)
      );
  }

  .site-header {
    padding: 8px 10px;
  }

  .nav-inner {
    min-height: 60px;

    grid-template-columns:
      auto
      1fr
      auto;

    padding: 0 12px;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav.menu-open .mobile-navigation {
    display: grid;
  }

  .mobile-navigation {
    gap: 5px;

    padding:
      6px 12px 14px;

    border-top:
      1px solid rgba(116, 56, 219, 0.1);
  }

  .mobile-navigation a {
    padding: 11px 12px;

    color: #413854;

    border-radius: 10px;

    font-size: 0.88rem;
    font-weight: 700;
  }

  .mobile-navigation a:hover {
    background: #f5efff;
  }

  .mobile-demo,
  .mobile-start {
    text-align: center;
  }

  .mobile-demo {
    color: var(--purple-600) !important;

    border:
      1px solid rgba(116, 56, 219, 0.16);
  }

  .mobile-start {
    color: #ffffff !important;

    background: var(--primary-gradient);
  }

  .hero {
    padding-top: 126px;
  }

  .hero h1 {
    font-size:
      clamp(3.4rem, 13vw, 5rem);
  }

  .mascot-guide {
    width: 100%;

    margin-left: 0;
  }

  .floating-alert {
    display: none;
  }

  .preview-topbar,
  .preview-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .remediation-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .metric-row {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .console-recommendation {
    align-items: flex-start;
    flex-direction: column;
  }

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

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 640px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    padding-bottom: 82px;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
  }

  .mascot-guide {
    align-items: center;
    flex-direction: column;

    margin-bottom: 22px;
  }

  .mascot-message {
    width: 100%;

    border-radius: 17px;
  }

  .mascot-message::before {
    top: -9px;
    bottom: auto;
    left: 48px;

    transform: rotate(45deg);

    clip-path:
      polygon(
        0 0,
        100% 0,
        0 100%
      );
  }

  .product-preview {
    padding: 15px;

    border-radius: 22px;
  }

  .hero-feature-strip,
  .steps-grid,
  .audience-grid,
  .metric-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .assistant-panel {
    padding: 23px;
  }

  .assistant-facts {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 2.3rem;
  }

  .value-card,
  .step-card,
  .capability-card,
  .remediation-card {
    min-height: auto;
  }

  .activity-timeline article {
    grid-template-columns:
      46px 18px 1fr;
  }

  .activity-timeline article::after {
    left: 66px;
  }

  .report-score {
    align-items: flex-start;
    gap: 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      0.001ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.001ms !important;
  }

  .js .reveal {
    opacity: 1;

    transform: none;
  }
}
