:root {
  --bg: #050608;
  --panel: #0d1117;
  --panel-2: #111821;
  --text: #f6f3ea;
  --muted: #b8b3a6;
  --gold: #d9a441;
  --gold-2: #ffd77a;
  --line: rgba(217, 164, 65, .24);
  --white-line: rgba(255, 255, 255, .09);
  --shadow: 0 24px 90px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 76% 10%, rgba(217, 164, 65, .16), transparent 32rem),
    linear-gradient(180deg, #050608 0%, #081018 52%, #050608 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(5, 6, 8, .74);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 260px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(246, 243, 234, .84);
  transition: color .2s ease;
}

.site-nav a:hover { color: var(--gold-2); }

.nav-cta {
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 12px 17px;
  color: var(--gold-2) !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #0b0f14;
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-2);
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--white-line);
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: .98;
  letter-spacing: 0;
}

h1 span, h2 span { color: var(--gold-2); }
h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 { font-size: 19px; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.7; }

.hero-subtitle {
  max-width: 680px;
  font-size: clamp(17px, 1.6vw, 22px);
}

.hero-actions, .trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.primary {
  color: #140e04;
  background: linear-gradient(135deg, #f8cf74, #c88a2a);
  box-shadow: 0 18px 42px rgba(217, 164, 65, .22);
}
.secondary {
  color: var(--gold-2);
  border: 1px solid var(--gold);
  background: rgba(217, 164, 65, .06);
}

.proof-strip,
.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  max-width: 720px;
}
.proof-strip span {
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--white-line);
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
}
.proof-strip b {
  display: block;
  color: var(--gold-2);
  font-size: 15px;
}
.next-slot-card {
  display: grid;
  align-content: center;
  min-height: 64px;
  min-width: min(100%, 260px);
  padding: 13px 15px;
  border: 1px solid rgba(217,164,65,.5);
  border-radius: 8px;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(217,164,65,.22), transparent 8rem),
    rgba(217,164,65,.08);
  box-shadow: 0 18px 46px rgba(0,0,0,.24);
}
.next-slot-card small {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.next-slot-card b {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 16px;
}
.trust-row p { margin: 0; font-size: 14px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 34px;
  height: 34px;
  margin-right: -9px;
  border: 2px solid #12161d;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4d28a, #685232);
}

.hero-visual {
  min-height: 620px;
  position: relative;
}

.network {
  position: relative;
  width: min(720px, 100%);
  aspect-ratio: 1 / .92;
  margin-inline: auto;
  border: 1px solid rgba(217, 164, 65, .26);
  border-radius: 18px;
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 215, 122, .28), transparent 8.5rem),
    radial-gradient(circle at 82% 18%, rgba(95, 158, 255, .14), transparent 17rem),
    radial-gradient(circle at 18% 86%, rgba(217, 164, 65, .12), transparent 18rem),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(150deg, #080c12 0%, #111822 48%, #07090d 100%);
  background-size: auto, auto, auto, 44px 44px, 44px 44px, auto;
  box-shadow:
    0 28px 110px rgba(0,0,0,.52),
    0 0 90px rgba(217,164,65,.12),
    inset 0 0 120px rgba(217, 164, 65, .08);
  overflow: hidden;
}

.network::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 30%, rgba(255,255,255,.08) 44%, transparent 58%),
    radial-gradient(circle at 50% 115%, rgba(217,164,65,.16), transparent 28rem);
  opacity: .55;
  pointer-events: none;
}

.network-glow {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,227,154,.19), transparent 40%),
    conic-gradient(from 210deg, transparent, rgba(217,164,65,.22), transparent, rgba(104,169,255,.12), transparent);
  filter: blur(8px);
  animation: pulse 4.4s ease-in-out infinite;
}

.mesh {
  position: absolute;
  border: 1px solid rgba(217,164,65,.16);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-14deg);
}
.mesh-one {
  inset: 18% 14% 22%;
  box-shadow: inset 0 0 34px rgba(217,164,65,.1);
}
.mesh-two {
  inset: 28% 24% 30%;
  border-style: dashed;
  border-color: rgba(104,169,255,.22);
  animation: spin 26s linear infinite;
}

.network::before {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(217,164,65,.28);
  transform: rotateX(62deg) rotateZ(0deg);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit {
  position: absolute;
  inset: 21%;
  border: 1px dashed rgba(217, 164, 65, .38);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(-12deg);
}
.orbit-two { inset: 30%; animation: pulse 3.2s ease-in-out infinite; }
.orbit-three {
  inset: 11%;
  border-style: solid;
  opacity: .25;
  animation: spin 22s linear infinite reverse;
}

.connector {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,215,122,.0), rgba(255,215,122,.55), rgba(104,169,255,.18));
  transform-origin: left center;
  opacity: .78;
  filter: drop-shadow(0 0 8px rgba(217,164,65,.34));
}
.c-sales { transform: rotate(-68deg); width: 178px; }
.c-marketing { transform: rotate(-22deg); width: 224px; }
.c-ops { transform: rotate(202deg); width: 218px; }
.c-finance { transform: rotate(88deg); width: 180px; }
.c-hr { transform: rotate(36deg); width: 224px; }
.c-care { transform: rotate(150deg); width: 222px; }

.gold-x {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: clamp(180px, 19vw, 245px);
  aspect-ratio: 1;
  z-index: 3;
  border: 1px solid rgba(255,215,122,.46);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.18), transparent 28%),
    radial-gradient(circle, rgba(217,164,65,.22), transparent 54%),
    linear-gradient(180deg, rgba(217,164,65,.2), rgba(217,164,65,.04));
  box-shadow:
    0 0 80px rgba(217, 164, 65, .44),
    inset 0 0 46px rgba(217, 164, 65, .2),
    inset 0 0 0 10px rgba(255,255,255,.025);
}
.gold-x span {
  color: transparent;
  background: linear-gradient(135deg, #fff0b7, #d7a03b 48%, #8b5a18);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(116px, 14vw, 182px);
  font-weight: 950;
  line-height: .85;
  filter: drop-shadow(0 0 34px rgba(217, 164, 65, .64));
}
.gold-x small {
  max-width: 132px;
  margin-top: -16px;
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-align: center;
  line-height: 1.35;
}

.agent-pill {
  position: absolute;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  width: 228px;
  min-height: 86px;
  padding: 14px;
  z-index: 4;
  border: 1px solid rgba(217,164,65,.32);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    linear-gradient(135deg, rgba(17,24,34,.96), rgba(8,12,18,.84));
  box-shadow: 0 20px 58px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.agent-pill i {
  grid-row: span 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #130d04;
  background: linear-gradient(135deg, #ffe39a, #c98b28);
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 0 22px rgba(217,164,65,.28);
}
.agent-pill strong { display: block; font-size: 12px; text-transform: uppercase; }
.agent-pill span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.agent-pill em {
  display: inline-flex;
  width: max-content;
  margin-top: 8px;
  padding: 4px 7px;
  border: 1px solid rgba(120,212,127,.28);
  border-radius: 999px;
  color: #9ee7a3;
  background: rgba(120,212,127,.08);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}
.sales { top: 6%; left: 33%; }
.marketing { right: 3%; top: 24%; }
.ops { left: 2%; top: 30%; }
.finance { bottom: 5%; left: 34%; }
.hr { right: 4%; bottom: 32%; }
.care { left: 5%; bottom: 32%; }
.hero-metric {
  position: absolute;
  z-index: 4;
  min-width: 116px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 10px;
  background: rgba(5,8,12,.72);
  box-shadow: 0 16px 46px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}
.hero-metric span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.hero-metric strong {
  display: block;
  margin-top: 4px;
  color: var(--gold-2);
  font-size: 25px;
  line-height: 1;
}
.metric-one { left: 6%; top: 7%; }
.metric-two { right: 8%; top: 6%; }
.hero-feed {
  position: absolute;
  right: 5%;
  bottom: 4%;
  z-index: 4;
  display: none;
  gap: 7px;
  width: 214px;
  padding: 13px;
  border: 1px solid rgba(217,164,65,.24);
  border-radius: 12px;
  background: rgba(5,8,12,.72);
  box-shadow: 0 18px 48px rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
}
.hero-feed b {
  color: var(--gold-2);
  font-size: 12px;
  text-transform: uppercase;
}
.hero-feed span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.signal-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 18px var(--gold-2);
}
.signal-dot.one { top: 24%; left: 25%; }
.signal-dot.two { top: 68%; right: 28%; }
.signal-dot.three { bottom: 28%; left: 47%; }
.signal-dot.four { top: 50%; right: 17%; }

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.method-grid,
.agent-grid,
.compact-grid,
.roadmap-grid,
.logic-grid,
.service-list,
.case-grid,
.resource-grid {
  display: grid;
  gap: 16px;
}

.method-grid { grid-template-columns: repeat(5, 1fr); }
.agent-grid { grid-template-columns: repeat(4, 1fr); }
.compact-grid { grid-template-columns: repeat(4, 1fr); }
.roadmap-grid { grid-template-columns: repeat(4, 1fr); }
.logic-grid,
.case-grid,
.resource-grid { grid-template-columns: repeat(3, 1fr); }
.service-list { grid-template-columns: repeat(4, 1fr); }

.positioning {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
}

.split-copy {
  position: sticky;
  top: 116px;
}

.step-card,
.service-card,
.mini-card,
.roadmap-card,
.logic-card,
.case-card,
.resource-card {
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.step-card,
.logic-card,
.case-card,
.resource-card { padding: 26px; }
.step-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #120d05;
  background: linear-gradient(135deg, #ffe49d, #bd8125);
  box-shadow: 0 12px 26px rgba(217,164,65,.22);
  font-weight: 950;
}
.step-card span,
.roadmap-card span,
.logic-card span,
.case-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-2);
  font-weight: 900;
}
.step-card small {
  display: block;
  margin-top: 18px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card { min-height: 330px; padding: 24px; }
.service-card[data-href] { cursor: pointer; transition: transform .2s ease, border-color .2s ease; }
.service-card[data-href]:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.service-card.featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(217,164,65,.14), rgba(255,255,255,.035)); }
.card-icon,
.agent-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-2);
  font-weight: 900;
}
.agent-logo {
  position: relative;
  width: 54px;
  height: 54px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.28), transparent 25%),
    linear-gradient(135deg, rgba(255,227,154,.16), rgba(201,139,40,.08));
}
.agent-logo svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.agent-logo span {
  position: absolute;
  right: -6px;
  bottom: -6px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(217,164,65,.65);
  border-radius: 50%;
  color: #110c04;
  background: linear-gradient(135deg, #ffe39a, #c98b28);
  font-size: 12px;
  font-weight: 950;
}
.service-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.agent-functions {
  background: linear-gradient(180deg, rgba(217,164,65,.035), transparent);
}
.function-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.function-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217,164,65,.11), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.function-card.featured {
  border-color: var(--gold);
}
.function-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.integrations {
  display: grid;
  grid-template-columns: .64fr 1.36fr;
  align-items: center;
  gap: 34px;
  background: #f8f7f3;
  color: #0a0d12;
}
.integrations p { color: #384252; }
.integrations .eyebrow { color: #9a6a17; }
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.logo-cloud article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(8, 13, 19, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
}
.logo-cloud img {
  max-width: 154px;
  max-height: 40px;
  object-fit: contain;
}
.logo-cloud span {
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
}

.ai-lab {
  background:
    radial-gradient(circle at 18% 12%, rgba(217,164,65,.13), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.035));
}
.lab-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.lab-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217,164,65,.12), transparent 16rem),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.tool-heading {
  display: flex;
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
}
.tool-heading > span {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #120d05;
  background: linear-gradient(135deg, #ffe39a, #c98b28);
  font-weight: 950;
}
.tool-heading h3 { margin-bottom: 4px; }
.tool-heading p { margin: 0; font-size: 14px; }
#agent-finder,
.roi-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
#agent-finder label,
.roi-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}
#agent-finder select,
.roi-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--white-line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--text);
  background: #0b1118;
  font: inherit;
}
.roi-form input[type="range"] {
  padding: 0;
  accent-color: var(--gold);
}
.roi-form small {
  color: var(--muted);
  font-weight: 700;
}
.agent-result {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(217,164,65,.4);
  border-radius: 8px;
  background: rgba(217,164,65,.08);
}
.agent-result span,
.dashboard-insight span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.agent-result strong,
.dashboard-insight strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}
.agent-result p,
.dashboard-insight p { margin-bottom: 12px; font-size: 14px; }
.agent-result a {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.roi-output {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.roi-output div {
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: #0b1118;
}
.roi-output span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.roi-output strong {
  display: block;
  margin-top: 8px;
  color: var(--gold-2);
  font-size: clamp(20px, 2.4vw, 30px);
  overflow-wrap: anywhere;
}
.tag-cloud span {
  border: 1px solid rgba(217, 164, 65, .28);
  border-radius: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  font-weight: 800;
}

.xos {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  color: var(--text);
  padding-left: 28px;
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  background: linear-gradient(135deg, transparent 45%, var(--gold) 46% 60%, transparent 61%);
}

.dashboard {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #080d13;
  box-shadow: var(--shadow);
}
.dashboard aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: #0d131b;
}
.dashboard aside strong { color: var(--gold-2); font-size: 22px; }
.dashboard aside span {
  padding: 10px;
  border-radius: 4px;
  color: var(--muted);
  background: rgba(255,255,255,.035);
}
.dashboard [data-dashboard] {
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.dashboard [data-dashboard]:hover,
.dashboard [data-dashboard].active {
  border-color: rgba(217,164,65,.7);
  background: rgba(217,164,65,.1);
}
.dashboard aside [data-dashboard]:hover,
.dashboard aside [data-dashboard].active {
  color: var(--gold-2);
}
.dash-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kpi, .chart, .activity, .goals {
  padding: 16px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: #0f151e;
}
.kpi span, .kpi em { display: block; color: var(--muted); font-size: 12px; font-style: normal; }
.kpi strong { display: block; margin: 8px 0; font-size: 30px; }
.kpi em { color: #78d47f; }
.line-chart { grid-column: span 2; min-height: 210px; position: relative; overflow: hidden; }
.line-chart span {
  position: absolute;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transform-origin: left;
}
.line-chart span:nth-child(1) { top: 42%; transform: rotate(7deg); }
.line-chart span:nth-child(2) { top: 54%; transform: rotate(-4deg); background: linear-gradient(90deg, transparent, #68a9ff, transparent); }
.line-chart span:nth-child(3) { top: 66%; transform: rotate(5deg); background: linear-gradient(90deg, transparent, #7de88c, transparent); }
.line-chart span:nth-child(4) { top: 76%; transform: rotate(-2deg); background: linear-gradient(90deg, transparent, #df7bff, transparent); }
.donut {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle, #0f151e 0 42%, transparent 43%),
    conic-gradient(var(--gold-2) 0 70%, #2f3845 70% 100%);
}
.donut strong { font-size: 34px; }
.donut span { color: var(--muted); }
.activity, .goals { grid-column: span 2; }
.activity p {
  margin: 0 0 9px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
}
.goals label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}
progress {
  width: 100%;
  height: 9px;
  margin-bottom: 14px;
  accent-color: var(--gold);
}
.dashboard-insight {
  grid-column: span 4;
  padding: 18px;
  border: 1px solid rgba(217,164,65,.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217,164,65,.14), transparent 12rem),
    #0b1118;
}

.mini-card {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
  font-weight: 900;
}
.mini-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}
.tag-cloud { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; max-width: 1060px; margin: auto; }
.roadmap-card { padding: 26px; }
.case-card b {
  display: block;
  margin-top: 18px;
  color: var(--gold-2);
  line-height: 1.5;
}
.visual-case {
  color: inherit;
  overflow: hidden;
  padding: 0;
  transition: transform .2s ease, border-color .2s ease;
}
.visual-case:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.visual-case span,
.visual-case h3,
.visual-case p,
.visual-case b {
  margin-left: 24px;
  margin-right: 24px;
}
.visual-case span { margin-top: 24px; }
.visual-case b { margin-bottom: 24px; }
.case-media {
  position: relative;
  aspect-ratio: 1 / .72;
  overflow: hidden;
  border-bottom: 1px solid var(--white-line);
  background: #070a0e;
}
.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.visual-case:hover .case-media img {
  transform: scale(1.04);
}
.screen-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(217,164,65,.36);
  border-radius: 8px;
  background: rgba(7,10,14,.78);
  backdrop-filter: blur(10px);
}
.screen-label strong {
  color: var(--gold-2);
  font-size: 13px;
}
.screen-label span {
  margin: 0;
  color: var(--text);
  font-size: 12px;
}
.resource-card {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(217,164,65,.12), transparent 54%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}
.demo-note {
  display: grid;
  gap: 4px;
  max-width: 620px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(217,164,65,.06);
}
.demo-note strong {
  color: var(--gold-2);
}
.demo-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.final-cta {
  display: grid;
  grid-template-columns: auto minmax(260px, .72fr) minmax(420px, 1fr);
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #080c12, #111922);
}
.cta-mark {
  color: var(--gold-2);
  font-size: 82px;
  font-weight: 950;
}
.final-cta h2 { max-width: 760px; }
.final-cta p { max-width: 780px; }
.booking-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217,164,65,.14), transparent 12rem),
    rgba(5, 8, 12, .72);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.booking-panel h3 { margin-bottom: 16px; }
.booking-label {
  margin-bottom: 4px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.day-card {
  min-height: 118px;
  padding: 12px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}
.day-card h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 13px;
  text-transform: capitalize;
}
.day-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.day-slots a {
  display: grid;
  place-items: center;
  min-height: 30px;
  border-radius: 4px;
  color: #120d05;
  background: linear-gradient(135deg, #ffe39a, #c98b28);
  font-size: 12px;
  font-weight: 900;
}
.day-card.unavailable {
  opacity: .55;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.04) 8px, rgba(255,255,255,.02) 8px, rgba(255,255,255,.02) 16px);
}
.day-card.unavailable p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.booking-help {
  margin: 12px 0 0;
  font-size: 13px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 4vw, 64px);
  background: #030405;
}
.site-footer p { margin: 0; font-size: 13px; }
.footer-legal {
  flex-basis: 100%;
  color: rgba(184,179,166,.72);
  font-size: 12px !important;
  line-height: 1.5;
}

.chatbot {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 10px;
}
.chat-toggle,
.chat-side-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #120d05;
  background: linear-gradient(135deg, #ffe39a, #c98b28);
  box-shadow: 0 18px 52px rgba(0,0,0,.42), 0 0 34px rgba(217,164,65,.18);
  font-weight: 950;
  cursor: pointer;
}
.chat-side-launcher {
  position: fixed;
  left: 20px;
  top: 50%;
  z-index: 79;
  min-height: 50px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  padding: 0 18px;
  box-shadow: 0 18px 52px rgba(0,0,0,.38), 0 0 30px rgba(217,164,65,.16);
}
.chat-toggle span,
.chat-side-launcher span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1d7c39;
  box-shadow: 0 0 0 5px rgba(29,124,57,.16), 0 0 16px rgba(29,124,57,.65);
}
.chat-panel {
  display: none;
  width: min(460px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(217,164,65,.34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217,164,65,.16), transparent 14rem),
    linear-gradient(180deg, #0b1118, #06090d);
  box-shadow: 0 28px 110px rgba(0,0,0,.58), 0 0 54px rgba(217,164,65,.14);
}
.chatbot.open .chat-panel { display: block; }
.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 16px;
  border-bottom: 1px solid var(--white-line);
  background: linear-gradient(135deg, rgba(217,164,65,.14), rgba(255,255,255,.03));
}
.chat-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,215,122,.56);
  border-radius: 50%;
  color: #120d05;
  background: linear-gradient(135deg, #ffe39a, #c98b28);
  font-weight: 950;
  box-shadow: 0 0 24px rgba(217,164,65,.22);
}
.chat-head strong { display: block; color: var(--gold-2); }
.chat-head span { color: var(--muted); font-size: 12px; }
.chat-close {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(217,164,65,.32);
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(255,255,255,.04);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.chat-close:hover {
  border-color: var(--gold);
  background: rgba(217,164,65,.12);
}
.chat-status {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 14px 0;
}
.chat-status span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(217,164,65,.26);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(217,164,65,.06);
  font-size: 11px;
  font-weight: 900;
}
.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow: auto;
  padding: 14px;
}
.chat-messages p {
  margin: 0;
  padding: 12px 13px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
}
.chat-messages .bot {
  border: 1px solid var(--white-line);
  background: rgba(255,255,255,.04);
}
.chat-messages .user {
  justify-self: end;
  color: #120d05;
  background: linear-gradient(135deg, #ffe39a, #c98b28);
  font-weight: 800;
}
.chat-suggestions-label {
  margin: 0;
  padding: 0 14px 8px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.chat-quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 14px 12px;
}
.chat-quick button,
.chat-form button {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold-2);
  background: rgba(217,164,65,.06);
  font-weight: 850;
  cursor: pointer;
}
.chat-quick button {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 12px;
  text-align: left;
}
.chat-quick button:hover {
  border-color: rgba(217,164,65,.58);
  background: rgba(217,164,65,.12);
}
.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--white-line);
}
.chat-form input {
  min-height: 42px;
  min-width: 0;
  border: 1px solid var(--white-line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--text);
  background: #0b1118;
}
.chat-form button { padding: 0 14px; }

.agent-page {
  min-height: 100vh;
}
.agent-page .button {
  margin-bottom: 44px;
}
.agent-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin-bottom: 60px;
}
.agent-summary {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217,164,65,.18), transparent 16rem),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}
.agent-summary h2 {
  font-size: clamp(24px, 3vw, 36px);
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.detail-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}
.detail-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}
.agent-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.agent-flow span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold-2);
  background: rgba(217,164,65,.06);
  font-weight: 800;
}
.agent-use-case,
.case-explain {
  margin-top: 42px;
}
.agent-use-case h2 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(26px, 3vw, 42px);
}
.case-detail .button {
  margin-bottom: 44px;
}
.case-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-bottom: 50px;
}
.case-detail-hero img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotateX(58deg) rotateZ(360deg); } }
@keyframes pulse { 50% { opacity: .35; transform: rotateX(64deg) scale(1.08); } }

@media (max-width: 1120px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 12, 18, .96);
  }
  .site-nav.open { display: flex; }
  .hero, .xos, .integrations, .positioning { grid-template-columns: 1fr; }
  .split-copy { position: static; }
  .hero-visual { min-height: auto; }
  .network { max-width: 680px; }
  .method-grid, .agent-grid, .compact-grid, .roadmap-grid, .logic-grid, .service-list, .case-grid, .resource-grid, .function-grid, .lab-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-cloud { grid-template-columns: repeat(3, 1fr); }
  .final-cta { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .agent-hero, .detail-grid, .agent-flow { grid-template-columns: 1fr 1fr; }
  .case-detail-hero { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .brand img { width: 190px; height: 56px; }
  .section { padding-block: 54px; }
  h1 { font-size: clamp(40px, 14vw, 58px); }
  .network {
    aspect-ratio: 1 / 1.25;
    overflow: visible;
  }
  .agent-pill {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 8px;
  }
  .gold-x {
    position: relative;
    inset: auto;
    display: grid;
    transform: none;
    margin: 18px auto;
  }
  .orbit, .network::before, .signal-dot, .network-glow, .mesh, .connector, .hero-metric, .hero-feed { display: none; }
  .method-grid, .agent-grid, .compact-grid, .roadmap-grid, .dash-main, .logic-grid, .service-list, .case-grid, .resource-grid, .logo-cloud, .function-grid, .lab-grid, #agent-finder, .roi-form, .roi-output { grid-template-columns: 1fr; }
  .dashboard { grid-template-columns: 1fr; padding: 12px; }
  .line-chart, .activity, .goals, .dashboard-insight { grid-column: span 1; }
  .site-footer { flex-direction: column; }
  .agent-hero, .detail-grid, .agent-flow { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: 1fr; }
  .case-detail-hero { grid-template-columns: 1fr; }
  .chatbot { right: 12px; bottom: 12px; }
  .chat-side-launcher { display: none; }
}
