:root {
  --bg: #070b10;
  --bg-soft: #0b121b;
  --panel: #0f1822;
  --panel-strong: #131f2b;
  --text: #edf4fb;
  --muted: #99a9b8;
  --line: rgba(150, 173, 197, 0.22);
  --brand: #57fbc9;
  --accent: #17bb93;
  --accent-soft: #57fbc9;
  --radius: 18px;
  --shadow: 0 14px 45px rgba(1, 8, 15, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(16, 163, 127, 0.2), transparent 55%),
    radial-gradient(700px 450px at 5% 20%, rgba(49, 208, 164, 0.12), transparent 55%),
    var(--bg);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, #000 28%, transparent 78%);
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(7, 11, 16, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.06) 45%, transparent 68%);
  transform: translateX(-120%);
  animation: topbarSheen 16s ease-in-out infinite;
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo {
  display: block;
  height: 34px;
  width: auto;
  max-width: min(240px, 42vw);
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(149, 169, 189, 0.44);
  background: rgba(17, 28, 40, 0.72);
  color: #dbe8f4;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: rgba(182, 245, 226, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}

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

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-cta .btn,
.topbar-cta .btn-ghost {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.btn,
.btn-ghost {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn::before,
.btn-ghost::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -35%;
  width: 34%;
  height: 380%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.34) 52%, transparent 100%);
  transform: translateX(-320%) rotate(18deg);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.btn {
  color: #04120e;
  background: linear-gradient(120deg, var(--accent-soft), var(--accent));
  box-shadow: 0 10px 30px rgba(16, 163, 127, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(16, 163, 127, 0.38);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(49, 208, 164, 0.55);
  color: var(--accent-soft);
}

.btn:hover::before,
.btn-ghost:hover::before {
  transform: translateX(430%) rotate(18deg);
}

.topbar-cta .btn,
.hero-cta .btn {
  animation: ctaBreathe 5.2s ease-in-out infinite;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 98px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(68, 244, 200, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(68, 244, 200, 0.2) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px;
  opacity: 0.24;
  mask-image: radial-gradient(140% 100% at 60% 20%, #000 0%, #000 56%, transparent 100%);
  animation: heroGridDrift 24s linear infinite;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  right: -280px;
  top: -310px;
  width: min(66vw, 920px);
  height: min(66vw, 920px);
  pointer-events: none;
  z-index: -1;
  background:
    conic-gradient(from 208deg at 50% 50%, rgba(87, 251, 201, 0) 0deg, rgba(87, 251, 201, 0.32) 20deg, rgba(87, 251, 201, 0.06) 40deg, rgba(87, 251, 201, 0) 66deg),
    radial-gradient(circle at center, rgba(87, 251, 201, 0.2) 0 2px, transparent 3px),
    repeating-radial-gradient(circle at center, rgba(87, 251, 201, 0.26) 0 2px, transparent 2px 56px),
    radial-gradient(circle at center, rgba(17, 173, 136, 0.2), rgba(17, 173, 136, 0.04) 46%, transparent 72%);
  opacity: 0.56;
  animation: heroSweepRotate 14s linear infinite;
}

.hero-radar-finds {
  position: absolute;
  right: clamp(20px, 9vw, 190px);
  top: clamp(18px, 5vw, 90px);
  width: min(50vw, 560px);
  height: min(50vw, 560px);
  pointer-events: none;
  z-index: 2;
}

.hero-radar-finds span {
  position: absolute;
  width: var(--d-size, 8px);
  height: var(--d-size, 8px);
  border-radius: 50%;
  background: var(--d-color, #57fbc9);
  box-shadow: 0 0 0 1px rgba(219, 255, 246, 0.14), 0 0 12px rgba(87, 251, 201, 0.38);
  opacity: 0.34;
  transform: scale(0.8);
  animation: agentFindBlink var(--d-dur, 3.2s) ease-in-out infinite;
  animation-delay: var(--d-delay, 0s);
}

.hero-radar-finds span:nth-child(1) {
  left: 18%;
  top: 24%;
  --d-size: 8px;
  --d-color: #57fbc9;
  --d-dur: 2.9s;
  --d-delay: 0.1s;
}

.hero-radar-finds span:nth-child(2) {
  left: 30%;
  top: 16%;
  --d-size: 6px;
  --d-color: #6bd3ff;
  --d-dur: 3.5s;
  --d-delay: 0.55s;
}

.hero-radar-finds span:nth-child(3) {
  left: 44%;
  top: 30%;
  --d-size: 9px;
  --d-color: #9efbe0;
  --d-dur: 3.1s;
  --d-delay: 0.95s;
}

.hero-radar-finds span:nth-child(4) {
  left: 59%;
  top: 22%;
  --d-size: 7px;
  --d-color: #ffbb74;
  --d-dur: 3.4s;
  --d-delay: 1.4s;
}

.hero-radar-finds span:nth-child(5) {
  left: 70%;
  top: 38%;
  --d-size: 8px;
  --d-color: #c785ff;
  --d-dur: 3.8s;
  --d-delay: 0.3s;
}

.hero-radar-finds span:nth-child(6) {
  left: 53%;
  top: 54%;
  --d-size: 7px;
  --d-color: #72bcff;
  --d-dur: 2.8s;
  --d-delay: 1.1s;
}

.hero-radar-finds span:nth-child(7) {
  left: 36%;
  top: 66%;
  --d-size: 6px;
  --d-color: #57fbc9;
  --d-dur: 3.2s;
  --d-delay: 1.7s;
}

.hero-radar-finds span:nth-child(8) {
  left: 66%;
  top: 64%;
  --d-size: 9px;
  --d-color: #8ef4d9;
  --d-dur: 3.6s;
  --d-delay: 2.05s;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 26px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(49, 208, 164, 0.35);
  color: #b9ffe8;
  background: rgba(16, 163, 127, 0.09);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 16px 0 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 19px);
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.metric-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 13px;
  color: #d2deea;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.metric:hover {
  transform: translateY(-2px);
  border-color: rgba(164, 255, 228, 0.42);
  background: rgba(18, 44, 37, 0.38);
}

.hero-side {
  border: 1px solid rgba(111, 183, 216, 0.5);
  border-radius: 22px;
  background:
    radial-gradient(560px 260px at 50% -30%, rgba(86, 239, 195, 0.18), transparent 62%),
    linear-gradient(150deg, rgba(16, 27, 39, 0.9), rgba(10, 19, 29, 0.95));
  box-shadow: 0 20px 44px rgba(2, 10, 18, 0.44), inset 0 0 0 1px rgba(159, 213, 245, 0.09);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
}

.hero-side-title {
  position: relative;
  width: fit-content;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #eef7ff;
  text-shadow: 0 4px 16px rgba(18, 197, 156, 0.2);
  padding-bottom: 10px;
}

.hero-side-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(87, 251, 201, 0.96), rgba(87, 251, 201, 0.12));
}

.hero-side-note {
  margin: -2px 0 0;
  color: #bdd0e2;
  font-size: 13px;
  line-height: 1.45;
  max-width: 42ch;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.deliverable-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-areas: "icon title";
  column-gap: 11px;
  row-gap: 0;
  align-items: center;
  border: 1px solid rgba(122, 163, 194, 0.36);
  border-radius: 14px;
  background:
    radial-gradient(132px 80px at 88% -14%, rgba(97, 233, 200, 0.2), transparent 60%),
    linear-gradient(165deg, rgba(12, 20, 31, 0.88), rgba(8, 15, 24, 0.92));
  padding: 14px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.deliverable-icon {
  grid-area: icon;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(9, 56, 45, 0.9), rgba(11, 37, 56, 0.9));
  border: 1px solid rgba(113, 220, 195, 0.55);
  color: #d8fff3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.deliverable-card h4 {
  grid-area: title;
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #f1f7fd;
  word-break: break-word;
}

.deliverable-card p {
  grid-area: meta;
  margin: 6px 0 0;
  color: #acc2d7;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.deliverable-card:hover {
  transform: translateY(-2px);
  border-color: rgba(152, 215, 245, 0.48);
  box-shadow: 0 10px 20px rgba(3, 11, 19, 0.32);
}

.deliverable-card:hover .deliverable-icon {
  border-color: rgba(166, 255, 233, 0.65);
  box-shadow: 0 8px 16px rgba(6, 36, 30, 0.34);
}

.section {
  padding: 104px 0;
}

#how.section-open {
  padding: 122px 0 114px;
}

.section-open .container {
  width: min(1520px, 96vw);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  margin-bottom: 48px;
}

.section h2 {
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4.4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-kicker {
  color: var(--muted);
  font-size: 14px;
  max-width: 60ch;
}

.grid-4,
.grid-3 {
  display: grid;
  gap: 20px;
}

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

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

#pricing .container {
  width: min(1560px, 96vw);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.card:not(.step-card):hover {
  transform: translateY(-4px);
  border-color: rgba(163, 205, 236, 0.45);
  box-shadow: 0 16px 34px rgba(2, 11, 20, 0.34);
}

.icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid rgba(49, 208, 164, 0.36);
  background: rgba(12, 41, 32, 0.58);
  margin-bottom: 12px;
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.icon svg {
  width: 18px;
  height: 18px;
  stroke: #b9ffe8;
  stroke-width: 2;
  fill: none;
}

.icon-emoji {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.34s ease;
}

.card:not(.step-card):hover .icon {
  transform: translateY(-1px) scale(1.06);
  border-color: rgba(164, 255, 228, 0.6);
  box-shadow: 0 8px 18px rgba(5, 30, 26, 0.3);
}

.card:not(.step-card):hover .icon-emoji {
  transform: scale(1.08);
}

.card h3 {
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

#benefits h2 {
  font-weight: 700;
}

#benefits .section-kicker {
  color: #c4d7e8;
  font-size: 15px;
  max-width: 74ch;
}

#benefits .grid-4 {
  gap: 24px;
}

#benefits .card {
  background: linear-gradient(165deg, rgba(10, 22, 35, 0.96), rgba(14, 33, 50, 0.92));
  border: 1px solid rgba(88, 143, 178, 0.35);
  box-shadow: 0 16px 34px rgba(1, 9, 16, 0.38), inset 0 0 0 1px rgba(124, 172, 205, 0.08);
}

#benefits .card:nth-child(2n) {
  background: linear-gradient(165deg, rgba(9, 24, 34, 0.96), rgba(9, 36, 46, 0.92));
  border-color: rgba(49, 208, 164, 0.34);
}

#benefits .card h3 {
  color: #edf5ff;
  font-size: 20px;
  font-weight: 700;
}

#benefits .card p {
  color: #c1d3e3;
  font-size: 15px;
  margin-top: 10px;
}

#benefits .card .icon {
  background: linear-gradient(145deg, rgba(6, 37, 31, 0.9), rgba(10, 57, 46, 0.86));
  border-color: rgba(49, 208, 164, 0.48);
}

#benefits .card .icon svg {
  stroke: #b8ffe9;
}

.step-card {
  position: relative;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 200px;
}

.section-open .section-head {
  margin-bottom: 62px;
}

.how-stack .step-card {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.45fr);
  grid-template-areas: "copy flow";
  column-gap: 22px;
  row-gap: 0;
  align-items: start;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  min-height: 0;
}

.how-stack .step-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: start;
  width: min(100%, 560px);
  padding: 0;
}

.how-stack .step-label {
  grid-area: auto;
  margin: 0;
  justify-self: start;
  align-self: flex-start;
  padding: 7px 12px;
  border-color: rgba(87, 251, 201, 0.45);
  background: rgba(8, 30, 27, 0.68);
  box-shadow: inset 0 0 0 1px rgba(160, 255, 229, 0.1);
}

.how-stack .step-card h3 {
  grid-area: auto;
  font-size: clamp(24px, 3.8vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
  display: block;
  width: auto;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.how-stack .step-card p {
  grid-area: auto;
  margin: 0;
  max-width: 45ch;
  color: #ccdae8;
  font-size: 18px;
  line-height: 1.58;
  display: block;
  width: auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.step-label {
  display: inline-block;
  border: 1px solid rgba(49, 208, 164, 0.35);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b9ffe8;
  margin-bottom: 12px;
}

.flow-graphic {
  margin-top: 2px;
  margin-bottom: 6px;
  border-radius: 14px;
  border: 1px solid rgba(89, 130, 161, 0.28);
  overflow: hidden;
  background: linear-gradient(170deg, rgba(8, 16, 25, 0.72), rgba(8, 15, 24, 0.38));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  display: block;
  line-height: 0;
}

.how-stack .flow-graphic {
  grid-area: flow;
  margin: 0;
  align-self: start;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  border-color: rgba(91, 142, 178, 0.24);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.flow-svg {
  width: 100%;
  height: auto;
  display: block;
}

.flow-svg text {
  font-family: "Space Grotesk", "Sora", sans-serif;
  letter-spacing: 0;
}

.scene-bg {
  fill: rgba(8, 16, 25, 0.62);
}

.grid-line {
  fill: none;
  stroke: rgba(50, 227, 176, 0.18);
  stroke-width: 1;
}

.radar-ring {
  fill: none;
  stroke: rgba(50, 227, 176, 0.25);
  stroke-width: 1.4;
}

.radar-core {
  fill: rgba(87, 251, 203, 0.82);
}

.radar-sweep {
  fill: rgba(39, 201, 153, 0.18);
  animation: sweepPulse 3.8s ease-in-out infinite;
}

.desk-top {
  fill: #99a8b9;
}

.desk-leg {
  fill: #7d8c9d;
}

.monitor {
  fill: #3f81f2;
  stroke: #87b4ff;
  stroke-width: 1;
}

.human-head {
  fill: #84b6ec;
}

.human-body {
  fill: #4f85d6;
}

.assistant-head {
  fill: #9f7df6;
  stroke: #d3c2ff;
  stroke-width: 1;
}

.assistant-body {
  fill: #6e4fca;
}

.scene-label {
  fill: #e2eef9;
  font-size: 13px;
  font-weight: 700;
}

.scene-muted {
  fill: #a8bdcf;
  font-size: 12px;
  font-weight: 600;
}

.flow-link {
  stroke: #57fbc9;
  stroke-width: 1.8;
  stroke-dasharray: 5 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  opacity: 0.9;
}

.flow-arrow-fill {
  fill: #57fbc9;
}

.channel-chip {
  fill: rgba(5, 39, 31, 0.86);
  stroke: rgba(87, 251, 201, 0.52);
  stroke-width: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.22));
}

.chip-label {
  fill: #c9fff0;
  font-size: 11px;
  font-weight: 600;
}

.agent-dot {
  stroke-width: 1.2;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.24));
}

.agent-dot.a1 {
  fill: #22d2ff;
  stroke: #8cecff;
}

.agent-dot.a2 {
  fill: #ff8b45;
  stroke: #ffc6a0;
}

.agent-dot.a3 {
  fill: #34cf9f;
  stroke: #a9f5dd;
}

.agent-dot.a4 {
  fill: #50a8ff;
  stroke: #b7dcff;
}

.agent-dot.a5 {
  fill: #d05cff;
  stroke: #f3c4ff;
}

.agent-label {
  fill: #d9e5f2;
  font-size: 11px;
  font-weight: 600;
}

.meeting-table {
  fill: rgba(131, 136, 144, 0.7);
  stroke: rgba(208, 219, 232, 0.35);
  stroke-width: 1;
}

.meeting-label {
  fill: #e8f0f8;
  font-size: 12px;
  font-weight: 700;
}

.package-box {
  fill: #ffc160;
  stroke: #ffddab;
  stroke-width: 1;
}

.package-line {
  fill: none;
  stroke: #a26a09;
  stroke-width: 1.2;
}

.pulse {
  animation: pulseDot 2.3s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}

@keyframes sweepPulse {
  0%, 100% {
    opacity: 0.14;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes heroSweepRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes topbarSheen {
  0%, 72%, 100% {
    transform: translateX(-120%);
  }
  82% {
    transform: translateX(120%);
  }
}

@keyframes ctaBreathe {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(16, 163, 127, 0.3);
  }
  50% {
    box-shadow: 0 14px 38px rgba(31, 185, 146, 0.45);
  }
}

@keyframes heroGridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 40px 0, 0 40px;
  }
}

@keyframes agentFindBlink {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.8);
  }
  20% {
    opacity: 0.98;
    transform: scale(1.14);
  }
  34% {
    opacity: 0.22;
    transform: scale(0.84);
  }
  58% {
    opacity: 0.9;
    transform: scale(1.08);
  }
  74% {
    opacity: 0.2;
    transform: scale(0.84);
  }
}

@keyframes bannerSheen {
  0%, 62%, 100% {
    transform: translateX(-45%) rotate(8deg);
    opacity: 0;
  }
  72%,
  86% {
    transform: translateX(45%) rotate(8deg);
    opacity: 1;
  }
}

@media (max-width: 899px) {
  #how.section-open {
    padding: 96px 0 96px;
  }

  .how-stack {
    gap: 140px;
  }

  .how-stack .step-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "flow";
    row-gap: 10px;
    min-height: 0;
  }

  .how-stack .flow-graphic {
    margin-top: 2px;
  }

  .how-stack .step-card h3 {
    font-size: clamp(22px, 6.2vw, 30px);
  }

  .how-stack .step-copy {
    width: 100%;
    padding: 0;
    gap: 10px;
  }

  .section-open .container {
    width: min(1200px, 94vw);
  }
}

@media (max-width: 1120px) {
  #pricing .container {
    width: min(1200px, 94vw);
  }

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

  .pricing-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .topbar-inner {
    min-height: 66px;
    gap: 12px;
  }

  .topbar-cta {
    gap: 8px;
  }

  .topbar-cta .btn,
  .topbar-cta .btn-ghost {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-wrap {
    gap: 20px;
  }

  .section-head {
    margin-bottom: 40px;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 760px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(154, 175, 196, 0.18);
  background: #04070b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 181, 212, 0.34);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.pricing-card.recommended {
  border-color: rgba(49, 208, 164, 0.55);
  background: #04080c;
  box-shadow: 0 14px 30px rgba(8, 54, 43, 0.22);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.plan-head {
  display: grid;
  gap: 8px;
}

.plan-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.plan-name {
  font-size: clamp(36px, 2.3vw, 48px);
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.plan-recommended-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(49, 208, 164, 0.55);
  background: rgba(11, 74, 58, 0.55);
  color: #bffce9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-price {
  margin-top: 2px;
  font-size: clamp(48px, 3vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #f3f8fd;
}

.plan-price-custom {
  margin-top: 2px;
  font-size: clamp(30px, 2.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f3f8fd;
  font-weight: 700;
}

.plan-sub {
  color: #98a7b7;
  font-size: 16px;
  margin-top: 4px;
}

.plan-target {
  margin: 0;
  color: #96a4b4;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.pricing-intro {
  margin: 0 0 28px;
  text-align: center;
  color: #bdd0e1;
  font-size: 15px;
  line-height: 1.52;
}

.plan-divider {
  height: 1px;
  width: 100%;
  background: rgba(163, 182, 201, 0.18);
}

.plan-group-title {
  color: #b9cadb;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #dbe6f1;
  font-size: 14px;
}

.plan-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding-left: 0;
  line-height: 1.45;
  min-height: 18px;
}

.plan-list-positive li::before {
  content: "\2713";
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #11c267;
  color: #021008;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(1px);
}

.plan-list-limitations {
  color: #90a2b5;
}

.plan-list-limitations li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #8195ab;
  opacity: 0.95;
  transform: translateY(6px);
}

.plan-cta {
  margin-top: auto;
  min-height: 46px;
  width: 100%;
  font-size: 14px;
}

.terms-note {
  margin: 18px 0 0;
  color: #7f91a2;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.28s ease, background-color 0.28s ease, transform 0.28s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(142, 182, 213, 0.52);
  background: rgba(12, 22, 33, 0.38);
}

.faq-item summary {
  list-style: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.4;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 18px;
  color: #b2c6d9;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(49, 208, 164, 0.45);
  background: rgba(12, 24, 35, 0.46);
}

.faq-item[open] summary::after {
  content: "−";
  color: #c8ffef;
}

.faq-item p {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, margin-top 0.25s ease;
  color: var(--muted);
  font-size: 14px;
}

.faq-item[open] p {
  margin-top: 10px;
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
}

.bottom-banner {
  padding: 0 0 86px;
}

.bottom-banner-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(62, 138, 182, 0.36);
  background:
    linear-gradient(to right, rgba(49, 208, 164, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(49, 208, 164, 0.12) 1px, transparent 1px),
    linear-gradient(140deg, rgba(9, 24, 36, 0.98), rgba(11, 34, 46, 0.96));
  background-size: 30px 30px, 30px 30px, 100% 100%;
  box-shadow: 0 20px 44px rgba(2, 10, 18, 0.35);
  padding: 34px 30px;
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.bottom-banner-card::after {
  content: "";
  position: absolute;
  inset: -20% -35%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(193, 255, 236, 0.18) 50%, transparent 62%);
  transform: translateX(-45%) rotate(8deg);
  animation: bannerSheen 9s ease-in-out infinite;
}

.bottom-banner-card > * {
  position: relative;
  z-index: 1;
}

.bottom-banner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(117, 193, 233, 0.58);
  box-shadow: 0 24px 48px rgba(2, 12, 21, 0.4);
}

.bottom-banner-kicker {
  color: #bafbe8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bottom-banner-card h3 {
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(24px, 3.3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 24ch;
}

.bottom-banner-question h3 {
  max-width: 26ch;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #f2f7fd;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(8, 25, 40, 0.38);
}

.bottom-banner-question {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  display: grid;
  justify-items: center;
}

.bottom-banner-question::after {
  display: none;
}

.bottom-banner-question:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.bottom-banner-question .bottom-banner-actions {
  justify-content: center;
  margin-top: 24px;
}

.bottom-banner-question .btn {
  min-height: 50px;
  padding: 0 28px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.bottom-banner-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.learning-section {
  padding: 0 0 92px;
}

.learning-card {
  border-radius: 20px;
  border: 1px solid rgba(86, 150, 188, 0.34);
  background:
    linear-gradient(to right, rgba(49, 208, 164, 0.11) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(49, 208, 164, 0.11) 1px, transparent 1px),
    radial-gradient(500px 180px at 76% -24%, rgba(87, 251, 201, 0.2), transparent 62%),
    linear-gradient(160deg, rgba(9, 21, 33, 0.96), rgba(9, 29, 42, 0.94));
  background-size: 30px 30px, 30px 30px, 100% 100%, 100% 100%;
  box-shadow: 0 18px 40px rgba(2, 10, 18, 0.36);
  padding: 32px 28px;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.learning-card:hover {
  transform: translateY(-3px);
  border-color: rgba(121, 192, 231, 0.54);
  box-shadow: 0 22px 46px rgba(2, 12, 21, 0.42);
}

.learning-kicker {
  color: #bafbe8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.learning-card h3 {
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 24ch;
}

.learning-card p {
  margin: 12px 0 0;
  max-width: 68ch;
  color: #bed0e0;
  font-size: 15px;
  line-height: 1.58;
}

.learning-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 48px 0 58px;
  border-top: 1px solid rgba(120, 138, 156, 0.26);
  background: #070d14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-logo-link {
  display: inline-flex;
  width: fit-content;
}

.footer-logo {
  display: block;
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1) saturate(0) contrast(160%);
  opacity: 1;
}

.footer-tagline {
  margin: 0;
  color: #9fb1c3;
  font-size: 13px;
  line-height: 1.6;
  max-width: 36ch;
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a {
  color: #c2d0dc;
  font-size: 13px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #f3f8fd;
}

.footer-newsletter {
  display: grid;
  gap: 9px;
}

.footer-newsletter label {
  color: #d0dde9;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-newsletter-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-newsletter-row input {
  flex: 1 1 0;
  min-width: 0;
}

.footer-newsletter input {
  min-height: 42px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(91, 111, 132, 0.55);
  background: #0b131b;
  color: #e7f0f8;
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
}

.footer-newsletter input::placeholder {
  color: #8ea2b5;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: rgba(149, 169, 189, 0.75);
  box-shadow: 0 0 0 2px rgba(163, 180, 198, 0.18);
}

.footer-newsletter .btn {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
  color: #0a121a;
  background: linear-gradient(120deg, #f2f7fc, #d5e1ec);
  box-shadow: none;
}

.footer-newsletter .btn:hover {
  transform: none;
  box-shadow: none;
  background: linear-gradient(120deg, #ffffff, #e3ecf4);
}

.footer-newsletter p {
  margin: 0;
  color: #8ca0b4;
  font-size: 12px;
  line-height: 1.4;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.995);
  filter: blur(6px);
  transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (max-width: 1050px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-radar-finds {
    right: -34px;
    top: -24px;
    width: min(78vw, 500px);
    height: min(78vw, 500px);
    opacity: 0.72;
  }

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

  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  #pricing .container {
    width: min(720px, 92vw);
  }

  .topbar-cta .btn {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  #how.section-open {
    padding: 78px 0 84px;
  }

  .section-open .container {
    width: min(720px, 92vw);
  }

  .section-head {
    gap: 10px;
    margin-bottom: 34px;
  }

  .section h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

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

  .pricing-card:last-child {
    grid-column: auto;
  }

  .pricing-card {
    min-height: 0;
  }

  .plan-price {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .plan-price-custom {
    font-size: clamp(24px, 7vw, 33px);
  }

  .plan-list {
    gap: 7px;
    font-size: 13px;
  }

  .plan-cta {
    min-height: 44px;
    font-size: 16px;
  }

  .terms-note {
    margin-top: 14px;
    font-size: 11px;
    text-align: left;
  }

  .how-stack .step-card {
    position: relative;
    top: auto;
  }

  .how-stack {
    gap: 108px;
  }

  .how-stack .step-card p {
    font-size: 18px;
    line-height: 1.62;
  }

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

  .hero {
    padding: 72px 0 68px;
  }

  .hero-wrap {
    gap: 14px;
  }

  .hero h1 {
    font-size: clamp(31px, 10.5vw, 44px);
    line-height: 1.04;
  }

  .hero p {
    margin-top: 14px;
    font-size: clamp(15px, 4.6vw, 18px);
  }

  .hero-cta {
    margin-top: 24px;
    gap: 10px;
  }

  .hero-cta .btn,
  .hero-cta .btn-ghost {
    width: 100%;
  }

  .hero::before {
    background-size: 32px 32px, 32px 32px;
    opacity: 0.2;
  }

  .hero::after {
    right: -220px;
    top: -240px;
    width: min(92vw, 620px);
    height: min(92vw, 620px);
    opacity: 0.4;
  }

  .hero-radar-finds {
    right: -84px;
    top: -58px;
    width: min(94vw, 420px);
    height: min(94vw, 420px);
    opacity: 0.5;
  }

  .topbar-inner {
    min-height: 64px;
  }

  .brand-logo {
    height: 28px;
    max-width: min(190px, 58vw);
  }

  .brand-tag {
    min-height: 22px;
    padding: 0 8px;
    font-size: 10px;
  }

  .bottom-banner {
    padding: 0 0 72px;
  }

  .bottom-banner-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

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

  .learning-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .learning-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .bottom-banner-actions .btn,
  .bottom-banner-actions .btn-ghost,
  .learning-actions .btn,
  .learning-actions .btn-ghost {
    width: 100%;
  }

  .footer {
    padding: 38px 0 46px;
  }

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

  .footer-newsletter-row {
    flex-direction: column;
  }

  .footer-newsletter .btn {
    width: 100%;
  }

  .btn,
  .btn-ghost {
    min-height: 44px;
    padding: 0 18px;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-side {
    padding: 18px;
    gap: 12px;
  }

  .hero-side-title {
    font-size: 15px;
    letter-spacing: 0.09em;
  }

  .faq-item {
    padding: 13px 14px;
  }

  .faq-item summary {
    font-size: 15px;
    line-height: 1.35;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  #pricing .container {
    width: min(1120px, 94vw);
  }

  .container {
    width: min(1120px, 94vw);
  }

  .brand {
    gap: 8px;
  }

  .brand-tag {
    display: none;
  }

  .topbar-inner {
    min-height: 62px;
  }

  .topbar-cta {
    gap: 6px;
  }

  .topbar-cta .btn-ghost {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    padding: 64px 0 60px;
  }

  .hero::after {
    right: -250px;
    top: -270px;
    width: min(112vw, 620px);
    height: min(112vw, 620px);
    opacity: 0.35;
  }

  .hero-radar-finds {
    display: none;
  }

  .hero-side {
    padding: 16px;
    border-radius: 18px;
  }

  .deliverable-card {
    grid-template-columns: 36px 1fr;
    padding: 12px;
  }

  .deliverable-icon {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .deliverable-card h4 {
    font-size: 13px;
  }

  .deliverable-card p {
    font-size: 11px;
    margin-top: 4px;
  }

  .how-stack {
    gap: 96px;
  }

  .how-stack .step-copy {
    gap: 10px;
  }

  .how-stack .step-card p {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.62;
  }

  .flow-graphic {
    border-radius: 16px;
  }

  .bottom-banner-card h3 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .learning-card h3 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .footer-tagline {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
