@font-face {
  font-family: "Circular Air";
  src: url("font/CircularAir-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-ink: #1c2230;
  --color-ink-soft: rgba(28, 34, 48, 0.72);
  --color-paper: #f4f5f8;
  --color-panel: #ffffff;
  --color-line: rgba(39, 45, 71, 0.12);
  --color-brand: #a73cff;
  --color-brand-deep: #40206d;
  --color-navy: #15243f;
  --color-blue-deep: #203b73;
  --color-mist: rgba(167, 60, 255, 0.08);
  --color-green: #1f9b5d;
  --shadow-soft: 0 20px 60px rgba(25, 33, 52, 0.08);
  --shadow-card: 0 12px 32px rgba(23, 30, 48, 0.06);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: 1180px;
  --font-display: "Circular Air", system-ui, sans-serif;
  --font-text: "Circular Air", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--color-ink);
  background:
    radial-gradient(circle at top, rgba(167, 60, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #f5f6fa 0%, #eef1f6 100%);
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

.skip-link,
.sr-only {
  position: absolute;
}

.skip-link {
  left: 20px;
  top: -56px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-brand);
  color: white;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-shell {
  overflow: clip;
}

.print-hero-logo {
  width: min(320px, 72vw);
  margin-bottom: 8px;
  filter: brightness(0) saturate(100%);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  width: min(100%, var(--content-width));
  margin: 0 auto 28px;
  padding: 14px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(39, 45, 71, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(23, 30, 48, 0.08);
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease;
}

@media (min-width: 768px) {
  .site-header {
    position: fixed;
    top: 14px;
    left: 50%;
    width: min(100% - 40px, var(--content-width));
    margin: 0;
    transform: translateX(-50%);
  }

  .hero {
    padding-top: 124px;
  }

  [data-page-type="site_section"] .hero {
    padding-top: 124px;
  }

  .print-page .hero {
    padding-top: 56px;
  }
}

.site-header-brand {
  display: inline-flex;
  align-items: center;
}

.site-header-logo {
  width: 122px;
  filter: brightness(0) saturate(100%);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(39, 45, 71, 0.12);
  border-radius: 999px;
  background: rgba(39, 45, 71, 0.04);
}

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

.site-menu-toggle span:nth-child(1) {
  top: 13px;
}

.site-menu-toggle span:nth-child(2) {
  top: 20px;
}

.site-menu-toggle span:nth-child(3) {
  top: 27px;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.site-nav-link,
.site-nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--color-ink);
  font-size: 0.95rem;
  background: transparent;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.site-nav-link:hover,
.site-nav-dropdown summary:hover,
.site-nav-dropdown[open] summary {
  background: rgba(167, 60, 255, 0.08);
  color: var(--color-brand-deep);
}

.site-nav-dropdown {
  position: relative;
}

.site-nav-dropdown summary {
  list-style: none;
  cursor: pointer;
}

.site-nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.site-nav-dropdown summary::after {
  content: "+";
  margin-left: 8px;
  font-size: 0.92rem;
}

.site-nav-dropdown[open] summary::after {
  content: "-";
}

.site-subnav {
  display: grid;
  gap: 8px;
  min-width: 210px;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(39, 45, 71, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.site-subnav a {
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--color-ink-soft);
}

.site-subnav a:hover {
  background: rgba(167, 60, 255, 0.08);
  color: var(--color-brand-deep);
}

.section {
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding: 80px 0;
}

.promo-cta-section {
  padding-top: 28px;
  padding-bottom: 20px;
}

.promo-cta-band {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 34px 22px;
  border-radius: 28px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at left center, rgba(167, 60, 255, 0.26), transparent 28%),
    linear-gradient(135deg, #1c2230 0%, #111722 100%);
  box-shadow: 0 20px 46px rgba(23, 30, 48, 0.12);
}

.promo-cta-copy {
  width: 100%;
  max-width: none;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 5vw, 2.1rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.promo-cta-subtitle {
  width: 100%;
  max-width: 52rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.promo-cta-button {
  min-width: 220px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 32px 20px 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 243, 248, 0.96)),
    var(--color-paper);
}

[data-page-type="site_section"] .hero {
  min-height: auto;
  padding-bottom: 48px;
}

[data-page-type="site_section"] .hero-inner {
  min-height: auto;
}

[data-page-type="site_home"] .hero {
  min-height: 100vh;
  min-height: 100dvh;
}

[data-page-type="site_home"] .hero-inner {
  min-height: calc(100vh - 152px);
  min-height: calc(100dvh - 152px);
  align-content: center;
}

.hero-noise,
.hero-grid,
.hero-shape {
  position: absolute;
  pointer-events: none;
}

.hero-noise {
  inset: 0;
  background-image:
    radial-gradient(rgba(32, 59, 115, 0.05) 0.7px, transparent 0.7px),
    radial-gradient(rgba(167, 60, 255, 0.05) 0.7px, transparent 0.7px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  opacity: 0.38;
}

.hero-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(32, 59, 115, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 59, 115, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
}

.hero-shape {
  border-radius: 999px;
  filter: blur(0);
}

.hero-shape-a {
  top: 10%;
  right: -120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(167, 60, 255, 0.18), transparent 70%);
}

.hero-shape-b {
  bottom: 14%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(21, 36, 63, 0.12), transparent 70%);
}

.hero-shape-c {
  top: 18%;
  left: 36%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(167, 60, 255, 0.12);
  transform: rotate(42deg);
  background: rgba(255, 255, 255, 0.22);
}

.hero-inner {
  position: relative;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  display: grid;
  gap: 40px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  justify-items: center;
  width: min(100%, 72rem);
  max-width: 72rem;
  margin: 0 auto;
}

.hero-brand {
  width: min(220px, 54vw);
  margin-bottom: 24px;
  filter: brightness(0) saturate(100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-brand-deep);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-eyebrow {
  color: var(--color-brand);
}

.text-highlight,
.text-highlight-secondary {
  display: inline-block;
  font-weight: inherit;
}

.text-highlight {
  color: var(--color-brand);
}

.text-highlight-secondary {
  color: var(--color-blue-deep);
}

h1,
h2,
h3,
summary {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: normal;
}

h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 8.8vw, 7.2rem);
  line-height: 0.92;
  margin-bottom: 16px;
  margin-top: 16px;
}

[data-page-type="site_home"] .hero h1 {
  font-size: clamp(3rem, min(7vw, 10.4dvh), 6.8rem);
}

[data-page-type="site_section"] .hero:not(.agent-hero) h1 {
  font-size: clamp(2.55rem, min(5.6vw, 7.8dvh), 5rem);
}

h2 {
  font-size: clamp(2.2rem, 5.8vw, 4rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.24rem, 3vw, 1.9rem);
  line-height: 1.04;
}

.hero-summary,
.section-intro,
.channel-card p,
.agent-copy p,
.founder-card p,
.faq-item p,
.footer-tagline,
.footer-legal,
.bullet-list li,
.gallery-head p,
.integration-main h3 {
  color: var(--color-ink-soft);
  line-height: 1.62;
}

.hero-summary {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(1.18rem, 2.1vw, 1.42rem);
}

[data-page-type="site_home"] .hero-summary {
  font-size: clamp(1.08rem, min(1.7vw, 2.45dvh), 1.34rem);
}

[data-page-type="site_section"] .hero:not(.agent-hero) .hero-summary {
  font-size: clamp(1rem, min(1.45vw, 2.05dvh), 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.contact-actions {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 300;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-blue-deep) 100%);
  box-shadow: 0 14px 34px rgba(64, 32, 109, 0.18);
}

.button-secondary {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(39, 45, 71, 0.12);
}

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

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

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

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 23, 34, 0.56);
  backdrop-filter: blur(8px);
}

.contact-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 32px);
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(39, 45, 71, 0.08);
  color: var(--color-ink);
  font-size: 1.8rem;
  line-height: 1;
}

.contact-modal-form-panel {
  position: relative;
  z-index: 1;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 22px 18px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-ink);
  box-shadow: 0 22px 64px rgba(17, 23, 34, 0.2);
}

.contact-modal-form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(167, 60, 255, 0.52), rgba(32, 59, 115, 0.14));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

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

.form-panel-head p,
.step-head h3,
.success-box p {
  margin: 0;
}

.form-panel-head p:last-child {
  color: var(--color-ink-soft);
  line-height: 1.45;
}

.panel-kicker {
  margin: 0;
  color: var(--color-brand);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-form,
.form-step {
  display: grid;
  gap: 14px;
}

.lead-form {
  margin-top: 18px;
}

.form-step {
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.form-step:not(.is-active) {
  display: none;
}

.is-hidden {
  display: none !important;
}

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

.field-group label,
.checkbox-row span {
  font-size: 0.95rem;
  font-weight: 300;
}

.field-group input,
.field-group textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(39, 45, 71, 0.12);
  border-radius: 16px;
  background: rgba(39, 45, 71, 0.02);
  color: var(--color-ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: rgba(28, 34, 48, 0.42);
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(167, 60, 255, 0.44);
  box-shadow: 0 0 0 4px rgba(167, 60, 255, 0.12);
  background: white;
}

.checkbox-row {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 4px 0;
  color: var(--color-ink-soft);
}

.checkbox-row input {
  flex: 0 0 auto;
  margin-top: 3px;
}

.field-feedback {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 300;
  color: #c32f5b;
}

.step-head {
  display: grid;
  gap: 4px;
  margin-bottom: 4px;
}

.step-head h3 {
  font-family: var(--font-text);
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: normal;
}

.crm-options {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.crm-options.is-hidden {
  display: none;
}

.choice-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(39, 45, 71, 0.12);
  border-radius: 16px;
  background: rgba(39, 45, 71, 0.02);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(167, 60, 255, 0.32);
}

.choice-card input {
  margin: 0;
}

.choice-card:has(input:checked) {
  border-color: rgba(167, 60, 255, 0.48);
  background: rgba(167, 60, 255, 0.08);
}

.conditional-field.is-hidden,
.success-box.is-hidden {
  display: none;
}

.step-actions {
  display: grid;
  gap: 10px;
}

.success-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(167, 60, 255, 0.08), rgba(32, 59, 115, 0.08)),
    white;
  border: 1px solid rgba(167, 60, 255, 0.2);
}

.success-box h3 {
  margin-top: 4px;
}

.success-box p:last-child {
  margin-top: 8px;
  line-height: 1.45;
  color: var(--color-ink-soft);
}

.hero-panel {
  position: relative;
}

.hero-panel-home {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-panel-home-image {
  width: auto;
  max-width: min(100%, 420px);
  max-height: 440px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(23, 30, 48, 0.12));
}

.hero-panel-frame {
  position: relative;
  min-height: 420px;
  padding: 28px;
  border-radius: 36px;
  border: 1px solid rgba(39, 45, 71, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(245, 246, 250, 0.96)),
    var(--color-panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-panel-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 320px;
  padding-top: 28px;
}

.hero-panel-mockup {
  width: auto;
  max-width: 100%;
  max-height: 360px;
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(23, 30, 48, 0.12);
}

.hero-panel-frame::before,
.hero-panel-frame::after {
  content: "";
  position: absolute;
  border-radius: 28px;
}

.hero-panel-frame::before {
  inset: 18px auto auto 18px;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(32, 59, 115, 0.14);
}

.hero-panel-frame::after {
  right: 20px;
  bottom: 20px;
  width: 128px;
  height: 128px;
  background: radial-gradient(circle, rgba(167, 60, 255, 0.12), transparent 68%);
}

.hero-panel-kicker {
  margin: 0;
  color: var(--color-brand);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.hero-panel-list span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(39, 45, 71, 0.1);
  color: var(--color-ink);
}

.hero-panel-diagram {
  position: absolute;
  inset: auto 22px 22px 22px;
  min-height: 190px;
}

.hero-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(39, 45, 71, 0.14);
  background: white;
  box-shadow: var(--shadow-card);
  color: var(--color-ink);
}

.hero-node-core {
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(167, 60, 255, 0.16), rgba(32, 59, 115, 0.14));
}

.hero-node-a {
  left: 0;
  bottom: 18px;
}

.hero-node-b {
  right: 0;
  top: 22px;
}

.hero-node-c {
  right: 12%;
  bottom: 0;
}

.hero-node::before {
  content: "";
  position: absolute;
  inset: auto;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 58rem;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.layers-shell,
.sales-split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.layers-shell {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(39, 45, 71, 0.1);
  box-shadow: var(--shadow-card);
}

.layers-visual,
.sales-visual {
  display: flex;
  justify-content: center;
}

.layers-visual {
  border-radius: 26px;
  background: white;
}

.layers-visual img,
.sales-visual img {
  width: min(100%, 520px);
  height: auto;
}

.sales-visual-mockup {
  width: auto;
  max-width: min(100%, 340px);
  max-height: 560px;
  object-fit: contain;
}

.layers-copy,
.sales-copy {
  display: grid;
  gap: 18px;
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 24px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 0 6px rgba(167, 60, 255, 0.12);
}

.agents-grid,
.channel-grid,
.founders-grid,
.integration-list {
  display: grid;
  gap: 18px;
}

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

.agent-card {
  --agent-accent: var(--color-brand);
  --agent-accent-rgb: 167, 60, 255;
  --agent-accent-strong: var(--color-blue-deep);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-height: 100%;
  align-content: start;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(39, 45, 71, 0.12);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.agent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(var(--agent-accent-rgb), 0.14);
  pointer-events: none;
}

.agent-card::after {
  content: "";
  position: absolute;
  inset: -80px auto auto -48px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(var(--agent-accent-rgb), 0.18), transparent 68%);
  pointer-events: none;
}

.agent-card-active {
  background:
    linear-gradient(180deg, rgba(var(--agent-accent-rgb), 0.1), rgba(255, 255, 255, 0.94)),
    white;
}

.agent-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 128px;
  height: 128px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 30%, rgba(var(--agent-accent-rgb), 0.28), rgba(var(--agent-accent-rgb), 0.08) 58%, rgba(255, 255, 255, 0.92) 100%);
  color: var(--color-brand-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 40px rgba(var(--agent-accent-rgb), 0.18);
}

.agent-icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(var(--agent-accent-rgb), 0.12);
}

.agent-icon img {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(var(--agent-accent-rgb), 0.2));
}

.agent-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  position: relative;
  z-index: 1;
}

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

.agent-copy h3 {
  font-size: 1.3rem;
  color: var(--agent-accent-strong);
}

.agent-copy h4 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.05rem;
  line-height: 1.32;
}

.hero-list {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-ink-soft);
  line-height: 1.5;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--agent-accent);
  box-shadow: 0 0 0 6px rgba(var(--agent-accent-rgb), 0.12);
}

.agent-badge,
.integration-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.agent-badge {
  position: relative;
  z-index: 1;
  justify-self: center;
  color: var(--agent-accent-strong);
  background: rgba(var(--agent-accent-rgb), 0.12);
  border: 1px solid rgba(var(--agent-accent-rgb), 0.14);
}

.agent-badge-active {
  color: var(--color-green);
  background: rgba(31, 155, 93, 0.12);
}

.agent-card-cta {
  justify-self: center;
  margin-top: auto;
  background: linear-gradient(135deg, var(--agent-accent) 0%, var(--agent-accent-strong) 100%);
  box-shadow: 0 18px 36px rgba(var(--agent-accent-rgb), 0.22);
}

.agent-card-vendas {
  --agent-accent: #ff4fa3;
  --agent-accent-rgb: 255, 79, 163;
  --agent-accent-strong: #bb1f69;
}

.agent-card-rh {
  --agent-accent: #4fc8ff;
  --agent-accent-rgb: 79, 200, 255;
  --agent-accent-strong: #1274b0;
}

.agent-card-financeiro {
  --agent-accent: #9157ff;
  --agent-accent-rgb: 145, 87, 255;
  --agent-accent-strong: #5730b6;
}

.agent-card-operacoes {
  --agent-accent: #39c97c;
  --agent-accent-rgb: 57, 201, 124;
  --agent-accent-strong: #16824a;
}

.agent-card-marketing {
  --agent-accent: #ff9b38;
  --agent-accent-rgb: 255, 155, 56;
  --agent-accent-strong: #bf6200;
}

.agent-card-executivo {
  --agent-accent: #2d63ff;
  --agent-accent-rgb: 45, 99, 255;
  --agent-accent-strong: #1739af;
}

.sales-section {
  position: relative;
  width: 100%;
  margin-top: 18px;
  padding: 108px 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 163, 0.16), transparent 20%),
    radial-gradient(circle at 86% 22%, rgba(61, 213, 255, 0.12), transparent 18%),
    linear-gradient(145deg, #111523 0%, #171b2f 48%, #101624 100%);
  overflow: hidden;
}

.sales-shell {
  position: relative;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  display: grid;
  gap: 30px;
  overflow: visible;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  isolation: isolate;
}

.sales-shell::before,
.sales-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.sales-shell::before {
  inset: auto auto -110px -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 79, 163, 0.12), transparent 70%);
}

.sales-shell::after {
  inset: -140px -90px auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(61, 213, 255, 0.1), transparent 72%);
}

.sales-actions {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin-top: 2px;
}

.sales-section-head {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.sales-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}

.sales-section-badge img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(255, 79, 163, 0.22));
}

.sales-section-heading-text {
  display: grid;
  gap: 4px;
}

.sales-section-heading-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-section-heading-text h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.05;
}

.sales-eyebrow {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.sales-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: none;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 50px rgba(7, 10, 20, 0.22);
  backdrop-filter: blur(18px);
}

.sales-copy h2 {
  color: white;
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  line-height: 0.92;
  max-width: 11ch;
}

.sales-lead {
  max-width: 50rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  line-height: 1.6;
}

.sales-feature-list {
  display: grid;
  gap: 16px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sales-feature-list li {
  position: relative;
  padding: 0 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.sales-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4fa3;
  box-shadow: 0 0 0 6px rgba(255, 79, 163, 0.14);
}

.sales-carousel {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.sales-cta {
  background: linear-gradient(135deg, #ff4fa3 0%, #815cff 100%);
  box-shadow: 0 20px 42px rgba(255, 79, 163, 0.22);
}

.channel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 28px;
  margin-top: 40px;
}

.channel-card {
  display: grid;
  gap: 14px;
  justify-items: center;
  align-content: start;
  max-width: 220px;
  padding: 0;
  text-align: center;
}

.channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(167, 60, 255, 0.08);
  color: var(--color-brand-deep);
}

.channel-icon svg {
  width: 28px;
  height: 28px;
}

.gallery-block,
.platforms-block,
.pricing-card,
.contact-panel,
.founder-card,
.faq-item {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(39, 45, 71, 0.1);
  box-shadow: var(--shadow-card);
}

.gallery-block,
.platforms-block {
  margin-top: 22px;
  padding: 28px;
}

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

.pricing-card {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.pricing-card-featured {
  background:
    linear-gradient(180deg, rgba(167, 60, 255, 0.08), rgba(255, 255, 255, 0.92)),
    white;
}

.pricing-kicker {
  margin: 0;
  color: var(--color-brand);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-value {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 1rem;
}

.gallery-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.simulator-carousel-shell {
  display: grid;
  gap: 18px;
}

.simulator-carousel-stack {
  display: grid;
  gap: 18px;
}

.simulator-carousel-head {
  display: flex;
  justify-content: center;
}

.simulator-carousel-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.simulator-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(39, 45, 71, 0.12);
  border-radius: 999px;
  background: white;
  color: var(--color-ink);
  font-size: 1.1rem;
  box-shadow: var(--shadow-card);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease;
}

.sales-shell .simulator-carousel-button {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.94);
}

.sales-platforms-block {
  position: relative;
  z-index: 1;
  margin-top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.07));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 50px rgba(7, 10, 20, 0.2);
  backdrop-filter: blur(18px);
}

.sales-platforms-block .section-heading {
  margin-bottom: 24px;
}

.sales-platforms-block h3 {
  color: white;
}

.sales-platforms-block .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.sales-platforms-block .integration-main h3 {
  color: rgba(255, 255, 255, 0.84);
}

.simulator-carousel-button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(167, 60, 255, 0.28);
}

.simulator-carousel-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.simulator-carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simulator-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.simulator-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(86%, 86%);
  gap: 18px;
}

.simulator-carousel-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(39, 45, 71, 0.1);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
}

.simulator-carousel-card-head {
  display: grid;
  gap: 10px;
}

.simulator-carousel-card-head p {
  margin: 0;
  color: var(--color-ink-soft);
  line-height: 1.58;
}

.simulator-carousel-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.integration-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.integration-row {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.integration-main h3 {
  font-size: 0.98rem;
  line-height: 1.25;
}

.integration-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 148px);
  aspect-ratio: 1 / 1;
  padding: 18px;
  border-radius: 22px;
  background: white;
  border: 1px solid rgba(39, 45, 71, 0.08);
  box-shadow: 0 10px 28px rgba(23, 30, 48, 0.05);
}

.integration-logo-image {
  display: block;
  width: 100px;
  max-width: 100%;
  height: 42px;
  object-fit: contain;
  object-position: center;
}

.integration-logo-generic-card {
  background:
    linear-gradient(180deg, rgba(167, 60, 255, 0.06), rgba(32, 59, 115, 0.04)),
    white;
}

.integration-logo-generic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-deep);
}

.integration-logo-generic-icon svg {
  width: 42px;
  height: 42px;
}

.integration-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.integration-badge-active {
  background: #dff7e8;
  color: #0d7a43;
}

.integration-badge-upcoming {
  background: rgba(39, 45, 71, 0.1);
  color: var(--color-brand-deep);
}

.integration-badge-contact {
  background: rgba(167, 60, 255, 0.12);
  color: var(--color-brand);
}

.page-grid,
.page-grid-two,
.page-grid-three {
  display: grid;
  gap: 18px;
}

.page-card,
.page-link-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(39, 45, 71, 0.1);
  box-shadow: var(--shadow-card);
}

.page-card p,
.page-link-card p {
  margin: 0;
  color: var(--color-ink-soft);
  line-height: 1.62;
}

.page-link-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.page-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 60, 255, 0.18);
  box-shadow: 0 18px 36px rgba(23, 30, 48, 0.09);
}

.page-link-card h3,
.page-card h3 {
  font-size: 1.22rem;
}

.agent-page {
  --page-accent: var(--color-brand);
  --page-accent-rgb: 167, 60, 255;
  --page-accent-strong: var(--color-brand-deep);
}

.agent-page-vendas {
  --page-accent: #ff4fa3;
  --page-accent-rgb: 255, 79, 163;
  --page-accent-strong: #bb1f69;
}

.agent-page-rh {
  --page-accent: #4fc8ff;
  --page-accent-rgb: 79, 200, 255;
  --page-accent-strong: #1274b0;
}

.agent-page-financeiro {
  --page-accent: #9157ff;
  --page-accent-rgb: 145, 87, 255;
  --page-accent-strong: #5730b6;
}

.agent-page-operacoes {
  --page-accent: #39c97c;
  --page-accent-rgb: 57, 201, 124;
  --page-accent-strong: #16824a;
}

.agent-page-marketing {
  --page-accent: #ff9b38;
  --page-accent-rgb: 255, 155, 56;
  --page-accent-strong: #bf6200;
}

.agent-page-executivo {
  --page-accent: #2d63ff;
  --page-accent-rgb: 45, 99, 255;
  --page-accent-strong: #1739af;
}

.agent-page .eyebrow,
.agent-page .panel-kicker,
.agent-page .section-eyebrow,
.agent-page .pricing-kicker {
  color: var(--page-accent);
}

.agent-page .button-primary {
  background: linear-gradient(135deg, var(--page-accent) 0%, var(--page-accent-strong) 100%);
  box-shadow: 0 14px 34px rgba(var(--page-accent-rgb), 0.2);
}

.agent-page .bullet-list li::before {
  background: var(--page-accent);
  box-shadow: 0 0 0 6px rgba(var(--page-accent-rgb), 0.12);
}

.agent-page .hero-panel-frame {
  border-color: rgba(var(--page-accent-rgb), 0.14);
}

.agent-hero {
  min-height: 360px;
  padding-top: 84px;
  padding-bottom: 36px;
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--page-accent-rgb), 0.22), transparent 22%),
    radial-gradient(circle at 12% 88%, rgba(var(--page-accent-rgb), 0.14), transparent 20%),
    linear-gradient(180deg, #151b28 0%, #0e1420 100%);
}

.agent-hero .hero-noise {
  opacity: 0.2;
}

.agent-hero .hero-grid {
  opacity: 0.34;
  background-size: 64px 64px;
}

.agent-hero .hero-shape-a {
  background: radial-gradient(circle, rgba(var(--page-accent-rgb), 0.22), transparent 70%);
}

.agent-hero .hero-shape-b {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.agent-hero .hero-shape-c {
  border-color: rgba(var(--page-accent-rgb), 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.agent-hero .hero-inner {
  min-height: 100%;
}

.agent-hero .hero-copy {
  justify-items: start;
  max-width: 42rem;
  text-align: left;
}

.agent-hero h1,
.agent-hero .hero-summary,
.agent-hero .hero-panel-kicker,
.agent-hero .hero-panel-list span {
  color: white;
}

.agent-hero h1 {
  max-width: 11ch;
}

.agent-hero .hero-summary {
  color: rgba(255, 255, 255, 0.76);
  max-width: 43rem;
}

.agent-hero .hero-actions {
  justify-content: flex-start;
}

.agent-hero .button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.agent-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.agent-hero-label img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(var(--page-accent-rgb), 0.22));
}

.agent-hero-label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-hero .hero-panel-frame {
  min-height: 420px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(11, 16, 28, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 54px rgba(5, 8, 16, 0.28);
  backdrop-filter: blur(18px);
}

.agent-hero .hero-panel-frame::before {
  border-color: rgba(255, 255, 255, 0.08);
}

.agent-hero .hero-panel-frame::after {
  background: radial-gradient(circle, rgba(var(--page-accent-rgb), 0.24), transparent 68%);
}

.agent-hero .hero-panel-kicker {
  color: rgba(255, 255, 255, 0.64);
}

.agent-hero .hero-panel-list span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.agent-hero-centered .hero-inner {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-content: center;
  text-align: center;
}

.agent-hero-centered .hero-copy {
  justify-items: center;
  max-width: 52rem;
  text-align: center;
}

.agent-hero-centered .agent-hero-label {
  justify-content: center;
}

.agent-hero-centered .hero-actions {
  justify-content: center;
}

.agent-hero-centered h1 {
  max-width: 14ch;
  font-size: clamp(2.3rem, min(5.8vw, 7.9dvh), 5.2rem);
}

.agent-hero-centered .hero-summary {
  max-width: 46rem;
  font-size: clamp(1rem, min(1.45vw, 2.02dvh), 1.16rem);
}

.agent-preview-card {
  padding: 18px;
  align-items: center;
  justify-items: center;
}

.agent-preview-image {
  width: auto;
  max-width: 100%;
  max-height: 500px;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(23, 30, 48, 0.14);
}

.agent-tools-panel .integration-list {
  margin-top: 24px;
}

.agent-tools-panel .integration-logo {
  background:
    linear-gradient(180deg, rgba(var(--page-accent-rgb), 0.08), rgba(255, 255, 255, 0.96)),
    white;
}

.agent-tools-panel .integration-main h3 {
  color: var(--color-ink);
}

.agent-cta-panel {
  gap: 18px;
  text-align: center;
  justify-items: center;
}

.agent-cta-panel .contact-copy {
  justify-items: center;
  text-align: center;
}

.agent-cta-panel .hero-actions {
  justify-content: center;
}

.agent-gallery-dark {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(4, 6, 12, 0.26);
}

.agent-gallery-dark .section-heading h2,
.agent-gallery-dark .simulator-carousel-card-head h3 {
  color: white;
}

.agent-gallery-dark .section-intro,
.agent-gallery-dark .simulator-carousel-card-head p {
  color: rgba(255, 255, 255, 0.74);
}

.agent-gallery-dark .simulator-carousel-card {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.agent-gallery-dark .simulator-carousel-button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  box-shadow: none;
}

.agent-gallery-dark .simulator-carousel-button:hover:not(:disabled) {
  border-color: rgba(var(--page-accent-rgb), 0.5);
  background: rgba(var(--page-accent-rgb), 0.18);
}

.agent-page-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 156px;
  margin: 18px auto 12px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 30% 30%, rgba(var(--page-accent-rgb), 0.28), rgba(var(--page-accent-rgb), 0.08) 58%, rgba(255, 255, 255, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 40px rgba(var(--page-accent-rgb), 0.18);
}

.agent-page-badge img {
  width: 114px;
  height: 114px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(var(--page-accent-rgb), 0.2));
}

.page-faq-section .section-heading {
  margin-bottom: 24px;
}

.page-intro-card {
  display: grid;
  gap: 16px;
}

.page-intro-card .bullet-list {
  margin-top: 4px;
}

.founders-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  gap: 26px;
}

.founder-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  width: min(100%, 320px);
  padding: 28px;
  text-align: center;
}

.founder-card h3,
.founder-card h4,
.founder-card p {
  margin: 0;
}

.founder-card h4 {
  color: var(--color-brand);
  font-size: 1rem;
  line-height: 1.35;
}

.founder-card p {
  margin-top: 12px;
  max-width: 26ch;
}

.founder-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(167, 60, 255, 0.14), rgba(32, 59, 115, 0.08)),
    white;
  border: 1px dashed rgba(39, 45, 71, 0.18);
  color: var(--color-brand-deep);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.contact-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.contact-copy {
  display: grid;
  gap: 12px;
  max-width: 44rem;
}

.contact-copy p {
  margin: 0;
  color: var(--color-ink-soft);
  line-height: 1.62;
}

.faq-item {
  padding: 0 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  border-color: rgba(167, 60, 255, 0.18);
}

.faq-item[open] {
  border-color: rgba(167, 60, 255, 0.22);
  box-shadow: 0 16px 34px rgba(23, 30, 48, 0.08);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 300;
}

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

.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  border-right: 2px solid rgba(28, 34, 48, 0.58);
  border-bottom: 2px solid rgba(28, 34, 48, 0.58);
  transform: rotate(45deg);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.faq-item:hover summary::after,
.faq-item[open] summary::after {
  border-color: var(--color-brand);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item p {
  margin: 0 0 24px;
  max-width: 72ch;
}

.site-footer {
  margin-top: 30px;
  padding: 34px 20px 30px;
  background:
    radial-gradient(circle at top right, rgba(167, 60, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #1c2230 0%, #111722 100%);
  color: white;
}

.footer-main,
.footer-legal {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.footer-main {
  display: grid;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  width: min(220px, 56vw);
}

.footer-tagline,
.footer-legal {
  color: rgba(255, 255, 255, 0.72);
}

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

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

.footer-links-social {
  display: flex;
  align-items: center;
}

.footer-instagram-handle {
  color: #8fc4ff;
}

.footer-links a {
  width: fit-content;
}

.print-page .hero {
  min-height: auto;
}

.print-page .hero-copy {
  max-width: 78rem;
}

.print-page .faq-item summary {
  cursor: default;
  pointer-events: none;
}

.print-page .faq-item summary::after {
  display: none;
  content: none;
}

.print-page .faq-item,
.print-page .faq-item:hover {
  transform: none;
}

.print-page .footer-main {
  grid-template-columns: 1fr;
  justify-items: center;
  padding-bottom: 0;
  border-bottom: 0;
}

.print-page .footer-brand {
  justify-items: center;
  text-align: center;
}

.print-page .footer-logo {
  width: min(240px, 62vw);
}

.footer-utility {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding-top: 24px;
}

.footer-utility-block {
  display: grid;
  gap: 12px;
  max-width: 40rem;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-utility-block h3,
.footer-utility-block p {
  margin: 0;
}

.footer-utility-block p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.footer-eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
}

.footer-inline-link {
  width: fit-content;
  color: white;
}

.footer-legal {
  padding-top: 22px;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.02);
  }
}

.hero-shape-a,
.hero-shape-b,
.hero-shape-c {
  animation: drift 14s ease-in-out infinite;
}

@media (min-width: 768px) {
  .step-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) {
    min-height: clamp(440px, calc(100dvh - 86px), 720px);
    padding-bottom: clamp(36px, 5dvh, 56px);
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-inner {
    min-height: clamp(320px, calc(100dvh - 196px), 520px);
    align-content: center;
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-copy {
    gap: 18px;
  }

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

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

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

  .layers-shell,
  .sales-split {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.92fr);
  }

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

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

  .agent-hero {
    min-height: clamp(400px, calc(100dvh - 154px), 520px);
    padding-top: clamp(96px, 13dvh, 112px);
    padding-bottom: clamp(36px, 5dvh, 52px);
  }

  .agent-hero .hero-inner {
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    justify-items: stretch;
    text-align: left;
  }

  .agent-hero-centered .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .site-header {
    width: min(100% - 40px, var(--content-width));
    margin-bottom: 22px;
    padding: 12px 14px;
    overflow: visible;
  }

  .site-header.is-hidden-on-mobile {
    transform: translateY(calc(-100% - 20px));
    opacity: 0;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 41;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(39, 45, 71, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(23, 30, 48, 0.12);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav-link {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    min-height: 50px;
    padding: 0 16px;
    background: rgba(39, 45, 71, 0.03);
  }

  .site-nav-dropdown {
    width: 100%;
  }

  .site-nav-dropdown summary {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    min-height: 50px;
    padding: 0 16px;
    background: rgba(39, 45, 71, 0.03);
  }

  .site-subnav {
    width: 100%;
    justify-items: start;
    text-align: left;
  }

  .site-subnav a {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (min-width: 1100px) {
  .hero {
    min-height: 100svh;
    padding-top: 36px;
    padding-bottom: 70px;
  }

  [data-page-type="site_home"] .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: clamp(38px, 6dvh, 70px);
  }

  .hero-inner {
    min-height: calc(100svh - 106px);
  }

  [data-page-type="site_home"] .hero-inner {
    min-height: calc(100vh - 170px);
    min-height: calc(100dvh - 170px);
  }

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

  .site-nav-dropdown .site-subnav {
    position: absolute;
    top: 100%;
    left: 0;
  }

  .channel-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 32px;
  }

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

  .simulator-carousel-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .promo-cta-band {
    padding: 42px 32px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    align-items: start;
  }

  .footer-links {
    justify-items: center;
  }

  .footer-links-main {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    justify-content: center;
  }

  .footer-links-social {
    justify-content: center;
  }

}

@media (min-width: 768px) and (max-height: 860px) {
  [data-page-type="site_home"] .hero {
    padding-top: 108px;
    padding-bottom: 34px;
  }

  [data-page-type="site_home"] .hero-inner {
    min-height: calc(100vh - 138px);
    min-height: calc(100dvh - 138px);
  }

  [data-page-type="site_home"] .hero-copy {
    gap: 16px;
  }

  [data-page-type="site_home"] .hero h1 {
    font-size: clamp(2.7rem, min(5.8vw, 8.6dvh), 5rem);
    line-height: 0.95;
    margin-top: 8px;
    margin-bottom: 10px;
  }

  [data-page-type="site_home"] .hero-summary {
    font-size: clamp(1rem, min(1.45vw, 2.2dvh), 1.14rem);
    max-width: 42rem;
  }

  [data-page-type="site_home"] .hero-actions {
    margin-top: 0;
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) {
    padding-top: 108px;
    padding-bottom: 30px;
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-inner {
    min-height: clamp(300px, calc(100dvh - 166px), 460px);
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-copy {
    gap: 14px;
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) h1 {
    font-size: clamp(2.25rem, min(4.9vw, 7.1dvh), 4.2rem);
    line-height: 0.96;
    margin-top: 8px;
    margin-bottom: 10px;
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-summary {
    font-size: clamp(0.98rem, min(1.25vw, 1.95dvh), 1.08rem);
    max-width: 40rem;
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-panel-frame {
    min-height: 350px;
    padding: 22px;
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-panel-visual {
    min-height: 250px;
    padding-top: 18px;
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-panel-mockup,
  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-panel-home-image {
    max-height: 300px;
  }

  .agent-hero {
    min-height: clamp(360px, calc(100dvh - 198px), 460px);
    padding-top: 96px;
    padding-bottom: 34px;
  }

  .agent-hero .hero-copy {
    gap: 16px;
  }

  .agent-hero-centered h1 {
    font-size: clamp(2.15rem, min(5vw, 7.2dvh), 4.35rem);
    line-height: 0.96;
  }

  .agent-hero-centered .hero-summary {
    font-size: clamp(0.98rem, min(1.24vw, 1.92dvh), 1.08rem);
    max-width: 40rem;
  }
}

@media (min-width: 768px) and (max-height: 720px) {
  [data-page-type="site_home"] .hero {
    padding-top: 100px;
    padding-bottom: 28px;
  }

  [data-page-type="site_home"] .hero h1 {
    font-size: clamp(2.45rem, min(5.2vw, 7.9dvh), 4.4rem);
  }

  [data-page-type="site_home"] .hero-summary {
    font-size: clamp(0.98rem, min(1.3vw, 2.05dvh), 1.08rem);
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) {
    padding-top: 100px;
    padding-bottom: 24px;
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) h1 {
    font-size: clamp(2.05rem, min(4.6vw, 6.7dvh), 3.7rem);
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-summary {
    font-size: clamp(0.94rem, min(1.18vw, 1.82dvh), 1rem);
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-panel-frame {
    min-height: 316px;
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-panel-visual {
    min-height: 220px;
  }

  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-panel-mockup,
  [data-page-type="site_section"] .hero:not(.agent-hero) .hero-panel-home-image {
    max-height: 260px;
  }

  .agent-hero {
    min-height: clamp(340px, calc(100dvh - 210px), 420px);
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .agent-hero-centered h1 {
    font-size: clamp(1.98rem, min(4.5vw, 6.5dvh), 3.75rem);
  }

  .agent-hero-centered .hero-summary {
    font-size: clamp(0.94rem, min(1.14vw, 1.74dvh), 0.98rem);
  }
}
