/* =========================================================
   WebsDocs ASG Public Page
   File: /aig/css/asg.css
   Section: Hero / A2A Commerce Intro
   ========================================================= */

:root {
  --asg-bg: #061326;
  --asg-bg-2: #081a33;
  --asg-panel: rgba(9, 28, 55, 0.78);
  --asg-panel-strong: rgba(11, 35, 68, 0.92);
  --asg-border: rgba(155, 205, 255, 0.16);
  --asg-border-strong: rgba(105, 190, 255, 0.34);
  --asg-text: #f3f8ff;
  --asg-muted: #a9bdd8;
  --asg-soft: #d9ebff;
  --asg-blue: #59b8ff;
  --asg-cyan: #61f2ff;
  --asg-green: #51f7a5;
  --asg-gold: #ffd166;
  --asg-danger: #ff6b8a;
  --asg-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --asg-radius-lg: 30px;
  --asg-radius-md: 20px;
  --asg-radius-sm: 14px;
  --asg-edge: clamp(18px, 3vw, 92px);
}

html {
  scroll-behavior: smooth;
}

body.asg-public-page,
.asg-public-page {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(42, 126, 202, 0.2), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(97, 242, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #051124 0%, #071632 46%, #061326 100%);
  color: var(--asg-text);
  font-family: Arial, Helvetica, sans-serif;
}

.asg-public-page main {
  overflow: hidden;
}

.asg-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: var(--asg-edge);
  padding-right: var(--asg-edge);
  box-sizing: border-box;
}


/* =========================================================
   ASG SHARED BUTTON COMPONENT
   Restore this once in /aig/css/asg.css near the global variables.

   Supports:
   .asg-btn
   .asg-btn-primary
   .asg-btn-ghost
   .asg-btn-soft

   Works with both <a> and <button>.
   ========================================================= */

.asg-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 18px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  box-sizing: border-box;
  color: var(--asg-text, #f3f8ff);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.asg-btn i {
  flex: 0 0 auto;
  font-size: 0.95em;
  line-height: 1;
}

.asg-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.asg-btn:active {
  transform: translateY(0);
}

.asg-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.96);
  outline-offset: 4px;
}

.asg-btn:disabled,
.asg-btn[aria-disabled="true"] {
  opacity: 0.52;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

/* ================= PRIMARY ================= */

.asg-btn-primary {
  color: #031326;
  border-color: transparent;
  background: linear-gradient(
    135deg,
    var(--asg-green, #51f7a5),
    var(--asg-cyan, #61f2ff),
    var(--asg-blue, #59b8ff)
  );
  box-shadow:
    0 18px 42px rgba(89, 184, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.asg-btn-primary:hover {
  color: #031326;
  box-shadow:
    0 22px 50px rgba(89, 184, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

/* ================= GHOST ================= */

.asg-btn-ghost {
  color: var(--asg-text, #f3f8ff);
  border-color: var(--asg-border-strong, rgba(105, 190, 255, 0.34));
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 14px 34px rgba(0, 0, 0, 0.12);
}

.asg-btn-ghost:hover {
  color: #ffffff;
  border-color: rgba(97, 242, 255, 0.5);
  background: rgba(255, 255, 255, 0.085);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(97, 242, 255, 0.06);
}

/* ================= SOFT ================= */

.asg-btn-soft {
  color: #dffaff;
  border-color: rgba(97, 242, 255, 0.2);
  background: rgba(97, 242, 255, 0.075);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 14px 34px rgba(0, 0, 0, 0.1);
}

.asg-btn-soft:hover {
  color: #ffffff;
  border-color: rgba(97, 242, 255, 0.48);
  background: rgba(97, 242, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.2),
    0 0 32px rgba(97, 242, 255, 0.08);
}

/* ================= BUTTON GROUP SAFETY ================= */

.asg-btn-row,
.asg-action-row,
.asg-live-actions,
.asg-live-proof-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* ================= MOBILE ================= */

@media (max-width: 680px) {
  .asg-btn-row,
  .asg-action-row,
  .asg-live-actions,
  .asg-live-proof-actions {
    align-items: stretch;
  }

  .asg-btn-row .asg-btn,
  .asg-action-row .asg-btn,
  .asg-live-actions .asg-btn,
  .asg-live-proof-actions .asg-btn {
    width: 100%;
  }
}

/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {
  .asg-btn {
    transition-duration: 0.001ms !important;
  }

  .asg-btn:hover,
  .asg-btn:active {
    transform: none;
  }
}

/* =========================================================
   ASG LIVE BUTTON — SKY BLUE OVERRIDE
   Place AFTER the shared .asg-btn-primary / .asg-btn-live rules
   so this version wins.
   ========================================================= */

.asg-btn-live {
  color: #031526;
  border-color: rgba(180, 232, 255, 0.7);
  background:
    linear-gradient(
      135deg,
      #d7f4ff 0%,
      #9fddff 34%,
      #67c8ff 68%,
      #42b7f5 100%
    );
  box-shadow:
    0 16px 36px rgba(66, 183, 245, 0.28),
    0 0 28px rgba(103, 200, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(16, 111, 171, 0.14);
}

.asg-btn-live i {
  color: #075a8d;
}

.asg-btn-live:hover {
  color: #02121f;
  border-color: rgba(211, 244, 255, 0.9);
  background:
    linear-gradient(
      135deg,
      #e8f9ff 0%,
      #b9e8ff 32%,
      #7fd3ff 66%,
      #53bef7 100%
    );
  box-shadow:
    0 20px 44px rgba(66, 183, 245, 0.36),
    0 0 38px rgba(103, 200, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.asg-btn-live:active {
  transform: translateY(0);
  background:
    linear-gradient(
      135deg,
      #bfeaff 0%,
      #8fd5fb 38%,
      #58bff4 72%,
      #3ba9e4 100%
    );
  box-shadow:
    0 10px 24px rgba(66, 183, 245, 0.24),
    inset 0 2px 5px rgba(4, 76, 119, 0.16);
}

.asg-btn-live.is-loading {
  opacity: 0.9;
  animation: asgSkyLivePulse 1.15s ease-in-out infinite;
}

.asg-btn-live.is-loading i {
  animation: asgLiveButtonSpin 0.9s linear infinite;
}

@keyframes asgSkyLivePulse {
  0%,
  100% {
    box-shadow:
      0 16px 36px rgba(66, 183, 245, 0.28),
      0 0 28px rgba(103, 200, 255, 0.22);
  }

  50% {
    box-shadow:
      0 22px 50px rgba(66, 183, 245, 0.42),
      0 0 46px rgba(103, 200, 255, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .asg-btn-live.is-loading,
  .asg-btn-live.is-loading i {
    animation: none !important;
  }
}


/* =========================================================
   COMPLETE REPLACEMENT — ASG HERO V2
   ========================================================= */

.asg-hero-v2,
.asg-hero-v2 * {
  box-sizing: border-box;
}

.asg-hero-v2 {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(66px, 5vw, 118px) var(--asg-edge) clamp(74px, 5.6vw, 132px);
  overflow: hidden;
  color: var(--asg-text);
  background:
    radial-gradient(circle at 50% -12%, rgba(97, 242, 255, 0.16), transparent 35%),
    radial-gradient(circle at 7% 36%, rgba(89, 184, 255, 0.15), transparent 29%),
    radial-gradient(circle at 94% 58%, rgba(81, 247, 165, 0.09), transparent 26%),
    linear-gradient(180deg, #071a35 0%, #08203d 48%, #06172f 100%);
}

.asg-hero-v2__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.asg-hero-v2__grid {
  position: absolute;
  inset: 0;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(130, 190, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 190, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.44) 74%, transparent 100%);
}

.asg-hero-v2__glow {
  position: absolute;
  width: min(38vw, 760px);
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.52;
}

.asg-hero-v2__glow--left {
  left: -18vw;
  top: 20%;
  background: radial-gradient(circle, rgba(89, 184, 255, 0.32), transparent 68%);
}

.asg-hero-v2__glow--right {
  right: -17vw;
  top: 38%;
  background: radial-gradient(circle, rgba(97, 242, 255, 0.2), transparent 68%);
}

.asg-hero-v2__beam {
  position: absolute;
  left: 50%;
  top: 80px;
  width: 1px;
  height: 500px;
  transform-origin: top;
  opacity: 0.19;
  background: linear-gradient(to bottom, var(--asg-cyan), transparent);
}

.asg-hero-v2__beam--one {
  transform: rotate(32deg);
}

.asg-hero-v2__beam--two {
  transform: rotate(-32deg);
}

.asg-hero-v2__shell {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

/* ================= CENTER CROWN ================= */

.asg-hero-v2__crown {
  display: grid;
  justify-items: center;
  width: min(100%, 1760px);
  margin: 0 auto;
  text-align: center;
}

.asg-hero-v2__logo-halo {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(118px, 8.3vw, 180px);
  aspect-ratio: 1;
  margin-bottom: 18px;
  border: 1px solid rgba(97, 242, 255, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(97, 242, 255, 0.12), rgba(4, 18, 39, 0.58) 62%, transparent 63%);
  box-shadow:
    0 0 0 12px rgba(97, 242, 255, 0.025),
    0 22px 70px rgba(0, 0, 0, 0.3),
    0 0 62px rgba(97, 242, 255, 0.11);
}

.asg-hero-v2__logo {
  display: block;
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.28));
}

.asg-hero-v2__orbit {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(97, 242, 255, 0.14);
  border-radius: 999px;
}

.asg-hero-v2__orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--asg-cyan);
  box-shadow: 0 0 24px rgba(97, 242, 255, 0.8);
}

.asg-hero-v2__orbit--one {
  animation: asgHeroOrbit 12s linear infinite;
}

.asg-hero-v2__orbit--two {
  inset: -22px;
  opacity: 0.55;
  transform: rotate(135deg);
  animation: asgHeroOrbitReverse 18s linear infinite;
}

.asg-hero-v2__eyebrow,
.asg-hero-v2__section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(97, 242, 255, 0.24);
  border-radius: 999px;
  color: #dffaff;
  background: rgba(8, 31, 60, 0.78);
  box-shadow: 0 0 34px rgba(97, 242, 255, 0.08);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.asg-hero-v2__eyebrow i,
.asg-hero-v2__section-label i {
  color: var(--asg-cyan);
}

.asg-hero-v2__crown h1 {
  max-width: 1760px;
  margin: 22px 0 0;
  color: #f7fbff;
  font-size: clamp(48px, 5.6vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.asg-hero-v2__crown-lead {
  max-width: 1320px;
  margin: 26px 0 0;
  color: #e4f3ff;
  font-size: clamp(18px, 1.7vw, 29px);
  font-weight: 800;
  line-height: 1.5;
  text-wrap: balance;
}

.asg-hero-v2__crown-note {
  max-width: 1220px;
  margin: 14px 0 0;
  color: var(--asg-muted);
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.7;
  text-wrap: balance;
}

.asg-hero-v2__crown-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.asg-hero-v2__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.asg-hero-v2__button:hover {
  transform: translateY(-2px);
}

.asg-hero-v2__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.96);
  outline-offset: 4px;
}

.asg-hero-v2__button--primary {
  color: #031326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan), var(--asg-blue));
  box-shadow: 0 18px 46px rgba(97, 242, 255, 0.25);
}

.asg-hero-v2__button--secondary {
  color: #f3fbff;
  border-color: rgba(97, 242, 255, 0.34);
  background: rgba(97, 242, 255, 0.09);
}

.asg-hero-v2__button--ghost {
  color: #e4f3ff;
  border-color: rgba(155, 205, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.asg-hero-v2__button--secondary:hover,
.asg-hero-v2__button--ghost:hover {
  border-color: rgba(97, 242, 255, 0.52);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.asg-hero-v2__commercial-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px 20px;
  margin-top: 22px;
  color: #c9ddf5;
  font-size: 12.5px;
  font-weight: 850;
}

.asg-hero-v2__commercial-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.asg-hero-v2__commercial-proof i {
  color: var(--asg-green);
}

/* ================= MAIN SHOWCASE ================= */

.asg-hero-v2__showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(680px, 1.07fr);
  gap: clamp(24px, 2.8vw, 72px);
  align-items: stretch;
  width: 100%;
  margin-top: clamp(54px, 5vw, 104px);
}

.asg-hero-v2__story,
.asg-hero-v2__experience {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(155, 205, 255, 0.15);
  border-radius: clamp(24px, 2vw, 36px);
  background:
    radial-gradient(circle at 12% 0%, rgba(97, 242, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(12, 39, 74, 0.9), rgba(5, 20, 42, 0.9));
  box-shadow:
    0 28px 88px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(18px);
}

.asg-hero-v2__story {
  padding: clamp(24px, 2.4vw, 46px);
}

.asg-hero-v2__story h2 {
  max-width: 1020px;
  margin: 21px 0 0;
  color: #f7fbff;
  font-size: clamp(34px, 3.25vw, 64px);
  line-height: 1;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.asg-hero-v2__story-lead {
  max-width: 980px;
  margin: 20px 0 0;
  color: #dcecff;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.67;
}

.asg-hero-v2__journey {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.asg-hero-v2__journey article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 130px;
  padding: 17px;
  border: 1px solid rgba(155, 205, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.asg-hero-v2__journey article > i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(97, 242, 255, 0.18);
  border-radius: 15px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.09);
}

.asg-hero-v2__journey article span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.asg-hero-v2__journey strong {
  color: #f4fbff;
  font-size: 14.5px;
  line-height: 1.3;
}

.asg-hero-v2__journey small {
  color: var(--asg-muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.asg-hero-v2__boundary {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(97, 242, 255, 0.18);
  border-radius: 23px;
  background:
    radial-gradient(circle at 0% 0%, rgba(97, 242, 255, 0.09), transparent 34%),
    rgba(2, 15, 33, 0.52);
}

.asg-hero-v2__boundary-head {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.asg-hero-v2__boundary-head > i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--asg-green);
  background: rgba(81, 247, 165, 0.09);
}

.asg-hero-v2__boundary-head span {
  display: grid;
  gap: 4px;
}

.asg-hero-v2__boundary-head strong {
  color: #f4fbff;
  font-size: 15px;
}

.asg-hero-v2__boundary-head small {
  color: var(--asg-muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.asg-hero-v2__boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-top: 14px;
}

.asg-hero-v2__boundary-grid > div {
  display: grid;
  gap: 8px;
  padding: 15px;
  border: 1px solid rgba(155, 205, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
}

.asg-hero-v2__boundary-grid b {
  margin-bottom: 2px;
  color: var(--asg-green);
  font-size: 11px;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.asg-hero-v2__boundary-grid span {
  position: relative;
  padding-left: 15px;
  color: #d7e7f9;
  font-size: 12.5px;
  line-height: 1.35;
}

.asg-hero-v2__boundary-grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--asg-green);
}

.asg-hero-v2__boundary-private b {
  color: var(--asg-danger);
}

.asg-hero-v2__boundary-private span::before {
  background: var(--asg-danger);
}

/* ================= EXPERIENCE PANEL ================= */

.asg-hero-v2__experience {
  padding: clamp(18px, 1.55vw, 30px);
  overflow: hidden;
}

.asg-hero-v2__experience::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(97, 242, 255, 0.13), transparent 31%),
    radial-gradient(circle at 100% 48%, rgba(81, 247, 165, 0.08), transparent 26%);
}

.asg-hero-v2__experience > * {
  position: relative;
}

.asg-hero-v2__experience-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 3px 2px 15px;
  border-bottom: 1px solid rgba(155, 205, 255, 0.12);
}

.asg-hero-v2__status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--asg-green);
  box-shadow:
    0 0 0 6px rgba(81, 247, 165, 0.1),
    0 0 26px rgba(81, 247, 165, 0.65);
}

.asg-hero-v2__experience-head div {
  display: grid;
  gap: 2px;
}

.asg-hero-v2__experience-head strong {
  color: #f5fbff;
  font-size: 14.5px;
}

.asg-hero-v2__experience-head small {
  color: var(--asg-muted);
  font-size: 11.5px;
}

.asg-hero-v2__demo-label {
  padding: 6px 9px;
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: 999px;
  color: var(--asg-gold);
  background: rgba(255, 209, 102, 0.07);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.asg-hero-v2__chat {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(155, 205, 255, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(1, 12, 27, 0.65), rgba(3, 18, 39, 0.78));
}

.asg-hero-v2__message {
  display: grid;
  gap: 6px;
  max-width: 91%;
}

.asg-hero-v2__message--buyer {
  justify-self: start;
}

.asg-hero-v2__message--gateway {
  justify-self: end;
}

.asg-hero-v2__agent-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(89, 184, 255, 0.17);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(89, 184, 255, 0.1);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.asg-hero-v2__message--gateway .asg-hero-v2__agent-label {
  justify-self: end;
  color: #e8fff4;
  border-color: rgba(81, 247, 165, 0.18);
  background: rgba(81, 247, 165, 0.08);
}

.asg-hero-v2__message p {
  margin: 0;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 17px;
  color: #e7f2ff;
  background: rgba(255, 255, 255, 0.062);
  font-size: 12.5px;
  line-height: 1.55;
}

.asg-hero-v2__message--gateway p {
  border-color: rgba(89, 184, 255, 0.17);
  background: rgba(89, 184, 255, 0.115);
}

.asg-hero-v2__intent-card {
  margin-top: 13px;
  padding: 13px;
  border: 1px solid rgba(155, 205, 255, 0.12);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.045);
}

.asg-hero-v2__intent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--asg-muted);
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.asg-hero-v2__intent-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.asg-hero-v2__intent-head b {
  color: var(--asg-green);
  font-size: 10.5px;
}

.asg-hero-v2__intent-option {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(155, 205, 255, 0.1);
  border-radius: 16px;
  background: rgba(2, 14, 31, 0.46);
}

.asg-hero-v2__intent-option + .asg-hero-v2__intent-option {
  margin-top: 8px;
}

.asg-hero-v2__intent-option.is-active {
  border-color: rgba(97, 242, 255, 0.28);
  background: rgba(97, 242, 255, 0.075);
}

.asg-hero-v2__intent-option > i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.09);
}

.asg-hero-v2__intent-option > span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.asg-hero-v2__intent-option strong {
  color: #f3faff;
  font-size: 12px;
  line-height: 1.3;
}

.asg-hero-v2__intent-option small {
  color: var(--asg-muted);
  font-size: 10.8px;
  line-height: 1.35;
}

.asg-hero-v2__intent-option > b {
  color: var(--asg-green);
  font-size: 11.5px;
  white-space: nowrap;
}

.asg-hero-v2__activity {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.asg-hero-v2__activity article {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(155, 205, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  opacity: 0.68;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.asg-hero-v2__activity article.is-active {
  opacity: 1;
  transform: translateX(3px);
  border-color: rgba(97, 242, 255, 0.25);
  background: rgba(97, 242, 255, 0.065);
}

.asg-hero-v2__activity-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  color: var(--asg-green);
  background: rgba(81, 247, 165, 0.08);
}

.asg-hero-v2__activity-icon--blocked {
  color: var(--asg-danger);
  background: rgba(255, 107, 138, 0.08);
}

.asg-hero-v2__activity article > span:nth-child(2) {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.asg-hero-v2__activity strong {
  color: #f4fbff;
  font-size: 11.8px;
  line-height: 1.3;
}

.asg-hero-v2__activity small {
  color: var(--asg-muted);
  font-size: 10.5px;
  line-height: 1.35;
}

.asg-hero-v2__activity article > b {
  color: var(--asg-green);
  font-size: 10px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.asg-hero-v2__activity article[data-asg-demo-event="blocked"] > b {
  color: var(--asg-danger);
}

/* ================= ACTIVATION FLOW ================= */

.asg-hero-v2__activation {
  position: relative;
  width: 100%;
  margin-top: clamp(28px, 3vw, 60px);
  padding: clamp(24px, 2.7vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(155, 205, 255, 0.15);
  border-radius: clamp(24px, 2vw, 36px);
  background:
    radial-gradient(circle at 7% 0%, rgba(97, 242, 255, 0.1), transparent 28%),
    radial-gradient(circle at 93% 100%, rgba(81, 247, 165, 0.075), transparent 27%),
    linear-gradient(180deg, rgba(11, 37, 70, 0.93), rgba(5, 18, 39, 0.94));
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.27);
}

.asg-hero-v2__activation-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  column-gap: clamp(30px, 4vw, 92px);
  row-gap: 10px;
  align-items: end;
}

.asg-hero-v2__activation-head > span {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(97, 242, 255, 0.18);
  border-radius: 999px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.07);
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.asg-hero-v2__activation-head h2 {
  grid-column: 1;
  margin: 0;
  color: #f7fbff;
  font-size: clamp(32px, 3.4vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.asg-hero-v2__activation-head p {
  grid-column: 2;
  margin: 0;
  color: var(--asg-muted);
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.7;
}

.asg-hero-v2__activation-flow {
  display: grid;
  grid-template-columns:
    minmax(150px, 1fr) auto
    minmax(150px, 1fr) auto
    minmax(150px, 1fr) auto
    minmax(150px, 1fr) auto
    minmax(150px, 1fr) auto
    minmax(150px, 1fr) auto
    minmax(150px, 1fr) auto
    minmax(150px, 1fr);
  gap: 9px;
  align-items: stretch;
  width: 100%;
  margin-top: 28px;
}

.asg-hero-v2__activation-flow article {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 174px;
  padding: 17px;
  border: 1px solid rgba(155, 205, 255, 0.11);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.043);
}

.asg-hero-v2__activation-flow article > span {
  position: absolute;
  top: 10px;
  right: 11px;
  color: rgba(203, 224, 247, 0.5);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.075em;
}

.asg-hero-v2__activation-flow article > i {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  margin-bottom: 14px;
  border: 1px solid rgba(97, 242, 255, 0.16);
  border-radius: 13px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.08);
}

.asg-hero-v2__activation-flow strong {
  color: #f4fbff;
  font-size: 13px;
  line-height: 1.3;
}

.asg-hero-v2__activation-flow small {
  margin-top: 7px;
  color: var(--asg-muted);
  font-size: 11.2px;
  line-height: 1.48;
}

.asg-hero-v2__flow-arrow {
  align-self: center;
  color: var(--asg-cyan);
  font-size: 16px;
  opacity: 0.66;
  filter: drop-shadow(0 0 12px rgba(97, 242, 255, 0.42));
}

.asg-hero-v2__activation-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(155, 205, 255, 0.1);
  color: #caddf3;
  font-size: 11.5px;
  font-weight: 850;
}

.asg-hero-v2__activation-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.asg-hero-v2__activation-note i {
  color: var(--asg-green);
}


/* ================= HERO LINK TO DETAILED ACTIVATION ================= */

.asg-hero-v2__activation-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  min-height: 43px;
  margin-top: 18px;
  padding: 11px 16px;
  border: 1px solid rgba(97, 242, 255, 0.2);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(97, 242, 255, 0.07);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.asg-hero-v2__activation-link i {
  color: var(--asg-cyan);
}

.asg-hero-v2__activation-link:hover {
  transform: translateY(-2px);
  border-color: rgba(97, 242, 255, 0.48);
  background: rgba(97, 242, 255, 0.12);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.2),
    0 0 30px rgba(97, 242, 255, 0.08);
}


/* =========================================================
   ASG HERO V2 — SALES SHOWCASE BOTTOM PATCH
   Paste at the very bottom of /aig/css/asg.css

   This patch uses the existing Hero V2 classes plus the new
   --sales modifier classes from the replacement HTML.
   ========================================================= */

.asg-hero-v2__showcase--sales {
  align-items: stretch;
}

.asg-hero-v2__story--sales,
.asg-hero-v2__experience--sales {
  min-width: 0;
}

.asg-hero-v2__story--sales {
  display: flex;
  flex-direction: column;
}

.asg-hero-v2__journey--sales article {
  min-height: 86px;
}

.asg-hero-v2__boundary--sales {
  margin-top: auto;
}

.asg-hero-v2__experience--sales {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.asg-hero-v2__chat--sales {
  min-height: 430px;
}

.asg-hero-v2__chat--sales .asg-hero-v2__message p {
  min-block-size: 4.8em;
  overflow-wrap: anywhere;
  word-break: normal;
}

.asg-hero-v2__intent-card--sales,
.asg-hero-v2__activity--sales {
  flex: 0 0 auto;
}

.asg-hero-v2__activity--sales article {
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.asg-hero-v2__activity--sales article.is-active {
  transform: translateX(4px);
}

.asg-hero-v2__chat--sales
[data-asg-demo-message].is-typing::after {
  content: "";
  display: inline-block;
  width: 0.5ch;
  height: 1em;
  margin-left: 0.18em;
  border-right: 2px solid currentColor;
  vertical-align: -0.12em;
  animation:
    asgHeroSalesCaret 760ms steps(1, end) infinite;
}

@keyframes asgHeroSalesCaret {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .asg-hero-v2__chat--sales {
    min-height: 455px;
  }

  .asg-hero-v2__chat--sales
  .asg-hero-v2__message p {
    min-block-size: 5.4em;
  }
}

@media (max-width: 760px) {
  .asg-hero-v2__boundary--sales {
    margin-top: 0;
  }

  .asg-hero-v2__journey--sales article {
    min-height: 0;
  }

  .asg-hero-v2__chat--sales {
    min-height: 0;
  }

  .asg-hero-v2__chat--sales
  .asg-hero-v2__message p {
    min-block-size: 0;
  }

  .asg-hero-v2__activity--sales
  article.is-active {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .asg-hero-v2__activity--sales article,
  .asg-hero-v2__chat--sales
  [data-asg-demo-message].is-typing::after {
    animation: none !important;
    transition: none !important;
  }

  .asg-hero-v2__activity--sales
  article.is-active {
    transform: none;
  }
}


/* ================= ULTRAWIDE / 4K / 8K ================= */

@media (min-width: 1900px) {
  .asg-hero-v2 {
    padding-top: 112px;
    padding-bottom: 144px;
  }

  .asg-hero-v2__showcase {
    grid-template-columns: minmax(0, 0.9fr) minmax(760px, 1.1fr);
  }

  .asg-hero-v2__story,
  .asg-hero-v2__experience {
    min-height: 760px;
  }

  .asg-hero-v2__journey article {
    min-height: 148px;
  }

  .asg-hero-v2__chat {
    padding: 18px;
  }

  .asg-hero-v2__message p {
    font-size: 13.5px;
  }

  .asg-hero-v2__activation-flow article {
    min-height: 194px;
    padding: 20px;
  }
}

@media (min-width: 3000px) {
  .asg-hero-v2 {
    padding-left: clamp(96px, 3.5vw, 180px);
    padding-right: clamp(96px, 3.5vw, 180px);
  }

  .asg-hero-v2__crown {
    width: min(100%, 2200px);
  }

  .asg-hero-v2__crown h1 {
    max-width: 2100px;
    font-size: clamp(82px, 4.2vw, 138px);
  }

  .asg-hero-v2__crown-lead {
    max-width: 1700px;
    font-size: clamp(25px, 1.15vw, 38px);
  }

  .asg-hero-v2__showcase {
    gap: 88px;
  }

  .asg-hero-v2__story h2 {
    max-width: 1320px;
    font-size: clamp(54px, 2.5vw, 88px);
  }

  .asg-hero-v2__story-lead {
    max-width: 1280px;
    font-size: 24px;
  }

  .asg-hero-v2__journey strong,
  .asg-hero-v2__boundary-head strong,
  .asg-hero-v2__experience-head strong {
    font-size: 17px;
  }

  .asg-hero-v2__journey small,
  .asg-hero-v2__boundary-grid span,
  .asg-hero-v2__message p {
    font-size: 15px;
  }

  .asg-hero-v2__activation-flow article {
    min-height: 226px;
  }

  .asg-hero-v2__activation-flow strong {
    font-size: 16px;
  }

  .asg-hero-v2__activation-flow small {
    font-size: 13px;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1560px) {
  .asg-hero-v2__showcase {
    grid-template-columns: minmax(0, 0.92fr) minmax(570px, 1.08fr);
  }

  .asg-hero-v2__activation-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .asg-hero-v2__flow-arrow {
    display: none;
  }
}

@media (max-width: 1180px) {
  .asg-hero-v2 {
    padding-top: 72px;
  }

  .asg-hero-v2__showcase {
    grid-template-columns: 1fr;
  }

  .asg-hero-v2__story,
  .asg-hero-v2__experience {
    min-height: 0;
  }

  .asg-hero-v2__experience {
    max-width: none;
  }

  .asg-hero-v2__activation-head {
    grid-template-columns: 1fr;
  }

  .asg-hero-v2__activation-head > span,
  .asg-hero-v2__activation-head h2,
  .asg-hero-v2__activation-head p {
    grid-column: 1;
  }
}

@media (max-width: 900px) {
  .asg-hero-v2__journey,
  .asg-hero-v2__boundary-grid {
    grid-template-columns: 1fr;
  }

  .asg-hero-v2__activation-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .asg-hero-v2 {
    padding:
      48px max(14px, env(safe-area-inset-left))
      62px max(14px, env(safe-area-inset-right));
  }

  .asg-hero-v2__logo-halo {
    width: 112px;
    margin-bottom: 15px;
  }

  .asg-hero-v2__crown h1 {
    margin-top: 18px;
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.98;
  }

  .asg-hero-v2__crown-lead {
    margin-top: 20px;
    font-size: 17px;
  }

  .asg-hero-v2__crown-note {
    font-size: 14px;
  }

  .asg-hero-v2__crown-actions {
    width: 100%;
  }

  .asg-hero-v2__button {
    width: 100%;
  }

  .asg-hero-v2__commercial-proof {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    width: 100%;
    max-width: 420px;
  }

  .asg-hero-v2__showcase {
    margin-top: 48px;
  }

  .asg-hero-v2__story,
  .asg-hero-v2__experience,
  .asg-hero-v2__activation {
    border-radius: 23px;
  }

  .asg-hero-v2__story {
    padding: 20px;
  }

  .asg-hero-v2__story h2 {
    font-size: clamp(32px, 9.4vw, 46px);
  }

  .asg-hero-v2__story-lead {
    font-size: 15px;
  }

  .asg-hero-v2__journey article {
    min-height: 0;
  }

  .asg-hero-v2__experience {
    padding: 14px;
  }

  .asg-hero-v2__experience-head {
    grid-template-columns: auto 1fr;
  }

  .asg-hero-v2__demo-label {
    grid-column: 2;
    width: fit-content;
  }

  .asg-hero-v2__message {
    max-width: 100%;
  }

  .asg-hero-v2__message--gateway {
    justify-self: stretch;
  }

  .asg-hero-v2__message--gateway .asg-hero-v2__agent-label {
    justify-self: start;
  }

  .asg-hero-v2__intent-option {
    grid-template-columns: 34px 1fr;
  }

  .asg-hero-v2__intent-option > b {
    grid-column: 2;
  }

  .asg-hero-v2__activity article {
    grid-template-columns: 32px 1fr;
  }

  .asg-hero-v2__activity article > b {
    grid-column: 2;
  }

  .asg-hero-v2__activation {
    padding: 20px;
  }

  .asg-hero-v2__activation-flow {
    grid-template-columns: 1fr;
  }

  .asg-hero-v2__activation-flow article {
    min-height: 0;
  }

  .asg-hero-v2__activation-note {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* ================= MOTION ================= */

@keyframes asgHeroOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes asgHeroOrbitReverse {
  from {
    transform: rotate(135deg);
  }

  to {
    transform: rotate(-225deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .asg-hero-v2 *,
  .asg-hero-v2 *::before,
  .asg-hero-v2 *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* =========================================================
   COMPLETE REPLACEMENT — ASG INTRO BRIDGE
   ========================================================= */

.asg-intro-bridge,
.asg-intro-bridge * {
  box-sizing: border-box;
}

.asg-intro-bridge {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(76px, 5vw, 126px) var(--asg-edge);
  overflow: hidden;
  color: var(--asg-text);
  background:
    radial-gradient(circle at 8% 24%, rgba(89, 184, 255, 0.12), transparent 28%),
    radial-gradient(circle at 93% 68%, rgba(81, 247, 165, 0.07), transparent 27%),
    linear-gradient(180deg, #06172f 0%, #071a35 52%, #071632 100%);
}

.asg-intro-bridge__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.asg-intro-bridge__grid {
  position: absolute;
  inset: 0;
  opacity: 0.43;
  background-image:
    linear-gradient(rgba(130, 190, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 190, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.88) 16%, rgba(0, 0, 0, 0.55) 82%, transparent);
}

.asg-intro-bridge__glow {
  position: absolute;
  width: min(36vw, 720px);
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.42;
}

.asg-intro-bridge__glow--left {
  left: -18vw;
  top: 12%;
  background: radial-gradient(circle, rgba(89, 184, 255, 0.26), transparent 68%);
}

.asg-intro-bridge__glow--right {
  right: -17vw;
  bottom: -18%;
  background: radial-gradient(circle, rgba(97, 242, 255, 0.16), transparent 68%);
}

.asg-intro-bridge__shell {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

/* ================= SECTION CROWN ================= */

.asg-intro-bridge__head {
  display: grid;
  justify-items: center;
  width: min(100%, 1780px);
  margin: 0 auto;
  text-align: center;
}

.asg-intro-bridge__eyebrow,
.asg-intro-bridge__plans-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 35px;
  padding: 8px 13px;
  border: 1px solid rgba(97, 242, 255, 0.22);
  border-radius: 999px;
  color: #dffaff;
  background: rgba(97, 242, 255, 0.075);
  box-shadow: 0 0 34px rgba(97, 242, 255, 0.07);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.asg-intro-bridge__eyebrow i,
.asg-intro-bridge__plans-label i {
  color: var(--asg-cyan);
}

.asg-intro-bridge__head h2 {
  max-width: 1700px;
  margin: 22px 0 0;
  color: #f7fbff;
  font-size: clamp(42px, 4.8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.asg-intro-bridge__lead {
  max-width: 1320px;
  margin: 24px 0 0;
  color: #dcecff;
  font-size: clamp(17px, 1.55vw, 26px);
  font-weight: 750;
  line-height: 1.6;
  text-wrap: balance;
}

/* ================= CORE VALUE CARDS ================= */

.asg-intro-bridge__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 28px);
  width: 100%;
  margin-top: clamp(42px, 4vw, 78px);
}

.asg-intro-bridge__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(24px, 2vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(155, 205, 255, 0.14);
  border-radius: clamp(24px, 2vw, 34px);
  background:
    radial-gradient(circle at 12% 0%, rgba(97, 242, 255, 0.09), transparent 31%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028)),
    rgba(8, 28, 55, 0.78);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(16px);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.asg-intro-bridge__card:hover {
  transform: translateY(-4px);
  border-color: rgba(97, 242, 255, 0.3);
  box-shadow:
    0 30px 82px rgba(0, 0, 0, 0.3),
    0 0 44px rgba(97, 242, 255, 0.065);
}

.asg-intro-bridge__card--featured {
  border-color: rgba(97, 242, 255, 0.32);
  background:
    radial-gradient(circle at 18% 0%, rgba(97, 242, 255, 0.15), transparent 34%),
    radial-gradient(circle at 100% 70%, rgba(81, 247, 165, 0.07), transparent 27%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(8, 30, 59, 0.86);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.32),
    0 0 46px rgba(97, 242, 255, 0.09);
}

.asg-intro-bridge__card-icon {
  display: grid;
  place-items: center;
  width: clamp(50px, 3.4vw, 68px);
  height: clamp(50px, 3.4vw, 68px);
  margin-bottom: 22px;
  border: 1px solid rgba(97, 242, 255, 0.19);
  border-radius: 20px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.09);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  font-size: clamp(20px, 1.5vw, 28px);
}

.asg-intro-bridge__card--featured .asg-intro-bridge__card-icon {
  color: var(--asg-green);
  border-color: rgba(81, 247, 165, 0.2);
  background: rgba(81, 247, 165, 0.09);
}

.asg-intro-bridge__card-number {
  position: absolute;
  top: clamp(22px, 1.8vw, 34px);
  right: clamp(22px, 1.8vw, 34px);
  color: rgba(207, 228, 248, 0.42);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.085em;
}

.asg-intro-bridge__card-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin: -6px 0 16px;
  padding: 0 10px;
  border: 1px solid rgba(81, 247, 165, 0.2);
  border-radius: 999px;
  color: var(--asg-green);
  background: rgba(81, 247, 165, 0.075);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.asg-intro-bridge__card h3 {
  max-width: 780px;
  margin: 0;
  color: #f5fbff;
  font-size: clamp(25px, 2.2vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.043em;
  text-wrap: balance;
}

.asg-intro-bridge__card p {
  max-width: 860px;
  margin: 16px 0 0;
  color: var(--asg-muted);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.68;
}

.asg-intro-bridge__card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(155, 205, 255, 0.1);
  list-style: none;
}

.asg-intro-bridge__card li {
  position: relative;
  padding-left: 24px;
  color: #d8e8fa;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.asg-intro-bridge__card li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0.04em;
  color: var(--asg-green);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* ================= BUSINESS JOURNEY ================= */

.asg-intro-bridge__journey {
  position: relative;
  width: 100%;
  margin-top: clamp(24px, 2.5vw, 48px);
  padding: clamp(22px, 2vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: clamp(24px, 2vw, 34px);
  background:
    radial-gradient(circle at 0% 0%, rgba(97, 242, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(5, 20, 42, 0.86), rgba(3, 16, 35, 0.88));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.23);
}

.asg-intro-bridge__journey-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(155, 205, 255, 0.1);
}

.asg-intro-bridge__journey-head > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--asg-cyan);
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.asg-intro-bridge__journey-head strong {
  color: #f5fbff;
  font-size: clamp(17px, 1.4vw, 23px);
  letter-spacing: -0.025em;
}

.asg-intro-bridge__journey-flow {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  width: 100%;
  margin-top: 20px;
}

.asg-intro-bridge__journey-flow article {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 166px;
  padding: 17px;
  border: 1px solid rgba(155, 205, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.038);
}

.asg-intro-bridge__journey-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border: 1px solid rgba(97, 242, 255, 0.17);
  border-radius: 13px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.08);
}

.asg-intro-bridge__journey-flow strong {
  color: #f4fbff;
  font-size: 13.5px;
  line-height: 1.3;
}

.asg-intro-bridge__journey-flow small {
  margin-top: 7px;
  color: var(--asg-muted);
  font-size: 11.5px;
  line-height: 1.48;
}

.asg-intro-bridge__arrow {
  align-self: center;
  color: var(--asg-cyan);
  font-size: 17px;
  opacity: 0.65;
  filter: drop-shadow(0 0 12px rgba(97, 242, 255, 0.4));
}

/* ================= BRIDGE TO PLANS ================= */

.asg-intro-bridge__plans-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 80px);
  align-items: center;
  width: 100%;
  margin-top: clamp(24px, 2.5vw, 48px);
  padding: clamp(24px, 2.3vw, 42px);
  border: 1px solid rgba(97, 242, 255, 0.2);
  border-radius: clamp(24px, 2vw, 34px);
  background:
    radial-gradient(circle at 4% 0%, rgba(97, 242, 255, 0.12), transparent 34%),
    radial-gradient(circle at 94% 100%, rgba(81, 247, 165, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(12, 39, 74, 0.92), rgba(5, 19, 41, 0.92));
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(97, 242, 255, 0.06);
}

.asg-intro-bridge__plans-bridge > div {
  min-width: 0;
}

.asg-intro-bridge__plans-bridge h3 {
  max-width: 1120px;
  margin: 18px 0 0;
  color: #f6fbff;
  font-size: clamp(30px, 3vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.asg-intro-bridge__plans-bridge p {
  max-width: 1100px;
  margin: 15px 0 0;
  color: var(--asg-muted);
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.65;
}

.asg-intro-bridge__plans-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 188px;
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #031326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan), var(--asg-blue));
  box-shadow: 0 18px 44px rgba(97, 242, 255, 0.22);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.asg-intro-bridge__plans-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(97, 242, 255, 0.28);
}

.asg-intro-bridge__plans-button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

/* ================= ULTRAWIDE / 4K / 8K ================= */

@media (min-width: 1900px) {
  .asg-intro-bridge {
    padding-top: 118px;
    padding-bottom: 138px;
  }

  .asg-intro-bridge__cards {
    gap: 28px;
  }

  .asg-intro-bridge__card {
    min-height: 520px;
  }

  .asg-intro-bridge__journey-flow article {
    min-height: 184px;
    padding: 20px;
  }
}

@media (min-width: 3000px) {
  .asg-intro-bridge {
    padding-left: clamp(96px, 3.5vw, 180px);
    padding-right: clamp(96px, 3.5vw, 180px);
  }

  .asg-intro-bridge__head {
    width: min(100%, 2200px);
  }

  .asg-intro-bridge__head h2 {
    max-width: 2100px;
    font-size: clamp(76px, 3.6vw, 124px);
  }

  .asg-intro-bridge__lead {
    max-width: 1700px;
    font-size: clamp(24px, 1.05vw, 36px);
  }

  .asg-intro-bridge__card {
    min-height: 610px;
  }

  .asg-intro-bridge__card h3 {
    font-size: clamp(38px, 1.8vw, 58px);
  }

  .asg-intro-bridge__card p {
    font-size: 20px;
  }

  .asg-intro-bridge__card li {
    font-size: 16px;
  }

  .asg-intro-bridge__journey-flow article {
    min-height: 224px;
    padding: 24px;
  }

  .asg-intro-bridge__journey-flow strong {
    font-size: 17px;
  }

  .asg-intro-bridge__journey-flow small {
    font-size: 14px;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1180px) {
  .asg-intro-bridge__cards {
    grid-template-columns: 1fr;
  }

  .asg-intro-bridge__card {
    min-height: 0;
  }

  .asg-intro-bridge__journey-flow {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .asg-intro-bridge__journey-flow article {
    scroll-snap-align: start;
  }

  .asg-intro-bridge__arrow {
    display: none;
  }
}

@media (max-width: 820px) {
  .asg-intro-bridge__journey-head {
    display: grid;
    justify-content: start;
  }

  .asg-intro-bridge__plans-bridge {
    grid-template-columns: 1fr;
  }

  .asg-intro-bridge__plans-button {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .asg-intro-bridge {
    padding:
      62px max(14px, env(safe-area-inset-left))
      70px max(14px, env(safe-area-inset-right));
  }

  .asg-intro-bridge__head h2 {
    font-size: clamp(36px, 10.8vw, 52px);
  }

  .asg-intro-bridge__lead {
    font-size: 16px;
  }

  .asg-intro-bridge__card,
  .asg-intro-bridge__journey,
  .asg-intro-bridge__plans-bridge {
    border-radius: 22px;
  }

  .asg-intro-bridge__card {
    padding: 21px;
  }

  .asg-intro-bridge__card h3 {
    font-size: clamp(27px, 8.3vw, 39px);
  }

  .asg-intro-bridge__journey {
    padding: 18px;
  }

  .asg-intro-bridge__journey-flow {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .asg-intro-bridge__journey-flow article {
    min-height: 0;
  }

  .asg-intro-bridge__plans-bridge {
    padding: 21px;
  }

  .asg-intro-bridge__plans-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .asg-intro-bridge *,
  .asg-intro-bridge *::before,
  .asg-intro-bridge *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* =========================================================
   ASG Billing Toggle + Launch Pricing
   ========================================================= */

.asg-price-toggle {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 26px 0 24px;
  padding: 10px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(97, 242, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.asg-price-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.asg-price-toggle label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--asg-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.asg-price-toggle label i {
  font-size: 13px;
}

#asgMonthly:checked + label,
#asgAnnual:checked + label {
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  box-shadow: 0 14px 30px rgba(97, 242, 255, 0.18);
}

.asg-toggle-note {
  flex-basis: 100%;
  padding: 0 10px 5px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.45;
}

.asg-toggle-note strong {
  color: #f5fbff;
}

/* default */
.asg-price-annual,
.asg-annual-cta {
  display: none !important;
}

/* when annual selected */
.asg-memberships:has(#asgAnnual:checked) .asg-price-monthly,
.asg-memberships:has(#asgAnnual:checked) .asg-monthly-cta {
  display: none !important;
}

.asg-memberships:has(#asgAnnual:checked) .asg-price-annual {
  display: block !important;
}

.asg-memberships:has(#asgAnnual:checked) .asg-annual-cta {
  display: inline-flex !important;
}

.asg-price-stack {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(155, 205, 255, 0.12);
}

.asg-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 9px;
  margin-top: 10px;
  padding-top: 0;
  border-top: 0;
}

.asg-price-row del {
  color: rgba(220, 236, 255, 0.48);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-decoration-thickness: 3px;
}

.asg-launch-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(81, 247, 165, 0.22);
  border-radius: 999px;
  color: var(--asg-green);
  background: rgba(81, 247, 165, 0.08);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ================= Responsive ================= */

@media (max-width: 760px) {
  .asg-price-toggle {
    width: 100%;
    border-radius: 24px;
  }

  .asg-price-toggle label {
    flex: 1 1 100%;
  }
}

/* =========================================================
   ASG Membership / Plan Cards
   ========================================================= */

.asg-memberships {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(20, 92, 255, 0.16), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(97, 242, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #071632 0%, #061326 100%);
}

.asg-section-head {
  max-width: 1120px;
  margin-bottom: 30px;
}

.asg-section-head h2 {
  margin: 0;
  color: var(--asg-text);
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.asg-section-head p {
  margin: 18px 0 0;
  color: var(--asg-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  max-width: 980px;
}

.asg-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  position: relative;
  z-index: 2;
  margin-bottom: clamp(30px, 3vw, 46px);
}

.asg-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(155, 205, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(9, 28, 55, 0.76);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.24);
  overflow: hidden;
   z-index: 2;
}

.asg-plan-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  opacity: 0.8;
}

.asg-plan-business::before {
  background: radial-gradient(circle at 18% 0%, rgba(89, 184, 255, 0.18), transparent 34%);
}

.asg-plan-enterprise::before {
  background:
    radial-gradient(circle at 24% 0%, rgba(97, 242, 255, 0.22), transparent 34%),
    radial-gradient(circle at 100% 20%, rgba(81, 247, 165, 0.14), transparent 28%);
}

.asg-plan-custom::before {
  background: radial-gradient(circle at 24% 0%, rgba(255, 209, 102, 0.15), transparent 34%);
}

.asg-plan-card > * {
  position: relative;
}

.asg-plan-card.is-featured {
  border-color: rgba(97, 242, 255, 0.38);
  transform: translateY(-10px);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    0 0 46px rgba(97, 242, 255, 0.13);
	z-index: 3;
}

.asg-plan-ribbon {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #031226;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.asg-plan-top {
  display: grid;
  gap: 10px;
}

.asg-plan-label {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(97, 242, 255, 0.09);
  border: 1px solid rgba(97, 242, 255, 0.16);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.asg-plan-top h3 {
  margin: 0;
  color: #f5fbff;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.asg-plan-top p {
  margin: 0;
  color: var(--asg-muted);
  font-size: 14.5px;
  line-height: 1.58;
}

.asg-price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(155, 205, 255, 0.12);
}

.asg-price-row strong {
  color: #ffffff;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.asg-price-row span {
  color: var(--asg-muted);
  font-size: 14px;
  font-weight: 850;
  padding-bottom: 5px;
}

.asg-plan-note {
  margin: 12px 0 0;
  color: #cfe2ff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.asg-plan-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.asg-plan-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #dcecff;
  font-size: 14px;
  line-height: 1.45;
}

.asg-plan-list i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 999px;
  color: #041326;
  background: var(--asg-green);
  font-size: 11px;
}

.asg-plan-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.asg-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.01em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.asg-plan-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.asg-plan-btn-blue {
  background: linear-gradient(135deg, #145cff, #59b8ff);
  box-shadow: 0 18px 38px rgba(20, 92, 255, 0.28);
}

.asg-plan-btn-premium {
  color: #031226;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan), var(--asg-blue));
  box-shadow: 0 18px 42px rgba(97, 242, 255, 0.28);
}

.asg-plan-btn-dark {
  background: linear-gradient(135deg, #071632, #152848);
  border: 1px solid rgba(255, 209, 102, 0.36);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.asg-ai-hook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(155, 205, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--asg-muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.asg-ai-hook::before {
  content: "↳";
  margin-right: 7px;
  color: var(--asg-cyan);
}

.asg-ai-hook:hover {
  color: #ffffff;
  border-color: rgba(97, 242, 255, 0.32);
}

.asg-plan-footnote {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 0;
  padding: 18px;
  clear: both;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.asg-plan-footnote i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.09);
  border: 1px solid rgba(97, 242, 255, 0.16);
}

.asg-plan-footnote p {
  margin: 0;
  color: var(--asg-muted);
  font-size: 14px;
  line-height: 1.55;
}

.asg-plan-footnote .asg-ai-hook {
  white-space: nowrap;
}

/* =========================================================
   ASG TRIAL CARD — DISTINCT FREE TRIAL COLOR
   Amber / Gold / Orange so it does not look like Enterprise
========================================================= */

.asg-plan-trial {
  border-color: rgba(251, 191, 36, 0.32);
  background:
    linear-gradient(180deg, rgba(251, 191, 36, 0.075), rgba(15, 33, 58, 0.88));
  box-shadow:
    0 24px 70px rgba(251, 146, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.asg-plan-trial::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(251, 191, 36, 0.26), transparent 34%),
    radial-gradient(circle at 100% 18%, rgba(249, 115, 22, 0.18), transparent 30%),
    radial-gradient(circle at 60% 100%, rgba(253, 224, 71, 0.08), transparent 34%);
}

/* Trial badge */
.asg-plan-trial .asg-launch-badge {
  color: #fde68a;
  border-color: rgba(251, 191, 36, 0.34);
  background: rgba(251, 191, 36, 0.10);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Optional small label like "1 month free trial" */
.asg-plan-trial .asg-plan-tag,
.asg-plan-trial .asg-plan-mini-badge {
  color: #fde68a;
  border-color: rgba(251, 191, 36, 0.32);
  background: rgba(251, 191, 36, 0.10);
}

/* Trial CTA button */
.asg-plan-btn-trial {
  color: #151006;
  background:
    linear-gradient(135deg, #fde047 0%, #fbbf24 46%, #f97316 100%);
  border: 1px solid rgba(251, 191, 36, 0.55);
  box-shadow:
    0 18px 42px rgba(251, 146, 60, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.asg-plan-btn-trial:hover {
  color: #151006;
  background:
    linear-gradient(135deg, #fef08a 0%, #facc15 46%, #fb923c 100%);
  box-shadow:
    0 22px 52px rgba(251, 146, 60, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

/* Trial hook button under main CTA */
.asg-plan-trial .asg-plan-hook,
.asg-plan-trial .asg-ai-hook,
.asg-plan-trial .asg-plan-intent {
  border-color: rgba(251, 191, 36, 0.18);
  background: rgba(251, 191, 36, 0.055);
}

/* Annual toggle should not affect trial/custom cards */
.asg-memberships:has(#asgAnnual:checked) .asg-plan-trial .asg-price-monthly,
.asg-memberships:has(#asgAnnual:checked) .asg-plan-trial .asg-monthly-cta {
  display: block !important;
}

/* Responsive */
@media (max-width: 1480px) {
  .asg-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .asg-plan-grid {
    grid-template-columns: 1fr;
  }
}




@media (max-width: 900px) {
  .asg-plan-footnote {
    grid-template-columns: 44px 1fr;
  }

  .asg-plan-footnote .asg-ai-hook {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .asg-plan-footnote {
    grid-template-columns: 1fr;
  }
}
/* ================= Responsive ================= */

@media (max-width: 1180px) {
  .asg-plan-grid {
    grid-template-columns: 1fr;
  }

  .asg-plan-card.is-featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .asg-memberships {
    padding: 62px 0;
  }

  .asg-plan-card {
    padding: 18px;
    border-radius: 24px;
  }

  .asg-plan-footnote {
    display: grid;
  }
}


/* =========================================================
   ASG 5-Minute Activation Flow
   ========================================================= */

.asg-activation-flow {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(81, 247, 165, 0.11), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(89, 184, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #061326 0%, #071632 100%);
}

.asg-activation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  gap: clamp(26px, 4vw, 84px);
  align-items: start;
}

.asg-step-timeline {
  display: grid;
  gap: 14px;
}

.asg-step-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.032)),
    rgba(9, 28, 55, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.17);
}

.asg-step-card::before {
  content: "";
  position: absolute;
  left: 46px;
  top: 74px;
  bottom: -16px;
  width: 1px;
  background: linear-gradient(180deg, rgba(97, 242, 255, 0.34), transparent);
}

.asg-step-card:last-child::before {
  display: none;
}

.asg-step-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 19px;
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  box-shadow: 0 14px 34px rgba(97, 242, 255, 0.2);
}

.asg-step-icon i {
  font-size: 22px;
}

.asg-step-copy span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--asg-cyan);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asg-step-copy h3 {
  margin: 0;
  color: #f5fbff;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.asg-step-copy p {
  margin: 9px 0 0;
  color: var(--asg-muted);
  font-size: 14.5px;
  line-height: 1.62;
}

/* ================= Cyber Shop Preview ================= */

.asg-cyber-shop {
  position: sticky;
  top: 112px;
  padding: 18px;
  border: 1px solid rgba(97, 242, 255, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(12, 36, 70, 0.94), rgba(5, 17, 36, 0.9)),
    rgba(9, 28, 55, 0.86);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.32),
    0 0 50px rgba(97, 242, 255, 0.08);
  overflow: hidden;
}

.asg-cyber-shop::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 0%, rgba(97, 242, 255, 0.2), transparent 32%),
    radial-gradient(circle at 94% 20%, rgba(81, 247, 165, 0.12), transparent 30%);
}

.asg-cyber-shop > * {
  position: relative;
}

.asg-cyber-top {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 6px 4px 14px;
  border-bottom: 1px solid rgba(155, 205, 255, 0.12);
}

.asg-cyber-top strong {
  color: #f5fbff;
  font-size: 15px;
}

.asg-cyber-top small {
  grid-column: 2;
  color: var(--asg-muted);
  font-size: 12px;
  font-weight: 800;
}

.asg-cyber-screen {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(2, 13, 28, 0.62), rgba(4, 19, 39, 0.78));
}

.asg-cyber-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 11px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.asg-cyber-label {
  color: var(--asg-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.asg-cyber-row strong {
  color: #eaf6ff;
  font-size: 12.5px;
  line-height: 1.35;
  word-break: break-word;
}

.asg-cyber-green {
  color: var(--asg-green) !important;
}

.asg-cyber-message {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.asg-cyber-agent {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(155, 205, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.asg-cyber-agent.reply {
  background: rgba(97, 242, 255, 0.08);
  border-color: rgba(97, 242, 255, 0.18);
}

.asg-cyber-agent i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
}

.asg-cyber-agent strong {
  display: block;
  color: #f5fbff;
  font-size: 13px;
}

.asg-cyber-agent small {
  display: block;
  margin-top: 4px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.4;
}

.asg-cyber-checklist {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.asg-cyber-checklist article {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  align-items: center;
  color: #dcecff;
  font-size: 13px;
  font-weight: 850;
}

.asg-cyber-checklist i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #041326;
  background: var(--asg-green);
  font-size: 12px;
}

.asg-cyber-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border-radius: 999px;
  color: #031226;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(97, 242, 255, 0.22);
}

.asg-cyber-link:hover {
  transform: translateY(-2px);
}

/* ================= Responsive ================= */

@media (max-width: 1080px) {
  .asg-activation-layout {
    grid-template-columns: 1fr;
  }

  .asg-cyber-shop {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .asg-activation-flow {
    padding: 62px 0;
  }

  .asg-step-card {
    grid-template-columns: 48px 1fr;
    padding: 15px;
  }

  .asg-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .asg-step-icon i {
    font-size: 19px;
  }

  .asg-step-card::before {
    left: 39px;
    top: 64px;
  }

  .asg-cyber-shop {
    padding: 14px;
    border-radius: 24px;
  }

  .asg-cyber-row {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   ASG ACTIVATION — 8-STEP COMPACT OVERRIDE
   ========================================================= */

/* Keep the existing two-column section, but give the steps more width */
.asg-activation-flow .asg-activation-layout {
  grid-template-columns: minmax(0, 1.16fr) minmax(480px, 0.84fr);
  gap: clamp(24px, 2.6vw, 52px);
  align-items: stretch;
}

/* Eight compact cards: 2 columns × 4 rows */
.asg-activation-flow .asg-step-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

/* Disable the old single-column timeline line */
.asg-activation-flow .asg-step-timeline::before {
  display: none;
}

/* Smaller and tighter card */
.asg-activation-flow .asg-step-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-width: 0;
  min-height: 126px;
  padding: 13px;
  border-radius: 17px;
}

/* Smaller icon block */
.asg-activation-flow .asg-step-icon {
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 13px;
  font-size: 13px;
}

/* Smaller step label */
.asg-activation-flow .asg-step-copy > span {
  display: inline-flex;
  margin: 0 0 4px;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.075em;
}

/* Smaller card heading */
.asg-activation-flow .asg-step-copy h3 {
  margin: 0;
  font-size: clamp(16px, 1vw, 21px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

/* Compact but readable explanation */
.asg-activation-flow .asg-step-copy p {
  max-width: 100%;
  margin: 6px 0 0;
  font-size: clamp(10.5px, 0.68vw, 12.5px);
  line-height: 1.48;
}

/* Prevent text from forcing card width */
.asg-activation-flow .asg-step-copy {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Keep the right preview equal to the compact 8-card grid */
.asg-activation-flow .asg-cyber-shop {
  align-self: stretch;
  min-width: 0;
}

/* Medium desktop / tablet */
@media (max-width: 1280px) {
  .asg-activation-flow .asg-activation-layout {
    grid-template-columns: 1fr;
  }

  .asg-activation-flow .asg-step-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 700px) {
  .asg-activation-flow .asg-step-timeline {
    grid-template-columns: 1fr;
  }

  .asg-activation-flow .asg-step-card {
    min-height: 0;
    padding: 13px;
  }

  .asg-activation-flow .asg-step-copy h3 {
    font-size: 19px;
  }

  .asg-activation-flow .asg-step-copy p {
    font-size: 12px;
    line-height: 1.5;
  }
}



/* =========================================================
   ASG Live Dashboard Visibility
   ========================================================= */

.asg-live-visibility {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(97, 242, 255, 0.14), transparent 30%),
    radial-gradient(circle at 84% 28%, rgba(20, 92, 255, 0.17), transparent 32%),
    linear-gradient(180deg, #071632 0%, #061326 100%);
}

.asg-live-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(28px, 4vw, 86px);
  align-items: center;
}

.asg-live-copy {
  max-width: 900px;
}

.asg-live-copy h2 {
  margin: 0;
  color: var(--asg-text);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.asg-live-lead {
  margin: 22px 0 0;
  color: #e8f5ff;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
  font-weight: 800;
}

.asg-live-copy p:not(.asg-live-lead) {
  margin: 16px 0 0;
  color: var(--asg-muted);
  font-size: 15.5px;
  line-height: 1.72;
}

.asg-live-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.asg-live-cockpit {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(97, 242, 255, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(12, 36, 70, 0.93), rgba(5, 17, 36, 0.9)),
    rgba(9, 28, 55, 0.86);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(97, 242, 255, 0.08);
  overflow: hidden;
}

.asg-live-cockpit::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 0%, rgba(97, 242, 255, 0.2), transparent 32%),
    radial-gradient(circle at 96% 18%, rgba(81, 247, 165, 0.12), transparent 28%);
}

.asg-live-cockpit > * {
  position: relative;
}

.asg-live-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 4px 16px;
  border-bottom: 1px solid rgba(155, 205, 255, 0.12);
}

.asg-live-top > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
}

.asg-live-top strong {
  color: #f5fbff;
  font-size: 15px;
}

.asg-live-top small {
  grid-column: 2;
  color: var(--asg-muted);
  font-size: 12px;
  font-weight: 800;
}

.asg-live-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(81, 247, 165, 0.24);
  border-radius: 999px;
  color: var(--asg-green);
  background: rgba(81, 247, 165, 0.08);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.asg-live-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.asg-live-kpi-grid article {
  min-height: 136px;
  padding: 14px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.asg-live-kpi-grid i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
}

.asg-live-kpi-grid span {
  display: block;
  color: var(--asg-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.asg-live-kpi-grid strong {
  display: block;
  margin-top: 5px;
  color: #f5fbff;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.asg-live-kpi-grid small {
  display: block;
  margin-top: 6px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.35;
}

.asg-live-window {
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(2, 13, 28, 0.54), rgba(4, 19, 39, 0.76));
}

.asg-live-window-head,
.asg-live-feed-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.asg-live-window-head span,
.asg-live-feed-head span {
  color: var(--asg-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.asg-live-window-head strong,
.asg-live-feed-head strong {
  color: #f5fbff;
  font-size: 13px;
}

.asg-live-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.asg-live-proof-grid article {
  padding: 13px;
  border: 1px solid rgba(155, 205, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
}

.asg-live-proof-grid i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 13px;
  color: var(--asg-green);
  background: rgba(81, 247, 165, 0.09);
  border: 1px solid rgba(81, 247, 165, 0.16);
}

.asg-live-proof-grid strong {
  display: block;
  color: #f5fbff;
  font-size: 13px;
}

.asg-live-proof-grid small {
  display: block;
  margin-top: 5px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.4;
}

.asg-live-feed {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.asg-live-feed article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 15px;
  background: rgba(3, 14, 31, 0.34);
}

.asg-live-feed i {
  color: var(--asg-green);
  font-size: 13px;
  margin-top: 2px;
}

.asg-live-feed strong {
  display: block;
  color: #f5fbff;
  font-size: 13px;
}

.asg-live-feed small {
  display: block;
  margin-top: 4px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.38;
}

/* ================= Responsive ================= */

@media (max-width: 1120px) {
  .asg-live-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .asg-live-kpi-grid,
  .asg-live-proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .asg-live-visibility {
    padding: 62px 0;
  }

  .asg-live-actions .asg-btn {
    width: 100%;
  }

  .asg-live-cockpit {
    padding: 14px;
    border-radius: 24px;
  }

  .asg-live-kpi-grid,
  .asg-live-proof-grid {
    grid-template-columns: 1fr;
  }

  .asg-live-top,
  .asg-live-window-head,
  .asg-live-feed-head {
    display: grid;
  }
}

/* =========================================================
   HOME TRUST SLIDER V3 — MATCHED TO THE NEW HOMEPAGE SYSTEM
   Full replacement for the previous trust slider CSS.
   CSS only — no style tag. Existing HTML and JS stay unchanged.
========================================================= */

.wd-trust-slider-section,
.wd-trust-slider-section * {
  box-sizing: border-box;
}

.wd-trust-slider-section {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(78px, 5.7vw, 148px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 8%, rgba(56, 189, 248, 0.14), transparent 28%),
    radial-gradient(circle at 94% 12%, rgba(163, 230, 53, 0.12), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%) !important;
  border-top: 1px solid #dce7f1;
  border-bottom: 1px solid #dce7f1;
}

.wd-trust-slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(7, 21, 45, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 21, 45, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 84%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 84%, transparent);
}

.wd-trust-slider-section::after {
  content: "";
  position: absolute;
  right: -9%;
  bottom: -190px;
  width: min(680px, 42vw);
  aspect-ratio: 1.8;
  pointer-events: none;
  background: rgba(56, 189, 248, 0.11);
  border-radius: 999px;
  filter: blur(65px);
}

.wd-trust-slider-section .site-shell {
  position: relative;
  z-index: 1;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 clamp(22px, 2.35vw, 96px) !important;
}

/* ---------- Section introduction ---------- */
.wd-trust-slider-head {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(36px, 3.4vw, 116px);
  row-gap: clamp(13px, 0.9vw, 24px);
  align-items: end;
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(34px, 2.6vw, 76px);
  text-align: left;
}

.wd-trust-slider-head .home-section-kicker {
  grid-column: 1;
  grid-row: 1;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 9px 14px;
  color: #39516d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(73, 105, 139, 0.16);
  border-radius: 999px;
  font-size: clamp(0.68rem, 0.46vw, 0.9rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wd-trust-slider-head h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 18ch;
  margin: 0;
  color: #07152d;
  font-size: clamp(2.25rem, 3.25vw, 5.5rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
}

.wd-trust-slider-head .home-section-lead {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  max-width: 86ch;
  margin: 0;
  color: #52647b;
  font-size: clamp(0.98rem, 0.7vw, 1.28rem);
  line-height: 1.76;
}

/* ---------- Slider structure ---------- */
.wd-trust-slider {
  --wd-trust-gap: clamp(14px, 1vw, 28px);
  --wd-trust-visible: 5;

  position: relative;
  display: grid;
  grid-template-columns: clamp(46px, 2.7vw, 68px) minmax(0, 1fr) clamp(46px, 2.7vw, 68px);
  gap: clamp(12px, 1vw, 28px);
  align-items: center;
  width: 100%;
  margin-top: 0;
}

.wd-trust-viewport {
  min-width: 0;
  overflow: hidden;
  padding: 6px 2px 16px;
}

.wd-trust-track {
  display: flex;
  gap: var(--wd-trust-gap);
  will-change: transform;
  transition: transform 0.48s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Trust cards ---------- */
.wd-trust-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - ((var(--wd-trust-visible) - 1) * var(--wd-trust-gap))) / var(--wd-trust-visible));
  flex-direction: column;
  min-width: 0;
  min-height: clamp(276px, 17vw, 350px);
  padding: clamp(22px, 1.35vw, 40px);
  overflow: hidden;
  color: #13263f;
  background:
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.09), transparent 32%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid #d9e5ef;
  border-radius: clamp(20px, 1vw, 30px);
  box-shadow: 0 18px 48px rgba(24, 54, 88, 0.09);
  opacity: 0.9;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}

.wd-trust-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, #a3e635);
  opacity: 0.52;
}

.wd-trust-card.is-visible {
  opacity: 1;
}

.wd-trust-card:hover {
  transform: translateY(-5px);
  border-color: #bcd5e7;
  box-shadow: 0 25px 58px rgba(24, 54, 88, 0.14);
}

/* The first visible/current card becomes the dark homepage anchor. */
.wd-trust-card.is-active {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(163, 230, 53, 0.17), transparent 35%),
    linear-gradient(145deg, #07162d, #123f65);
  border-color: rgba(189, 242, 111, 0.25);
  box-shadow: 0 28px 72px rgba(7, 21, 45, 0.27);
}

.wd-trust-card.is-active::before {
  height: 5px;
  opacity: 1;
}

.wd-trust-icon {
  display: grid;
  flex: 0 0 auto;
  width: clamp(46px, 2.45vw, 68px);
  aspect-ratio: 1;
  margin-bottom: clamp(16px, 1vw, 25px);
  place-items: center;
  color: #07152d;
  background: linear-gradient(135deg, #dff5ff, #e7f8c2);
  border: 1px solid #d2e4db;
  border-radius: clamp(14px, 0.72vw, 20px);
  font-size: clamp(1rem, 0.76vw, 1.38rem);
  box-shadow: 0 12px 28px rgba(24, 54, 88, 0.09);
}

.wd-trust-card.is-active .wd-trust-icon {
  color: #07152d;
  background: linear-gradient(135deg, #dff5ff, #bdf26f);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 32px rgba(0, 8, 24, 0.2);
}

.wd-trust-card small {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 6px 9px;
  color: #3f6c8c;
  background: #e8f5fc;
  border: 1px solid #d3e9f4;
  border-radius: 999px;
  font-size: clamp(0.62rem, 0.42vw, 0.78rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wd-trust-card.is-active small {
  color: #274c0d;
  background: #dff8b9;
  border-color: #c9ed97;
}

.wd-trust-card h3 {
  margin: 0;
  color: #0a1c36;
  font-size: clamp(1.02rem, 0.84vw, 1.48rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.wd-trust-card.is-active h3 {
  color: #fff;
}

.wd-trust-card p {
  margin: 12px 0 0;
  color: #5a6d83;
  font-size: clamp(0.8rem, 0.54vw, 0.98rem);
  line-height: 1.62;
}

.wd-trust-card.is-active p {
  color: #bdd0e2;
}

/* ---------- Previous / next navigation ---------- */
.wd-trust-nav {
  display: grid;
  width: clamp(46px, 2.7vw, 68px);
  aspect-ratio: 1;
  padding: 0;
  place-items: center;
  color: #17314f;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d3e0ea;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(20, 52, 87, 0.11);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.wd-trust-nav:hover {
  transform: translateY(-2px);
  color: #fff;
  background: #0a1c36;
  border-color: #0a1c36;
  box-shadow: 0 19px 44px rgba(7, 21, 45, 0.22);
}

/* ---------- Slider position dots ---------- */
.wd-trust-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.wd-trust-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #b5c6d5;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    width 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.wd-trust-dot:hover {
  transform: scale(1.16);
  background: #6f879d;
}

.wd-trust-dot.is-active {
  width: 30px;
  background: linear-gradient(90deg, #38bdf8, #a3e635);
}

/* ---------- Section actions ---------- */
.wd-trust-slider-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(24px, 1.55vw, 44px);
}

.wd-trust-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 17px;
  border-radius: 999px;
  font-size: clamp(0.72rem, 0.49vw, 0.9rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.wd-trust-btn:hover {
  transform: translateY(-2px);
}

.wd-trust-btn-primary {
  color: #fff;
  background: #0a1c36;
  border: 1px solid #0a1c36;
  box-shadow: 0 16px 38px rgba(7, 21, 45, 0.2);
}

.wd-trust-btn-primary i {
  color: #bdf26f;
}

.wd-trust-btn-primary:hover {
  background: #123a5d;
  box-shadow: 0 19px 44px rgba(7, 21, 45, 0.25);
}

.wd-trust-btn-secondary {
  color: #17314f;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cfdde8;
  box-shadow: 0 13px 32px rgba(20, 52, 87, 0.08);
}

.wd-trust-btn-secondary:hover {
  background: #fff;
  box-shadow: 0 16px 36px rgba(20, 52, 87, 0.12);
}

.wd-trust-nav:focus-visible,
.wd-trust-dot:focus-visible,
.wd-trust-btn:focus-visible {
  outline: 3px solid #38bdf8;
  outline-offset: 3px;
}

/* ---------- 4K ---------- */
@media (min-width: 2800px) {
  .wd-trust-slider-section .site-shell {
    padding-inline: clamp(58px, 2.1vw, 104px) !important;
  }

  .wd-trust-slider-head {
    grid-template-columns: minmax(0, 1.2fr) minmax(780px, 0.8fr);
  }
}

/* Keep these visible-card breakpoints synchronized with the existing JS. */
@media (max-width: 1500px) {
  .wd-trust-slider {
    --wd-trust-visible: 4;
  }
}

@media (max-width: 1120px) {
  .wd-trust-slider-head {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .wd-trust-slider-head .home-section-kicker,
  .wd-trust-slider-head h2,
  .wd-trust-slider-head .home-section-lead {
    grid-column: 1;
    grid-row: auto;
  }

  .wd-trust-slider-head h2 {
    max-width: 21ch;
  }

  .wd-trust-slider {
    --wd-trust-visible: 3;
  }
}

/* ---------- Touch slider ---------- */
@media (max-width: 860px) {
  .wd-trust-slider-section {
    padding: 68px 0;
  }

  .wd-trust-slider-section .site-shell {
    width: 100% !important;
    padding-inline: 15px !important;
  }

  .wd-trust-slider-head {
    margin-bottom: 28px;
  }

  .wd-trust-slider-head h2 {
    font-size: clamp(2rem, 11vw, 3.15rem);
  }

  .wd-trust-slider {
    display: block;
  }

  .wd-trust-nav,
  .wd-trust-dots {
    display: none;
  }

  .wd-trust-viewport {
    overflow-x: auto;
    padding: 5px 0 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .wd-trust-viewport::-webkit-scrollbar {
    display: none;
  }

  .wd-trust-track {
    transform: none !important;
    transition: none;
  }

  .wd-trust-card {
    flex: 0 0 min(86%, 430px);
    min-height: 310px;
    padding: 24px 21px;
    scroll-snap-align: start;
  }

  .wd-trust-slider-actions {
    justify-content: flex-start;
  }

  .wd-trust-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wd-trust-track,
  .wd-trust-card,
  .wd-trust-nav,
  .wd-trust-dot,
  .wd-trust-btn {
    transition: none;
  }
}


/* =========================================================
   ASG PRODUCT PAGE — A2A + UCP + MCP
   ========================================================= */

.asg-protocol-commercial {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 92px var(--asg-edge);
  box-sizing: border-box;
  overflow: hidden;
  color: var(--asg-text);
  background:
    radial-gradient(circle at 12% 12%, rgba(89, 184, 255, 0.15), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(97, 242, 255, 0.12), transparent 28%),
    radial-gradient(circle at 76% 100%, rgba(81, 247, 165, 0.08), transparent 30%),
    linear-gradient(180deg, #071632 0%, #061326 100%);
}

.asg-protocol-commercial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(130, 190, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 190, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), transparent 92%);
}

.asg-protocol-commercial::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -160px;
  top: 110px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(22px);
  opacity: 0.44;
  background: radial-gradient(circle, rgba(97, 242, 255, 0.24), transparent 68%);
}

.asg-protocol-commercial,
.asg-protocol-commercial * {
  box-sizing: border-box;
}

/* ================= SECTION HEAD ================= */

.asg-protocol-commercial__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  column-gap: clamp(34px, 5vw, 110px);
  row-gap: 12px;
  align-items: end;
  width: 100%;
  max-width: none;
}

.asg-protocol-commercial__brand {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: 0 0 8px;
  color: #dff8ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.015em;
}

.asg-protocol-commercial__brand img {
  display: block;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.asg-protocol-commercial__kicker {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin: 0 0 4px;
  padding: 8px 12px;
  border: 1px solid rgba(97, 242, 255, 0.22);
  border-radius: 999px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.075);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(89, 184, 255, 0.08);
}

.asg-protocol-commercial h2 {
  grid-column: 1;
  margin: 0;
  max-width: 1120px;
  color: var(--asg-text);
  font-size: clamp(36px, 4.7vw, 72px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.asg-protocol-commercial__head > p:last-child {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: end;
  max-width: 900px;
  margin: 0;
  color: var(--asg-muted);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.72;
}

/* ================= PROTOCOL CARDS ================= */

.asg-protocol-commercial__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 36px;
}

.asg-protocol-commercial__grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 286px;
  padding: clamp(20px, 1.7vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(155, 205, 255, 0.14);
  border-radius: var(--asg-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.034)),
    rgba(9, 28, 55, 0.78);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(16px);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.asg-protocol-commercial__grid article::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 0%, rgba(97, 242, 255, 0.15), transparent 34%),
    radial-gradient(circle at 100% 28%, rgba(81, 247, 165, 0.08), transparent 28%);
}

.asg-protocol-commercial__grid article > * {
  position: relative;
}

.asg-protocol-commercial__grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(97, 242, 255, 0.34);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.31),
    0 0 42px rgba(97, 242, 255, 0.07);
}

.asg-protocol-commercial__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(97, 242, 255, 0.2);
  border-radius: 999px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.08);
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.asg-protocol-commercial__grid h3 {
  margin: 18px 0 10px;
  color: #f5fbff;
  font-size: clamp(23px, 2vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.042em;
}

.asg-protocol-commercial__grid p {
  margin: 0 0 20px;
  color: var(--asg-muted);
  font-size: 14px;
  line-height: 1.62;
}

.asg-protocol-commercial code {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 11px 12px;
  overflow-x: auto;
  border: 1px solid rgba(155, 205, 255, 0.12);
  border-radius: 13px;
  color: #dff8ff;
  background: rgba(2, 13, 28, 0.58);
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 11px;
  line-height: 1.45;
  white-space: nowrap;
  scrollbar-width: thin;
}

.asg-protocol-commercial code + code {
  margin-top: 8px;
}

/* ================= ROUTING FLOW ================= */

.asg-protocol-commercial__flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 11px;
  width: 100%;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(2, 13, 28, 0.5), rgba(4, 19, 39, 0.72));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.17);
}

.asg-protocol-commercial__flow div {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 106px;
  padding: 16px;
  border: 1px solid rgba(155, 205, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.asg-protocol-commercial__flow b,
.asg-protocol-commercial__flow span {
  display: block;
}

.asg-protocol-commercial__flow b {
  color: #f5fbff;
  font-size: 14px;
  line-height: 1.25;
}

.asg-protocol-commercial__flow span {
  margin-top: 6px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.48;
}

.asg-protocol-commercial__flow i {
  display: grid;
  place-items: center;
  min-width: 26px;
  color: var(--asg-cyan);
  font-size: 22px;
  font-style: normal;
  font-weight: 950;
  text-shadow: 0 0 18px rgba(97, 242, 255, 0.4);
}

/* ================= RESPONSIBILITY BOUNDARY ================= */

.asg-protocol-commercial__boundary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  width: 100%;
  margin-top: 18px;
  padding: clamp(22px, 2.3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(97, 242, 255, 0.2);
  border-radius: var(--asg-radius-lg);
  color: var(--asg-text);
  background:
    radial-gradient(circle at 4% 0%, rgba(97, 242, 255, 0.13), transparent 32%),
    radial-gradient(circle at 94% 100%, rgba(81, 247, 165, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(12, 36, 70, 0.94), rgba(5, 17, 36, 0.92));
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.32),
    0 0 50px rgba(97, 242, 255, 0.07);
}

.asg-protocol-commercial__boundary strong {
  display: block;
  max-width: 980px;
  color: #f5fbff;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.asg-protocol-commercial__boundary p {
  max-width: 1180px;
  margin: 12px 0 0;
  color: var(--asg-muted);
  font-size: 13.5px;
  line-height: 1.68;
}

.asg-protocol-commercial__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.asg-protocol-commercial__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid rgba(155, 205, 255, 0.16);
  border-radius: 999px;
  color: #eaf6ff;
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.asg-protocol-commercial__actions a:first-child {
  border-color: transparent;
  color: #031226;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan), var(--asg-blue));
  box-shadow: 0 18px 42px rgba(97, 242, 255, 0.22);
}

.asg-protocol-commercial__actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(97, 242, 255, 0.42);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

/* ================= 4K / ULTRAWIDE ================= */

@media (min-width: 1900px) {
  .asg-protocol-commercial {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .asg-protocol-commercial__grid {
    gap: 24px;
  }

  .asg-protocol-commercial__grid article {
    min-height: 320px;
  }

  .asg-protocol-commercial__flow {
    gap: 14px;
    padding: 22px;
  }

  .asg-protocol-commercial__flow div {
    min-height: 124px;
    padding: 20px;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1180px) {
  .asg-protocol-commercial__head {
    grid-template-columns: 1fr;
  }

  .asg-protocol-commercial__brand,
  .asg-protocol-commercial__kicker,
  .asg-protocol-commercial h2,
  .asg-protocol-commercial__head > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .asg-protocol-commercial__head > p:last-child {
    max-width: 980px;
    margin-top: 6px;
  }

  .asg-protocol-commercial__flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asg-protocol-commercial__flow i {
    display: none;
  }
}

@media (max-width: 980px) {
  .asg-protocol-commercial {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .asg-protocol-commercial__grid {
    grid-template-columns: 1fr;
  }

  .asg-protocol-commercial__grid article {
    min-height: 0;
  }

  .asg-protocol-commercial__boundary {
    grid-template-columns: 1fr;
  }

  .asg-protocol-commercial__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .asg-protocol-commercial {
    padding: 62px var(--asg-edge);
  }

  .asg-protocol-commercial__brand {
    align-items: flex-start;
  }

  .asg-protocol-commercial__brand img {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .asg-protocol-commercial__flow {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .asg-protocol-commercial__flow div {
    min-height: 0;
  }

  .asg-protocol-commercial__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .asg-protocol-commercial__brand span {
    font-size: 12px;
    line-height: 1.42;
  }

  .asg-protocol-commercial__grid article,
  .asg-protocol-commercial__boundary {
    border-radius: 24px;
  }
}



/* =========================================================
   ASG Agent-to-Agent Commerce Ready
   ========================================================= */

.asg-a2a-commerce {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(81, 247, 165, 0.11), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(97, 242, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #061326 0%, #071632 100%);
}

.asg-a2a-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(28px, 4vw, 86px);
  align-items: center;
}

.asg-a2a-copy {
  max-width: 920px;
}

.asg-a2a-copy h2 {
  margin: 0;
  color: var(--asg-text);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.asg-a2a-lead {
  margin: 22px 0 0;
  color: #e8f5ff;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
  font-weight: 850;
}

.asg-a2a-copy p:not(.asg-a2a-lead) {
  margin: 16px 0 0;
  color: var(--asg-muted);
  font-size: 15.5px;
  line-height: 1.72;
}

.asg-a2a-highlight {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(97, 242, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(97, 242, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.asg-a2a-highlight i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  box-shadow: 0 16px 34px rgba(97, 242, 255, 0.2);
}

.asg-a2a-highlight strong {
  display: block;
  color: #f5fbff;
  font-size: 16px;
  line-height: 1.25;
}

.asg-a2a-highlight small {
  display: block;
  margin-top: 6px;
  color: var(--asg-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ================= A2A Stage ================= */

.asg-a2a-stage {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(97, 242, 255, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(12, 36, 70, 0.94), rgba(5, 17, 36, 0.9)),
    rgba(9, 28, 55, 0.86);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(97, 242, 255, 0.08);
  overflow: hidden;
}

.asg-a2a-stage::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(97, 242, 255, 0.2), transparent 32%),
    radial-gradient(circle at 96% 18%, rgba(81, 247, 165, 0.12), transparent 28%);
}

.asg-a2a-stage > * {
  position: relative;
}

.asg-a2a-stage-top {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 8px 4px 16px;
  border-bottom: 1px solid rgba(155, 205, 255, 0.12);
}

.asg-a2a-stage-top strong {
  color: #f5fbff;
  font-size: 15px;
}

.asg-a2a-stage-top small {
  grid-column: 2;
  color: var(--asg-muted);
  font-size: 12px;
  font-weight: 800;
}

/* ================= Chat Preview ================= */

.asg-a2a-chat {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(2, 13, 28, 0.6), rgba(4, 19, 39, 0.78));
}

.asg-a2a-msg {
  display: grid;
  gap: 7px;
  max-width: 92%;
}

.asg-a2a-msg.buyer {
  justify-self: start;
}

.asg-a2a-msg.gateway {
  justify-self: end;
}

.asg-a2a-msg span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(89, 184, 255, 0.18);
  border-radius: 999px;
  background: rgba(89, 184, 255, 0.11);
  color: #dff8ff;
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.asg-a2a-msg.gateway span {
  justify-self: end;
  border-color: rgba(81, 247, 165, 0.2);
  background: rgba(81, 247, 165, 0.1);
  color: #e8fff4;
}

.asg-a2a-msg p {
  margin: 0;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.065);
  color: #e8f3ff;
  font-size: 12.7px;
  line-height: 1.48;
}

.asg-a2a-msg.gateway p {
  border-color: rgba(97, 242, 255, 0.18);
  background: rgba(97, 242, 255, 0.1);
}

/* ================= Commerce Path ================= */

.asg-a2a-commerce-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.asg-a2a-commerce-path article {
  min-height: 134px;
  padding: 14px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.asg-a2a-commerce-path i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
}

.asg-a2a-commerce-path strong {
  display: block;
  color: #f5fbff;
  font-size: 14px;
}

.asg-a2a-commerce-path span {
  display: block;
  margin-top: 6px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.4;
}

/* ================= Intent Hook Box ================= */

.asg-a2a-intent-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(81, 247, 165, 0.18);
  border-radius: 22px;
  background: rgba(81, 247, 165, 0.07);
}

.asg-a2a-intent-box span {
  display: block;
  color: var(--asg-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.asg-a2a-intent-box strong {
  display: block;
  margin-top: 4px;
  color: #f5fbff;
  font-size: 14px;
}

.asg-a2a-intent-box code {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(3, 14, 31, 0.56);
  border: 1px solid rgba(155, 205, 255, 0.13);
  color: var(--asg-green);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

/* ================= Responsive ================= */

@media (max-width: 1120px) {
  .asg-a2a-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .asg-a2a-commerce-path {
    grid-template-columns: 1fr 1fr;
  }

  .asg-a2a-intent-box {
    grid-template-columns: 1fr;
  }

  .asg-a2a-intent-box code {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .asg-a2a-commerce {
    padding: 62px 0;
  }

  .asg-a2a-stage {
    padding: 14px;
    border-radius: 24px;
  }

  .asg-a2a-msg {
    max-width: 100%;
  }

  .asg-a2a-msg.gateway {
    justify-self: stretch;
  }

  .asg-a2a-msg.gateway span {
    justify-self: start;
  }

  .asg-a2a-commerce-path {
    grid-template-columns: 1fr;
  }

  .asg-a2a-highlight {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ASG Safe Public Boundary
   ========================================================= */

.asg-boundary {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 107, 138, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(81, 247, 165, 0.11), transparent 30%),
    linear-gradient(180deg, #071632 0%, #061326 100%);
}

.asg-boundary-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(580px, 1.14fr);
  gap: clamp(28px, 4vw, 86px);
  align-items: center;
}

.asg-boundary-copy {
  max-width: 920px;
}

.asg-boundary-copy h2 {
  margin: 0;
  color: var(--asg-text);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.asg-boundary-lead {
  margin: 22px 0 0;
  color: #e8f5ff;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
  font-weight: 850;
}

.asg-boundary-copy p:not(.asg-boundary-lead) {
  margin: 16px 0 0;
  color: var(--asg-muted);
  font-size: 15.5px;
  line-height: 1.72;
}

.asg-boundary-alert {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(97, 242, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(97, 242, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.asg-boundary-alert i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  box-shadow: 0 16px 34px rgba(97, 242, 255, 0.2);
}

.asg-boundary-alert strong {
  display: block;
  color: #f5fbff;
  font-size: 16px;
  line-height: 1.25;
}

.asg-boundary-alert small {
  display: block;
  margin-top: 6px;
  color: var(--asg-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ================= Boundary Board ================= */

.asg-boundary-board {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(97, 242, 255, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(12, 36, 70, 0.94), rgba(5, 17, 36, 0.9)),
    rgba(9, 28, 55, 0.86);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(97, 242, 255, 0.08);
  overflow: hidden;
}

.asg-boundary-board::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(97, 242, 255, 0.18), transparent 32%),
    radial-gradient(circle at 96% 18%, rgba(81, 247, 165, 0.12), transparent 28%);
}

.asg-boundary-board > * {
  position: relative;
}

.asg-boundary-top {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 8px 4px 16px;
  border-bottom: 1px solid rgba(155, 205, 255, 0.12);
}

.asg-boundary-top strong {
  color: #f5fbff;
  font-size: 15px;
}

.asg-boundary-top small {
  grid-column: 2;
  color: var(--asg-muted);
  font-size: 12px;
  font-weight: 800;
}

.asg-boundary-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.asg-boundary-column {
  padding: 16px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.asg-boundary-column.allowed {
  border-color: rgba(81, 247, 165, 0.18);
}

.asg-boundary-column.blocked {
  border-color: rgba(255, 107, 138, 0.2);
}

.asg-boundary-column-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.asg-boundary-column-head > i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
  color: var(--asg-cyan);
}

.asg-boundary-column.allowed .asg-boundary-column-head > i {
  color: var(--asg-green);
  background: rgba(81, 247, 165, 0.09);
  border-color: rgba(81, 247, 165, 0.16);
}

.asg-boundary-column.blocked .asg-boundary-column-head > i {
  color: var(--asg-danger);
  background: rgba(255, 107, 138, 0.09);
  border-color: rgba(255, 107, 138, 0.18);
}

.asg-boundary-column-head strong {
  display: block;
  color: #f5fbff;
  font-size: 16px;
}

.asg-boundary-column-head small {
  display: block;
  margin-top: 4px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.35;
}

.asg-boundary-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.asg-boundary-column li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  align-items: start;
  color: #dcecff;
  font-size: 13.5px;
  line-height: 1.4;
}

.asg-boundary-column li i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #041326;
  background: var(--asg-green);
  font-size: 12px;
}

.asg-boundary-column.blocked li i {
  color: #ffffff;
  background: rgba(255, 107, 138, 0.9);
}

/* ================= Route Card ================= */

.asg-boundary-route-card {
  display: grid;
  gap: 13px;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(97, 242, 255, 0.14);
  border-radius: 22px;
  background: rgba(97, 242, 255, 0.065);
}

.asg-boundary-route-card span {
  display: block;
  color: var(--asg-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.asg-boundary-route-card strong {
  display: block;
  margin-top: 4px;
  color: #f5fbff;
  font-size: 14px;
}

.asg-boundary-route {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.asg-boundary-route code {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(3, 14, 31, 0.56);
  border: 1px solid rgba(155, 205, 255, 0.13);
  color: var(--asg-green);
  font-size: 12px;
  font-weight: 900;
}

.asg-boundary-route i {
  color: var(--asg-cyan);
  font-size: 13px;
}

/* ================= Responsive ================= */

@media (max-width: 1120px) {
  .asg-boundary-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .asg-boundary-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .asg-boundary {
    padding: 62px 0;
  }

  .asg-boundary-board {
    padding: 14px;
    border-radius: 24px;
  }

  .asg-boundary-alert {
    grid-template-columns: 1fr;
  }

  .asg-boundary-route {
    display: grid;
  }

  .asg-boundary-route i {
    transform: rotate(90deg);
    justify-self: start;
    margin-left: 12px;
  }
}

/* =========================================================
   ASG AI Agent Discovery Routes
   ========================================================= */

.asg-ai-routes {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(97, 242, 255, 0.13), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(20, 92, 255, 0.15), transparent 32%),
    linear-gradient(180deg, #061326 0%, #071632 100%);
}

.asg-routes-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(28px, 4vw, 86px);
  align-items: center;
}

.asg-routes-copy {
  max-width: 920px;
}

.asg-routes-copy h2 {
  margin: 0;
  color: var(--asg-text);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.asg-routes-lead {
  margin: 22px 0 0;
  color: #e8f5ff;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
  font-weight: 850;
}

.asg-routes-copy p:not(.asg-routes-lead) {
  margin: 16px 0 0;
  color: var(--asg-muted);
  font-size: 15.5px;
  line-height: 1.72;
}

.asg-routes-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ================= Route Terminal ================= */

.asg-route-terminal {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(97, 242, 255, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(12, 36, 70, 0.94), rgba(5, 17, 36, 0.9)),
    rgba(9, 28, 55, 0.86);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(97, 242, 255, 0.08);
  overflow: hidden;
}

.asg-route-terminal::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(97, 242, 255, 0.2), transparent 32%),
    radial-gradient(circle at 96% 18%, rgba(81, 247, 165, 0.12), transparent 28%);
}

.asg-route-terminal > * {
  position: relative;
}

.asg-route-terminal-top {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 8px 4px 16px;
  border-bottom: 1px solid rgba(155, 205, 255, 0.12);
}

.asg-route-terminal-top strong {
  color: #f5fbff;
  font-size: 15px;
}

.asg-route-terminal-top small {
  grid-column: 2;
  color: var(--asg-muted);
  font-size: 12px;
  font-weight: 800;
}

.asg-route-lines {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.asg-route-lines div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid rgba(155, 205, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.05);
}

.asg-route-lines span {
  color: var(--asg-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.asg-route-lines code {
  color: var(--asg-green);
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.35;
  word-break: break-word;
}

/* ================= Route Cards ================= */

.asg-route-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.asg-route-card-grid article {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.032)),
    rgba(9, 28, 55, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.17);
}

.asg-route-card-grid i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 16px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
}

.asg-route-card-grid strong {
  display: block;
  color: #f5fbff;
  font-size: 16px;
  line-height: 1.25;
}

.asg-route-card-grid span {
  display: block;
  margin-top: 8px;
  color: var(--asg-muted);
  font-size: 13px;
  line-height: 1.5;
}

.asg-route-card-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin-top: auto;
  padding: 0 12px;
  border: 1px solid rgba(97, 242, 255, 0.18);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(97, 242, 255, 0.07);
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
}

.asg-route-card-grid a:hover {
  color: #061326;
  background: var(--asg-cyan);
}

/* ================= FAQ Hook ================= */

.asg-faq-hook {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(97, 242, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(97, 242, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.asg-faq-hook > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.asg-faq-hook i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  box-shadow: 0 16px 34px rgba(97, 242, 255, 0.2);
}

.asg-faq-hook strong {
  display: block;
  color: #f5fbff;
  font-size: 16px;
}

.asg-faq-hook small {
  display: block;
  margin-top: 5px;
  color: var(--asg-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.asg-faq-hook a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

/* ================= Responsive ================= */

@media (max-width: 1280px) {
  .asg-route-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .asg-routes-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .asg-route-card-grid {
    grid-template-columns: 1fr;
  }

  .asg-faq-hook {
    display: grid;
  }

  .asg-faq-hook > div {
    grid-template-columns: 1fr;
  }

  .asg-faq-hook a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .asg-ai-routes {
    padding: 62px 0;
  }

  .asg-routes-actions .asg-btn {
    width: 100%;
  }

  .asg-route-terminal {
    padding: 14px;
    border-radius: 24px;
  }

  .asg-route-lines div {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ASG Business Owner Control
   ========================================================= */

.asg-owner-control {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(81, 247, 165, 0.11), transparent 30%),
    radial-gradient(circle at 90% 22%, rgba(97, 242, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #071632 0%, #061326 100%);
}

.asg-owner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(580px, 1.14fr);
  gap: clamp(28px, 4vw, 86px);
  align-items: center;
}

.asg-owner-copy {
  max-width: 920px;
}

.asg-owner-copy h2 {
  margin: 0;
  color: var(--asg-text);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.asg-owner-lead {
  margin: 22px 0 0;
  color: #e8f5ff;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
  font-weight: 850;
}

.asg-owner-copy p:not(.asg-owner-lead) {
  margin: 16px 0 0;
  color: var(--asg-muted);
  font-size: 15.5px;
  line-height: 1.72;
}

/* ================= Owner Panel ================= */

.asg-owner-panel {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(97, 242, 255, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(12, 36, 70, 0.94), rgba(5, 17, 36, 0.9)),
    rgba(9, 28, 55, 0.86);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(97, 242, 255, 0.08);
  overflow: hidden;
}

.asg-owner-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(97, 242, 255, 0.2), transparent 32%),
    radial-gradient(circle at 96% 18%, rgba(81, 247, 165, 0.12), transparent 28%);
}

.asg-owner-panel > * {
  position: relative;
}

.asg-owner-panel-top {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 8px 4px 16px;
  border-bottom: 1px solid rgba(155, 205, 255, 0.12);
}

.asg-owner-panel-top strong {
  color: #f5fbff;
  font-size: 15px;
}

.asg-owner-panel-top small {
  grid-column: 2;
  color: var(--asg-muted);
  font-size: 12px;
  font-weight: 800;
}

.asg-owner-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.asg-owner-preview-grid article {
  min-height: 160px;
  padding: 14px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.asg-owner-preview-grid i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
}

.asg-owner-preview-grid span {
  display: block;
  color: var(--asg-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.asg-owner-preview-grid strong {
  display: block;
  margin-top: 5px;
  color: #f5fbff;
  font-size: 16px;
  line-height: 1.2;
}

.asg-owner-preview-grid small {
  display: block;
  margin-top: 6px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.4;
}

/* ================= Switchboard ================= */

.asg-owner-switchboard {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(2, 13, 28, 0.52), rgba(4, 19, 39, 0.75));
}

.asg-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 13px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.05);
}

.asg-switch-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dcecff;
  font-size: 13px;
  font-weight: 900;
}

.asg-switch-row i {
  color: var(--asg-muted);
  font-size: 17px;
}

.asg-switch-row.on i {
  color: var(--asg-green);
}

.asg-switch-row strong {
  color: var(--asg-muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.asg-switch-row.on strong {
  color: var(--asg-green);
}

/* ================= Owner Feature Grid ================= */

.asg-owner-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.asg-owner-feature-grid article {
  min-height: 205px;
  padding: 18px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.032)),
    rgba(9, 28, 55, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.17);
}

.asg-owner-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 16px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
}

.asg-owner-icon i {
  font-size: 18px;
}

.asg-owner-feature-grid strong {
  display: block;
  color: #f5fbff;
  font-size: 16px;
  line-height: 1.25;
}

.asg-owner-feature-grid span {
  display: block;
  margin-top: 8px;
  color: var(--asg-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* ================= Responsive ================= */

@media (max-width: 1280px) {
  .asg-owner-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .asg-owner-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .asg-owner-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .asg-owner-feature-grid,
  .asg-owner-preview-grid {
    grid-template-columns: 1fr;
  }

  .asg-switch-row {
    display: grid;
  }
}

@media (max-width: 560px) {
  .asg-owner-control {
    padding: 62px 0;
  }

  .asg-owner-panel {
    padding: 14px;
    border-radius: 24px;
  }
}

/* =========================================================
   ASG vs AI Visibility Tools
   ========================================================= */

.asg-vs-tools {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(97, 242, 255, 0.13), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(81, 247, 165, 0.11), transparent 30%),
    linear-gradient(180deg, #061326 0%, #071632 100%);
}

.asg-vs-head {
  max-width: 1240px;
  margin-bottom: 30px;
}

.asg-vs-head h2 {
  margin: 0;
  color: var(--asg-text);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.asg-vs-head p {
  margin: 18px 0 0;
  max-width: 1080px;
  color: var(--asg-muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.68;
}

.asg-vs-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 16px;
  align-items: stretch;
}

.asg-vs-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.032)),
    rgba(9, 28, 55, 0.72);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.asg-vs-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  opacity: 0.8;
  background: radial-gradient(circle at 22% 0%, rgba(97, 242, 255, 0.12), transparent 34%);
}

.asg-vs-card.featured {
  border-color: rgba(97, 242, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(97, 242, 255, 0.105), rgba(255, 255, 255, 0.04)),
    rgba(9, 28, 55, 0.82);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.32),
    0 0 52px rgba(97, 242, 255, 0.1);
  transform: translateY(-8px);
}

.asg-vs-card.featured::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(97, 242, 255, 0.22), transparent 34%),
    radial-gradient(circle at 100% 14%, rgba(81, 247, 165, 0.14), transparent 28%);
}

.asg-vs-card > * {
  position: relative;
}

.asg-vs-ribbon {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #031226;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.asg-vs-card-top {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(155, 205, 255, 0.12);
}

.asg-vs-card-top > i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
  font-size: 21px;
}

.asg-vs-card.featured .asg-vs-card-top > i {
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  box-shadow: 0 16px 34px rgba(97, 242, 255, 0.2);
}

.asg-vs-card-top strong {
  display: block;
  color: #f5fbff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.asg-vs-card-top small {
  display: block;
  margin-top: 5px;
  color: var(--asg-muted);
  font-size: 12.5px;
  font-weight: 850;
}

.asg-vs-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.asg-vs-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #dcecff;
  font-size: 14px;
  line-height: 1.42;
}

.asg-vs-card li i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #041326;
  background: var(--asg-green);
  font-size: 12px;
}

.asg-vs-card.muted li i.fa-minus {
  color: #dcecff;
  background: rgba(155, 205, 255, 0.16);
}

.asg-vs-bottom {
  margin-top: auto;
  padding-top: 24px;
}

.asg-vs-bottom span {
  display: block;
  color: var(--asg-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.asg-vs-bottom strong {
  display: block;
  margin-top: 6px;
  color: #f5fbff;
  font-size: 15px;
  line-height: 1.35;
}

.asg-vs-bottom.strong {
  padding: 15px;
  border: 1px solid rgba(81, 247, 165, 0.18);
  border-radius: 20px;
  background: rgba(81, 247, 165, 0.07);
}

.asg-vs-bottom.strong strong {
  color: var(--asg-green);
}

/* ================= Punchline ================= */

.asg-vs-punchline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(97, 242, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(97, 242, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.asg-vs-punchline > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.asg-vs-punchline i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  box-shadow: 0 16px 34px rgba(97, 242, 255, 0.2);
}

.asg-vs-punchline strong {
  display: block;
  color: #f5fbff;
  font-size: 16px;
}

.asg-vs-punchline small {
  display: block;
  margin-top: 5px;
  color: var(--asg-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.asg-vs-punchline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 999px;
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

/* ================= Responsive ================= */

@media (max-width: 1180px) {
  .asg-vs-layout {
    grid-template-columns: 1fr;
  }

  .asg-vs-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .asg-vs-punchline {
    display: grid;
  }

  .asg-vs-punchline > div {
    grid-template-columns: 1fr;
  }

  .asg-vs-punchline a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .asg-vs-tools {
    padding: 62px 0;
  }

  .asg-vs-card {
    padding: 18px;
    border-radius: 24px;
  }

  .asg-vs-card-top {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ASG FAQ Teaser
   ========================================================= */

.asg-faq-teaser {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(81, 247, 165, 0.1), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(97, 242, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #071632 0%, #061326 100%);
}

.asg-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(600px, 1.18fr);
  gap: clamp(28px, 4vw, 86px);
  align-items: center;
}

.asg-faq-copy {
  max-width: 920px;
}

.asg-faq-copy h2 {
  margin: 0;
  color: var(--asg-text);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.asg-faq-lead {
  margin: 22px 0 0;
  color: #e8f5ff;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
  font-weight: 850;
}

.asg-faq-copy p:not(.asg-faq-lead) {
  margin: 16px 0 0;
  color: var(--asg-muted);
  font-size: 15.5px;
  line-height: 1.72;
}

.asg-faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ================= FAQ Box With Scroll ================= */

.asg-faq-box {
  position: relative;
  display: grid;
  gap: 12px;
  max-height: clamp(390px, 74vh, 550px);
  padding: 18px;
  padding-right: 14px;
  border: 1px solid rgba(97, 242, 255, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(12, 36, 70, 0.94), rgba(5, 17, 36, 0.9)),
    rgba(9, 28, 55, 0.86);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(97, 242, 255, 0.08);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(97, 242, 255, 0.56) rgba(255, 255, 255, 0.055);
}

.asg-faq-box::-webkit-scrollbar {
  width: 10px;
}

.asg-faq-box::-webkit-scrollbar-track {
  margin: 18px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.asg-faq-box::-webkit-scrollbar-thumb {
  border: 2px solid rgba(6, 19, 38, 0.92);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(81, 247, 165, 0.9), rgba(97, 242, 255, 0.9));
}

.asg-faq-box::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(97, 242, 255, 1), rgba(81, 247, 165, 1));
}

.asg-faq-box::before {
  content: "";
  position: sticky;
  top: -18px;
  z-index: 0;
  display: block;
  height: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(97, 242, 255, 0.18), transparent 32%),
    radial-gradient(circle at 96% 18%, rgba(81, 247, 165, 0.12), transparent 28%);
}

.asg-faq-box > * {
  position: relative;
  z-index: 1;
}

.asg-faq-box details {
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.asg-faq-box details:hover {
  border-color: rgba(97, 242, 255, 0.24);
}

.asg-faq-box summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 16px;
  color: #f5fbff;
  list-style: none;
}

.asg-faq-box summary::-webkit-details-marker {
  display: none;
}

.asg-faq-box summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
  font-size: 18px;
  font-weight: 900;
}

.asg-faq-box details[open] summary::after {
  content: "−";
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
}

.asg-faq-box summary span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f5fbff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.25;
}

.asg-faq-box summary i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
}

.asg-faq-box details[open] summary i {
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
}

.asg-faq-box details p {
  margin: 0;
  padding: 0 16px 17px 66px;
  color: var(--asg-muted);
  font-size: 14px;
  line-height: 1.62;
}

/* ================= Responsive ================= */

@media (max-width: 1120px) {
  .asg-faq-layout {
    grid-template-columns: 1fr;
  }

  .asg-faq-box {
    max-height: 720px;
  }
}

@media (max-width: 560px) {
  .asg-faq-teaser {
    padding: 62px 0;
  }

  .asg-faq-actions .asg-btn {
    width: 100%;
  }

  .asg-faq-box {
    max-height: clamp(360px, 68vh, 500px);
    padding: 14px;
    padding-right: 10px;
    border-radius: 24px;
  }

  .asg-faq-box::-webkit-scrollbar {
    width: 8px;
  }

  .asg-faq-box summary {
    align-items: flex-start;
  }

  .asg-faq-box summary span {
    align-items: flex-start;
  }

  .asg-faq-box details p {
    padding-left: 16px;
  }
}

/* =========================================================
   ASG Final CTA
   ========================================================= */

.asg-final-cta {
  position: relative;
  padding: 96px 0 56px;
  background:
    radial-gradient(circle at 16% 12%, rgba(97, 242, 255, 0.16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(81, 247, 165, 0.12), transparent 30%),
    linear-gradient(180deg, #061326 0%, #071632 100%);
}

.asg-final-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.72fr);
  gap: clamp(28px, 4vw, 76px);
  align-items: center;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid rgba(97, 242, 255, 0.24);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 0%, rgba(97, 242, 255, 0.18), transparent 34%),
    radial-gradient(circle at 100% 22%, rgba(81, 247, 165, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(12, 36, 70, 0.94), rgba(5, 17, 36, 0.92));
  box-shadow:
    0 32px 92px rgba(0, 0, 0, 0.36),
    0 0 62px rgba(97, 242, 255, 0.08);
  overflow: hidden;
}

.asg-final-cta-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 34%, transparent 62%);
  opacity: 0.72;
}

.asg-final-cta-card > * {
  position: relative;
}

.asg-final-cta-copy h2 {
  margin: 0;
  max-width: 1120px;
  color: var(--asg-text);
  font-size: clamp(38px, 5.6vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.asg-final-cta-copy p {
  margin: 22px 0 0;
  max-width: 980px;
  color: #dcecff;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.66;
}

.asg-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* ================= Final CTA Panel ================= */

.asg-final-cta-panel {
  padding: 18px;
  border: 1px solid rgba(155, 205, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(2, 13, 28, 0.58), rgba(4, 19, 39, 0.78));
}

.asg-final-panel-top {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 6px 4px 15px;
  border-bottom: 1px solid rgba(155, 205, 255, 0.12);
}

.asg-final-panel-top strong {
  color: #f5fbff;
  font-size: 15px;
}

.asg-final-panel-top small {
  grid-column: 2;
  color: var(--asg-muted);
  font-size: 12px;
  font-weight: 800;
}

.asg-final-launch-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.asg-final-launch-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(155, 205, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.asg-final-launch-list i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  box-shadow: 0 14px 30px rgba(97, 242, 255, 0.17);
}

.asg-final-launch-list strong {
  display: block;
  color: #f5fbff;
  font-size: 13.5px;
  line-height: 1.25;
}

.asg-final-launch-list small {
  display: block;
  margin-top: 4px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.38;
}

.asg-final-intent-hook {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(81, 247, 165, 0.18);
  border-radius: 20px;
  background: rgba(81, 247, 165, 0.07);
}

.asg-final-intent-hook span {
  color: var(--asg-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.asg-final-intent-hook code {
  color: var(--asg-green);
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.4;
  word-break: break-word;
}

/* =========================================================
   ASG Footer Pre-Strip
   ========================================================= */

.asg-footer-strip {
  position: relative;
  padding: 0 0 36px;
  background: #071632;
}

.asg-footer-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.asg-footer-strip-inner a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.032)),
    rgba(9, 28, 55, 0.72);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.asg-footer-strip-inner a:hover {
  transform: translateY(-2px);
  border-color: rgba(97, 242, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(97, 242, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(9, 28, 55, 0.82);
}

.asg-footer-strip-inner i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
}

.asg-footer-strip-inner strong {
  display: block;
  color: #f5fbff;
  font-size: 13.5px;
  line-height: 1.2;
}

.asg-footer-strip-inner small {
  display: block;
  margin-top: 4px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.3;
}

/* ================= Responsive ================= */

@media (max-width: 1180px) {
  .asg-final-cta-card {
    grid-template-columns: 1fr;
  }

  .asg-footer-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .asg-final-cta {
    padding: 66px 0 38px;
  }

  .asg-final-cta-card {
    padding: 22px;
    border-radius: 28px;
  }

  .asg-final-cta-actions .asg-btn {
    width: 100%;
  }

  .asg-final-cta-panel {
    padding: 14px;
    border-radius: 22px;
  }

  .asg-final-launch-list article {
    grid-template-columns: 1fr;
  }

  .asg-footer-strip-inner {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ASG AI Usage Credits
   ========================================================= */

.asg-ai-credits {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 209, 102, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(97, 242, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #061326 0%, #071632 100%);
}

.asg-credit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(580px, 1.14fr);
  gap: clamp(28px, 4vw, 86px);
  align-items: center;
}

.asg-credit-copy {
  max-width: 940px;
}

.asg-credit-copy h2 {
  margin: 0;
  color: var(--asg-text);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.asg-credit-lead {
  margin: 22px 0 0;
  color: #e8f5ff;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
  font-weight: 850;
}

.asg-credit-copy p:not(.asg-credit-lead) {
  margin: 16px 0 0;
  color: var(--asg-muted);
  font-size: 15.5px;
  line-height: 1.72;
}

.asg-credit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ================= Credit Board ================= */

.asg-credit-board {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(97, 242, 255, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(12, 36, 70, 0.94), rgba(5, 17, 36, 0.9)),
    rgba(9, 28, 55, 0.86);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(97, 242, 255, 0.08);
  overflow: hidden;
}

.asg-credit-board::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 209, 102, 0.16), transparent 32%),
    radial-gradient(circle at 96% 18%, rgba(81, 247, 165, 0.12), transparent 28%);
}

.asg-credit-board > * {
  position: relative;
}

.asg-credit-board-top {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 8px 4px 16px;
  border-bottom: 1px solid rgba(155, 205, 255, 0.12);
}

.asg-credit-board-top strong {
  color: #f5fbff;
  font-size: 15px;
}

.asg-credit-board-top small {
  grid-column: 2;
  color: var(--asg-muted);
  font-size: 12px;
  font-weight: 800;
}

.asg-credit-rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.asg-credit-rule-grid article {
  min-height: 146px;
  padding: 14px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.asg-credit-rule-grid i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  box-shadow: 0 14px 30px rgba(97, 242, 255, 0.16);
}

.asg-credit-rule-grid span {
  display: block;
  color: var(--asg-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.asg-credit-rule-grid strong {
  display: block;
  margin-top: 5px;
  color: #f5fbff;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.asg-credit-rule-grid small {
  display: block;
  margin-top: 7px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.4;
}

.asg-credit-flow {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(2, 13, 28, 0.52), rgba(4, 19, 39, 0.75));
}

.asg-credit-flow article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.asg-credit-flow i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
}

.asg-credit-flow strong {
  display: block;
  color: #f5fbff;
  font-size: 13.5px;
  line-height: 1.25;
}

.asg-credit-flow small {
  display: block;
  margin-top: 4px;
  color: var(--asg-muted);
  font-size: 12px;
  line-height: 1.4;
}

/* =========================================================
   ASG Credit Formula Popup
   ========================================================= */

.asg-credit-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 22px;
}

.asg-credit-modal:target {
  display: grid;
}

.asg-credit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 22, 0.78);
  backdrop-filter: blur(14px);
}

.asg-credit-modal-card {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  border: 1px solid rgba(97, 242, 255, 0.24);
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 209, 102, 0.14), transparent 34%),
    radial-gradient(circle at 96% 16%, rgba(81, 247, 165, 0.12), transparent 30%),
    linear-gradient(180deg, #0c2446 0%, #061326 100%);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(97, 242, 255, 0.1);
}

.asg-credit-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid rgba(155, 205, 255, 0.13);
}

.asg-credit-modal-head h3 {
  margin: 0;
  color: #f5fbff;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.asg-credit-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #f5fbff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(155, 205, 255, 0.14);
  text-decoration: none;
}

.asg-credit-close:hover {
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
}

.asg-credit-modal-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.asg-credit-modal-rules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.asg-credit-modal-rules article {
  padding: 16px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.asg-credit-modal-rules strong {
  display: block;
  color: #f5fbff;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.asg-credit-modal-rules span {
  display: block;
  margin-top: 7px;
  color: var(--asg-muted);
  font-size: 13px;
  line-height: 1.42;
}

.asg-credit-modal-note {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(97, 242, 255, 0.16);
  border-radius: 22px;
  background: rgba(97, 242, 255, 0.065);
}

.asg-credit-modal-note i,
.asg-credit-modal-warning i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
}

.asg-credit-modal-note p {
  margin: 0;
  color: #dcecff;
  font-size: 14px;
  line-height: 1.6;
}

.asg-credit-modal-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.asg-credit-modal-split article {
  padding: 16px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.asg-credit-modal-split article.free {
  border-color: rgba(81, 247, 165, 0.18);
}

.asg-credit-modal-split article.metered {
  border-color: rgba(255, 209, 102, 0.22);
}

.asg-credit-modal-split article > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 13px;
}

.asg-credit-modal-split article > div i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
}

.asg-credit-modal-split strong {
  color: #f5fbff;
  font-size: 16px;
}

.asg-credit-modal-split ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--asg-muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.asg-credit-modal-warning {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: 22px;
  background: rgba(255, 209, 102, 0.075);
}

.asg-credit-modal-warning strong {
  display: block;
  color: #f5fbff;
  font-size: 15px;
}

.asg-credit-modal-warning small {
  display: block;
  margin-top: 5px;
  color: var(--asg-muted);
  font-size: 13px;
  line-height: 1.5;
}

.asg-credit-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ================= Responsive ================= */

@media (max-width: 1120px) {
  .asg-credit-layout {
    grid-template-columns: 1fr;
  }

  .asg-credit-rule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .asg-credit-modal-rules,
  .asg-credit-modal-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .asg-ai-credits {
    padding: 62px 0;
  }

  .asg-credit-actions .asg-btn,
  .asg-credit-modal-actions .asg-btn {
    width: 100%;
  }

  .asg-credit-board,
  .asg-credit-modal-card {
    border-radius: 24px;
  }

  .asg-credit-board,
  .asg-credit-modal-head,
  .asg-credit-modal-body {
    padding: 14px;
  }

  .asg-credit-rule-grid {
    grid-template-columns: 1fr;
  }

  .asg-credit-flow article,
  .asg-credit-modal-note,
  .asg-credit-modal-warning {
    grid-template-columns: 1fr;
  }
}

/* ================= Extra Credit Popup Detail Styling ================= */

.asg-credit-modal-head p {
  margin: 12px 0 0;
  max-width: 780px;
  color: var(--asg-muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.asg-credit-modal-rules article {
  position: relative;
  min-height: 156px;
}

.asg-credit-modal-rules article i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 15px;
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
  box-shadow: 0 14px 30px rgba(97, 242, 255, 0.16);
}

.asg-credit-formula-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 209, 102, 0.09), rgba(255, 255, 255, 0.04));
}

.asg-credit-formula-strip span {
  display: block;
  color: var(--asg-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.asg-credit-formula-strip strong {
  display: block;
  margin-top: 5px;
  color: #f5fbff;
  font-size: 15px;
  line-height: 1.35;
}

.asg-credit-formula-strip code {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--asg-green);
  background: rgba(3, 14, 31, 0.58);
  border: 1px solid rgba(155, 205, 255, 0.13);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.asg-credit-example-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.asg-credit-example-grid article,
.asg-credit-plan-grid article {
  padding: 15px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.asg-credit-example-grid span,
.asg-credit-plan-grid span {
  display: block;
  color: var(--asg-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.asg-credit-example-grid strong,
.asg-credit-plan-grid strong {
  display: block;
  margin-top: 7px;
  color: #f5fbff;
  font-size: 17px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.asg-credit-example-grid small,
.asg-credit-plan-grid small {
  display: block;
  margin-top: 7px;
  color: var(--asg-muted);
  font-size: 12.5px;
  line-height: 1.42;
}

.asg-credit-modal-split article p {
  margin: 0 0 13px;
  color: var(--asg-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.asg-credit-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.asg-credit-plan-grid article:nth-child(2) {
  border-color: rgba(97, 242, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(97, 242, 255, 0.08), rgba(255, 255, 255, 0.045));
}

.asg-credit-usage-factors {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(155, 205, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.asg-credit-mini-head {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: center;
}

.asg-credit-mini-head i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: var(--asg-cyan);
  background: rgba(97, 242, 255, 0.1);
  border: 1px solid rgba(97, 242, 255, 0.16);
}

.asg-credit-mini-head strong {
  display: block;
  color: #f5fbff;
  font-size: 15px;
}

.asg-credit-mini-head small {
  display: block;
  margin-top: 5px;
  color: var(--asg-muted);
  font-size: 13px;
  line-height: 1.45;
}

.asg-credit-factor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.asg-credit-factor-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(97, 242, 255, 0.08);
  border: 1px solid rgba(97, 242, 255, 0.14);
  font-size: 12px;
  font-weight: 900;
}

.asg-credit-value-box {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(97, 242, 255, 0.18);
  border-radius: 22px;
  background: rgba(97, 242, 255, 0.065);
}

.asg-credit-value-box i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #061326;
  background: linear-gradient(135deg, var(--asg-green), var(--asg-cyan));
}

.asg-credit-value-box strong {
  display: block;
  color: #f5fbff;
  font-size: 15px;
}

.asg-credit-value-box small {
  display: block;
  margin-top: 5px;
  color: var(--asg-muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .asg-credit-formula-strip {
    display: grid;
  }

  .asg-credit-formula-strip code {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .asg-credit-example-grid,
  .asg-credit-plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .asg-credit-mini-head,
  .asg-credit-value-box {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FIX: Keep bottom strips below cards, never under borders
   Add at END of /aig/css/asg.css
   ========================================================= */

/* ================= Membership cards bottom strips ================= */

.asg-memberships .asg-plan-grid {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(42px, 4vw, 64px);
}

.asg-memberships .asg-plan-card {
  position: relative;
  z-index: 2;
}

.asg-memberships .asg-plan-card.is-featured {
  z-index: 3;
}

.asg-memberships .asg-plan-footnote,
.asg-memberships .asg-trial-strip {
  position: relative;
  z-index: 8;
  isolation: isolate;
}

.asg-memberships .asg-plan-footnote {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 0;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.035)),
    rgba(9, 28, 55, 0.78);
}

.asg-memberships .asg-plan-footnote > i {
  width: 44px;
  height: 44px;
}

.asg-memberships .asg-plan-footnote p {
  margin: 0;
}

.asg-memberships .asg-plan-footnote .asg-ai-hook {
  justify-self: end;
  white-space: nowrap;
}

.asg-memberships .asg-trial-strip {
  margin-top: 0;
}

/* ================= ASG vs tools bottom punchline ================= */

.asg-vs-tools .asg-vs-layout {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(42px, 4vw, 64px);
}

.asg-vs-tools .asg-vs-card {
  position: relative;
  z-index: 2;
}

.asg-vs-tools .asg-vs-card.featured {
  z-index: 3;
}

.asg-vs-tools .asg-vs-punchline {
  position: relative;
  z-index: 8;
  isolation: isolate;
  margin-top: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(97, 242, 255, 0.075), rgba(255, 255, 255, 0.038)),
    rgba(9, 28, 55, 0.78);
}

/* ================= Responsive cleanup ================= */

@media (max-width: 900px) {
  .asg-memberships .asg-plan-footnote {
    grid-template-columns: 44px 1fr;
  }

  .asg-memberships .asg-plan-footnote .asg-ai-hook {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .asg-vs-tools .asg-vs-layout,
  .asg-memberships .asg-plan-grid {
    margin-bottom: 34px;
  }
}

@media (max-width: 560px) {
  .asg-memberships .asg-plan-footnote {
    grid-template-columns: 1fr;
  }

  .asg-memberships .asg-plan-footnote .asg-ai-hook {
    justify-self: stretch;
  }
}

#asg-memberships,
#asg-trial-card {
  scroll-margin-top: 110px;
}

/* ================= FINAL CREDIT SUMMARY ================= */

.asg-final-credit-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(155, 205, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025)),
    rgba(3, 17, 36, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 14px 34px rgba(0, 0, 0, 0.12);
}

.asg-final-credit-summary > div {
  position: relative;
  display: grid;
  gap: 5px;
  min-width: 0;
  min-height: 78px;
  align-content: center;
  padding: 13px 14px;
  border: 1px solid rgba(155, 205, 255, 0.1);
  border-radius: 15px;
  background:
    radial-gradient(circle at 0% 0%, rgba(97, 242, 255, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.asg-final-credit-summary > div::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--asg-cyan, #61f2ff);
  box-shadow: 0 0 16px rgba(97, 242, 255, 0.55);
}

.asg-final-credit-summary span {
  display: block;
  padding-left: 16px;
  color: var(--asg-muted, #a9bdd8);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.asg-final-credit-summary strong {
  display: block;
  color: #f5fbff;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.asg-final-credit-summary > div:first-child strong {
  color: var(--asg-green, #51f7a5);
}

.asg-final-credit-summary > div:nth-child(3) strong {
  color: var(--asg-gold, #ffd166);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px) {
  .asg-final-credit-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .asg-final-credit-summary {
    grid-template-columns: 1fr;
    padding: 10px;
    border-radius: 17px;
  }

  .asg-final-credit-summary > div {
    min-height: 68px;
  }
}

/* ================= MOTION ================= */

@keyframes asgLiveButtonPulse {
  0%,
  100% {
    box-shadow:
      0 18px 42px rgba(81, 247, 165, 0.22),
      0 0 34px rgba(97, 242, 255, 0.12);
  }

  50% {
    box-shadow:
      0 22px 52px rgba(81, 247, 165, 0.34),
      0 0 48px rgba(97, 242, 255, 0.22);
  }
}

@keyframes asgLiveButtonSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .asg-btn-live.is-loading,
  .asg-btn-live.is-loading i {
    animation: none !important;
  }
}