:root {
  --bg: #08070d;
  --bg-deep: #050408;
  --surface: rgba(18, 15, 25, 0.78);
  --surface-solid: #121019;
  --surface-2: #191522;
  --surface-3: #211a2d;

  --text: #f8f6fb;
  --muted: #bcb5c7;
  --muted-2: #8f879b;

  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);

  --purple: #9b6cff;
  --purple-deep: #6c3db4;
  --purple-soft: #d9c4ff;

  --gold: #d6ad46;
  --gold-soft: #f0d997;

  --green: #70e1ae;
  --red: #ff7e8d;

  --container: 1180px;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;

  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --shadow-purple: 0 24px 80px rgba(109, 61, 180, 0.22);
}


/* =========================================================
   RESET / GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

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

  background:
    radial-gradient(
      circle at 78% 12%,
      rgba(128, 78, 201, 0.17),
      transparent 28rem
    ),
    radial-gradient(
      circle at 12% 44%,
      rgba(214, 173, 70, 0.06),
      transparent 24rem
    ),
    var(--bg);

  color: var(--text);

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

  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;

  opacity: 0.28;

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

  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

body.menu-open,
body.popup-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

::selection {
  background: rgba(155, 108, 255, 0.38);
  color: white;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;

  transform: translateY(-150%);

  padding: 10px 14px;

  border-radius: 10px;

  background: white;
  color: #111;

  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}


/* =========================================================
   LAYOUT
   ========================================================= */

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 800px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-divider {
  border-top: 1px solid var(--line);
}

.section-dark {
  background: rgba(5, 4, 8, 0.48);
  border-block: 1px solid var(--line);
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

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

  margin: 0 0 18px;

  color: var(--purple-soft);

  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;

  background: linear-gradient(
    90deg,
    var(--purple),
    var(--gold)
  );
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.1rem, 7.6vw, 7.4rem);
  margin-bottom: 26px;
  max-width: 1000px;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin-bottom: 12px;
}

h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.72;
  color: var(--muted);
  max-width: 760px;
}

.small {
  font-size: 0.9rem;
  color: var(--muted-2);
}

.text-muted {
  color: var(--muted);
}

.text-purple {
  color: var(--purple-soft);
}

.text-gold {
  color: var(--gold-soft);
}

.gradient-text {
  color: transparent;

  background:
    linear-gradient(
      105deg,
      #fff 5%,
      var(--purple-soft) 52%,
      var(--gold-soft)
    );

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


/* =========================================================
   ANNOUNCEMENT
   ========================================================= */

.announcement {
  position: relative;
  z-index: 61;

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

  background: #0e0b14;
  color: #d9d2e3;

  font-size: 0.82rem;
}

.announcement-inner {
  min-height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-align: center;
}

.announcement-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 0 5px rgba(112, 225, 174, 0.09),
    0 0 18px rgba(112, 225, 174, 0.45);
}


/* =========================================================
   HEADER / NAV
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;

  border-bottom: 1px solid transparent;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(8, 7, 13, 0.82);
  border-bottom-color: var(--line);

  backdrop-filter: blur(18px) saturate(140%);
}

.nav {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  flex-shrink: 0;
}

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

  object-fit: contain;

  filter: drop-shadow(
    0 8px 18px rgba(155, 108, 255, 0.16)
  );
}

.brand-text {
  display: grid;
  gap: 1px;

  line-height: 1;
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0.11em;
  font-size: 1.02rem;
}

.brand-sub {
  color: var(--muted-2);

  font-size: 0.63rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-link {
  padding: 10px 12px;

  border-radius: 10px;

  color: #d9d3e0;

  font-size: 0.92rem;
  font-weight: 650;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: 1px solid var(--line);
  border-radius: 12px;

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

  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";

  display: block;

  width: 19px;
  height: 2px;

  margin: 4px auto;

  background: #fff;

  border-radius: 99px;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}


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

.btn {
  display: inline-flex;

  min-height: 48px;

  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 20px;

  border: 1px solid transparent;
  border-radius: 13px;

  font-weight: 800;
  letter-spacing: -0.01em;

  cursor: pointer;

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

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

.btn-primary {
  background:
    linear-gradient(
      135deg,
      #a879ff,
      #6d3db5 74%
    );

  color: #fff;

  box-shadow:
    0 12px 34px rgba(109, 61, 181, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  box-shadow:
    0 18px 46px rgba(109, 61, 181, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.btn-secondary {
  border-color: var(--line-strong);

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

  color: #f4f0f8;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost {
  color: var(--purple-soft);
  padding-inline: 8px;
}

.btn-sm {
  min-height: 42px;

  padding: 9px 15px;

  font-size: 0.88rem;

  border-radius: 11px;
}

.btn svg,
.inline-link svg {
  width: 18px;
  height: 18px;

  flex: 0 0 auto;
}

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

  color: var(--purple-soft);

  font-weight: 800;
}

.inline-link:hover {
  color: #fff;
}


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

.hero {
  position: relative;

  overflow: clip;

  padding: 76px 0 104px;

  min-height: calc(100vh - 114px);

  display: grid;
  align-items: center;
}

.hero::before {
  content: "";

  position: absolute;

  width: 900px;
  height: 900px;

  right: -340px;
  top: -310px;

  border-radius: 50%;

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

  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.015),
    0 0 0 180px rgba(255, 255, 255, 0.01);

  pointer-events: none;
}

.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(380px, 0.72fr);

  gap: 56px;

  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3.5rem, 7.4vw, 7rem);
}

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

  margin: 34px 0 22px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--muted-2);

  font-size: 0.88rem;
}

.hero-note svg {
  width: 18px;
  height: 18px;

  color: var(--green);
}

.hero-orbit {
  position: relative;

  min-height: 575px;

  display: grid;
  place-items: center;
}

.orbit-glow {
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(128, 75, 199, 0.25),
      rgba(128, 75, 199, 0.05) 42%,
      transparent 70%
    );

  filter: blur(12px);

  animation: breathe 6s ease-in-out infinite;
}

.orbit-ring,
.orbit-ring::before,
.orbit-ring::after {
  position: absolute;

  border: 1px solid rgba(204, 181, 240, 0.17);

  border-radius: 50%;
}

.orbit-ring {
  width: 430px;
  height: 430px;

  animation: spin 24s linear infinite;
}

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

  inset: 30px -24px;

  transform: rotate(58deg);
}

.orbit-ring::after {
  content: "";

  inset: -24px 30px;

  transform: rotate(-52deg);

  border-color: rgba(214, 173, 70, 0.14);
}

.orbit-dot {
  position: absolute;

  top: 46px;
  left: 74px;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--gold-soft);

  box-shadow: 0 0 24px var(--gold);
}

.hero-mark {
  position: relative;

  width: min(360px, 74vw);

  filter:
    drop-shadow(
      0 32px 70px rgba(0, 0, 0, 0.55)
    );

  opacity: 0.92;
}

.console-card {
  position: absolute;

  width: 275px;

  padding: 16px;

  border: 1px solid var(--line-strong);
  border-radius: 16px;

  background: rgba(15, 12, 22, 0.78);

  box-shadow: var(--shadow);

  backdrop-filter: blur(18px);
}

.console-card.top {
  top: 52px;
  right: 0;
}

.console-card.bottom {
  bottom: 50px;
  left: 0;
}

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

  padding-bottom: 12px;
  margin-bottom: 12px;

  border-bottom: 1px solid var(--line);
}

.console-label {
  font-size: 0.7rem;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--muted-2);

  font-weight: 800;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 0.7rem;

  color: var(--green);

  font-weight: 800;
}

.live-pill::before {
  content: "";

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 12px rgba(112, 225, 174, 0.8);
}

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

  padding: 7px 0;

  color: var(--muted);

  font-size: 0.84rem;
}

.console-row strong {
  color: #fff;

  font-size: 0.83rem;
}

.timeline-mini {
  display: grid;
  gap: 10px;
}

.timeline-item {
  display: grid;

  grid-template-columns: 18px 1fr;

  gap: 10px;

  align-items: start;

  color: var(--muted);

  font-size: 0.78rem;
}

.timeline-item i {
  width: 9px;
  height: 9px;

  margin-top: 5px;

  border-radius: 50%;

  background: var(--purple);

  box-shadow:
    0 0 0 5px rgba(155, 108, 255, 0.1);
}

.timeline-item:nth-child(2) i {
  background: var(--gold);

  box-shadow:
    0 0 0 5px rgba(214, 173, 70, 0.1);
}

.timeline-item:nth-child(3) i {
  background: var(--green);

  box-shadow:
    0 0 0 5px rgba(112, 225, 174, 0.1);
}


/* =========================================================
   PROOF STRIP
   ========================================================= */

.proof-strip {
  position: relative;
  z-index: 3;

  margin-top: -32px;
}

.proof-grid {
  display: grid;

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

  border: 1px solid var(--line);
  border-radius: var(--radius);

  overflow: hidden;

  background: rgba(13, 11, 18, 0.8);

  box-shadow: var(--shadow);

  backdrop-filter: blur(18px);
}

.proof-item {
  min-height: 120px;

  padding: 24px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-value {
  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 0.82rem;

  color: var(--muted-2);
}


/* =========================================================
   SECTION HEADS
   ========================================================= */

.section-head {
  display: flex;

  align-items: end;
  justify-content: space-between;

  gap: 40px;

  margin-bottom: 48px;
}

.section-head > div:first-child {
  max-width: 780px;
}

.section-head p {
  max-width: 550px;

  margin-bottom: 0;

  color: var(--muted);
}

.compact-head {
  margin-bottom: 30px;
}

.compact-head h2 {
  max-width: 760px;
}


/* =========================================================
   GENERAL GRIDS
   ========================================================= */

.grid-2 {
  display: grid;

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

  gap: 22px;
}

.grid-3 {
  display: grid;

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

  gap: 20px;
}

.grid-4 {
  display: grid;

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

  gap: 18px;
}


/* =========================================================
   CARDS
   ========================================================= */

.card {
  position: relative;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.018)
    );

  overflow: hidden;
}

.card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      420px circle at var(--mx, 50%) var(--my, 0%),
      rgba(155, 108, 255, 0.12),
      transparent 44%
    );

  opacity: 0;

  transition: opacity 0.25s ease;

  pointer-events: none;
}

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

.card-pad {
  padding: 30px;
}

.card p:last-child {
  margin-bottom: 0;
}

.icon-box {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  border: 1px solid rgba(155, 108, 255, 0.22);
  border-radius: 14px;

  background: rgba(155, 108, 255, 0.075);

  color: var(--purple-soft);
}

.icon-box svg {
  width: 24px;
  height: 24px;

  stroke-width: 1.8;
}


/* =========================================================
   RISK / PAIN CARDS
   ========================================================= */

.pain-card {
  min-height: 0 !important;
}

.pain-card.card-pad {
  padding: 28px !important;
}

.pain-card .number {
  color: var(--gold-soft);

  font-size: 0.78rem;

  font-weight: 850;

  letter-spacing: 0.12em;
}

.pain-card h3 {
  margin-top: 10px;

  font-size: clamp(1.15rem, 1.8vw, 1.45rem);

  line-height: 1.25;
}

.pain-card p {
  font-size: 0.94rem;

  line-height: 1.6;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {
  display: grid;

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

  gap: 18px;
}

.service-card {
  grid-column: span 4;

  min-height: 330px;

  padding: 30px;

  display: flex;
  flex-direction: column;

  align-content: start;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.services-grid > .service-card:not(.featured) {
  min-height: 0;
}

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

  border-color: rgba(155, 108, 255, 0.32);

  background:
    linear-gradient(
      150deg,
      rgba(155, 108, 255, 0.075),
      rgba(255, 255, 255, 0.02)
    );
}

.service-card.featured {
  grid-column: span 8;

  display: grid;

  grid-template-columns: 1fr 0.78fr;

  gap: 36px;

  align-items: end;
}

.service-card h3 {
  line-height: 1.2;
}

.service-card .service-list {
  margin-top: auto;

  padding-top: 28px;
}

.service-list {
  list-style: none;

  padding-left: 0;

  margin-bottom: 0;

  display: grid;
  gap: 10px;

  color: var(--muted);

  font-size: 0.9rem;
}

.service-list li {
  display: flex;
  gap: 10px;

  align-items: flex-start;
}

.service-list li::before {
  content: "";

  flex: 0 0 auto;

  width: 5px;
  height: 5px;

  margin-top: 0.62em;

  border-radius: 50%;

  background: var(--purple);

  box-shadow:
    0 0 10px rgba(155, 108, 255, 0.8);
}

.service-callout {
  margin-top: 20px;

  padding-top: 16px;

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

  color: var(--muted);

  font-size: 0.9rem;

  line-height: 1.55;
}

.service-visual {
  min-height: 230px;

  border-radius: 18px;

  border: 1px solid var(--line);

  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(155, 108, 255, 0.25),
      transparent 36%
    ),
    linear-gradient(
      160deg,
      #17121f,
      #0c0a11
    );

  padding: 22px;

  overflow: hidden;
}

.metric-stack {
  display: grid;
  gap: 12px;
}

.metric-line {
  display: grid;

  grid-template-columns: 1fr auto;

  gap: 10px;

  align-items: center;

  color: var(--muted);

  font-size: 0.78rem;
}

.metric-bar {
  grid-column: 1 / -1;

  height: 7px;

  border-radius: 99px;

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

  overflow: hidden;
}

.metric-bar span {
  display: block;

  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      var(--purple-deep),
      var(--purple-soft)
    );
}


/* =========================================================
   CASE STUDIES
   ========================================================= */

.case-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 24px;
}

.case-card {
  padding: 34px;

  min-height: 520px;

  display: flex;
  flex-direction: column;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  width: fit-content;

  padding: 7px 10px;

  border: 1px solid var(--line);
  border-radius: 999px;

  color: var(--muted);

  font-size: 0.74rem;

  font-weight: 750;

  margin-bottom: 28px;
}

.case-tag i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--red);

  box-shadow:
    0 0 12px rgba(255, 126, 141, 0.65);
}

.case-card:nth-child(2) .case-tag i {
  background: var(--green);

  box-shadow:
    0 0 12px rgba(112, 225, 174, 0.65);
}

.case-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);

  max-width: 520px;
}

.case-summary {
  color: var(--muted);

  font-size: 1rem;
}

.case-results {
  margin-top: auto;

  padding-top: 30px;

  display: grid;
  gap: 12px;
}

.result-row {
  display: flex;

  gap: 12px;

  align-items: flex-start;

  padding-top: 12px;

  border-top: 1px solid var(--line);

  color: #ddd7e4;

  font-size: 0.9rem;
}

.result-row svg {
  width: 18px;
  height: 18px;

  flex: 0 0 auto;

  color: var(--green);

  margin-top: 2px;
}

.case-banner {
  position: relative;

  margin-top: 22px;

  min-height: 150px;

  border-radius: 16px;

  border: 1px solid var(--line);

  background: #0b0910;

  overflow: hidden;
}

.threat-visual {
  display: grid;

  grid-template-columns: 110px 1fr;

  height: 100%;

  min-height: 150px;
}

.threat-count {
  display: grid;
  place-items: center;

  border-right: 1px solid var(--line);

  font-size: 3.6rem;

  line-height: 1;

  font-weight: 900;

  color: var(--red);

  background: rgba(255, 126, 141, 0.04);
}

.threat-copy {
  padding: 24px;

  display: grid;

  align-content: center;

  gap: 10px;
}

.threat-copy strong {
  font-size: 1rem;
}

.threat-copy span {
  color: var(--muted);

  font-size: 0.82rem;
}

.flow-mini {
  display: flex;

  align-items: center;

  gap: 8px;

  min-height: 150px;

  padding: 24px;

  overflow: auto;
}

.flow-node {
  flex: 0 0 auto;

  min-width: 86px;

  padding: 12px 10px;

  border: 1px solid var(--line);
  border-radius: 12px;

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

  text-align: center;

  font-size: 0.72rem;

  color: #ddd6e6;
}

.flow-arrow {
  flex: 0 0 auto;

  color: var(--purple-soft);
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
  display: grid;

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

  gap: 0;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  overflow: hidden;
}

.process-step {
  position: relative;

  min-height: 280px;

  padding: 28px;

  border-right: 1px solid var(--line);

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

.process-step:last-child {
  border-right: 0;
}

.process-num {
  display: grid;
  place-items: center;

  width: 34px;
  height: 34px;

  margin-bottom: 64px;

  border: 1px solid rgba(155, 108, 255, 0.26);
  border-radius: 50%;

  color: var(--purple-soft);

  font-size: 0.78rem;

  font-weight: 900;
}

.process-step p {
  color: var(--muted);

  font-size: 0.9rem;
}


/* =========================================================
   CREDENTIALS
   ========================================================= */

.credential-wrap {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 54px;

  align-items: center;
}

.credential-card {
  position: relative;

  min-height: 430px;

  border: 1px solid var(--line);
  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      145deg,
      #171220,
      #0b0910
    );

  overflow: hidden;

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

.credential-card::before {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;

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

  background:
    radial-gradient(
      circle,
      rgba(155, 108, 255, 0.22),
      transparent 68%
    );
}

.credential-mark {
  position: absolute;

  width: 320px;

  right: -30px;
  bottom: -30px;

  opacity: 0.16;
}

.credential-content {
  position: relative;

  z-index: 2;

  padding: 38px;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.credential-seal {
  display: grid;
  place-items: center;

  width: 62px;
  height: 62px;

  border-radius: 18px;

  border: 1px solid rgba(214, 173, 70, 0.26);

  background: rgba(214, 173, 70, 0.07);

  color: var(--gold-soft);
}

.credential-seal svg {
  width: 30px;
  height: 30px;
}

.credential-list {
  display: grid;

  gap: 12px;

  margin-top: 50px;
}

.credential-item {
  padding: 14px 0;

  border-top: 1px solid var(--line);
}

.credential-item span {
  display: block;

  color: var(--muted-2);

  font-size: 0.74rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  margin-bottom: 3px;
}

.credential-item strong {
  font-size: 1rem;
}


/* =========================================================
   INDUSTRY SECTION
   ========================================================= */

#industries.section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.industry-kicker {
  display: inline-block;

  margin-bottom: 2px;

  color: var(--purple-soft);

  font-size: 0.68rem;

  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


/* Old 2x2 industry cards remain supported */
.industry-grid {
  display: grid;

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

  gap: 18px;
}

.industry-card {
  min-height: 0 !important;

  padding: 28px 30px !important;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.industry-card h3 {
  margin: 6px 0 10px;

  font-size: clamp(1.2rem, 1.8vw, 1.5rem);

  line-height: 1.2;
}

.industry-card p {
  margin: 0;

  max-width: 620px;

  color: var(--muted);

  font-size: 0.95rem;

  line-height: 1.65;
}


/* =========================================================
   INDUSTRY ACCORDION
   ========================================================= */

.industry-accordion {
  display: grid;

  gap: 12px;
}

.industry-item {
  border: 1px solid var(--line);
  border-radius: 18px;

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

  overflow: hidden;

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

.industry-item:hover {
  border-color:
    rgba(155, 108, 255, 0.42);

  background:
    rgba(155, 108, 255, 0.025);
}

.industry-item:has(
  .industry-trigger[aria-expanded="true"]
) {
  border-color:
    rgba(155, 108, 255, 0.38);

  box-shadow:
    0 14px 45px rgba(67, 37, 112, 0.10);
}

.industry-trigger {
  width: 100%;

  border: 0;

  background: transparent;

  color: inherit;

  padding: 22px 26px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  text-align: left;

  cursor: pointer;
}

.industry-trigger small {
  display: block;

  margin-bottom: 4px;

  color: var(--purple-soft);

  font-size: 0.68rem;

  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.industry-trigger strong {
  display: block;

  font-size:
    clamp(1.15rem, 2vw, 1.45rem);

  line-height: 1.2;
}

.industry-plus {
  flex: 0 0 auto;

  width: 34px;
  height: 34px;

  border-radius: 50%;

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

  display: grid;
  place-items: center;

  font-size: 1.25rem;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.industry-trigger[aria-expanded="true"]
.industry-plus {
  transform: rotate(45deg);

  background:
    rgba(155, 108, 255, 0.16);

  border-color:
    rgba(155, 108, 255, 0.35);
}

.industry-panel {
  display: none;

  padding: 0 26px 24px;

  max-width: 900px;
}

.industry-panel.is-open {
  display: block;
}

.industry-panel p {
  margin: 0 0 14px;

  color: var(--muted);

  line-height: 1.65;
}

.industry-panel ul {
  margin: 0;

  padding-left: 18px;

  color: var(--muted);
}

.industry-panel li {
  margin: 6px 0;

  line-height: 1.5;
}


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

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;

  display: flex;

  justify-content: space-between;

  gap: 24px;

  align-items: center;

  padding: 25px 0;

  border: 0;

  background: none;

  text-align: left;

  font-weight: 800;

  cursor: pointer;
}

.faq-question svg {
  width: 20px;
  height: 20px;

  flex: 0 0 auto;

  transition:
    transform 0.2s ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: block;
}

.faq-answer > div {
  overflow: visible;
}

.js-enabled .faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  transition:
    grid-template-rows 0.25s ease;
}

.js-enabled .faq-answer > div {
  overflow: hidden;
}

.js-enabled
.faq-question[aria-expanded="true"]
+ .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  max-width: 800px;

  padding: 0 0 24px;

  color: var(--muted);

  margin: 0;
}


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

.cta-panel {
  position: relative;

  overflow: hidden;

  padding: 58px;

  border:
    1px solid rgba(155, 108, 255, 0.22);

  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      125deg,
      rgba(109, 61, 181, 0.20),
      rgba(18, 15, 25, 0.88) 58%,
      rgba(214, 173, 70, 0.06)
    );

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

.cta-panel::after {
  content: "";

  position: absolute;

  width: 460px;
  height: 460px;

  right: -180px;
  top: -230px;

  border-radius: 50%;

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

  box-shadow:
    0 0 0 60px rgba(255, 255, 255, 0.018),
    0 0 0 120px rgba(255, 255, 255, 0.01);
}

.cta-content {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: end;

  justify-content: space-between;

  gap: 44px;
}

.cta-content h2 {
  max-width: 720px;

  margin-bottom: 12px;
}

.cta-content p {
  color: var(--muted);

  max-width: 650px;

  margin-bottom: 0;
}

.cta-actions {
  flex: 0 0 auto;

  display: flex;

  gap: 10px;

  flex-wrap: wrap;
}


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

.page-hero {
  position: relative;

  overflow: hidden;

  padding: 105px 0 82px;

  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -100px;
  top: -250px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(155, 108, 255, 0.18),
      transparent 65%
    );
}

.page-hero h1 {
  font-size:
    clamp(3.4rem, 7vw, 6.5rem);

  max-width: 1000px;
}

.page-hero .lead {
  max-width: 820px;
}

.breadcrumb {
  display: flex;

  gap: 9px;

  align-items: center;

  margin-bottom: 30px;

  color: var(--muted-2);

  font-size: 0.82rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: var(--purple-soft);
}


/* =========================================================
   SERVICE DETAIL PAGES
   ========================================================= */

.detail-section {
  display: grid;

  grid-template-columns: 0.65fr 1.35fr;

  gap: 70px;

  padding: 76px 0;

  border-bottom: 1px solid var(--line);
}

.detail-aside {
  position: sticky;

  top: 120px;

  align-self: start;
}

.detail-num {
  display: block;

  margin-bottom: 28px;

  color: var(--gold-soft);

  font-size: 0.78rem;

  letter-spacing: 0.12em;

  font-weight: 850;
}

.detail-main > p {
  color: var(--muted);

  font-size: 1.05rem;

  max-width: 780px;
}

.detail-columns {
  display: grid;

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

  gap: 18px;

  margin-top: 34px;
}

.detail-box {
  padding: 24px;

  border: 1px solid var(--line);
  border-radius: 16px;

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

.detail-box h4 {
  margin-bottom: 14px;
}

.check-list {
  list-style: none;

  padding: 0;

  margin: 0;

  display: grid;

  gap: 11px;

  color: var(--muted);

  font-size: 0.9rem;
}

.check-list li {
  display: flex;

  gap: 10px;

  align-items: flex-start;
}

.check-list li::before {
  content: "✓";

  color: var(--green);

  font-weight: 900;
}


/* =========================================================
   STORY / CASE PAGES
   ========================================================= */

.story-layout {
  display: grid;

  grid-template-columns:
    0.78fr 1.22fr;

  gap: 54px;

  align-items: start;
}

.story-sticky {
  position: sticky;

  top: 120px;
}

.story-card {
  padding: 32px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

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

.story-card + .story-card {
  margin-top: 22px;
}

.story-card h2 {
  font-size:
    clamp(2rem, 3.8vw, 3.6rem);
}

.story-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin: 22px 0 28px;
}

.chip {
  display: inline-flex;

  align-items: center;

  min-height: 32px;

  padding: 6px 10px;

  border: 1px solid var(--line);
  border-radius: 999px;

  color: var(--muted);

  font-size: 0.73rem;
}

.story-block {
  padding: 28px 0;

  border-top: 1px solid var(--line);
}

.story-block h3 {
  font-size: 1.1rem;

  letter-spacing: -0.01em;
}

.story-block p {
  color: var(--muted);
}

.story-block ul {
  color: var(--muted);

  padding-left: 20px;
}

.timeline-full {
  display: grid;

  gap: 0;

  margin-top: 26px;
}

.timeline-full-item {
  display: grid;

  grid-template-columns: 42px 1fr;

  gap: 18px;

  position: relative;

  padding-bottom: 28px;
}

.timeline-full-item:not(:last-child)::before {
  content: "";

  position: absolute;

  left: 20px;
  top: 40px;
  bottom: 0;

  width: 1px;

  background: var(--line-strong);
}

.timeline-full-num {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(155, 108, 255, 0.25);
  border-radius: 50%;

  background: #0e0b14;

  color: var(--purple-soft);

  font-size: 0.78rem;

  font-weight: 900;
}

.timeline-full-copy {
  padding-top: 7px;
}

.timeline-full-copy p {
  margin-bottom: 0;
}


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 64px;

  align-items: center;
}

.about-visual {
  min-height: 520px;

  position: relative;

  display: grid;
  place-items: center;

  border: 1px solid var(--line);
  border-radius: var(--radius-lg);

  background:
    linear-gradient(
      145deg,
      #15101d,
      #08070d
    );

  overflow: hidden;
}

.about-visual::before {
  content: "";

  position: absolute;

  inset: 8%;

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

  border-radius: 50%;

  box-shadow:
    0 0 0 60px rgba(255, 255, 255, 0.012),
    0 0 0 120px rgba(255, 255, 255, 0.008);
}

.about-visual img {
  width: 68%;

  position: relative;

  z-index: 2;

  opacity: 0.82;
}

.about-float {
  position: absolute;

  z-index: 3;

  padding: 16px 18px;

  border: 1px solid var(--line);
  border-radius: 14px;

  background:
    rgba(14, 11, 20, 0.83);

  backdrop-filter:
    blur(15px);

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

.about-float.top {
  top: 34px;
  left: 28px;
}

.about-float.bottom {
  bottom: 34px;
  right: 28px;
}

.about-float span {
  display: block;

  color: var(--muted-2);

  font-size: 0.7rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;
}

.about-float strong {
  font-size: 0.94rem;
}

.value-grid {
  display: grid;

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

  gap: 18px;

  margin-top: 32px;
}

.value-card {
  padding: 24px;

  border: 1px solid var(--line);
  border-radius: 16px;

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

.value-card p {
  color: var(--muted);

  font-size: 0.88rem;

  margin-bottom: 0;
}


/* =========================================================
   CONTACT / FORMS
   ========================================================= */

.contact-layout {
  display: grid;

  grid-template-columns:
    0.76fr 1.24fr;

  gap: 54px;

  align-items: start;
}

.contact-sidebar {
  position: sticky;

  top: 120px;
}

.contact-methods {
  display: grid;

  gap: 12px;

  margin-top: 32px;
}

.contact-method {
  display: flex;

  gap: 14px;

  align-items: center;

  padding: 17px;

  border: 1px solid var(--line);
  border-radius: 14px;

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

.contact-method-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background:
    rgba(155, 108, 255, 0.08);

  color: var(--purple-soft);
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
}

.contact-method span {
  display: block;

  color: var(--muted-2);

  font-size: 0.72rem;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.contact-method strong {
  font-size: 0.94rem;
}

.form-card {
  padding: 34px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.018)
    );

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

.form-head {
  margin-bottom: 28px;

  padding-bottom: 24px;

  border-bottom: 1px solid var(--line);
}

.form-head p {
  color: var(--muted);

  margin-bottom: 0;
}

.form-grid {
  display: grid;

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

  gap: 18px;
}

.field {
  display: grid;

  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;

  font-weight: 750;

  color: #e7e1ec;
}

.field label .required {
  color: var(--red);
}

.field input,
.field select,
.field textarea {
  width: 100%;

  border: 1px solid var(--line-strong);
  border-radius: 12px;

  background: #0d0a12;

  color: #fff;

  padding: 13px 14px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field select {
  appearance: none;

  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #aaa 50%
    ),
    linear-gradient(
      135deg,
      #aaa 50%,
      transparent 50%
    );

  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 13px) 52%;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat:
    no-repeat;
}

.field textarea {
  min-height: 145px;

  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color:
    rgba(155, 108, 255, 0.72);

  box-shadow:
    0 0 0 4px rgba(155, 108, 255, 0.11);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6e6678;
}

.field-note {
  color: var(--muted-2);

  font-size: 0.75rem;
}

.radio-row {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;
}

.radio-chip {
  position: relative;
}

.radio-chip input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}

.radio-chip label {
  display: block;

  padding: 9px 12px;

  border: 1px solid var(--line-strong);
  border-radius: 999px;

  color: var(--muted);

  cursor: pointer;

  transition: 0.2s ease;
}

.radio-chip input:checked + label {
  border-color:
    rgba(155, 108, 255, 0.58);

  color: #fff;

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

.consent {
  display: flex;

  gap: 10px;

  align-items: flex-start;

  color: var(--muted);

  font-size: 0.78rem;
}

.consent input {
  margin-top: 4px;

  accent-color:
    var(--purple);
}

.form-footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 24px;
}

.form-status {
  min-height: 24px;

  color: var(--muted);

  font-size: 0.84rem;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--red);
}

.hidden-field {
  position: absolute !important;

  left: -10000px !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;
}

.security-note {
  display: flex;

  gap: 11px;

  align-items: flex-start;

  margin-top: 20px;

  padding: 14px;

  border:
    1px solid rgba(214, 173, 70, 0.16);

  border-radius: 12px;

  background:
    rgba(214, 173, 70, 0.045);

  color: var(--muted);

  font-size: 0.78rem;
}

.security-note svg {
  width: 18px;
  height: 18px;

  flex: 0 0 auto;

  color: var(--gold-soft);

  margin-top: 1px;
}


/* =========================================================
   LEGAL
   ========================================================= */

.legal-content h2 {
  font-size: 1.7rem;

  margin-top: 42px;
}

.legal-content h3 {
  font-size: 1.18rem;

  margin-top: 28px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--purple-soft);

  text-decoration: underline;

  text-underline-offset: 3px;
}


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

.site-footer {
  border-top: 1px solid var(--line);

  padding: 64px 0 26px;

  background: #06050a;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.2fr 0.7fr 0.7fr 1fr;

  gap: 44px;
}

.footer-brand p {
  color: var(--muted);

  max-width: 390px;

  margin: 18px 0 22px;
}

.footer-title {
  font-size: 0.74rem;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  color: var(--muted-2);

  font-weight: 850;

  margin-bottom: 17px;
}

.footer-links {
  list-style: none;

  padding: 0;

  margin: 0;

  display: grid;

  gap: 10px;

  color: #d4cdda;

  font-size: 0.88rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;

  gap: 12px;

  color: #d4cdda;

  font-size: 0.88rem;
}

.footer-contact a:hover {
  color: var(--purple-soft);
}

.footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 54px;

  padding-top: 22px;

  border-top: 1px solid var(--line);

  color: var(--muted-2);

  font-size: 0.76rem;
}

.footer-bottom-links {
  display: flex;

  gap: 18px;
}


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

.reveal {
  opacity: 1;

  transform: none;
}

.js-enabled
.reveal.reveal-ready {
  opacity: 0;

  transform:
    translateY(20px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.js-enabled
.reveal.reveal-ready.in-view {
  opacity: 1;

  transform: none;
}

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

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

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


/* =========================================================
   VETEX EXIT / SECURITY POPUP
   ========================================================= */

.vetex-popup {
  position: fixed;

  inset: 0;

  z-index: 9999;

  display: none;

  place-items: center;

  padding: 20px;
}

.vetex-popup.is-open {
  display: grid;
}

.vetex-popup-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(4, 3, 8, 0.82);

  backdrop-filter:
    blur(7px);
}

.vetex-popup-card {
  position: relative;

  z-index: 2;

  width:
    min(620px, 100%);

  max-height:
    calc(100vh - 40px);

  overflow-y: auto;

  padding: 38px;

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

  border-radius: 22px;

  background:
    radial-gradient(
      circle at top right,
      rgba(139, 92, 246, 0.18),
      transparent 38%
    ),
    #111018;

  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(139, 92, 246, 0.08);
}

.vetex-popup-close {
  position: absolute;

  top: 15px;
  right: 18px;

  width: 38px;
  height: 38px;

  border: 0;

  background: transparent;

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

  font-size: 1.8rem;

  line-height: 1;

  cursor: pointer;

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

.vetex-popup-close:hover {
  color: #fff;

  transform: scale(1.08);
}

.vetex-popup-card h2 {
  margin: 10px 0 14px;

  max-width: 540px;

  font-size:
    clamp(1.8rem, 4vw, 2.6rem);

  line-height: 1.08;
}

.vetex-popup-lead {
  margin: 0 0 24px;

  color: var(--muted);

  font-size: 1rem;

  line-height: 1.65;
}

.vetex-popup-points {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 12px 20px;

  margin-bottom: 24px;
}

.vetex-popup-point {
  display: flex;

  gap: 10px;

  align-items: flex-start;
}

.vetex-popup-point span {
  flex: 0 0 auto;

  color: var(--purple-soft);

  font-weight: 800;
}

.vetex-popup-point p {
  margin: 0;

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

  font-size: 0.9rem;

  line-height: 1.45;
}

.vetex-popup-callout {
  display: grid;

  gap: 5px;

  margin: 0 0 24px;

  padding: 16px 18px;

  border:
    1px solid rgba(139, 92, 246, 0.24);

  border-radius: 14px;

  background:
    rgba(139, 92, 246, 0.08);
}

.vetex-popup-callout strong {
  color: #fff;

  font-size: 0.92rem;
}

.vetex-popup-callout span {
  color: var(--muted);

  font-size: 0.88rem;

  line-height: 1.5;
}

.vetex-popup-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.vetex-popup-note {
  margin: 17px 0 0;

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

  font-size: 0.78rem;

  line-height: 1.5;
}


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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.95);

    opacity: 0.65;
  }

  50% {
    transform: scale(1.06);

    opacity: 1;
  }
}


/* =========================================================
   RESPONSIVE — 1050
   ========================================================= */

@media (max-width: 1050px) {

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

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

  .hero-orbit {
    min-height: 500px;
  }

  .service-card {
    grid-column: span 6;
  }

  .service-card.featured {
    grid-column: 1 / -1;
  }

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

  .process-step {
    border-bottom: 1px solid var(--line);
  }

  .process-step:nth-child(even) {
    border-right: 0;
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .credential-wrap,
  .about-grid,
  .contact-layout,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .credential-card {
    max-width: 680px;
  }

  .contact-sidebar,
  .story-sticky {
    position: static;
  }

  .footer-grid {
    grid-template-columns:
      1.25fr 0.75fr 0.75fr;
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   RESPONSIVE — 860
   ========================================================= */

@media (max-width: 860px) {

  .announcement {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .nav {
    min-height: 70px;
  }

  .nav-links,
  .nav-actions .btn-secondary {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;

    position: fixed;

    inset: 70px 0 0;

    z-index: 59;

    flex-direction: column;

    align-items: stretch;

    gap: 4px;

    padding: 26px 20px 40px;

    background:
      rgba(8, 7, 13, 0.98);

    backdrop-filter:
      blur(18px);

    overflow: auto;
  }

  .nav-links.open .nav-link {
    padding: 15px 14px;

    font-size: 1.1rem;

    border-bottom:
      1px solid var(--line);

    border-radius: 0;
  }

  .nav-links.open::after {
    content: "Call 225-301-2209";

    margin-top: 20px;

    padding: 14px;

    border:
      1px solid var(--line);

    border-radius: 12px;

    color: var(--purple-soft);

    font-weight: 800;

    text-align: center;
  }

  .hero {
    min-height: auto;

    padding-top: 58px;
  }

  .hero h1 {
    font-size:
      clamp(3.25rem, 12vw, 5.6rem);
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom:
      1px solid var(--line);
  }

  .section {
    padding: 88px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 20px;
  }

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

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

  .detail-section {
    grid-template-columns: 1fr;

    gap: 26px;
  }

  .detail-aside {
    position: static;
  }

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

  .footer-brand,
  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }

  .cta-content {
    display: block;
  }

  .cta-actions {
    margin-top: 28px;
  }

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

  .industry-card {
    padding: 22px !important;
  }

  #industries.section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}


/* =========================================================
   RESPONSIVE — 700
   ========================================================= */

@media (max-width: 700px) {

  .industry-trigger {
    padding: 18px 20px;
  }

  .industry-panel {
    padding: 0 20px 20px;
  }
}


/* =========================================================
   RESPONSIVE — 680 POPUP
   ========================================================= */

@media (max-width: 680px) {

  .vetex-popup-card {
    padding: 30px 22px 24px;
  }

  .vetex-popup-points {
    grid-template-columns: 1fr;
  }

  .vetex-popup-actions {
    flex-direction: column;
  }

  .vetex-popup-actions .btn {
    width: 100%;

    justify-content: center;
  }
}


/* =========================================================
   RESPONSIVE — 620
   ========================================================= */

@media (max-width: 620px) {

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

  .brand-sub {
    display: none;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .hero {
    padding-bottom: 82px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-orbit {
    min-height: 420px;

    margin-top: 14px;
  }

  .orbit-ring {
    width: 300px;
    height: 300px;
  }

  .hero-mark {
    width: 260px;
  }

  .console-card {
    width: 225px;

    padding: 13px;
  }

  .console-card.top {
    top: 12px;
    right: -4px;
  }

  .console-card.bottom {
    bottom: 10px;
    left: -4px;
  }

  .proof-strip {
    margin-top: -24px;
  }

  .proof-item {
    min-height: 105px;

    padding: 18px;
  }

  .proof-value {
    font-size: 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .detail-columns,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    display: grid;

    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.featured {
    grid-column: auto;

    display: flex;

    min-height: auto;
  }

  .service-visual {
    margin-top: 26px;

    width: 100%;
  }

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

  .process-step {
    border-right: 0;

    border-bottom:
      1px solid var(--line);

    min-height: 230px;
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-num {
    margin-bottom: 40px;
  }

  .case-card {
    padding: 24px;

    min-height: auto;
  }

  .case-results {
    margin-top: 24px;
  }

  .threat-visual {
    grid-template-columns:
      82px 1fr;
  }

  .threat-count {
    font-size: 2.8rem;
  }

  .flow-mini {
    padding: 18px;
  }

  .credential-card {
    min-height: 390px;
  }

  .credential-content {
    padding: 28px;
  }

  .credential-mark {
    width: 260px;
  }

  .cta-panel {
    padding: 32px 24px;
  }

  .page-hero {
    padding: 74px 0 62px;
  }

  .page-hero h1 {
    font-size:
      clamp(3rem, 14vw, 4.7rem);
  }

  .form-card {
    padding: 24px;
  }

  .form-footer {
    display: block;
  }

  .form-footer .btn {
    width: 100%;

    margin-top: 12px;
  }

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

  .footer-brand,
  .footer-grid > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom-links {
    margin-top: 12px;
  }
}


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

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }
}
