:root {
  color: #07152d;
  background: #f7f9fc;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #07152d;
  --ink-2: #21324f;
  --muted: #657089;
  --line: rgba(7, 21, 45, 0.12);
  --blue: #635bff;
  --cyan: #00d4ff;
  --green: #00a76f;
  --amber: #ffb547;
  --rose: #ff5f7e;
  --violet: #7c4dff;
  --shadow: 0 26px 70px rgba(18, 34, 65, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(7, 21, 45, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 21, 45, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #fbfdff 0%, #f4f7fb 52%, #eef4f7 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.ambient-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.beam {
  position: absolute;
  display: block;
  width: 1120px;
  height: 180px;
  opacity: 0.86;
  filter: saturate(1.08);
  transform: skewY(-10deg) rotate(-3deg);
}

.beam-one {
  top: 112px;
  right: -420px;
  background: linear-gradient(90deg, transparent 0 8%, rgba(99, 91, 255, 0.92) 8% 38%, rgba(0, 212, 255, 0.72) 38% 66%, transparent 66%);
}

.beam-two {
  top: 292px;
  right: -520px;
  height: 130px;
  background: linear-gradient(90deg, transparent 0 20%, rgba(255, 181, 71, 0.82) 20% 46%, rgba(255, 95, 126, 0.62) 46% 74%, transparent 74%);
}

.beam-three {
  top: 620px;
  left: -520px;
  height: 150px;
  background: linear-gradient(90deg, transparent 0 18%, rgba(0, 167, 111, 0.45) 18% 52%, rgba(0, 212, 255, 0.36) 52% 78%, transparent 78%);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 50px rgba(7, 21, 45, 0.1);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-height: 42px;
  padding: 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 13px 32px rgba(99, 91, 255, 0.24);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
}

.brand-mark::before {
  width: 26px;
  height: 8px;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(-26deg);
}

.brand-mark::after {
  right: 6px;
  bottom: 6px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff0bd;
}

.brand-mark span {
  left: 7px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #06122a;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  gap: 2px;
  margin-left: 18px;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #34415d;
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

.nav-trigger:hover,
.nav-item.is-open .nav-trigger,
.nav-item:focus-within .nav-trigger {
  background: rgba(99, 91, 255, 0.1);
  color: var(--ink);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 12px;
  width: min(650px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(20px);
}

.nav-item.is-open .mega-menu,
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-column {
  padding: 8px;
  border-radius: 8px;
  background: #f7f9fd;
}

.mega-column h3 {
  margin: 4px 8px 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.mega-link {
  display: block;
  padding: 10px 8px;
  border-radius: 8px;
  color: var(--ink);
}

.mega-link strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 780;
}

.mega-link em {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(0, 167, 111, 0.12);
  color: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.mega-link small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.45;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 36px 0 58px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin: 0 0 18px;
  padding: 0 11px;
  border: 1px solid rgba(99, 91, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5.4vw, 74px);
  font-weight: 900;
  line-height: 1.02;
}

.headline-accent {
  color: var(--blue);
  background: linear-gradient(92deg, var(--blue), #159cff 48%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--ink-2);
  font-size: 19px;
  font-weight: 430;
  line-height: 1.78;
}

.email-form {
  width: min(100%, 568px);
  margin-top: 34px;
}

.email-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
}

.email-row {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(7, 21, 45, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(18, 34, 65, 0.12);
}

.email-row input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}

.email-row button {
  min-width: 124px;
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, #07152d, #273a61);
  color: #ffffff;
  font-weight: 850;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.email-row button:hover {
  box-shadow: 0 14px 32px rgba(99, 91, 255, 0.24);
  transform: translateY(-1px);
}

.form-feedback {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.form-feedback.is-success {
  color: var(--green);
}

.form-feedback.is-error {
  color: #bd2b23;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  perspective: 1200px;
}

.visual-glow {
  position: absolute;
  inset: 70px -60px 70px 120px;
  background:
    linear-gradient(115deg, rgba(99, 91, 255, 0.26), transparent 44%),
    linear-gradient(145deg, transparent 34%, rgba(0, 212, 255, 0.18) 34% 70%, transparent 70%),
    linear-gradient(105deg, transparent 22%, rgba(255, 181, 71, 0.22) 22% 54%, transparent 54%);
  filter: blur(8px);
  transform: skewY(-12deg);
}

.dashboard-window,
.transcript-card,
.sync-card,
.floating-score {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dashboard-window {
  top: 32px;
  right: 0;
  width: min(620px, 100%);
  min-height: 420px;
  overflow: hidden;
  transform: rotateY(-10deg) rotateX(4deg) rotateZ(-1deg);
  transform-origin: center;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(7, 21, 45, 0.08);
  background: rgba(249, 251, 255, 0.88);
  color: var(--muted);
  font-size: 13px;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--rose);
}

.window-bar span:nth-child(2) {
  background: var(--amber);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.window-bar strong {
  margin-left: auto;
  color: #45526b;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 374px;
}

.mini-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px 17px;
  border-right: 1px solid rgba(7, 21, 45, 0.08);
  background: #07152d;
}

.side-dot {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.side-dot.is-active {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.call-summary-card {
  padding: 26px;
}

.summary-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.summary-topline strong {
  color: var(--green);
}

.call-summary-card h2 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 890;
  line-height: 1.12;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.summary-grid div {
  min-height: 86px;
  padding: 13px;
  border: 1px solid rgba(7, 21, 45, 0.07);
  border-radius: 8px;
  background: #f5f8fc;
}

.summary-grid span,
.message span,
.sync-card span,
.floating-score span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.summary-grid strong,
.sync-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.transcript-card {
  right: 36px;
  bottom: 74px;
  width: min(430px, calc(100% - 36px));
  display: grid;
  gap: 12px;
  padding: 14px;
  transform: rotateY(-8deg) rotateZ(2deg);
}

.message {
  padding: 14px;
  border-radius: 8px;
  background: #f5f8fc;
}

.message.is-ai {
  margin-left: 44px;
  background:
    linear-gradient(90deg, rgba(99, 91, 255, 0.13), rgba(0, 212, 255, 0.12)),
    #f6f8ff;
}

.message p {
  margin: 7px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 630;
  line-height: 1.55;
}

.sync-card {
  left: 0;
  bottom: 168px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 264px;
  padding: 16px;
  transform: rotateZ(-4deg);
}

.sync-card button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 850;
}

.floating-score {
  left: 82px;
  top: 94px;
  width: 154px;
  padding: 16px;
  transform: rotateZ(3deg);
}

.floating-score strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.flow-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
  margin: 18px 0 34px;
  padding: 46px 0 34px;
  border-top: 1px solid var(--line);
}

.flow-copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 3.7vw, 50px);
  font-weight: 860;
  line-height: 1.08;
  text-wrap: balance;
}

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

.flow-steps article {
  position: relative;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 56px rgba(18, 34, 65, 0.1);
  backdrop-filter: blur(18px);
}

.flow-steps article:nth-child(2) {
  transform: translateY(24px);
}

.flow-steps article:nth-child(3) {
  transform: translateY(48px);
}

.flow-steps span {
  position: absolute;
  top: 16px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.42), rgba(0, 212, 255, 0.42));
  color: transparent;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flow-steps h3 {
  margin: 76px 0 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 880;
}

.flow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.7;
}

.section {
  padding: 88px 0;
}

.section-heading,
.section-kicker {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading h2,
.section-kicker h2,
.product-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.35vw, 58px);
  font-weight: 860;
  line-height: 1.08;
  text-wrap: balance;
}

.narrative-section {
  position: relative;
}

.narrative-section::before {
  position: absolute;
  inset: 34px calc(50% - 50vw);
  z-index: -1;
  content: "";
  background:
    linear-gradient(105deg, transparent 0 8%, rgba(7, 21, 45, 0.96) 8% 58%, transparent 58%),
    linear-gradient(105deg, transparent 44%, rgba(99, 91, 255, 0.18) 44% 78%, transparent 78%);
  transform: skewY(-4deg);
}

.narrative-section .section-kicker h2 {
  color: #ffffff;
}

.narrative-section .eyebrow {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #a9e8ff;
}

.narrative-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.narrative-card {
  min-height: 330px;
  padding: 28px;
  border-radius: 8px;
}

.narrative-card span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.narrative-card h3 {
  margin: 44px 0 14px;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.06;
}

.narrative-card p {
  max-width: 560px;
  margin: 0;
  font-size: 16px;
  font-weight: 570;
  line-height: 1.7;
}

.narrative-card.is-dark {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.narrative-card.is-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.narrative-card.is-bright {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(232, 247, 255, 0.9)), #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.narrative-card.is-bright p {
  color: var(--ink-2);
}

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

.operating-card,
.feature-card,
.role-panel,
.integration-card,
.final-cta {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 56px rgba(18, 34, 65, 0.1);
  backdrop-filter: blur(18px);
}

.operating-card {
  position: relative;
  min-height: 250px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(99, 91, 255, 0.07), transparent 46%),
    linear-gradient(105deg, transparent 38%, rgba(0, 212, 255, 0.09) 38% 78%, transparent 78%),
    rgba(255, 255, 255, 0.72);
}

.operating-visual {
  position: relative;
  height: 86px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(7, 21, 45, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(99, 91, 255, 0.055), transparent 46%),
    linear-gradient(105deg, transparent 36%, rgba(0, 212, 255, 0.08) 36% 72%, transparent 72%),
    rgba(255, 255, 255, 0.76);
}

.mini-call-window,
.mini-crm-row,
.mini-email,
.mini-task {
  position: absolute;
  border: 1px solid rgba(7, 21, 45, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(18, 34, 65, 0.1);
}

.mini-call-window {
  left: 14px;
  top: 13px;
  width: 204px;
  padding: 11px;
}

.mini-call-window i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 999px;
  background: var(--rose);
}

.mini-call-window i:nth-child(2) {
  background: var(--amber);
}

.mini-call-window i:nth-child(3) {
  background: var(--green);
}

.mini-call-window strong,
.mini-task strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 880;
}

.mini-call-window p,
.mini-email p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 560;
  line-height: 1.35;
}

.mini-waveform {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: end;
  gap: 5px;
  height: 44px;
  padding: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.14), rgba(0, 212, 255, 0.13));
}

.mini-waveform span {
  display: block;
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.mini-waveform span:nth-child(1) {
  height: 18px;
}

.mini-waveform span:nth-child(2) {
  height: 28px;
}

.mini-waveform span:nth-child(3) {
  height: 36px;
}

.mini-waveform span:nth-child(4) {
  height: 24px;
}

.mini-waveform span:nth-child(5) {
  height: 32px;
}

.mini-crm-row {
  left: 14px;
  right: 14px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
  align-items: center;
  min-height: 24px;
  padding: 8px 11px;
}

.mini-crm-row:nth-child(1) {
  top: 9px;
}

.mini-crm-row:nth-child(2) {
  top: 35px;
}

.mini-crm-row:nth-child(3) {
  top: 61px;
}

.mini-crm-row.is-synced {
  background: linear-gradient(90deg, rgba(99, 91, 255, 0.12), rgba(0, 212, 255, 0.1)), #ffffff;
}

.mini-crm-row span,
.mini-email span,
.mini-task span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 780;
}

.mini-crm-row strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 880;
}

.mini-email {
  left: 14px;
  top: 13px;
  width: 212px;
  padding: 11px;
}

.mini-task {
  right: 14px;
  bottom: 12px;
  width: 160px;
  padding: 11px;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.12), rgba(0, 212, 255, 0.12)), #ffffff;
}

.mini-task strong {
  margin-top: 0;
}

.mini-task span {
  display: block;
  margin-top: 6px;
}

.operating-card > span {
  position: absolute;
  top: 116px;
  right: 20px;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.34), rgba(0, 212, 255, 0.34));
  color: transparent;
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.operating-card h3,
.feature-card h3,
.role-content h3 {
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 880;
  line-height: 1.18;
}

.operating-card h3,
.operating-card p {
  position: relative;
  z-index: 1;
}

.operating-card h3 {
  max-width: 260px;
  margin-top: 12px;
}

.operating-card p,
.feature-card p,
.product-copy p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.75;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.product-copy {
  position: relative;
  top: auto;
  display: block;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.product-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 17px;
}

.product-mini-panel {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  border: 1px solid rgba(7, 21, 45, 0.12);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(99, 91, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.product-mini-panel div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px;
  border: 1px solid rgba(7, 21, 45, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.product-mini-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.product-mini-panel strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 880;
}

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

.feature-card {
  min-height: 214px;
  padding: 24px 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(246, 250, 255, 0.66)),
    rgba(255, 255, 255, 0.72);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border: 8px solid rgba(99, 91, 255, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62) 0 28%, transparent 28%),
    linear-gradient(135deg, var(--blue), var(--cyan));
  background-clip: padding-box;
  box-shadow:
    0 16px 34px rgba(99, 91, 255, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.accent-green .feature-icon {
  border-color: rgba(0, 167, 111, 0.11);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0 28%, transparent 28%),
    linear-gradient(135deg, var(--green), var(--cyan));
  background-clip: padding-box;
}

.accent-orange .feature-icon {
  border-color: rgba(255, 181, 71, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58) 0 28%, transparent 28%),
    linear-gradient(135deg, var(--amber), var(--rose));
  background-clip: padding-box;
}

.accent-violet .feature-icon {
  border-color: rgba(124, 77, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58) 0 28%, transparent 28%),
    linear-gradient(135deg, var(--violet), var(--blue));
  background-clip: padding-box;
}

.feature-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px 20px;
  align-items: center;
}

.feature-card .feature-icon {
  grid-row: 1;
}

.feature-card h3 {
  margin-top: 0;
  align-self: center;
  max-width: 360px;
  font-size: 23px;
}

.feature-card p {
  grid-column: 2;
  max-width: 430px;
}

.role-panel {
  padding: 14px;
}

.role-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: min(520px, 100%);
  margin: 0 auto 18px;
  padding: 6px;
  border: 1px solid rgba(7, 21, 45, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 40px rgba(18, 34, 65, 0.08);
  backdrop-filter: blur(16px);
}

.role-tabs button {
  display: grid;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-2);
  font: inherit;
  font-weight: 840;
  text-align: center;
}

.role-tabs button.is-active {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(7, 21, 45, 0.2);
}

.role-content {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 24px;
  align-items: center;
  min-height: 300px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(99, 91, 255, 0.14), transparent 46%),
    linear-gradient(105deg, transparent 38%, rgba(0, 212, 255, 0.13) 38% 72%, transparent 72%),
    rgba(255, 255, 255, 0.78);
}

.role-content.is-swapping {
  animation: role-swap 220ms ease;
}

@keyframes role-swap {
  from {
    opacity: 0.65;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.role-content h3 {
  max-width: 680px;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.1vw, 44px);
}

.role-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-description {
  max-width: 660px;
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.role-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 26px;
}

.role-bullets span {
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid rgba(7, 21, 45, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.45;
}

.role-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(99, 91, 255, 0.08), transparent 48%),
    linear-gradient(105deg, transparent 36%, rgba(0, 212, 255, 0.12) 36% 72%, transparent 72%);
}

.role-visual-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  pointer-events: none;
}

.role-visual-scene.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.role-window,
.role-floating-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 56px rgba(18, 34, 65, 0.14);
  backdrop-filter: blur(18px);
}

.role-window {
  top: 34px;
  right: 28px;
  width: min(440px, calc(100% - 56px));
  min-height: 278px;
  overflow: hidden;
  transform: rotateZ(-2deg);
}

.role-window-tilted {
  transform: rotateZ(4deg);
}

.role-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(7, 21, 45, 0.08);
  background: rgba(249, 251, 255, 0.88);
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.role-window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rose);
}

.role-window-bar span:nth-child(2) {
  background: var(--amber);
}

.role-window-bar span:nth-child(3) {
  background: var(--green);
}

.role-window-bar strong {
  margin-left: auto;
}

.role-summary-card,
.role-email-card,
.role-note-card,
.role-sync-list {
  margin: 14px;
  padding: 16px;
  border: 1px solid rgba(7, 21, 45, 0.08);
  border-radius: 8px;
  background: #f7fbff;
}

.role-summary-card span,
.role-email-card span,
.role-note-card span,
.role-floating-card span,
.role-score-row span,
.role-sync-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.role-summary-card strong,
.role-floating-card strong,
.role-score-row strong,
.role-sync-list strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 880;
}

.role-summary-card p,
.role-email-card p,
.role-note-card p {
  margin: 8px 0 0;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.5;
}

.role-email-card {
  margin-top: 10px;
  background:
    linear-gradient(120deg, rgba(99, 91, 255, 0.09), rgba(0, 212, 255, 0.08)),
    #ffffff;
}

.role-floating-card {
  left: 22px;
  bottom: 54px;
  width: 192px;
  padding: 15px;
  transform: rotateZ(4deg);
}

.role-score-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px;
}

.role-score-row div {
  padding: 14px;
  border: 1px solid rgba(7, 21, 45, 0.08);
  border-radius: 8px;
  background: #f7fbff;
}

.role-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 92px;
  margin: 18px 18px 0;
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(99, 91, 255, 0.08), rgba(0, 212, 255, 0.07));
}

.role-chart i {
  display: block;
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.role-chart i:nth-child(1) {
  height: 34%;
}

.role-chart i:nth-child(2) {
  height: 48%;
}

.role-chart i:nth-child(3) {
  height: 42%;
}

.role-chart i:nth-child(4) {
  height: 68%;
}

.role-chart i:nth-child(5) {
  height: 82%;
}

.role-note-card {
  margin-top: 12px;
}

.role-sync-list {
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.68);
}

.role-sync-list div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px;
  border-radius: 8px;
  background: #f7fbff;
}

.role-import-card {
  right: 22px;
  bottom: 46px;
  width: 220px;
  padding: 15px;
  transform: rotateZ(-4deg);
}

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

.integrations-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 860;
  line-height: 1.05;
}

.integrations-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 480;
  line-height: 1.65;
}

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

.integration-panel {
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 245, 251, 0.72), rgba(246, 248, 255, 0.86)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 56px rgba(18, 34, 65, 0.1);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.integration-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 7vw, 86px);
  min-height: 204px;
  border-bottom: 1px solid rgba(7, 21, 45, 0.08);
  background:
    linear-gradient(90deg, transparent 0 15%, rgba(7, 21, 45, 0.055) 15% 15.4%, transparent 15.4% 50%, rgba(7, 21, 45, 0.055) 50% 50.4%, transparent 50.4% 85%, rgba(7, 21, 45, 0.055) 85% 85.4%, transparent 85.4%),
    linear-gradient(180deg, transparent 0 52%, rgba(7, 21, 45, 0.055) 52% 52.4%, transparent 52.4%),
    rgba(255, 255, 255, 0.34);
}

.connector-line {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 64px;
  background: rgba(7, 21, 45, 0.08);
}

.line-left {
  left: 22%;
}

.line-center {
  left: 50%;
}

.line-right {
  right: 22%;
}

.integration-logo {
  position: relative;
  z-index: 1;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(7, 21, 45, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.76) 58%),
    rgba(255, 255, 255, 0.88);
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  box-shadow:
    0 18px 34px rgba(18, 34, 65, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.integration-logo::before,
.integration-logo::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: #edf1f7;
  box-shadow:
    50px 0 0 #edf1f7,
    0 50px 0 #edf1f7,
    50px 50px 0 #edf1f7;
}

.integration-logo img {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(18, 34, 65, 0.1));
}

.logo-salesforce img {
  width: 56px;
}

.integration-copy {
  padding: 44px 26px 28px;
  text-align: center;
}

.integration-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 740;
  line-height: 1.2;
}

.integration-copy p {
  margin: 10px auto 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 460;
  line-height: 1.55;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 30px;
  align-items: center;
  padding: 36px;
  background:
    linear-gradient(106deg, rgba(99, 91, 255, 0.16), transparent 42%),
    linear-gradient(106deg, transparent 38%, rgba(255, 181, 71, 0.18) 38% 70%, transparent 70%),
    rgba(255, 255, 255, 0.78);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 16px;
}

.email-form-compact {
  margin-top: 0;
}

@media (max-width: 1060px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-item {
    position: static;
  }

  .mega-menu {
    left: 16px;
    right: 16px;
    width: auto;
    transform: translateY(8px);
  }

  .nav-item.is-open .mega-menu,
  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu {
    transform: translateY(0);
  }

  .hero,
  .product-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

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

  .product-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flow-section,
  .narrative-grid {
    grid-template-columns: 1fr;
  }

  .role-content {
    grid-template-columns: 1fr;
  }

  .operating-grid,
  .flow-steps,
  .integration-showcase,
  .role-bullets {
    grid-template-columns: 1fr;
  }

  .flow-steps article,
  .flow-steps article:nth-child(2),
  .flow-steps article:nth-child(3) {
    transform: none;
  }

}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 20px, 1220px);
    padding-top: 10px;
  }

  .site-header {
    top: 8px;
  }

  .mega-menu {
    grid-template-columns: 1fr;
    top: 122px;
    max-height: 62vh;
    overflow: auto;
  }

  h1 {
    font-size: 43px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .email-row {
    flex-direction: column;
  }

  .email-row button {
    width: 100%;
  }

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

  .dashboard-window,
  .transcript-card,
  .sync-card,
  .floating-score {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 12px;
    transform: none;
  }

  .dashboard-window {
    min-height: auto;
  }

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

  .mini-sidebar {
    display: none;
  }

  .call-summary-card {
    padding: 18px;
  }

  .call-summary-card h2 {
    font-size: 24px;
  }

  .summary-topline,
  .sync-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-grid,
  .feature-grid,
  .role-tabs {
    grid-template-columns: 1fr;
  }


  .role-visual {
    min-height: 390px;
  }

  .role-window {
    left: 10px;
    right: 10px;
    width: auto;
    transform: none;
  }

  .message.is-ai {
    margin-left: 0;
  }

  .section {
    padding: 64px 0;
  }

  .narrative-section::before {
    inset: 24px calc(50% - 50vw);
  }

  .operating-card,
  .feature-card,
  .narrative-card {
    min-height: auto;
  }

  .final-cta {
    padding: 22px;
  }
}
