:root {
  --bg: #fbfcff;
  --bg-soft: #f5f7fd;
  --surface: #ffffff;
  --surface-soft: #f8faff;
  --ink: #161c2d;
  --ink-soft: #6c7589;
  --line: #e8edf6;
  --line-strong: #dbe3f0;
  --blue-dark: #1664ef;
  --blue: #298eed;
  --cyan: #48d2eb;
  --blue-soft: #edf7ff;
  --cyan-soft: #ecfbff;
  --green-soft: #ebf9f3;
  --orange-soft: #fff3e8;
  --orange: #f08b4b;
  --shadow-soft: 0 18px 48px rgba(40, 57, 92, 0.06);
  --shadow-card: 0 14px 34px rgba(39, 57, 92, 0.05);
  --radius-control: 4px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100vw - 40px));
  --header-height: 78px;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(22, 100, 239, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(72, 210, 235, 0.07), transparent 24%),
    linear-gradient(180deg, #fdfdff 0%, #fafbff 18%, #ffffff 54%, #f9fbff 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  border-radius: var(--radius-control);
}

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

h1,
h2 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.3;
}

p,
li,
td,
th {
  font-size: 0.98rem;
  line-height: 1.68;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 88px 0;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-soft {
  background: linear-gradient(180deg, rgba(245, 247, 253, 0.88), rgba(255, 255, 255, 0.96));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 18px 0 17px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(232, 237, 246, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 182px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 54px;
  margin-left: auto;
  color: var(--ink);
  font-size: 1rem;
}

.site-nav a {
  padding: 6px 0;
  color: #1f2434;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--ink);
}

.site-nav a:last-child {
  font-weight: 800;
}

.nav-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

body.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #1664ef 0%, #298eed 52%, #48d2eb 100%);
  box-shadow: 0 12px 26px rgba(22, 100, 239, 0.24);
}

.button-secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(22, 28, 45, 0.12);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
}

.page-shell {
  transition: filter 220ms ease, transform 220ms ease;
}

body.contact-modal-open {
  overflow: hidden;
}

body.contact-modal-open .page-shell {
  filter: blur(18px);
  transform: scale(0.992);
  pointer-events: none;
  user-select: none;
}

.eyebrow {
  color: var(--blue-dark);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 42px;
}

#why-now .section-heading {
  margin-bottom: 58px;
}

#why-now .section-heading p {
  width: min(100%, 714px);
  max-width: none;
}

#why-now .card-grid {
  gap: 22px;
}

#why-now .section-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

#why-now .section-cta .button-primary {
  width: 252px;
  min-width: 252px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-control);
  border-color: transparent;
  background: linear-gradient(90deg, #2f73f5 0%, #367cf3 62%, #3ea7e4 100%);
  box-shadow: 0 5px 12px rgba(72, 100, 154, 0.13);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

#why-now .section-cta .button-primary:hover {
  transform: none;
  box-shadow: 0 5px 12px rgba(72, 100, 154, 0.13);
}

.section-heading.center {
  justify-items: center;
  text-align: center;
}

.section-heading.narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

#features .section-heading {
  max-width: 920px;
}

#benefits .section-heading {
  max-width: 900px;
}

#benefits .section-heading p {
  width: min(100%, 900px);
  max-width: none;
}

#benefits .benefits-media {
  margin: 58px auto 0;
  max-width: 1160px;
}

#benefits .benefits-media-image {
  width: 100%;
  height: auto;
}

#benefits .section-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

#benefits .section-cta .button-primary {
  width: 252px;
  min-width: 252px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-control);
  border-color: transparent;
  background: linear-gradient(90deg, #2f73f5 0%, #367cf3 62%, #3ea7e4 100%);
  box-shadow: 0 5px 12px rgba(72, 100, 154, 0.13);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

#benefits .section-cta .button-primary:hover {
  transform: none;
  box-shadow: 0 5px 12px rgba(72, 100, 154, 0.13);
}

.section-heading h2 + p {
  margin-top: 9px;
}

.feature-steps {
  display: grid;
  gap: 68px;
  max-width: 1020px;
  margin: 82px auto 0;
}

#features .section-cta {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

#features .section-cta .button-primary {
  width: 252px;
  min-width: 252px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-control);
  border-color: transparent;
  background: linear-gradient(90deg, #2f73f5 0%, #367cf3 62%, #3ea7e4 100%);
  box-shadow: 0 5px 12px rgba(72, 100, 154, 0.13);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

#features .section-cta .button-primary:hover {
  transform: none;
  box-shadow: 0 5px 12px rgba(72, 100, 154, 0.13);
}

.feature-step {
  display: grid;
  align-items: center;
  gap: 46px;
}

.feature-step-left {
  grid-template-columns: 116px minmax(0, 650px);
}

.feature-step-right {
  grid-template-columns: minmax(0, 650px) 116px;
  justify-content: end;
  gap: 24px;
}

.feature-step-copy {
  max-width: 650px;
}

.feature-step-copy h3 {
  font-size: clamp(1.4rem, 2vw, 1.72rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.feature-step-copy p {
  max-width: 650px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.58;
}

.feature-step-right .feature-step-copy {
  width: min(100%, 560px);
  max-width: 560px;
  justify-self: end;
  text-align: right;
}

.feature-step-right .feature-step-copy p {
  max-width: 560px;
  margin-left: auto;
  margin-right: 0;
}

.feature-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  border-radius: 999px;
}

.feature-step-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.feature-step-icon-blue {
  background: rgba(22, 100, 239, 0.09);
}

.feature-step-icon-orange {
  background: rgba(240, 139, 75, 0.14);
}

.feature-step-icon-cyan {
  background: rgba(72, 210, 235, 0.14);
}

.feature-step-icon-green {
  background: rgba(75, 173, 123, 0.14);
}

.section-heading p {
  max-width: 58ch;
  color: var(--ink-soft);
}

.lead {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hero {
  padding-top: 30px;
  padding-bottom: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  justify-items: center;
}

.hero-title {
  display: grid;
  justify-items: center;
  padding-block: clamp(12px, 2vw, 20px);
  text-align: center;
}

.hero-title h1 {
  max-width: none;
  font-size: clamp(2.5rem, 3.9vw, 3.45rem);
  line-height: 1.04;
  white-space: nowrap;
}

.hero-copy {
  display: grid;
  order: 2;
  gap: 23px;
  max-width: 1080px;
  justify-items: center;
  text-align: center;
}

.hero-copy .lead {
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.section-cta {
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-early-access {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-dark);
  text-align: center;
  line-height: 1.2;
}

.cta-early-access-light {
  color: rgba(255, 255, 255, 0.85);
}

.final-cta-copy .cta-early-access {
  margin-top: -6px;
}

.hero-actions .button-primary {
  width: 252px;
  min-width: 252px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-control);
  border-color: transparent;
  background: linear-gradient(90deg, #2f73f5 0%, #367cf3 62%, #3ea7e4 100%);
  box-shadow: 0 5px 12px rgba(72, 100, 154, 0.13);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-actions .button-primary:hover {
  transform: none;
  box-shadow: 0 5px 12px rgba(72, 100, 154, 0.13);
}

.metric-card,
.stat-card {
  padding: 18px 18px 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.metric-card span,
.stat-card span,
.mini-panel-head span,
.floating-card p,
.proof-row p {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.metric-card strong,
.stat-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.hero-visual {
  order: 1;
  position: relative;
  width: min(1120px, 100%);
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-visual::before {
  content: none;
}

.hero-agent-animation {
  --agent-primary-500: #1d6cff;
  --agent-primary-600: #1257e6;
  --agent-primary-50: #e9f1ff;
  --agent-primary-200: #bfd4ff;
  --agent-info-500: #1c88ff;
  --agent-success-500: #22c55e;
  --agent-warning-500: #f59e0b;
  --agent-danger-500: #ef4444;
  --agent-surface-0: #ffffff;
  --agent-surface-50: #f6f8fc;
  --agent-surface-100: #eef2f8;
  --agent-surface-200: #e3eaf4;
  --agent-surface-300: #d6e2f3;
  --agent-text-900: #0f172a;
  --agent-text-700: #334155;
  --agent-text-500: #64748b;
  --agent-text-xs: 12px;
  --agent-text-sm: 13px;
  --agent-text-md: 14px;
  --agent-space-3: 12px;
  --agent-space-4: 16px;
  --agent-radius-md: 12px;
  --agent-radius-lg: 16px;
  --agent-shadow-md: 0 6px 18px rgba(15, 23, 42, 0.1);
  --agent-loop-duration: 14s;
  width: 100%;
  padding: clamp(18px, 2vw, 26px) 0 clamp(62px, 5vw, 86px);
  color: var(--agent-text-900);
  font-family: var(--font-sans);
}

.hero-agent-animation .hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  position: relative;
}

.hero-agent-animation .hero-card {
  background: var(--agent-surface-0);
  border: 1px solid var(--agent-surface-200);
  border-radius: var(--agent-radius-lg);
  box-shadow: var(--agent-shadow-md);
}

.hero-agent-animation .timeline-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--agent-space-4);
  min-height: 620px;
  padding: clamp(16px, 2vw, 24px);
}

.hero-agent-animation .reconstruction-card,
.hero-agent-animation .policy-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: var(--agent-space-3);
  width: min(360px, 35vw);
  padding: 16px;
  backdrop-filter: blur(2px);
  transform-origin: center;
}

.hero-agent-animation .reconstruction-card {
  top: clamp(-18px, -1.2vw, -10px);
  right: calc(clamp(10px, 1.3vw, 18px) + 80px);
  animation: hero-agent-support-float-a var(--agent-loop-duration) ease-in-out infinite;
}

.hero-agent-animation .policy-card {
  bottom: calc(clamp(-12px, -0.7vw, -6px) - 30px);
  left: calc(clamp(72px, 6vw, 120px) + 180px);
  animation: hero-agent-support-float-b var(--agent-loop-duration) ease-in-out infinite;
}

.hero-agent-animation .hero-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--agent-space-3);
}

.hero-agent-animation .hero-card__header--stacked {
  display: grid;
  gap: 8px;
  justify-content: stretch;
}

.hero-agent-animation .hero-card__eyebrow {
  color: var(--agent-text-500);
  font-size: var(--agent-text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-agent-animation .hero-card__header h2 {
  margin-top: 2px;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.hero-agent-animation .hero-card__header h3 {
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.hero-agent-animation .meta {
  margin-top: 4px;
  color: var(--agent-text-500);
  font-size: var(--agent-text-xs);
  line-height: 1.4;
}

.hero-agent-animation .timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-agent-animation .chip,
.hero-agent-animation .status {
  display: inline-flex;
  max-width: 100%;
  overflow: hidden;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: var(--agent-text-xs);
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-agent-animation .chip {
  background: var(--agent-surface-100);
  border: 1px solid var(--agent-surface-200);
  color: var(--agent-text-700);
}

.hero-agent-animation .chip--mono,
.hero-agent-animation code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
}

.hero-agent-animation code {
  padding: 2px 6px;
  border: 1px solid var(--agent-surface-200);
  border-radius: 6px;
  background: var(--agent-surface-100);
  color: var(--agent-text-700);
  font-size: 11px;
}

.hero-agent-animation .status--success {
  background: rgba(34, 197, 94, 0.12);
  color: var(--agent-success-500);
}

.hero-agent-animation .status--warning {
  background: rgba(245, 158, 11, 0.12);
  color: var(--agent-warning-500);
}

.hero-agent-animation .status--danger {
  background: rgba(239, 68, 68, 0.12);
  color: var(--agent-danger-500);
}

.hero-agent-animation .status--info {
  background: rgba(28, 136, 255, 0.12);
  color: var(--agent-info-500);
}

.hero-agent-animation .status--processing {
  background: rgba(29, 108, 255, 0.12);
  color: var(--agent-primary-600);
}

.hero-agent-animation .status--active {
  background: rgba(34, 197, 94, 0.12);
  color: var(--agent-success-500);
}

.hero-agent-animation .timeline-overview {
  position: relative;
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--agent-surface-200);
  border-radius: var(--agent-radius-md);
  background: var(--agent-surface-50);
}

.hero-agent-animation .timeline-overview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-agent-animation .timeline-overview__header h3 {
  font-size: var(--agent-text-md);
  letter-spacing: -0.02em;
}

.hero-agent-animation .timeline-bars {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 4px;
  height: 54px;
}

.hero-agent-animation .bar {
  min-height: 5px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, rgba(29, 108, 255, 0.55), rgba(29, 108, 255, 0.18));
  opacity: 0;
  transform-origin: bottom;
  animation: hero-agent-bar-pop var(--agent-loop-duration) ease-in-out infinite;
}

.hero-agent-animation .bar--4,
.hero-agent-animation .bar--7,
.hero-agent-animation .bar--10 {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.55), rgba(34, 197, 94, 0.18));
}

.hero-agent-animation .bar--1 { height: 12px; animation-delay: 0.2s; }
.hero-agent-animation .bar--2 { height: 18px; animation-delay: 0.32s; }
.hero-agent-animation .bar--3 { height: 14px; animation-delay: 0.44s; }
.hero-agent-animation .bar--4 { height: 28px; animation-delay: 0.56s; }
.hero-agent-animation .bar--5 { height: 16px; animation-delay: 0.68s; }
.hero-agent-animation .bar--6 { height: 20px; animation-delay: 0.8s; }
.hero-agent-animation .bar--7 { height: 36px; animation-delay: 0.92s; }
.hero-agent-animation .bar--8 { height: 18px; animation-delay: 1.04s; }
.hero-agent-animation .bar--9 { height: 14px; animation-delay: 1.16s; }
.hero-agent-animation .bar--10 { height: 24px; animation-delay: 1.28s; }
.hero-agent-animation .bar--11 { height: 17px; animation-delay: 1.4s; }
.hero-agent-animation .bar--12 { height: 12px; animation-delay: 1.52s; }

.hero-agent-animation .timeline-sheen {
  position: absolute;
  top: 0;
  left: -34%;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.66), transparent);
  opacity: 0;
  pointer-events: none;
  animation: hero-agent-sheen-scan var(--agent-loop-duration) ease-in-out infinite;
}

.hero-agent-animation .event-list,
.hero-agent-animation .recon-steps {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.hero-agent-animation .event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 10px 12px;
  border: 1px solid var(--agent-surface-200);
  border-left: 4px solid var(--agent-surface-300);
  border-radius: var(--agent-radius-md);
  background: var(--agent-surface-0);
  opacity: 0;
  transform: translateY(8px);
  animation: hero-agent-row-reveal var(--agent-loop-duration) ease-in-out infinite;
}

.hero-agent-animation .row-in-1 { border-left-color: #3b82f6; animation-delay: 0.62s; }
.hero-agent-animation .row-in-2 { border-left-color: #3b82f6; animation-delay: 0.94s; }
.hero-agent-animation .row-in-3 { border-left-color: #16a34a; animation-delay: 1.26s; }
.hero-agent-animation .row-in-4 { border-left-color: #f59e0b; animation-delay: 1.58s; }
.hero-agent-animation .row-in-5 { border-left-color: #ef4444; animation-delay: 1.9s; }

.hero-agent-animation .event-title {
  font-size: var(--agent-text-sm);
  font-weight: 700;
  line-height: 1.35;
}

.hero-agent-animation .event-subtitle {
  margin-top: 3px;
  color: var(--agent-text-500);
  font-size: 12px;
  line-height: 1.32;
}

.hero-agent-animation .processing-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.hero-agent-animation .processing-meta {
  animation: hero-agent-recon-meta-fade var(--agent-loop-duration) ease-in-out infinite;
}

.hero-agent-animation .processing-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--agent-surface-100);
}

.hero-agent-animation .processing-line {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--agent-success-500), #86efac);
  transform-origin: left;
  animation: hero-agent-progress-track var(--agent-loop-duration) ease-in-out infinite;
}

.hero-agent-animation .recon-step {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: flex-start;
  gap: 8px;
  min-height: 48px;
  padding: 10px;
  border: 1px solid var(--agent-surface-200);
  border-radius: 10px;
  background: var(--agent-surface-50);
  opacity: 0;
  transform: translateY(7px);
  animation: hero-agent-row-reveal var(--agent-loop-duration) ease-in-out infinite;
}

.hero-agent-animation .step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--agent-primary-200);
  border-radius: 999px;
  background: var(--agent-primary-50);
  color: var(--agent-primary-600);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.hero-agent-animation .recon-step p {
  color: var(--agent-text-700);
  font-size: 12px;
  line-height: 1.36;
}

.hero-agent-animation .step-in-1 { animation-delay: 4.3s; }
.hero-agent-animation .step-in-2 { animation-delay: 4.85s; }
.hero-agent-animation .step-in-3 { animation-delay: 5.4s; }
.hero-agent-animation .step-in-4 { animation-delay: 5.95s; }
.hero-agent-animation .step-in-5 { animation-delay: 6.5s; }

.hero-agent-animation .recon-final {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px;
  border: 1px solid var(--agent-surface-200);
  border-radius: 10px;
  background: var(--agent-surface-50);
  opacity: 0;
  transform: translateY(6px);
  animation: hero-agent-row-reveal var(--agent-loop-duration) ease-in-out infinite;
  animation-delay: 7s;
}

.hero-agent-animation .recon-final .status {
  flex: 0 0 auto;
  max-width: none;
}

.hero-agent-animation .recon-final p {
  min-width: 0;
  flex: 1 1 auto;
  color: var(--agent-text-500);
  font-size: 12px;
  line-height: 1.36;
}

.hero-agent-animation .policy-groups {
  display: grid;
  gap: 8px;
}

.hero-agent-animation .policy-group {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--agent-surface-200);
  border-radius: 10px;
  background: var(--agent-surface-50);
  opacity: 0;
  transform: translateY(8px);
  animation: hero-agent-row-reveal var(--agent-loop-duration) ease-in-out infinite;
}

.hero-agent-animation .policy-label {
  color: var(--agent-text-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-agent-animation .policy-line,
.hero-agent-animation .policy-group li {
  color: var(--agent-text-700);
  font-size: 12px;
  line-height: 1.35;
}

.hero-agent-animation .policy-group ul {
  margin: 0;
  padding-left: 18px;
}

.hero-agent-animation .policy-group strong {
  color: var(--agent-text-900);
}

.hero-agent-animation .policy-in-1 { animation-delay: 8.95s; }
.hero-agent-animation .policy-in-2 { animation-delay: 9.45s; }
.hero-agent-animation .policy-in-3 { animation-delay: 10.02s; }

.hero-agent-animation .status-pulse {
  animation: hero-agent-soft-pulse var(--agent-loop-duration) ease-in-out infinite;
}

.hero-agent-animation .process-pulse {
  animation: hero-agent-process-pill var(--agent-loop-duration) ease-in-out infinite;
}

.hero-agent-animation .policy-active-pulse {
  animation: hero-agent-policy-pill var(--agent-loop-duration) ease-in-out infinite;
}

@keyframes hero-agent-bar-pop {
  0%,
  4% {
    opacity: 0;
    transform: scaleY(0.35);
  }
  8%,
  90% {
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(0.35);
  }
}

@keyframes hero-agent-row-reveal {
  0%,
  6% {
    opacity: 0;
    transform: translateY(8px);
  }
  10%,
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes hero-agent-soft-pulse {
  0%,
  12%,
  84%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
  18%,
  25% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.08);
  }
}

@keyframes hero-agent-process-pill {
  0%,
  28%,
  58%,
  100% {
    box-shadow: 0 0 0 0 rgba(29, 108, 255, 0);
  }
  35%,
  46% {
    box-shadow: 0 0 0 8px rgba(29, 108, 255, 0.1);
  }
}

@keyframes hero-agent-policy-pill {
  0%,
  70%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
  78%,
  86% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.1);
  }
}

@keyframes hero-agent-progress-track {
  0%,
  28% {
    transform: scaleX(0);
  }
  58%,
  86% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

@keyframes hero-agent-recon-meta-fade {
  0%,
  28% {
    opacity: 0;
  }
  34%,
  62% {
    opacity: 1;
  }
  66%,
  100% {
    opacity: 0;
  }
}

@keyframes hero-agent-sheen-scan {
  0%,
  24% {
    opacity: 0;
    transform: translateX(0);
  }
  30%,
  38% {
    opacity: 1;
    transform: translateX(280%);
  }
  40%,
  100% {
    opacity: 0;
    transform: translateX(280%);
  }
}

@keyframes hero-agent-support-float-a {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-4px) scale(1.005);
  }
  72% {
    transform: translateY(2px) scale(1);
  }
}

@keyframes hero-agent-support-float-b {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  43% {
    transform: translateY(3px) scale(0.998);
  }
  78% {
    transform: translateY(-3px) scale(1.005);
  }
}

@media (max-width: 1120px) {
  .hero-agent-animation .hero-stage {
    min-height: 780px;
  }

  .hero-agent-animation .reconstruction-card,
  .hero-agent-animation .policy-card {
    width: min(320px, 42vw);
  }

  .hero-agent-animation .policy-card {
    bottom: -36px;
    left: calc(clamp(44px, 5vw, 84px) + 180px);
  }
}

@media (max-width: 900px) {
  .hero-agent-animation {
    padding: 12px 0 0;
  }

  .hero-agent-animation .hero-stage {
    min-height: auto;
    align-items: stretch;
    gap: 12px;
  }

  .hero-agent-animation .timeline-card {
    min-height: 0;
  }

  .hero-agent-animation .reconstruction-card,
  .hero-agent-animation .policy-card {
    position: relative;
    width: 100%;
  }

  .hero-agent-animation .reconstruction-card {
    top: auto;
    right: auto;
  }

  .hero-agent-animation .policy-card {
    bottom: auto;
    left: auto;
  }
}

@media (max-width: 680px) {
  .hero-agent-animation .hero-card__header {
    flex-direction: column;
  }

  .hero-agent-animation .event-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-agent-animation .event-row .status {
    align-self: flex-start;
  }

  .hero-agent-animation .timeline-bars {
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-agent-animation *,
  .hero-agent-animation *::before,
  .hero-agent-animation *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .hero-agent-animation .bar,
  .hero-agent-animation .event-row,
  .hero-agent-animation .recon-step,
  .hero-agent-animation .recon-final,
  .hero-agent-animation .policy-group {
    opacity: 1;
    transform: none;
  }

  .hero-agent-animation .processing-line {
    transform: scaleX(1);
  }

  .hero-agent-animation .timeline-sheen {
    display: none;
  }
}

.dashboard-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  margin: 44px 18px 56px;
  padding: 28px;
  border: 1px solid rgba(222, 229, 241, 0.92);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94));
  box-shadow:
    0 26px 56px rgba(34, 53, 86, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.dashboard-head,
.mini-panel-head,
.feature-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-title {
  display: grid;
  gap: 10px;
}

.panel-kicker {
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.dashboard-head h2 {
  margin-top: 0;
  max-width: 8.5ch;
  font-size: clamp(1.65rem, 2.3vw, 2.65rem);
  line-height: 0.98;
}

.dashboard-status {
  display: grid;
  justify-items: end;
  gap: 8px;
  padding-top: 4px;
}

.dashboard-status p {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-pill,
.pricing-label,
.floating-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.status-pill {
  color: var(--blue-dark);
  background: var(--blue-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

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

.mini-panel {
  display: grid;
  gap: 16px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(221, 229, 241, 0.92);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(243, 247, 255, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.mini-panel-head {
  align-items: baseline;
}

.mini-panel-head span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.mini-panel-head strong {
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.bar-chart {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  height: 154px;
  padding: 16px 12px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 248, 255, 0.92));
  border: 1px solid rgba(22, 100, 239, 0.06);
  overflow: hidden;
}

.bar-chart::before {
  content: "";
  position: absolute;
  inset: 10px 12px 34px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      to top,
      rgba(181, 196, 225, 0.32) 0,
      rgba(181, 196, 225, 0.32) 1px,
      transparent 1px,
      transparent 26px
    );
}

.bar-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  align-items: end;
  justify-items: center;
  height: 100%;
}

.bar-column span {
  width: 100%;
  max-width: 46px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, #298eed 0%, #48d2eb 100%);
  height: var(--bar-size);
  box-shadow: 0 12px 24px rgba(41, 142, 237, 0.18);
}

.bar-column small {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-list,
.rule-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.simple-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 1.1fr);
  gap: 16px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(22, 100, 239, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.simple-list li strong,
.floating-card strong {
  letter-spacing: -0.03em;
}

.simple-list li strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.35;
}

.list-copy {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.rule-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(22, 100, 239, 0.04);
}

.rule-name {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.rule-badge,
.activity-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.rule-badge,
.activity-status {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.rule-badge-danger,
.activity-status-danger {
  color: #172033;
  background: rgba(22, 28, 45, 0.1);
}

.rule-badge-muted,
.activity-status-muted {
  color: #5e6c83;
  background: rgba(108, 117, 137, 0.12);
}

.activity-list {
  display: grid;
}

.activity-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(232, 237, 246, 0.92);
}

.activity-row:first-child {
  padding-top: 0;
}

.activity-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.activity-copy {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.activity-copy strong {
  color: var(--ink);
  font-size: 0.87rem;
  letter-spacing: -0.02em;
}

.activity-copy span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: min(230px, 40%);
  display: grid;
  gap: 10px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(223, 229, 241, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(34, 53, 86, 0.12);
}

.floating-card strong {
  display: block;
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.18;
}

.floating-card p {
  line-height: 1.55;
}

.floating-card-top {
  top: 0;
  right: 20px;
}

.floating-card-bottom {
  bottom: 0;
  left: 20px;
}

.floating-label {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.floating-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.floating-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(237, 247, 255, 0.94);
  color: var(--blue-dark);
  font-size: 0.73rem;
  font-weight: 700;
}

.browser-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.browser-shot-image {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.browser-chrome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(232, 237, 246, 0.92);
  background: linear-gradient(180deg, #f6f8fc 0%, #eef3f9 100%);
}

.browser-controls {
  display: flex;
  gap: 6px;
}

.browser-controls span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7deea;
}

.browser-controls span:nth-child(1) {
  background: #ff8c8c;
}

.browser-controls span:nth-child(2) {
  background: #ffd46c;
}

.browser-controls span:nth-child(3) {
  background: #61d48b;
}

.browser-address {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(219, 227, 240, 0.96);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.browser-profile {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(135deg, #f0f5ff 0%, #dbe8ff 100%);
  border: 1px solid rgba(219, 227, 240, 0.92);
}

.browser-toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(232, 237, 246, 0.9);
  background: rgba(255, 255, 255, 0.82);
}

.store-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.store-brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #1664ef 0%, #48d2eb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.browser-search {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius-control);
  background: #f4f7fb;
  border: 1px solid rgba(219, 227, 240, 0.92);
  color: #8a95aa;
  font-size: 0.82rem;
}

.browser-links {
  display: inline-flex;
  gap: 10px;
}

.browser-links span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: var(--radius-control);
  border: 1px solid rgba(219, 227, 240, 0.92);
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.browser-body {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr) 220px;
  min-height: 500px;
}

.store-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px 14px;
  border-right: 1px solid rgba(232, 237, 246, 0.92);
  background: linear-gradient(180deg, rgba(244, 248, 252, 0.98), rgba(239, 245, 251, 0.96));
}

.store-section-label {
  color: #93a0b5;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.store-nav span {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: var(--radius-control);
  color: #5f6c82;
  font-size: 0.82rem;
  font-weight: 700;
}

.store-nav-active {
  background: linear-gradient(135deg, #1664ef 0%, #2f73ef 100%);
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(22, 100, 239, 0.18);
}

.store-mini-panel {
  display: grid;
  gap: 8px;
  padding: 14px 12px;
  border: 1px solid rgba(219, 227, 240, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.store-mini-panel strong {
  color: var(--ink);
  font-size: 0.88rem;
  letter-spacing: -0.02em;
}

.store-mini-panel p {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.store-main {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px 18px 88px;
  background: linear-gradient(180deg, rgba(252, 253, 255, 0.98), rgba(246, 249, 253, 0.98));
}

.store-hero-banner {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top right, rgba(72, 210, 235, 0.18), transparent 34%);
  border: 1px solid rgba(219, 227, 240, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.store-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #3a8ae7;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-hero-banner h2 {
  margin: 0;
  max-width: 14ch;
  color: #18233b;
  font-size: 1.25rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.agent-request {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-control);
  background: rgba(15, 20, 33, 0.92);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(15, 20, 33, 0.22);
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(219, 227, 240, 0.84);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
}

.store-shelf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.store-shelf-head strong {
  color: #18233b;
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

.store-shelf-head span {
  color: #3a8ae7;
  font-size: 0.74rem;
  font-weight: 700;
}

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

.product-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 188px;
  padding: 14px 12px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(219, 227, 240, 0.82);
  box-shadow: 0 12px 22px rgba(35, 57, 96, 0.06);
}

.product-add {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: var(--radius-control);
  background: #18a84b;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.product-art {
  position: relative;
  justify-self: center;
  width: 76px;
  height: 84px;
  margin-top: 20px;
}

.product-art-tube {
  width: 34px;
  border-radius: 12px 12px 18px 18px;
  background: linear-gradient(180deg, #5ec4ff 0%, #2d7be7 100%);
  transform: rotate(8deg);
}

.product-art-tube::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 7px;
  right: 7px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.product-art-balls::before,
.product-art-balls::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #fff3a8 0%, #f0db35 70%);
  box-shadow: 0 8px 18px rgba(240, 219, 53, 0.24);
}

.product-art-balls::before {
  left: 4px;
  top: 26px;
}

.product-art-balls::after {
  right: 4px;
  top: 20px;
}

.product-art-towels::before,
.product-art-towels::after {
  content: "";
  position: absolute;
  border-radius: 16px;
}

.product-art-towels::before {
  inset: 26px 6px 18px 6px;
  background: linear-gradient(135deg, #ffc0d8 0%, #ff8cbc 100%);
  box-shadow:
    -14px 8px 0 -2px #ffdce7,
    14px 6px 0 -2px #bde6ff;
}

.product-art-hat::before,
.product-art-hat::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #121821;
}

.product-art-hat::before {
  top: 22px;
  width: 34px;
  height: 30px;
  border-radius: 18px 18px 10px 10px;
}

.product-art-hat::after {
  top: 46px;
  width: 72px;
  height: 12px;
  border-radius: 999px;
}

.product-card strong {
  color: #18233b;
  font-size: 0.82rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.product-card p {
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.45;
}

.automation-banner {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(13, 16, 24, 0.94);
  box-shadow: 0 16px 30px rgba(13, 16, 24, 0.18);
}

.automation-status {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
}

.automation-actions {
  display: inline-flex;
  gap: 8px;
}

.automation-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.automation-pill-stop {
  background: #ff5f55;
}

.agent-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 16px;
  border-left: 1px solid rgba(232, 237, 246, 0.92);
  background: linear-gradient(180deg, rgba(249, 251, 255, 0.98), rgba(244, 248, 252, 0.96));
}

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

.agent-badge,
.agent-live {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-control);
  font-size: 0.7rem;
  font-weight: 800;
}

.agent-badge {
  background: rgba(237, 247, 255, 0.94);
  color: #1664ef;
}

.agent-live {
  background: rgba(22, 100, 239, 0.1);
  color: #1664ef;
}

.agent-message,
.agent-note {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(219, 227, 240, 0.88);
  background: rgba(255, 255, 255, 0.92);
}

.agent-message strong {
  color: #18233b;
  font-size: 0.9rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.agent-message p,
.agent-step p,
.agent-note span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.55;
}

.agent-checklist {
  display: grid;
  gap: 10px;
}

.agent-step {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.agent-step span {
  margin-top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(22, 100, 239, 0.12);
  border: 1px solid rgba(22, 100, 239, 0.22);
}

.agent-step-done span {
  background: #1664ef;
  border-color: #1664ef;
}

.agent-note strong {
  color: #18233b;
  font-size: 0.8rem;
  line-height: 1.35;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

.info-card,
.feature-card,
.pricing-card,
.operating-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.info-card p,
.feature-card p,
.pricing-copy,
.operating-card p,
.footer-brand p,
.footer-copy {
  color: var(--ink-soft);
}

.info-card-centered {
  justify-items: center;
  text-align: center;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-icon-plain {
  background: transparent;
  border-color: transparent;
}

.card-icon-blue {
  background: var(--blue-soft);
  border-color: rgba(22, 100, 239, 0.12);
}

.card-icon-orange {
  background: var(--orange-soft);
  border-color: rgba(240, 139, 75, 0.16);
}

.card-icon-purple {
  background: var(--cyan-soft);
  border-color: rgba(72, 210, 235, 0.18);
}

.card-icon-green {
  background: var(--green-soft);
  border-color: rgba(75, 173, 123, 0.16);
}

.feature-visual {
  display: grid;
  gap: 10px;
  min-height: 110px;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.feature-visual-bars {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.feature-visual-bars span {
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #298eed 0%, #48d2eb 100%);
}

.feature-visual-bars span:nth-child(1) {
  min-height: 40px;
}

.feature-visual-bars span:nth-child(2) {
  min-height: 84px;
}

.feature-visual-bars span:nth-child(3) {
  min-height: 56px;
}

.feature-visual-bars span:nth-child(4) {
  min-height: 96px;
}

.feature-visual-tags {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
}

.feature-visual-tags span,
.feature-visual-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: var(--radius-control);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-visual-lines span {
  display: block;
  min-height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(41, 142, 237, 0.24), rgba(72, 210, 235, 0.08));
}

.feature-visual-lines span:nth-child(1) {
  width: 88%;
}

.feature-visual-lines span:nth-child(2) {
  width: 70%;
}

.feature-visual-lines span:nth-child(3) {
  width: 58%;
}

.feature-visual-flow {
  grid-template-columns: repeat(3, max-content);
  align-content: center;
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 22px;
  align-items: start;
}

.operating-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  gap: 18px;
}

.step-list {
  display: grid;
  gap: 14px;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.step-item strong {
  display: block;
  font-size: 0.95rem;
}

.step-item p {
  margin-top: 3px;
  font-size: 0.9rem;
}

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

#pricing .final-cta-shell {
  margin-top: 54px;
}

.pricing-card {
  gap: 16px;
}

.pricing-card-trial {
  background: #fff;
}

.pricing-card-paid {
  color: #f7f9ff;
  background: linear-gradient(180deg, #1d2440 0%, #232d4c 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.pricing-card-paid .pricing-copy,
.pricing-card-paid li,
.pricing-card-paid .price-meta {
  color: rgba(247, 249, 255, 0.75);
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 16px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.8;
}

.pricing-label {
  justify-self: start;
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.pricing-card-paid .pricing-label:not(.pricing-label-heading) {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.pricing-label-heading {
  justify-self: center;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
}

.price {
  display: grid;
  gap: 6px;
}

.price-value {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.price-meta {
  color: var(--ink-soft);
  font-weight: 600;
}

.credibility-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  justify-items: center;
}

.credibility-copy {
  display: grid;
  width: 100%;
  max-width: 980px;
  justify-items: center;
  text-align: center;
  gap: 16px;
}

.credibility-copy h2 {
  width: 100%;
}

.credibility-copy p:last-child {
  width: 100%;
  max-width: none;
  color: var(--ink-soft);
}

.credibility-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 980px;
}

.credibility-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 28px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.credibility-link-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 38px rgba(39, 57, 92, 0.08);
}

.credibility-link-card img {
  max-width: 100%;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.dark-factory-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 600px at 88% 12%, rgba(72, 210, 235, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 800px 600px at 12% 88%, rgba(22, 100, 239, 0.16) 0%, transparent 60%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0),
    linear-gradient(180deg, #1d2440 0%, #232d4c 100%);
  background-size: auto, auto, 26px 26px, auto;
  color: #f7f9ff;
}

.dark-factory-section .container {
  position: relative;
  z-index: 1;
}

.dark-factory-section .section-heading {
  margin-bottom: 40px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.dark-factory-section .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.dark-factory-section .section-heading h2 {
  color: #fff;
}

.dark-factory-section .section-heading p,
.dark-factory-section .info-card p {
  color: rgba(247, 249, 255, 0.78);
}

.dark-factory-section .section-heading p {
  width: min(100%, 900px);
  max-width: none;
}

.dark-factory-section .info-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(10, 16, 36, 0.32);
}

.dark-factory-section .info-card h3 {
  color: #fff;
}

.final-cta-section {
  padding-top: 74px;
}

.final-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 22px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1664ef 0%, #298eed 54%, #48d2eb 100%);
  box-shadow: 0 20px 48px rgba(22, 100, 239, 0.2);
}

.final-cta-copy {
  display: grid;
  gap: 16px;
  color: #fff;
}

.final-cta-copy .eyebrow,
.final-cta-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-preview {
  display: flex;
  justify-content: end;
}

.cta-preview-panel {
  width: min(100%, 270px);
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cta-preview-row span {
  font-size: 0.86rem;
}

.site-footer {
  padding: 30px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
}

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

.footer-brand img {
  width: 172px;
}

.footer-brand p {
  max-width: 34ch;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.footer-link-button:hover {
  color: var(--ink);
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(232, 239, 250, 0.44);
  backdrop-filter: blur(8px);
}

.contact-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  display: grid;
  gap: 24px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(190, 207, 232, 0.82);
  box-shadow: 0 30px 80px rgba(28, 48, 88, 0.18);
}

.contact-modal-copy {
  display: grid;
  gap: 12px;
}

.contact-modal-copy h2 {
  font-size: clamp(2rem, 2.6vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.contact-modal-copy p:last-child {
  max-width: 58ch;
  color: var(--ink-soft);
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(190, 207, 232, 0.82);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field-label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.field-control {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(201, 213, 233, 0.92);
  border-radius: var(--radius-control);
  background: rgba(246, 249, 254, 0.88);
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field-control::placeholder {
  color: #7d8aa5;
}

.field-control:focus {
  outline: none;
  border-color: rgba(41, 142, 237, 0.52);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(41, 142, 237, 0.12);
}

.field-control-textarea {
  min-height: 148px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.contact-captcha-shell {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 78px;
}

.contact-captcha-shell .g-recaptcha {
  /* Let the reCAPTCHA widget render its own frame (304x78). */
  transform-origin: 0 0;
}

@media (max-width: 360px) {
  /* Slightly scale down on very narrow viewports so it never overflows. */
  .contact-captcha-shell .g-recaptcha {
    transform: scale(0.95);
  }
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-form-actions .button-primary {
  width: 252px;
  min-width: 252px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-control);
  border-color: transparent;
  background: linear-gradient(90deg, #2f73f5 0%, #367cf3 62%, #3ea7e4 100%);
  box-shadow: 0 5px 12px rgba(72, 100, 154, 0.13);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-form-actions .button-primary:hover {
  transform: none;
  box-shadow: 0 5px 12px rgba(72, 100, 154, 0.13);
}

.contact-form-status {
  min-height: 1.5em;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-form-status.is-success {
  color: #178245;
}

.contact-form-status.is-error {
  color: #bf3354;
}

.contact-form-status.is-pending {
  color: var(--blue-dark);
}

.legal-page .site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.86);
}

.legal-main {
  padding-bottom: 36px;
}

.legal-hero {
  padding-bottom: 46px;
}

.legal-heading {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.legal-heading h1 {
  width: 100%;
  max-width: none;
  font-size: clamp(2.25rem, 4.55vw, 3.85rem);
  line-height: 1.02;
  text-align: center;
}

.legal-shell-section {
  padding-top: 0;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.legal-nav-shell,
.legal-content {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 226, 241, 0.92);
  box-shadow: var(--shadow-soft);
}

.legal-nav-shell {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 22px;
}

.legal-nav-header {
  display: grid;
  gap: 0;
}

.legal-tabs {
  display: grid;
  gap: 8px;
}

.legal-tab {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.legal-tab:hover {
  color: var(--ink);
  background: rgba(245, 248, 253, 0.88);
  border-color: rgba(219, 227, 240, 0.8);
}

.legal-tab.is-active {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.98) 0%, rgba(237, 244, 255, 0.98) 100%);
  border-color: rgba(41, 142, 237, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.legal-content {
  min-height: 620px;
}

.legal-panel {
  display: grid;
  gap: 26px;
}

.legal-panel[hidden] {
  display: none;
}

.legal-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.legal-panel-header .button-secondary {
  flex: 0 0 auto;
  border-color: var(--line);
  box-shadow: none;
}

.legal-panel-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.04;
}

.legal-meta {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.legal-rich-text {
  display: grid;
  gap: 18px;
}

.legal-section {
  display: grid;
  gap: 14px;
}

.legal-rich-text h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.legal-rich-text h4 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.legal-rich-text p {
  max-width: none;
  color: var(--ink-soft);
}

.legal-rich-text p:first-child {
  color: var(--ink);
}

.legal-callout {
  padding: 18px 20px;
  border: 1px solid rgba(41, 142, 237, 0.16);
  border-left: 4px solid rgba(22, 100, 239, 0.72);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.92) 0%, rgba(249, 252, 255, 0.96) 100%);
  color: var(--ink);
}

.legal-bullet,
.legal-alpha {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink-soft);
}

.legal-alpha {
  list-style-type: lower-alpha;
}

.legal-bullet li,
.legal-alpha li {
  line-height: 1.68;
}

.legal-signoff {
  display: grid;
  gap: 4px;
  color: var(--ink);
}

.legal-signoff a {
  color: var(--blue-dark);
}

.legal-table-scroll {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.45;
  min-width: 720px;
}

.legal-table th,
.legal-table td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.legal-table thead th {
  position: sticky;
  top: 0;
  background: rgba(245, 247, 253, 0.94);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.legal-table tbody tr:last-child td {
  border-bottom: none;
}

.legal-table tbody tr:hover {
  background: rgba(22, 100, 239, 0.03);
}

.legal-table td strong {
  font-weight: 600;
  word-break: break-word;
}

.legal-table a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .benefit-layout,
  .credibility-shell,
  .final-cta-shell,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .operating-card {
    min-height: auto;
    position: relative;
    top: auto;
  }

  .hero-visual::before {
    inset: 8px 0 16px;
  }

  .browser-body {
    grid-template-columns: 110px minmax(0, 1fr) 210px;
  }

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

  .legal-nav-shell {
    position: static;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 24px, 1120px);
    --header-height: 72px;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 42px;
  }

  .site-nav {
    gap: 24px;
    font-size: 0.95rem;
  }

  .site-nav a {
    padding: 6px 0;
  }


  .card-grid-three,
  .card-grid-two,
  .pricing-grid,
  .dashboard-grid,
  .credibility-stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-nav-shell,
  .legal-content {
    padding: 22px 18px;
  }

  .legal-panel-header {
    flex-direction: column;
    align-items: start;
  }

  .legal-heading h1 {
    width: 100%;
  }

  .legal-tab {
    min-height: 48px;
    padding: 12px 14px;
  }

  .contact-modal {
    padding: 18px;
  }

  .contact-modal-panel {
    padding: 24px 20px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form-actions .button-primary {
    width: 100%;
    min-width: 0;
  }

  .footer-brand img {
    width: 160px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-title h1 {
    white-space: normal;
  }

  .hero-visual {
    min-height: 0;
    padding: 18px 0 24px;
  }

  .hero-visual::before {
    inset: 0;
    border-radius: 28px;
  }

  .browser-mockup {
    padding: 14px;
    border-radius: 28px;
  }

  .browser-shot-image {
    border-radius: 18px;
  }

  .browser-toolbar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .browser-links {
    display: none;
  }

  .browser-body {
    grid-template-columns: minmax(0, 1fr) 214px;
  }

  .store-sidebar {
    display: none;
  }

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

  .store-main {
    padding-bottom: 82px;
  }

  .proof-row {
    justify-content: start;
  }

  .cta-preview {
    justify-content: start;
  }

  .feature-steps {
    gap: 32px;
    margin-top: 46px;
  }

  #features .section-cta {
    margin-top: 42px;
  }

  #benefits .benefits-media {
    margin-top: 44px;
  }

  #benefits .section-cta {
    margin-top: 34px;
  }

  #try-it .section-cta {
    margin-top: 34px;
  }

  .try-it-section {
    padding-bottom: 24px;
  }

  .feature-step-left {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .feature-step-right {
    grid-template-columns: minmax(0, 1fr) 96px;
  }

  .feature-step-right .feature-step-copy {
    justify-self: start;
    text-align: left;
    max-width: 100%;
  }

  .feature-step-right .feature-step-copy p {
    margin-left: 0;
    margin-right: 0;
  }

  .feature-step-icon {
    width: 96px;
    height: 96px;
  }

  .feature-step-icon img {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 560px) {
  h1 {
    max-width: none;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .button-primary {
    min-width: 0;
  }

  .browser-chrome {
    grid-template-columns: auto 1fr;
  }

  .browser-profile {
    display: none;
  }

  .browser-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .browser-body {
    grid-template-columns: 1fr;
  }

  .agent-sidebar {
    border-left: 0;
    border-top: 1px solid rgba(232, 237, 246, 0.92);
  }

  .store-main {
    padding: 16px 16px 18px;
  }

  .store-hero-banner h2 {
    max-width: none;
    font-size: 1.08rem;
  }

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

  .automation-banner {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 2px;
    flex-direction: column;
    align-items: start;
  }

  .proof-row {
    gap: 8px;
  }

  .feature-steps {
    gap: 28px;
    margin-top: 38px;
  }

  #features .section-cta {
    margin-top: 34px;
  }

  #benefits .benefits-media {
    margin-top: 36px;
  }

  #benefits .section-cta {
    margin-top: 28px;
  }

  #try-it .section-cta {
    margin-top: 28px;
  }

  .feature-step-left,
  .feature-step-right {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-step,
  .feature-step-right .feature-step-copy {
    justify-items: center;
    text-align: center;
  }

  .feature-step-copy {
    max-width: 100%;
  }

  .feature-step-copy p,
  .feature-step-right .feature-step-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta-shell,
  .dashboard-card,
  .info-card,
  .feature-card,
  .pricing-card,
  .operating-card {
    padding: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ----------------------------------------------------------------
   #try-it section: live demo of Guardo blocking an AI agent
---------------------------------------------------------------- */
.try-it-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
  padding-bottom: 28px;
}

.try-it-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(72, 210, 235, 0.18) 0%,
    rgba(72, 210, 235, 0) 70%
  );
  pointer-events: none;
}

.try-it-section .container {
  position: relative;
  z-index: 1;
}

/* Match the explainer-paragraph width of the #benefits section above. */
#try-it .section-heading {
  max-width: 900px;
}

#try-it .section-heading p {
  width: min(100%, 900px);
  max-width: none;
}

.try-it-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.try-it-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 28px 28px 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.try-it-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1664ef 0%, #298eed 52%, #48d2eb 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(22, 100, 239, 0.22);
}

.try-it-step-body h3 {
  font-size: 1.2rem;
  margin: 0 0 6px;
  color: var(--ink);
}

.try-it-step-body p {
  color: var(--ink-soft);
  margin: 0 0 14px;
  line-height: 1.55;
}

.try-it-step-body p:last-child {
  margin-bottom: 0;
}

/* Agent picker cards */
.try-it-agents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.try-it-agent {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  column-gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  text-decoration: none;
  color: var(--ink);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.try-it-agent:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(22, 100, 239, 0.1);
}

.try-it-agent-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 4px 12px rgba(22, 28, 45, 0.08);
}

.try-it-agent-name {
  grid-column: 2;
  grid-row: 1;
  font-weight: 700;
  font-size: 1rem;
}

.try-it-agent-meta {
  grid-column: 2;
  grid-row: 2;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.try-it-agent-arrow {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 1.2rem;
  color: var(--blue-dark);
}

@media (max-width: 720px) {
  .try-it-agent {
    grid-template-columns: 48px 1fr auto;
    column-gap: 12px;
  }

  .try-it-agent-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
}

/* Code-style prompt block */
.try-it-prompt {
  position: relative;
  margin-top: 14px;
  border-radius: var(--radius-md);
  background: #0f1626;
  color: #e7eefb;
  border: 1px solid #1c2742;
  overflow: hidden;
}

.try-it-prompt-code {
  margin: 0;
  padding: 22px 132px 22px 22px;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  color: #e7eefb;
  background: transparent;
}

.try-it-prompt-copy {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.08);
  color: #e7eefb;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.try-it-prompt-copy:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
}

.try-it-prompt-copy.is-copied {
  background: rgba(72, 210, 235, 0.18);
  border-color: rgba(72, 210, 235, 0.6);
  color: #d1f5ff;
}

.try-it-manual-cta {
  margin-top: 16px;
  display: inline-flex;
  text-decoration: none;
}

#try-it .section-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

#try-it .section-cta .button-primary {
  width: 252px;
  min-width: 252px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-control);
  border-color: transparent;
  background: linear-gradient(90deg, #2f73f5 0%, #367cf3 62%, #3ea7e4 100%);
  box-shadow: 0 5px 12px rgba(72, 100, 154, 0.13);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

#try-it .section-cta .button-primary:hover {
  transform: none;
  box-shadow: 0 5px 12px rgba(72, 100, 154, 0.13);
}

@media (max-width: 720px) {
  .try-it-step {
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 22px 20px;
  }

  .try-it-step-num {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .try-it-agents {
    grid-template-columns: 1fr;
  }

  .try-it-prompt-code {
    padding: 56px 18px 18px 18px;
  }

  .try-it-prompt-copy {
    top: 12px;
    right: 12px;
  }
}
