:root {
  --yellow: #ffe600;
  --soft-yellow: #fff5b1;
  --glass-white: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.45);
  --neutral-600: #64748b;
  --neutral-900: #0f0f10;
  --cream-bg: #f8f6ed;
  --ink-soft: rgba(15, 15, 16, 0.72);
  --shadow-soft: 0 24px 70px rgba(15, 15, 16, 0.08);
  --shadow-glass: 0 20px 60px rgba(15, 15, 16, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--neutral-900);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(255, 245, 177, 0.26), rgba(255, 255, 255, 0.88) 34%, rgba(248, 246, 237, 0.95) 68%),
    var(--cream-bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  content: "";
  background-image:
    radial-gradient(rgba(15, 15, 16, 0.035) 1px, transparent 1px),
    linear-gradient(120deg, rgba(255, 230, 0, 0.12), transparent 28%, rgba(255, 255, 255, 0.42));
  background-position: 0 0, 0 0;
  background-size: 32px 32px, 100% 100%;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 72%, transparent 100%);
  pointer-events: none;
}

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

button,
input,
select {
  font: inherit;
}

img,
svg {
  display: block;
}

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

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 118px 0;
}

.compact-top {
  padding-top: 54px;
}

.ambient {
  position: fixed;
  z-index: -4;
  width: 52vw;
  height: 52vw;
  pointer-events: none;
  opacity: 0.68;
  filter: blur(54px);
  transform: translate3d(0, 0, 0);
}

.ambient-one {
  top: -18vw;
  right: -18vw;
  background: radial-gradient(circle at 42% 48%, rgba(255, 230, 0, 0.42), rgba(255, 245, 177, 0.18) 34%, transparent 62%);
}

.ambient-two {
  top: 34vh;
  left: -28vw;
  background: radial-gradient(circle at 58% 44%, rgba(255, 230, 0, 0.3), rgba(255, 255, 255, 0.46) 42%, transparent 68%);
}

.ambient-three {
  right: -22vw;
  bottom: -24vw;
  background: radial-gradient(circle at 50% 50%, rgba(255, 245, 177, 0.52), rgba(255, 255, 255, 0.24) 46%, transparent 72%);
}

.site-header {
  position: sticky;
  top: 22px;
  z-index: 20;
  padding: 0 18px;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1320px, 100%);
  min-height: 84px;
  margin: 0 auto;
  padding: 16px 22px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(26px) saturate(1.18);
  -webkit-backdrop-filter: blur(26px) saturate(1.18);
}

.brand-mark {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 184px;
  height: auto;
}

.nav-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.text-link {
  color: rgba(15, 15, 16, 0.82);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.text-link:hover {
  color: #000;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(15, 15, 16, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 12px 28px rgba(15, 15, 16, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--neutral-900);
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}

.nav-toggle:hover {
  border-color: rgba(255, 230, 0, 0.78);
  background: rgba(255, 255, 255, 0.58);
}

.nav-shell.is-open .nav-toggle {
  border-color: rgba(255, 230, 0, 0.86);
  background: rgba(255, 255, 255, 0.82);
}

.nav-shell.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-shell.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-shell.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 230, 0, 0.88);
  border-radius: 16px;
  color: var(--neutral-900);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  background:
    linear-gradient(135deg, rgba(255, 230, 0, 0.94), rgba(255, 245, 177, 0.86)),
    rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 34px rgba(255, 230, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(255, 230, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.button-glass {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 12px 34px rgba(15, 15, 16, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.button-glass:hover {
  background: rgba(255, 230, 0, 0.9);
}

.button-small {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  padding-top: 86px;
  min-height: 780px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 24px rgba(15, 15, 16, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: rgba(15, 15, 16, 0.58);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 230, 0, 0.16);
}

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

h1 {
  max-width: 720px;
  margin-top: 34px;
  font-size: clamp(4.15rem, 7vw, 7.05rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #f6ca23 0%, var(--yellow) 42%, #f4b600 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy > p {
  max-width: 660px;
  margin-top: 28px;
  color: var(--neutral-600);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 700px;
  margin-top: 54px;
}

.hero-proof div {
  position: relative;
  padding-left: 18px;
}

.hero-proof div::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(15, 15, 16, 0.16), transparent);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 0.95rem;
}

.hero-proof span {
  margin-top: 6px;
  color: var(--neutral-600);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  perspective: 1400px;
}

.glass-card,
.glass-strong {
  border: 1px solid var(--glass-border);
  background: var(--glass-white);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.dashboard-shell {
  position: absolute;
  top: 22px;
  right: -46px;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  width: min(760px, 100%);
  min-height: 520px;
  padding: 18px;
  border-radius: var(--radius-xl);
  transform: rotate(4deg);
}

.dashboard-shell::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), transparent 35%),
    radial-gradient(circle at 82% 18%, rgba(255, 230, 0, 0.17), transparent 30%);
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 12px;
  border-right: 1px solid rgba(15, 15, 16, 0.06);
}

.dash-sidebar img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 18px;
}

.dash-sidebar a {
  padding: 11px 12px;
  border-radius: 14px;
  color: rgba(15, 15, 16, 0.6);
  font-size: 0.72rem;
  font-weight: 500;
}

.dash-sidebar a.active {
  color: var(--neutral-900);
  background: rgba(255, 230, 0, 0.16);
}

.dash-main {
  padding: 22px 18px 16px;
}

.dash-topline,
.chart-head,
.agent-list article,
.phone-top,
.floating-call {
  display: flex;
  align-items: center;
}

.dash-topline {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.dash-topline span,
.dash-topline strong {
  display: block;
}

.dash-topline span {
  color: var(--neutral-600);
  font-size: 0.78rem;
}

.dash-topline strong {
  margin-top: 4px;
  font-size: 1.2rem;
  font-weight: 600;
}

.dash-topline button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(15, 15, 16, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(15, 15, 16, 0.64);
}

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

.metric-grid article,
.chart-card,
.agent-list article,
.phone-shell {
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 34px rgba(15, 15, 16, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.metric-grid article {
  padding: 18px 14px;
  border-radius: 18px;
}

.metric-grid span,
.metric-grid em,
.agent-list small,
.floating-call small,
.phone-top small {
  color: var(--neutral-600);
  font-size: 0.72rem;
  font-style: normal;
}

.metric-grid strong {
  display: block;
  margin: 11px 0 8px;
  font-size: 1.35rem;
  line-height: 1;
}

.metric-grid em,
.agent-list em {
  color: #1c9f42;
}

.chart-card {
  margin-top: 14px;
  padding: 20px;
  border-radius: 22px;
}

.chart-head {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.chart-head span {
  color: var(--neutral-600);
  font-size: 0.76rem;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 158px;
  padding-top: 20px;
  border-bottom: 1px solid rgba(15, 15, 16, 0.08);
  background:
    linear-gradient(to top, rgba(15, 15, 16, 0.04) 1px, transparent 1px) 0 0 / 100% 38px,
    linear-gradient(to right, transparent, rgba(255, 230, 0, 0.08), transparent);
}

.bar-chart i {
  display: block;
  flex: 1;
  min-width: 8px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(to top, rgba(255, 230, 0, 0.16), rgba(255, 230, 0, 0.96));
  box-shadow: 0 12px 24px rgba(255, 230, 0, 0.18);
}

.agent-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.agent-list article {
  gap: 12px;
  padding: 13px;
  border-radius: 18px;
}

.agent-list strong,
.floating-call strong,
.phone-top strong {
  display: block;
  font-size: 0.82rem;
}

.agent-list em {
  margin-left: auto;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
}

.mini-icon,
.icon-chip {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 230, 0, 0.18);
}

.mini-icon {
  width: 34px;
  height: 34px;
}

.mini-icon::before,
.mini-icon::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: var(--neutral-900);
}

.mini-icon::before {
  width: 2px;
  height: 15px;
  box-shadow: -6px 3px 0 var(--neutral-900), 6px -2px 0 var(--neutral-900);
}

.mini-icon::after {
  width: 2px;
  height: 9px;
  box-shadow: -10px 0 0 var(--yellow), 10px 0 0 var(--yellow);
}

.floating-call {
  position: absolute;
  z-index: 3;
  gap: 13px;
  width: 270px;
  padding: 16px;
  border-radius: 22px;
}

.floating-call b {
  margin-left: auto;
  color: rgba(15, 15, 16, 0.58);
  font-size: 0.78rem;
  font-weight: 500;
}

.float-one {
  right: 330px;
  bottom: 22px;
  transform: rotate(3deg);
}

.float-two {
  right: 0;
  bottom: -20px;
  transform: rotate(5deg);
}

.brand-strip {
  margin-top: -44px;
  padding-bottom: 40px;
}

.brand-strip .container {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 34px;
  color: rgba(15, 15, 16, 0.45);
}

.brand-strip span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-strip a {
  padding: 9px 14px;
  border: 1px solid rgba(15, 15, 16, 0.05);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: rgba(15, 15, 16, 0.56);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.split-section,
.calculator-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.demo-copy h2,
.cta-panel h2 {
  margin-top: 22px;
  font-size: clamp(2.2rem, 4vw, 4.15rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.demo-copy p,
.cta-panel p {
  margin-top: 20px;
  color: var(--neutral-600);
  font-size: 1rem;
  line-height: 1.78;
}

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

.feature-stack .glass-card,
.use-case-grid .glass-card {
  min-height: 250px;
}

.feature-stack article,
.use-case-grid article {
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-stack article:hover,
.use-case-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 230, 0, 0.7);
  box-shadow: 0 26px 72px rgba(15, 15, 16, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.icon-chip {
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
}

.icon-chip svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--neutral-900);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-stack h3,
.use-case-grid h3 {
  font-size: 1.04rem;
  font-weight: 600;
}

.feature-stack p,
.use-case-grid p {
  margin-top: 13px;
  color: var(--neutral-600);
  font-size: 0.9rem;
  line-height: 1.68;
}

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

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

.use-case-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 230, 0, 0.54);
  border-radius: 50%;
  background: rgba(255, 230, 0, 0.11);
  color: rgba(15, 15, 16, 0.62);
  font-size: 0.78rem;
  font-weight: 600;
}

.callout {
  display: grid;
  gap: 8px;
  max-width: 440px;
  margin-top: 30px;
  padding: 20px;
  border-radius: 22px;
}

.callout span {
  color: var(--neutral-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

.calculator {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.calculator label,
.lead-form label {
  display: grid;
  gap: 10px;
  color: rgba(15, 15, 16, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
}

.calculator label {
  position: relative;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.calculator input[type="range"] {
  grid-column: 1 / -1;
  width: 100%;
  height: 6px;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), rgba(15, 15, 16, 0.08));
  outline: none;
}

.calculator input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 5px 18px rgba(15, 15, 16, 0.18);
  cursor: pointer;
}

.calculator input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 5px 18px rgba(15, 15, 16, 0.18);
  cursor: pointer;
}

.calculator output {
  color: var(--neutral-900);
  font-size: 0.94rem;
  font-weight: 700;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.calculator-results article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
}

.calculator-results span {
  display: block;
  min-height: 42px;
  color: var(--neutral-600);
  font-size: 0.76rem;
  line-height: 1.42;
}

.calculator-results strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

.integration-marquee {
  --integration-gap: clamp(42px, 6vw, 92px);
  position: relative;
  width: 100vw;
  margin-left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  border-block: 1px solid rgba(15, 15, 16, 0.08);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}

.integration-marquee:focus-visible {
  outline: 2px solid rgba(15, 15, 16, 0.44);
  outline-offset: 4px;
}

.integration-marquee-track {
  display: flex;
  width: max-content;
  animation: integration-marquee 34s linear infinite;
}

.integration-marquee:hover .integration-marquee-track,
.integration-marquee:focus .integration-marquee-track {
  animation-play-state: paused;
}

.integration-logo-list {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: var(--integration-gap);
  min-width: max-content;
  min-height: 132px;
  padding: 32px var(--integration-gap) 32px 0;
  margin: 0;
  list-style: none;
}

.integration-logo-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(116px, 13vw, 190px);
  min-width: clamp(116px, 13vw, 190px);
}

.integration-logo-list img {
  width: auto;
  max-width: 100%;
  height: clamp(32px, 4vw, 48px);
  object-fit: contain;
  filter: grayscale(1) saturate(0) brightness(0.62) contrast(1.18);
  opacity: 0.74;
}

.integration-logo-list .integration-logo-image-icon {
  max-width: clamp(42px, 5vw, 58px);
}

@keyframes integration-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .integration-marquee {
    overflow-x: auto;
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    scrollbar-width: none;
  }

  .integration-marquee::-webkit-scrollbar {
    display: none;
  }

  .integration-marquee-track {
    animation: none;
  }

  .integration-logo-list[aria-hidden="true"] {
    display: none;
  }
}

.demo-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 36px;
  align-items: center;
  min-height: 420px;
  padding: 38px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.demo-panel::before {
  position: absolute;
  inset: auto -10% -34% 42%;
  height: 290px;
  content: "";
  border-radius: 44% 56% 30% 70%;
  background: linear-gradient(135deg, rgba(255, 230, 0, 0.32), rgba(255, 255, 255, 0.08));
  filter: blur(26px);
}

.demo-copy,
.demo-card {
  position: relative;
  z-index: 1;
}

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

.demo-highlights li {
  position: relative;
  padding-left: 28px;
  color: rgba(15, 15, 16, 0.72);
  font-size: 0.94rem;
  line-height: 1.58;
}

.demo-highlights li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
  border: 1px solid rgba(255, 230, 0, 0.75);
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--yellow) 0 35%, rgba(255, 255, 255, 0.5) 38%);
}

.demo-note {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(13, 13, 13, 0.66) !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.phone-shell {
  display: grid;
  gap: 22px;
  padding: 24px;
  border-radius: 28px;
}

.mark-portrait {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0;
  overflow: hidden;
  justify-self: center;
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(13, 13, 13, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.mark-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.phone-top {
  gap: 14px;
  margin-bottom: 0;
}

.agent-profile {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 230, 0, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.agent-profile span {
  color: var(--neutral-600);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-profile strong {
  font-size: 1rem;
  line-height: 1.45;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 72px;
  margin-bottom: 0;
}

.waveform span {
  width: 7px;
  height: 20px;
  border-radius: 999px;
  background: var(--yellow);
  animation: voice 1.2s ease-in-out infinite;
}

.waveform span:nth-child(2n) {
  height: 42px;
  animation-delay: 120ms;
}

.waveform span:nth-child(3n) {
  height: 58px;
  animation-delay: 240ms;
}

.waveform span:nth-child(4n) {
  height: 30px;
  animation-delay: 360ms;
}

@keyframes voice {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.55;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.mark-call-flow {
  display: grid;
  gap: 0;
}

.mark-call-trigger {
  width: 100%;
  transition: opacity 180ms ease, transform 180ms ease;
}

.phone-shell.is-requesting-call .mark-call-trigger,
.mark-call-trigger[hidden] {
  display: none;
}

.mark-call-form {
  display: grid;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.mark-call-form[hidden],
.mark-call-ready[hidden] {
  display: none;
}

.mark-call-form label {
  display: grid;
  gap: 8px;
  color: rgba(15, 15, 16, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.mark-call-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(15, 15, 16, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--neutral-900);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.mark-call-form input:focus {
  border-color: rgba(255, 230, 0, 0.92);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 4px rgba(255, 230, 0, 0.16);
}

.field-hint,
.mark-call-disclaimer,
.lead-form-disclaimer,
.mark-call-status {
  color: rgba(15, 15, 16, 0.58);
  font-size: 0.76rem;
  line-height: 1.45;
}

.mark-call-disclaimer,
.lead-form-disclaimer {
  margin-top: -4px;
  color: rgba(15, 15, 16, 0.5);
  font-size: 0.68rem;
}

.lead-form-disclaimer a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mark-call-status {
  min-height: 20px;
  font-weight: 600;
}

.mark-call-status[data-state="error"] {
  color: #b3261e;
}

.mark-call-status[data-state="loading"] {
  color: rgba(15, 15, 16, 0.66);
}

.mark-call-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.mark-call-form .button,
.mark-call-ready .button {
  width: 100%;
}

.mark-call-ready {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 230, 0, 0.52);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 230, 0, 0.16), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 34px rgba(255, 230, 0, 0.12);
}

.mark-call-ready strong,
.mark-call-ready span {
  display: block;
}

.mark-call-ready span {
  color: var(--neutral-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cta-grid {
  align-items: stretch;
}

.cta-panel,
.lead-form {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(15, 15, 16, 0.72);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 230, 0, 0.88), rgba(255, 245, 177, 0.62)),
    rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.58);
}

.lead-form {
  display: grid;
  gap: 17px;
}

.lead-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form h3 {
  font-size: 1.5rem;
}

.lead-form p {
  color: var(--neutral-600);
  font-size: 0.92rem;
  line-height: 1.58;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(15, 15, 16, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--neutral-900);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(255, 230, 0, 0.92);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 4px rgba(255, 230, 0, 0.16);
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
}

.lead-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  color: rgba(15, 15, 16, 0.74) !important;
  font-weight: 600;
}

.form-status[data-state="error"] {
  color: #a33618 !important;
}

.form-status[data-state="success"] {
  color: #286140 !important;
}

.site-footer {
  padding: 0 18px 18px;
}

.footer-shell {
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 16px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f0f10, #171717);
  color: #fff;
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer-shell p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-shell a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 500;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  color: var(--neutral-900);
  border-color: var(--yellow);
  background: var(--yellow);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.legal-body {
  min-height: 100vh;
  color: var(--neutral-900);
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 230, 0, 0.18), transparent 30%),
    radial-gradient(circle at 10% 18%, rgba(255, 245, 177, 0.44), transparent 28%),
    var(--enterprise-bg);
}

.legal-page {
  width: min(100% - 36px, 980px);
  margin: 76px auto 88px;
}

.legal-document {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 28px 80px rgba(15, 15, 16, 0.08);
  backdrop-filter: blur(26px) saturate(1.12);
  -webkit-backdrop-filter: blur(26px) saturate(1.12);
}

.legal-document h1 {
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 0.98;
}

.legal-document h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.12;
}

.legal-document h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.legal-document p,
.legal-document li,
.legal-document td,
.legal-document th {
  color: rgba(15, 15, 16, 0.72);
  font-size: 0.98rem;
  line-height: 1.74;
}

.legal-document p + p {
  margin-top: 12px;
}

.legal-document ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-document li::marker {
  color: var(--yellow);
}

.legal-document hr {
  height: 1px;
  margin: 34px 0;
  border: 0;
  background: rgba(15, 15, 16, 0.08);
}

.legal-document a {
  color: var(--neutral-900);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 230, 0, 0.9);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-table-wrap {
  margin: 18px 0 0;
  overflow-x: auto;
}

.legal-document table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
}

.legal-document th,
.legal-document td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 15, 16, 0.08);
  text-align: left;
  vertical-align: top;
}

.legal-document th {
  color: var(--neutral-900);
  background: rgba(255, 230, 0, 0.22);
  font-weight: 800;
}

.legal-footer {
  margin-top: auto;
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 14px;
  }

  .nav-actions {
    gap: 14px;
  }

  .nav-links a,
  .text-link {
    font-size: 0.86rem;
  }

  .nav-actions .button-small {
    min-height: 44px;
    padding: 0 15px;
  }

  .hero-grid,
  .split-section,
  .calculator-grid,
  .cta-grid,
  .demo-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

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

  .dashboard-shell {
    right: 4%;
    left: 4%;
    width: auto;
  }

  .float-one {
    right: 46%;
  }

  .feature-stack,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .section-pad {
    padding: 86px 0;
  }

  .compact-top {
    padding-top: 34px;
  }

  .site-header {
    top: 12px;
    width: 100%;
    padding: 0 10px;
  }

  .nav-shell {
    width: 100%;
    max-width: 100%;
    min-height: 70px;
    margin-right: auto;
    margin-left: auto;
    padding: 12px;
  }

  .brand-mark img {
    width: 154px;
  }

  .nav-toggle {
    position: relative;
    z-index: 45;
    display: flex;
    order: 3;
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 35;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 118px 24px 36px;
    background:
      radial-gradient(circle at 78% 18%, rgba(255, 230, 0, 0.22), transparent 30%),
      radial-gradient(circle at 12% 74%, rgba(255, 245, 177, 0.46), transparent 34%),
      rgba(248, 246, 237, 0.94);
    backdrop-filter: blur(30px) saturate(1.18);
    -webkit-backdrop-filter: blur(30px) saturate(1.18);
    overflow-y: auto;
    border-radius: 0;
  }

  .nav-shell.is-open .nav-menu {
    display: flex;
  }

  .nav-shell.is-open {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-shell.is-open .brand-mark {
    position: fixed;
    top: 26px;
    left: 24px;
    z-index: 45;
  }

  .nav-shell.is-open .nav-toggle {
    position: fixed;
    top: 24px;
    right: 24px;
  }

  .nav-actions {
    display: grid;
    width: min(100%, 440px);
    margin: 0 auto;
    gap: 12px;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 440px);
    margin: 0 auto;
    gap: 10px;
    padding: 0;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 16px 34px rgba(15, 15, 16, 0.07);
    color: var(--neutral-900);
    font-size: 1.08rem;
    font-weight: 600;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav-links a:hover {
    background: rgba(255, 230, 0, 0.16);
  }

  .nav-actions .text-link,
  .nav-actions .button {
    display: flex;
    width: 100%;
  }

  .nav-actions .text-link {
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(255, 230, 0, 0.5);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--neutral-900);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav-actions .button-small {
    min-height: 56px;
    border-radius: 18px;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(3.2rem, 13vw, 5.8rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-proof,
  .calculator-results {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 36px;
  }

  .hero-visual {
    min-height: 700px;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
    min-height: 610px;
    transform: rotate(0deg);
  }

  .dash-sidebar {
    flex-flow: row wrap;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 15, 16, 0.06);
  }

  .dash-sidebar img {
    width: 40px;
    height: 40px;
    margin: 0 8px 0 0;
  }

  .dash-sidebar a {
    padding: 9px 10px;
  }

  .metric-grid,
  .agent-list {
    grid-template-columns: 1fr;
  }

  .float-one,
  .float-two {
    right: auto;
    left: 5%;
    width: min(280px, 90%);
  }

  .float-one {
    bottom: 76px;
  }

  .float-two {
    bottom: 14px;
  }

  .brand-strip {
    margin-top: 0;
  }

  .brand-strip .container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-stack,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .integration-marquee {
    --integration-gap: clamp(28px, 10vw, 54px);
  }

  .integration-logo-list {
    min-height: 104px;
    padding-block: 24px;
  }

  .integration-logo-list li {
    width: clamp(88px, 28vw, 132px);
    min-width: clamp(88px, 28vw, 132px);
  }

  .integration-logo-list img {
    height: clamp(28px, 8vw, 38px);
  }

  .section-heading {
    text-align: left;
  }

  .demo-panel,
  .cta-panel,
  .lead-form,
  .calculator {
    padding: 24px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links,
  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .nav-shell {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    gap: 8px;
  }

  .brand-mark img {
    width: 146px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    white-space: normal;
  }

  .hero-actions {
    width: 100%;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 11vw, 3.05rem);
    line-height: 1;
  }

  h1 span {
    max-width: 6.8ch;
  }

  .hero-copy > p {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .hero-visual {
    min-height: 720px;
  }

  .dashboard-shell {
    right: 0;
    left: 0;
    padding: 12px;
    min-height: 600px;
    overflow: hidden;
  }

  .dash-main {
    padding: 16px 10px 10px;
  }

  .dash-sidebar {
    gap: 6px;
    padding: 14px 8px;
  }

  .dash-sidebar a {
    font-size: 0.68rem;
  }

  .dash-sidebar a:nth-of-type(n + 4) {
    display: none;
  }

  .dash-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .bar-chart {
    gap: 6px;
  }

  .feature-stack .glass-card,
  .use-case-grid .glass-card {
    min-height: auto;
  }

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

  .section-copy h2,
  .section-heading h2,
  .demo-copy h2,
  .cta-panel h2 {
    font-size: 2.05rem;
  }
}

/* Enterprise refresh */
:root {
  --enterprise-bg: #f6f6f3;
  --enterprise-surface: #ffffff;
  --enterprise-ink: #0d0d0d;
  --enterprise-muted: #6c6c68;
  --enterprise-line: rgba(13, 13, 13, 0.1);
  --enterprise-nav: rgba(238, 238, 235, 0.82);
  --enterprise-shadow: 0 26px 80px rgba(13, 13, 13, 0.12);
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--enterprise-bg);
}

body::before,
.ambient {
  display: none;
}

.site-header {
  top: 18px;
}

.nav-shell {
  min-height: 72px;
  padding: 11px 18px;
  border-color: rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(226, 226, 222, 0.38)),
    rgba(255, 255, 255, 0.34);
  box-shadow: 0 22px 58px rgba(13, 13, 13, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(34px) saturate(1.24);
  -webkit-backdrop-filter: blur(34px) saturate(1.24);
}

.brand-mark img {
  width: 164px;
}

.nav-links a,
.text-link {
  color: rgba(13, 13, 13, 0.86);
  font-size: 0.93rem;
  font-weight: 600;
}

.button {
  min-height: 50px;
  border-color: var(--enterprise-ink);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
}

.button-primary,
.nav-actions .button-glass {
  color: var(--enterprise-ink);
  border-color: rgba(255, 230, 0, 0.95);
  background: var(--yellow);
  box-shadow: 0 16px 34px rgba(255, 230, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.button-primary:hover,
.nav-actions .button-glass:hover {
  color: var(--enterprise-ink);
  border-color: var(--enterprise-ink);
  background: #fff;
  box-shadow: 0 18px 42px rgba(255, 230, 0, 0.22);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 42px rgba(0, 0, 0, 0.16);
}

.button-glass:hover {
  color: var(--enterprise-ink);
  border-color: var(--yellow);
  background: var(--yellow);
}

.button-inverse {
  color: var(--enterprise-ink);
  border-color: #fff;
  background: #fff;
}

.hero {
  min-height: 790px;
  margin-top: -116px;
  padding-top: 208px;
  overflow: hidden;
  color: var(--enterprise-ink);
  background:
    radial-gradient(circle at 77% 22%, rgba(255, 230, 0, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f6f0 46%, #f2f1ec 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--enterprise-bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero .eyebrow,
.security-section .eyebrow {
  border-color: rgba(13, 13, 13, 0.08);
  color: rgba(13, 13, 13, 0.56);
  background: rgba(255, 255, 255, 0.76);
}

h1 {
  max-width: 760px;
  color: var(--enterprise-ink);
  font-size: clamp(3.85rem, 5.9vw, 6.2rem);
  font-weight: 800;
  line-height: 0.95;
}

.hero-copy > p {
  max-width: 660px;
  color: rgba(13, 13, 13, 0.62);
  font-size: clamp(1.05rem, 1.18vw, 1.18rem);
  line-height: 1.64;
}

.hero .button-glass {
  border-color: rgba(13, 13, 13, 0.28);
  color: var(--enterprise-ink);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 40px rgba(13, 13, 13, 0.08);
}

.hero-proof strong {
  color: var(--enterprise-ink);
}

.hero-proof span {
  color: rgba(13, 13, 13, 0.58);
}

.dashboard-shell,
.floating-call {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 90px rgba(13, 13, 13, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.dashboard-shell::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(255, 230, 0, 0.2), transparent 32%);
}

.dash-sidebar {
  border-right-color: rgba(13, 13, 13, 0.06);
}

.dash-sidebar a.active {
  color: var(--enterprise-ink);
  background: var(--yellow);
}

.metric-grid article,
.chart-card,
.agent-list article {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.58);
}

.brand-strip {
  margin-top: 0;
  padding: 28px 0 0;
}

.brand-strip .container {
  padding: 18px 0;
  border-bottom: 1px solid var(--enterprise-line);
}

.brand-strip a {
  border-color: var(--enterprise-line);
  background: #fff;
  color: rgba(13, 13, 13, 0.62);
}

.customer-proof {
  padding-bottom: 48px;
}

.proof-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.proof-heading span {
  color: var(--enterprise-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-heading strong {
  max-width: 670px;
  color: var(--enterprise-ink);
  font-size: clamp(1.8rem, 3.3vw, 3.6rem);
  line-height: 0.98;
  text-align: right;
}

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

.customer-tile {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--enterprise-line);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(13, 13, 13, 0.08);
}

.customer-tile span {
  color: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.7;
}

.customer-tile strong {
  max-width: 320px;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.14;
}

.tile-black {
  color: #fff;
  background: #0d0d0d;
}

.tile-yellow {
  background: var(--yellow);
}

.tile-green {
  color: #fff;
  background: #179c4a;
}

.tile-blue {
  color: #fff;
  background: #156df0;
}

.tile-red {
  color: #fff;
  background: #eb173f;
}

.tile-white {
  background: #fff;
}

.glass-card,
.glass-strong,
.feature-stack article,
.use-case-grid article,
.calculator,
.cta-panel,
.lead-form,
.demo-panel {
  border-color: rgba(13, 13, 13, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 64px rgba(13, 13, 13, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.section-copy h2,
.section-heading h2,
.demo-copy h2,
.cta-panel h2,
.control-copy h2,
.security-copy h2 {
  color: var(--enterprise-ink);
  font-weight: 800;
  line-height: 1.02;
}

.section-copy p,
.section-heading p,
.demo-copy p,
.cta-panel p,
.control-copy p,
.security-copy p {
  color: var(--enterprise-muted);
}

.security-section {
  color: #fff;
  background: #0d0d0d;
}

.security-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  min-height: 560px;
}

.security-copy h2,
.security-copy p {
  color: #fff;
}

.security-section .eyebrow {
  margin-bottom: 28px;
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.security-copy h2 {
  margin-top: 0;
  font-size: clamp(2.2rem, 4vw, 4.15rem);
}

.security-copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.security-copy .button {
  margin-top: 34px;
}

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

.compliance-grid article {
  display: grid;
  gap: 14px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.compliance-grid strong {
  color: #fff;
  font-size: 1.35rem;
}

.compliance-grid span {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
}

.control-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 58px;
  align-items: center;
}

.control-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.control-phone {
  display: grid;
  gap: 14px;
  width: min(470px, 100%);
  padding: 28px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    linear-gradient(135deg, rgba(255, 230, 0, 0.18), transparent 58%);
}

.control-row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: 20px;
  color: rgba(13, 13, 13, 0.62);
  background: rgba(255, 255, 255, 0.58);
}

.control-row span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.2);
}

.control-row strong {
  color: var(--enterprise-ink);
}

.control-row.active {
  color: var(--enterprise-ink);
  background: var(--yellow);
}

.control-float {
  position: absolute;
  right: 0;
  bottom: 62px;
  padding: 18px 22px;
  border-radius: 20px;
  color: var(--enterprise-ink);
  font-weight: 700;
}

.control-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.control-list strong {
  min-height: 58px;
  padding: 18px;
  border-left: 3px solid var(--yellow);
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 13, 13, 0.06);
}

.use-case-grid .glass-card,
.feature-stack .glass-card {
  border-radius: 18px;
}

.demo-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 246, 243, 0.82)),
    #fff;
}

.demo-panel::before {
  background: linear-gradient(135deg, rgba(255, 230, 0, 0.2), rgba(255, 255, 255, 0.08));
}

.phone-shell {
  border-color: rgba(13, 13, 13, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.footer-shell {
  border-radius: 999px;
}

@media (max-width: 1120px) {
  .customer-grid,
  .security-panel,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .proof-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-heading strong {
    text-align: left;
  }
}

@media (max-width: 880px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    position: fixed;
    top: 12px;
    right: 0;
    left: 0;
    width: 100%;
    padding: 0;
  }

  .nav-shell {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    min-height: 68px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 999px;
  }

  .hero {
    width: 100vw;
    margin-top: 0;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .hero-grid {
    width: min(100% - 28px, var(--max-width));
  }

  .nav-menu {
    background:
      linear-gradient(135deg, rgba(244, 244, 241, 0.98), rgba(255, 255, 255, 0.96)),
      var(--enterprise-bg);
    backdrop-filter: blur(34px) saturate(1.2);
    -webkit-backdrop-filter: blur(34px) saturate(1.2);
  }

  .nav-links a,
  .nav-actions .text-link {
    border-color: rgba(13, 13, 13, 0.08);
    background: rgba(255, 255, 255, 0.72);
  }

  .hero {
    min-height: auto;
    padding-top: clamp(132px, 20vw, 158px);
  }

  .legal-page {
    margin-top: 128px;
  }

  .customer-grid,
  .compliance-grid,
  .control-list {
    grid-template-columns: 1fr;
  }

  .customer-tile {
    min-height: 190px;
  }

  .security-panel {
    min-height: auto;
  }

  .control-visual {
    min-height: 430px;
  }

  .control-float {
    right: 12px;
    bottom: 22px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.65rem, 11.2vw, 3.05rem);
    overflow-wrap: anywhere;
  }

  .hero {
    margin-top: 0;
    padding-top: clamp(124px, 34vw, 148px);
  }

  .nav-shell {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    min-height: 66px;
    border-radius: 999px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .nav-toggle {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 45;
    display: flex !important;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.82) !important;
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--neutral-900);
  }

  .nav-shell.is-open .nav-toggle {
    position: fixed !important;
    top: 24px !important;
    right: 24px !important;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.9) !important;
    transform: none;
  }

  .nav-shell.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-shell.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-shell.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-copy {
    max-width: 360px;
    overflow: hidden;
  }

  .hero-visual {
    min-height: 610px;
    overflow: hidden;
  }

  .dashboard-shell {
    width: 100%;
    min-height: 560px;
  }

  .floating-call {
    max-width: calc(100% - 24px);
  }

  .brand-mark img {
    width: 142px;
  }

  .proof-heading strong {
    font-size: 2.1rem;
  }

  .control-phone {
    padding: 18px;
    border-radius: 28px;
  }

  .control-row {
    grid-template-columns: 12px 1fr;
    min-height: auto;
    padding: 16px;
  }

  .control-row strong {
    grid-column: 2;
  }

  .footer-shell {
    border-radius: 24px;
  }

  .legal-page {
    width: calc(100% - 24px);
    margin-top: 116px;
  }

  .legal-document {
    border-radius: 22px;
  }
}
