:root {
  --ink: #14233a;
  --ink-deep: #0b172a;
  --muted: #66758a;
  --blue: #2f65e8;
  --blue-dark: #2454ca;
  --blue-soft: #edf3ff;
  --line: #dfe5ed;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --navy: #0c1b31;
  --navy-light: #132640;
  --success: #19885f;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 24px 70px rgba(16, 35, 62, 0.09);
  --shadow-card: 0 12px 36px rgba(25, 49, 83, 0.07);
  --container: 1180px;
  --section-space: clamp(5rem, 9vw, 8.5rem);
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface-soft);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(28, 48, 78, 0.055) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  opacity: 0.4;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(47, 101, 232, 0.35);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 248, 250, 0.9);
  border-color: rgba(207, 217, 228, 0.75);
  box-shadow: 0 6px 24px rgba(15, 36, 64, 0.035);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 8px 8px 8px 3px;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #45566d;
  font-size: 0.88rem;
  font-weight: 560;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  font-weight: 680;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: white;
  border-color: #c7d1df;
  transform: translateY(-1px);
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 860px;
  padding-top: clamp(8.5rem, 13vw, 11.25rem);
  padding-bottom: 2.25rem;
  background:
    radial-gradient(circle at 76% 20%, rgba(71, 118, 235, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfcfd 0%, #f7f8fa 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -260px;
  top: 80px;
  border: 1px solid rgba(47, 101, 232, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(47, 101, 232, 0.025), 0 0 0 180px rgba(47, 101, 232, 0.015);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(3.5rem, 7vw, 7.25rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 1px;
  background: currentColor;
}

.hero-slogan {
  margin: 0 0 14px;
  color: #5a6a7f;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  color: var(--ink-deep);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.15rem, 5.7vw, 5.15rem);
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 585px;
  margin: 28px 0 0;
  color: #54657b;
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(47, 101, 232, 0.22);
}

.button-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(47, 101, 232, 0.26);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #44566c;
  font-size: 0.88rem;
  font-weight: 680;
}

.text-link span {
  color: var(--blue);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-product {
  position: relative;
  padding: 28px 0;
}

.product-window {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(204, 215, 228, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 40px 90px rgba(20, 44, 80, 0.16), 0 8px 22px rgba(20, 44, 80, 0.06);
  transform: rotate(1.25deg);
  backdrop-filter: blur(12px);
}

.window-topbar,
.window-brand,
.offer-heading,
.offer-row,
.offer-total,
.price-source {
  display: flex;
  align-items: center;
}

.window-topbar {
  justify-content: space-between;
  padding: 1px 2px 14px;
  border-bottom: 1px solid #e5e9ef;
}

.window-brand {
  gap: 9px;
  color: var(--ink-deep);
  font-size: 0.83rem;
  font-weight: 750;
}

.mini-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-size: 0.64rem;
}

.window-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: #627187;
  background: #f3f5f7;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 650;
}

.window-status i,
.development-status i {
  width: 6px;
  height: 6px;
  background: #e8a33c;
  border-radius: 50%;
}

.voice-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #d9e4fb;
  border-radius: 14px;
  background: #f7faff;
}

.voice-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: white;
  border: 1px solid #dce6f8;
  border-radius: 11px;
}

.voice-icon svg,
.value-icon svg,
.principle-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.voice-label {
  display: block;
  color: var(--blue-dark);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.voice-card p {
  margin: 2px 0 0;
  color: #465971;
  font-size: 0.72rem;
  line-height: 1.45;
}

.voice-time {
  color: #7a8799;
  font-size: 0.64rem;
  font-variant-numeric: tabular-nums;
}

.process-line {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 5px 11px;
}

.process-line span {
  height: 3px;
  flex: 1;
  border-radius: 99px;
  background: #d8e4f8;
}

.process-line span:nth-child(-n + 4) {
  background: var(--blue);
}

.offer-preview {
  padding: 17px;
  border: 1px solid #e1e6ed;
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 22px rgba(23, 47, 82, 0.045);
}

.offer-heading {
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid #edf0f4;
}

.offer-heading div {
  display: grid;
  gap: 1px;
}

.offer-heading div span {
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.offer-heading strong {
  color: var(--ink-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.offer-number {
  color: #8b98a8;
  font-size: 0.64rem;
}

.offer-row,
.offer-total {
  justify-content: space-between;
  gap: 12px;
}

.offer-row {
  padding: 11px 0;
  color: #68778a;
  border-bottom: 1px solid #edf0f4;
  font-size: 0.68rem;
}

.offer-row strong {
  color: #3d4f65;
  font-weight: 650;
}

.offer-total {
  padding-top: 15px;
  color: #3e5066;
  font-size: 0.69rem;
}

.offer-total strong {
  color: var(--ink-deep);
  font-size: 1.05rem;
}

.price-source {
  justify-content: center;
  gap: 7px;
  padding: 12px 4px 0;
  color: var(--success);
  font-size: 0.64rem;
  font-weight: 700;
}

.price-source svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-note {
  position: absolute;
  z-index: 2;
  padding: 9px 13px;
  color: #34465c;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dce3ec;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  font-size: 0.68rem;
  font-weight: 730;
  white-space: nowrap;
}

.note-top {
  top: 5px;
  right: -20px;
}

.note-bottom {
  bottom: 1px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.note-bottom i {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(25, 136, 95, 0.13);
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 7vw, 6.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  display: grid;
  gap: 2px;
  padding: 22px 25px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  color: var(--ink-deep);
  font-size: 0.87rem;
}

.proof-item span {
  color: #728096;
  font-size: 0.72rem;
}

.product-section {
  background: white;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(3rem, 10vw, 9rem);
}

.section-heading h2 {
  max-width: 720px;
  font-size: clamp(2.6rem, 4.8vw, 4.55rem);
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.product-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.value-card {
  min-height: 505px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.value-card:hover {
  border-color: #cbd5e2;
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.value-card-featured {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.value-card-featured::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -120px;
  top: -120px;
  border: 1px solid rgba(113, 153, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(79, 123, 238, 0.045), 0 0 0 96px rgba(79, 123, 238, 0.025);
}

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

.card-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #91a0b3;
  font-size: 0.7rem;
  font-weight: 700;
}

.value-card-featured .card-number {
  color: rgba(255, 255, 255, 0.52);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: white;
  border: 1px solid #e0e6ee;
  border-radius: 13px;
}

.value-card-featured .value-icon {
  color: white;
  background: var(--blue);
  border-color: rgba(255, 255, 255, 0.12);
}

.mini-ui {
  width: 100%;
  min-height: 142px;
  margin-top: 24px;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dfe6ef;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(26, 50, 83, 0.06);
  overflow: hidden;
}

.value-card-featured .mini-ui {
  color: white;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 32px rgba(2, 9, 20, 0.16);
}

.mini-ui-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  color: #718095;
  border-bottom: 1px solid #e7ebf1;
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-ui-toolbar i {
  color: #9aa6b5;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0;
}

.value-card-featured .mini-ui-toolbar {
  color: #b6c6e0;
  border-color: rgba(255, 255, 255, 0.12);
}

.value-card-featured .mini-ui-toolbar i {
  color: #8295b4;
}

.mini-voice-content {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding-top: 11px;
}

.mini-mic {
  width: 32px;
  height: 32px;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--blue);
  border-radius: 10px;
}

.mini-mic::before {
  content: "";
  width: 6px;
  height: 11px;
  border: 1.5px solid white;
  border-radius: 5px;
}

.mini-mic i {
  position: absolute;
  width: 12px;
  height: 7px;
  bottom: 7px;
  border: solid white;
  border-width: 0 1.5px 1.5px;
  border-radius: 0 0 8px 8px;
}

.mini-voice-content div {
  display: grid;
}

.mini-voice-content small {
  color: #8fa3c3;
  font-size: 0.54rem;
  font-weight: 650;
}

.mini-voice-content strong {
  color: white;
  font-size: 0.72rem;
  font-weight: 650;
}

.mini-waveform {
  height: 29px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  padding-left: 42px;
}

.mini-waveform i {
  width: 3px;
  height: 8px;
  background: #668ff0;
  border-radius: 99px;
}

.mini-waveform i:nth-child(2n) { height: 15px; }
.mini-waveform i:nth-child(3n) { height: 22px; }
.mini-waveform i:nth-child(5n) { height: 12px; }

.mini-offer-label,
.mini-offer-data,
.mini-offer-total,
.mini-client-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-offer-label {
  padding-top: 10px;
  color: #929eae;
  font-size: 0.54rem;
}

.mini-offer-data {
  padding: 4px 0 9px;
  color: #485b72;
  border-bottom: 1px solid #e8ecf2;
  font-size: 0.67rem;
}

.mini-offer-data strong {
  color: var(--ink-deep);
  font-weight: 680;
}

.mini-offer-total {
  padding-top: 9px;
  color: #708095;
  font-size: 0.61rem;
}

.mini-offer-total strong {
  color: var(--blue-dark);
  font-size: 0.84rem;
}

.mini-client-ui {
  display: grid;
  place-items: center;
  padding: 9px 14px 0;
  background: linear-gradient(145deg, rgba(234, 240, 250, 0.92), rgba(255, 255, 255, 0.92));
}

.mini-client-phone {
  width: 150px;
  min-height: 136px;
  padding: 9px 12px 12px;
  background: white;
  border: 1px solid #d9e1eb;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 12px 24px rgba(30, 53, 84, 0.1);
}

.mini-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #8d99a9;
  font-size: 0.46rem;
  font-weight: 700;
}

.mini-phone-top i {
  width: 18px;
  height: 4px;
  background: #d9e0e9;
  border-radius: 99px;
}

.mini-client-phone > small {
  display: block;
  color: var(--blue);
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mini-client-phone > strong {
  display: block;
  margin: 2px 0 7px;
  color: var(--ink-deep);
  font-size: 0.68rem;
}

.mini-client-price {
  padding: 6px 0;
  color: #8290a2;
  border-top: 1px solid #e8ecf1;
  font-size: 0.5rem;
}

.mini-client-price b {
  color: var(--ink-deep);
  font-size: 0.66rem;
}

.mini-accept-button {
  padding: 6px 7px;
  color: white;
  background: var(--success);
  border-radius: 6px;
  font-size: 0.52rem;
  font-weight: 730;
  text-align: center;
}

.value-card h3 {
  max-width: 300px;
  margin: 25px 0 12px;
  color: var(--ink-deep);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.value-card-featured h3 {
  color: white;
}

.value-card p {
  margin: 0;
  color: #69788c;
  font-size: 0.87rem;
  line-height: 1.7;
}

.value-card-featured p {
  color: #aebbd0;
}

.demo-section {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.demo-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -310px;
  left: 20%;
  border: 1px solid rgba(99, 139, 244, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(72, 113, 220, 0.025), 0 0 0 180px rgba(72, 113, 220, 0.018);
}

.demo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7.5rem);
}

.eyebrow-light {
  color: #80a6ff;
}

.demo-copy h2 {
  color: white;
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
}

.demo-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: #aebbd0;
  line-height: 1.75;
}

.demo-meta {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.demo-meta span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d6ddeb;
  font-size: 0.78rem;
  font-weight: 600;
}

.demo-meta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #6f99f7;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-shell {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 38px 90px rgba(1, 9, 24, 0.38);
}

.video-shell video {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  display: block;
  background: #050c17;
  object-fit: contain;
}

.workflow-section {
  background: var(--surface-soft);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 60px 0 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.workflow-step {
  min-height: 240px;
  padding: 26px;
  background: white;
}

.step-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-top span {
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.step-top i {
  height: 1px;
  flex: 1;
  background: #e5e9ef;
}

.workflow-step h3 {
  margin: 50px 0 9px;
  color: var(--ink-deep);
  font-size: 1.05rem;
  font-weight: 670;
  letter-spacing: -0.02em;
}

.workflow-step p {
  margin: 0;
  color: #6e7d90;
  font-size: 0.83rem;
  line-height: 1.65;
}

.pricing-principle {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding: 27px 30px;
  color: white;
  background: var(--blue);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(47, 101, 232, 0.18);
}

.principle-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
}

.principle-icon svg {
  width: 26px;
  height: 26px;
}

.pricing-principle span {
  display: block;
  margin-bottom: 2px;
  color: #dbe6ff;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-principle h3 {
  margin: 0;
  color: white;
  font-size: 1.45rem;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.pricing-principle p {
  margin: 2px 0 0;
  color: #d9e4ff;
  font-size: 0.85rem;
}

.principle-badge {
  padding: 9px 13px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 720;
  white-space: nowrap;
}

.audience-section {
  background: white;
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(4rem, 10vw, 10rem);
  align-items: start;
}

.audience-copy {
  position: sticky;
  top: 120px;
}

.audience-copy h2 {
  font-size: clamp(2.5rem, 4.1vw, 4rem);
  line-height: 1.08;
}

.audience-copy > p:not(.eyebrow) {
  margin: 26px 0 28px;
  color: var(--muted);
  line-height: 1.75;
}

.text-link-blue {
  color: var(--blue-dark);
}

.text-link-blue:hover span {
  transform: translateX(4px);
}

.audience-list {
  border-top: 1px solid var(--line);
}

.audience-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background-color 180ms ease;
}

.audience-item:hover {
  padding-inline: 12px;
  background: var(--surface-soft);
}

.audience-item span {
  color: #93a0b0;
  font-size: 0.67rem;
  font-weight: 720;
}

.audience-item strong {
  color: var(--ink-deep);
  font-size: 1rem;
  font-weight: 620;
}

.audience-item i {
  color: var(--blue);
  font-size: 0.9rem;
  font-style: normal;
}

.beta-section {
  padding-top: 0;
  background: white;
}

.beta-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(2rem, 6vw, 5rem);
  color: white;
  background:
    radial-gradient(circle at 5% 105%, rgba(68, 112, 225, 0.22), transparent 34%),
    var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.beta-copy h2 {
  color: white;
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
  line-height: 1.05;
}

.beta-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #b0bdd0;
  line-height: 1.75;
}

.beta-note {
  display: grid;
  gap: 6px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.beta-note span {
  color: #7ea2f7;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.beta-note strong {
  max-width: 390px;
  color: #e9eef8;
  font-size: 0.84rem;
  font-weight: 570;
}

.beta-form {
  position: relative;
  padding: 30px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  box-shadow: 0 26px 55px rgba(1, 8, 20, 0.28);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.field label {
  color: #3b4e65;
  font-size: 0.75rem;
  font-weight: 700;
}

.field label span {
  color: #8793a4;
  font-size: 0.66rem;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--ink-deep);
  background: #fbfcfd;
  border: 1px solid #dce3eb;
  border-radius: 10px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field input {
  min-height: 47px;
  padding: 10px 12px;
}

.field textarea {
  min-height: 110px;
  padding: 12px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  background: white;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 101, 232, 0.1);
}

.field textarea::placeholder {
  color: #9ca7b6;
  font-size: 0.78rem;
}

.field-error {
  display: none;
  color: #bd3c4a;
  font-size: 0.67rem;
}

.field.is-invalid .field-error {
  display: block;
}

.field.is-invalid input {
  border-color: #cc6570;
}

.button-form {
  width: 100%;
  margin-top: 2px;
  color: white;
  background: var(--blue);
}

.button-form:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.button-form:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.button-form.is-loading svg {
  display: none;
}

.button-spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: white;
  border-radius: 50%;
  animation: form-spinner 700ms linear infinite;
}

.button-form.is-loading .button-spinner {
  display: inline-block;
}

@keyframes form-spinner {
  to {
    transform: rotate(360deg);
  }
}

.form-note {
  margin: 11px 0 0;
  color: #8894a4;
  font-size: 0.66rem;
  text-align: center;
}

.form-note a {
  color: #5472a0;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(84, 114, 160, 0.35);
  text-underline-offset: 2px;
}

.form-note a:hover {
  color: var(--blue-dark);
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 11px 13px;
  color: #315582;
  background: #edf4ff;
  border: 1px solid #d3e2fb;
  border-radius: 9px;
  font-size: 0.74rem;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #25613c;
  background: #edf8f1;
  border-color: #cbe8d5;
}

.form-status.is-error {
  color: #8d3340;
  background: #fff2f3;
  border-color: #f0cdd2;
}

.site-footer {
  padding-top: 64px;
  color: #afbdd0;
  background: #081426;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 80px;
  padding-bottom: 52px;
}

.footer-brand {
  color: white;
}

.footer-top > div:first-child p {
  margin: 12px 0 0;
  font-size: 0.75rem;
}

.footer-contact {
  display: grid;
  gap: 5px;
}

.footer-contact span {
  color: #6f7f94;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a {
  color: white;
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-contact a:hover {
  color: #8cadff;
}

.development-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 19px;
  color: #6f7e92;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.67rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

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

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

  .hero-product {
    width: min(100%, 570px);
    margin: 0 auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-values {
    grid-template-columns: 1fr 1fr;
  }

  .value-card:first-child {
    grid-column: span 2;
  }

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

  .demo-copy {
    max-width: 610px;
  }

  .video-shell {
    width: min(100%, 390px);
  }

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

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .audience-copy {
    position: static;
    max-width: 700px;
  }

  .beta-panel {
    grid-template-columns: 1fr;
  }

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

  .beta-note {
    margin-top: 30px;
  }
}

@media (max-width: 720px) {
  :root {
    --section-space: 4.75rem;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    padding-top: 7.5rem;
    padding-bottom: 1.5rem;
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    gap: 3rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }

  .button-primary {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-product {
    width: calc(100% - 8px);
    padding: 12px 0 22px;
  }

  .product-window {
    padding: 13px;
    border-radius: 18px;
    transform: none;
  }

  .voice-card {
    grid-template-columns: auto 1fr;
  }

  .voice-time {
    display: none;
  }

  .floating-note {
    font-size: 0.61rem;
  }

  .note-top {
    right: -8px;
    top: -8px;
  }

  .note-bottom {
    left: -8px;
    bottom: -5px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .proof-item,
  .proof-item:first-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .demo-copy h2,
  .audience-copy h2,
  .beta-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .product-values {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .value-card:first-child {
    grid-column: auto;
  }

  .value-card {
    min-height: 470px;
    padding: 24px;
  }

  .video-shell {
    padding: 7px;
    border-radius: 17px;
  }

  .workflow {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .workflow-step {
    min-height: 190px;
    padding: 23px;
  }

  .workflow-step h3 {
    margin-top: 30px;
  }

  .pricing-principle {
    grid-template-columns: auto 1fr;
    align-items: start;
    padding: 23px;
  }

  .principle-icon {
    width: 48px;
    height: 48px;
  }

  .principle-badge {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .audience-item {
    grid-template-columns: 34px 1fr auto;
    min-height: 70px;
  }

  .beta-section {
    padding-inline: 0;
  }

  .beta-panel {
    width: 100%;
    border-radius: 0;
    padding: 64px 16px;
  }

  .beta-form {
    padding: 22px 18px;
  }

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

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

  .development-status {
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .form-note {
    font-size: 0.75rem;
    line-height: 1.55;
  }
}

@media (max-width: 390px) {
  .header-inner {
    gap: 12px;
  }

  .header-cta {
    min-height: 42px;
    gap: 7px;
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .header-cta svg {
    width: 15px;
    height: 15px;
  }

  .brand {
    gap: 8px;
    font-size: 0.8rem;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .voice-card p {
    font-size: 0.66rem;
  }

  .offer-preview {
    padding: 13px;
  }

  .offer-total strong {
    font-size: 0.92rem;
  }

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
