@font-face {
  font-family: "TT Norms Pro";
  src: url("https://www-static-assets.heygen.com/fonts/tt-norms/TT_Norms_Pro_Normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "ABC Solar Display";
  src: url("https://www-static-assets.heygen.com/fonts/solar-display/ABCSolarDisplay-Bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --display: "ABC Solar Display", "Arial Rounded MT Bold", Inter, sans-serif;
  --body: "TT Norms Pro", Inter, ui-sans-serif, system-ui, sans-serif;

  --ink: #111111;
  --black: #000000;
  --white: #ffffff;
  --muted: #687176;
  --muted-dark: #98a9ad;
  --accent: #00c3ff;
  --accent-deep: #008db8;
  --blue-dark: #033337;
  --blue-soft: #dff8ff;
  --pink: #f49af5;
  --pink-dark: #512c5f;
  --pink-soft: #f9ecff;
  --green: #27c940;
  --green-dark: #1e431d;
  --green-soft: #e4f8e5;
  --mist: #f2f3f3;
  --light: #fafafa;
  --line: rgba(17, 17, 17, 0.1);
  --line-light: rgba(255, 255, 255, 0.18);

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: clamp(1.08rem, 0.45vw + 0.98rem, 1.25rem);
  --text-xl: clamp(1.4rem, 1.15vw + 1rem, 1.9rem);
  --text-2xl: clamp(1.85rem, 2.2vw + 1rem, 2.9rem);
  --text-3xl: clamp(2.35rem, 3.7vw + 0.8rem, 4.5rem);
  --text-hero: clamp(2.9rem, 5.7vw, 5.4rem);

  --container: 1240px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-card: 0 1px 1px rgba(0, 0, 0, 0.04), 0 20px 48px rgba(3, 51, 55, 0.1);
  --shadow-soft: 0 1px 1px rgba(0, 0, 0, 0.04), 0 12px 28px rgba(3, 51, 55, 0.07);
  --section-a: clamp(88px, 8vw, 112px);
  --section-b: clamp(96px, 9vw, 120px);
  --section-c: clamp(84px, 7vw, 104px);
  --section-d: clamp(92px, 8.5vw, 116px);
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--light);
  font-family: var(--body);
  font-size: var(--text-base);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--blue-dark);
  background: var(--accent);
}

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

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

button,
textarea,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
}

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

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

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

.site-header {
  position: relative;
  z-index: 20;
  background: var(--light);
}

.announcement-bar {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  color: var(--blue-dark);
  background: var(--accent);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.announcement-bar p {
  margin: 0;
}

.announcement-arrow {
  font-size: 1.15rem;
  line-height: 1;
}

.nav-wrap {
  position: relative;
  margin-top: 16px;
}

.main-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 76px;
  align-items: center;
  gap: 24px;
  padding: 14px 18px 14px 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04), 0 14px 36px rgba(3, 51, 55, 0.08);
  backdrop-filter: blur(22px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.52rem;
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 1;
  white-space: nowrap;
}

.brand-word {
  position: relative;
  z-index: 1;
}

.brand-spark {
  display: inline-flex;
  width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  margin: 0 1px;
  color: var(--accent);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1;
  transform: rotate(-12deg);
}

.brand-tag {
  margin-left: 7px;
  color: var(--accent-deep);
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 2px;
}

.nav-links a,
.nav-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 11px;
  border-radius: 12px;
  color: #303638;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-text-link:hover {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
}

.button span {
  font-family: var(--body);
  font-size: 1.1em;
  line-height: 0.8;
}

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

.button:focus-visible,
.nav-links a:focus-visible,
.nav-text-link:focus-visible,
.brand:focus-visible,
.footer-column a:focus-visible,
.footer-bottom a:focus-visible,
.social-links a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(17, 17, 17, 0.09);
  box-shadow: 0 3px 0 rgba(17, 17, 17, 0.07);
}

.button-light:hover {
  background: var(--blue-soft);
  box-shadow: 0 5px 0 rgba(0, 195, 255, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 6vw, 84px) 0 clamp(72px, 7vw, 104px);
  background: var(--light);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--blue-dark);
  background: rgba(223, 248, 255, 0.9);
}

.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.065em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink) 78%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subhead {
  max-width: 620px;
  margin: 20px auto 0;
  color: #4e585c;
  font-size: clamp(0.95rem, 0.25vw + 0.9rem, 1.05rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.hero-sculpture {
  position: absolute;
  pointer-events: none;
  opacity: 0.78;
  filter: saturate(110%);
}

.hero-sculpture-one {
  top: 115px;
  left: -125px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(0, 195, 255, 0.25);
  border-radius: 42% 58% 60% 40%;
  background: linear-gradient(140deg, rgba(0, 195, 255, 0.2), rgba(39, 201, 64, 0.38));
  transform: rotate(21deg);
}

.hero-sculpture-two {
  top: -80px;
  right: -75px;
  width: 240px;
  height: 210px;
  border: 1px solid rgba(244, 154, 245, 0.42);
  border-radius: 58% 42% 35% 65%;
  background: linear-gradient(135deg, rgba(244, 154, 245, 0.78), rgba(0, 195, 255, 0.48));
  transform: rotate(-15deg);
}

.hero-sculpture-three {
  right: -145px;
  bottom: 120px;
  width: 300px;
  height: 300px;
  border-radius: 54% 46% 60% 40%;
  background: linear-gradient(140deg, rgba(39, 201, 64, 0.55), rgba(0, 195, 255, 0.2));
  transform: rotate(24deg);
}

.console-frame {
  width: min(100%, 1090px);
  margin-top: 36px;
  padding: 1px;
  border: 1px solid rgba(0, 195, 255, 0.78);
  border-radius: 18px;
  background: var(--accent);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85),
    0 16px 32px rgba(3, 51, 55, 0.1),
    0 28px 60px rgba(0, 195, 255, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.console-frame:hover {
  transform: translateY(-5px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85),
    0 24px 42px rgba(3, 51, 55, 0.13),
    0 44px 92px rgba(0, 195, 255, 0.17);
}

.console-surface {
  display: grid;
  grid-template-areas: "form preview";
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  min-height: 450px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.98);
  text-align: left;
}

.console-preview {
  position: relative;
  grid-area: preview;
  min-height: 450px;
  overflow: hidden;
  border-left: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--blue-dark);
}

.preview-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.preview-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 51, 55, 0.05) 0%, rgba(3, 51, 55, 0.07) 40%, rgba(3, 51, 55, 0.9) 100%),
    linear-gradient(90deg, rgba(3, 51, 55, 0.18), transparent 60%);
}

.preview-topline {
  position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.preview-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(3, 51, 55, 0.35);
  backdrop-filter: blur(8px);
}

.preview-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(39, 201, 64, 0.18);
}

.preview-duration {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(3, 51, 55, 0.35);
  backdrop-filter: blur(8px);
}

.preview-copy {
  position: absolute;
  right: 30px;
  bottom: 32px;
  left: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
}

.preview-label {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.preview-copy strong {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.preview-caption {
  max-width: 300px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.3;
}

.preview-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 51, 55, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.preview-badge span {
  color: var(--accent);
}

.try-console {
  display: flex;
  grid-area: form;
  flex-direction: column;
  min-width: 0;
  padding: clamp(28px, 3.2vw, 46px);
  background: rgba(255, 255, 255, 0.97);
}

.console-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 31px;
}

.console-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--blue-dark);
  background: var(--accent);
  box-shadow: 0 7px 0 rgba(0, 141, 184, 0.18);
  font-family: var(--display);
  font-size: 1.35rem;
}

.console-overline {
  margin: 0 0 4px;
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.console-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.33rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.prompt-label {
  margin-bottom: 10px;
  color: #384348;
  font-size: 0.83rem;
  font-weight: 700;
}

.try-console textarea {
  display: block;
  width: 100%;
  min-height: 128px;
  max-height: 250px;
  padding: 17px 18px;
  overflow: hidden;
  resize: vertical;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 17px;
  outline: none;
  color: var(--ink);
  background: #fbfcfc;
  font-size: 1rem;
  letter-spacing: -0.018em;
  line-height: 1.45;
  field-sizing: content;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.try-console textarea::placeholder {
  color: #9aa4a6;
}

.try-console textarea:hover {
  border-color: rgba(0, 195, 255, 0.5);
  background: var(--white);
}

.try-console textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 195, 255, 0.16);
}

.tc-row {
  display: grid;
  grid-template-columns: minmax(190px, 1.15fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.select-wrap {
  position: relative;
  min-width: 0;
}

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 15px;
  color: var(--blue-dark);
  content: "⌄";
  font-size: 1.1rem;
  font-weight: 800;
  pointer-events: none;
  transform: translateY(-56%);
}

.try-console select {
  width: 100%;
  min-height: 48px;
  padding: 0 37px 0 14px;
  appearance: none;
  border: 1px solid rgba(17, 17, 17, 0.13);
  border-radius: 13px;
  outline: none;
  color: var(--blue-dark);
  background: #f4fbfd;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.try-console select:hover,
.try-console select:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 195, 255, 0.13);
}

.tc-go {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 13px;
  color: var(--blue-dark);
  background: var(--accent);
  box-shadow: 0 6px 0 rgba(0, 141, 184, 0.22), 0 12px 20px rgba(0, 195, 255, 0.15);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.tc-go span {
  font-family: var(--body);
  font-size: 1.25rem;
  line-height: 0.7;
}

.tc-go:hover {
  box-shadow: 0 8px 0 rgba(0, 141, 184, 0.22), 0 15px 24px rgba(0, 195, 255, 0.2);
  transform: translateY(-2px);
}

.tc-go:focus-visible,
.tc-examples button:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 4px;
}

.examples-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 12px;
  color: #536066;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.examples-heading span:last-child {
  color: #99a4a6;
  font-size: 0.66rem;
}

.tc-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tc-examples button {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 7px 7px 10px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  text-align: left;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
  transition: transform 180ms ease, border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tc-examples button:hover {
  border-color: var(--accent);
  background: var(--blue-soft);
  box-shadow: 0 7px 18px rgba(0, 195, 255, 0.14);
  transform: translateY(-3px);
}

.tc-examples img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 11px;
}

.example-label {
  display: block;
  min-height: 34px;
  padding: 9px 4px 0;
  padding-right: 17px;
  color: #3f4b4f;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.18;
}

.example-arrow {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(28px, 6vw, 78px);
  margin-top: 44px;
}

.trust-stat {
  display: flex;
  min-width: 126px;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.trust-stat strong {
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.trust-stat span {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 600;
  line-height: 1.15;
}

.button-primary {
  color: var(--blue-dark);
  background: var(--accent);
  box-shadow: 0 7px 0 rgba(0, 141, 184, 0.26), 0 17px 30px rgba(0, 195, 255, 0.18);
}

.button-primary:hover {
  box-shadow: 0 9px 0 rgba(0, 141, 184, 0.26), 0 21px 34px rgba(0, 195, 255, 0.24);
}

.hero-cta {
  margin-top: 30px;
  padding: 15px 22px;
  font-size: 1.16rem;
}

.hero-note {
  margin: 20px 0 0;
  color: #536065;
  font-size: 0.78rem;
  font-weight: 600;
}

.content-section {
  position: relative;
  overflow: hidden;
}

.section-platform {
  padding: var(--section-a) 0;
  background: #ffffff;
}

.section-avatars {
  padding: var(--section-b) 0;
  background:
    radial-gradient(circle at 6% 82%, rgba(0, 195, 255, 0.16), transparent 21%),
    var(--blue-soft);
}

.section-translation {
  padding: var(--section-c) 0;
  background: var(--light);
}

.section-workflow {
  padding: var(--section-d) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 8%, rgba(0, 195, 255, 0.22), transparent 25%),
    radial-gradient(circle at 15% 90%, rgba(244, 154, 245, 0.12), transparent 23%),
    var(--blue-dark);
}

.section-usecases {
  padding: var(--section-b) 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(244, 154, 245, 0.43), transparent 24%),
    var(--pink-soft);
}

.section-trust {
  padding: var(--section-a) 0;
  background:
    radial-gradient(circle at 0% 90%, rgba(0, 195, 255, 0.13), transparent 22%),
    var(--green-soft);
}

.section-heading {
  position: relative;
  z-index: 1;
}

.section-heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--text-3xl);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.section-heading .section-lead {
  max-width: 550px;
  margin: 22px 0 0;
  color: #536065;
  font-size: var(--text-lg);
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.centered-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.centered-heading h2 {
  max-width: 850px;
}

.centered-heading .section-lead {
  margin-right: auto;
  margin-left: auto;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: end;
}

.split-heading .section-lead {
  margin-bottom: 3px;
}

.section-kicker {
  margin-bottom: 17px;
}

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

.kicker-cyan {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.75);
}

.kicker-pink {
  color: var(--pink-dark);
  background: rgba(255, 255, 255, 0.76);
}

.kicker-green {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.8);
}

.kicker-neutral {
  color: #526065;
  background: var(--mist);
}

.kicker-dark {
  color: var(--accent);
  background: rgba(0, 195, 255, 0.12);
  border-color: rgba(0, 195, 255, 0.26);
}

.object-card {
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, border 220ms ease, box-shadow 220ms ease;
}

.object-card:hover {
  border-color: rgba(0, 195, 255, 0.55);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04), 0 24px 56px rgba(3, 51, 55, 0.14);
  transform: translateY(-5px);
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.63fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
  margin-top: 52px;
}

.editor-window {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
}

.window-toolbar,
.window-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 20px;
  color: #768083;
  background: #f6f8f8;
  font-size: 0.73rem;
  font-weight: 700;
}

.window-toolbar {
  justify-content: space-between;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.window-footer {
  justify-content: space-between;
  min-height: 46px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  font-size: 0.7rem;
}

.window-dots {
  display: inline-flex;
  gap: 5px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4cbcc;
}

.window-dots span:first-child {
  background: var(--pink);
}

.window-dots span:nth-child(2) {
  background: #f6ca62;
}

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

.window-path {
  flex: 1;
  color: #5d696d;
  text-align: center;
}

.window-state {
  color: var(--green-dark);
}

.window-content {
  display: grid;
  grid-template-columns: minmax(145px, 0.72fr) minmax(0, 1.28fr);
  min-height: 370px;
}

.script-pane {
  padding: 28px 25px;
  border-right: 1px solid rgba(17, 17, 17, 0.07);
  background: #ffffff;
}

.mock-label,
.route-label {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.script-pane h3 {
  margin-bottom: 26px;
  color: var(--blue-dark);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 0.98;
}

.script-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.script-lines span {
  display: block;
  width: 90%;
  height: 8px;
  border-radius: 999px;
  background: #dce6e8;
}

.script-lines span:nth-child(2) {
  width: 73%;
}

.script-lines span:nth-child(3) {
  width: 82%;
  background: #bdeefa;
}

.script-lines span:nth-child(4) {
  width: 57%;
}

.script-lines span:nth-child(5) {
  width: 76%;
}

.script-lines span:nth-child(6) {
  width: 45%;
}

.script-comment {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 30px;
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
}

.script-comment span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-size: 0.9rem;
  line-height: 1;
}

.canvas-pane {
  padding: 18px;
  background: #effafd;
}

.canvas-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 3px 12px;
  color: #718084;
  font-size: 0.72rem;
  font-weight: 700;
}

.canvas-surface {
  position: relative;
  min-height: 322px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(0, 195, 255, 0.78), rgba(244, 154, 245, 0.5)),
    #c7f3ff;
}

.canvas-surface::before {
  position: absolute;
  top: -25%;
  right: -18%;
  width: 65%;
  height: 65%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 42% 58% 66% 34%;
  content: "";
  transform: rotate(18deg);
}

.canvas-surface::after {
  position: absolute;
  bottom: -29%;
  left: -12%;
  width: 78%;
  height: 64%;
  border-radius: 50% 50% 0 0;
  background: rgba(3, 51, 55, 0.12);
  content: "";
}

.canvas-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.canvas-orbit-one {
  top: 12%;
  left: 8%;
  width: 72%;
  height: 46%;
}

.canvas-orbit-two {
  top: 27%;
  left: 23%;
  width: 60%;
  height: 49%;
  border-color: rgba(3, 51, 55, 0.2);
}

.mock-person {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 51%;
  width: 138px;
  height: 224px;
  border-radius: 76px 76px 32px 32px;
  background: linear-gradient(160deg, #033337 0%, #236d73 58%, #00c3ff 100%);
  box-shadow: -14px 17px 0 rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
}

.mock-person::before {
  position: absolute;
  top: -64px;
  left: 26px;
  width: 86px;
  height: 93px;
  border-radius: 46% 54% 50% 50%;
  background: #d79475;
  box-shadow: inset 12px 4px 0 rgba(3, 51, 55, 0.22);
  content: "";
}

.mock-person::after {
  position: absolute;
  top: -76px;
  left: 16px;
  width: 105px;
  height: 58px;
  border-radius: 52% 48% 30% 35%;
  background: #202d2e;
  content: "";
  transform: rotate(-8deg);
}

.canvas-caption {
  position: absolute;
  z-index: 3;
  right: 17px;
  bottom: 17px;
  left: 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  color: var(--white);
  background: rgba(3, 51, 55, 0.53);
  backdrop-filter: blur(9px);
}

.canvas-caption span {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.canvas-caption strong {
  font-family: var(--display);
  font-size: 1.04rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.proof-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.proof-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 20px 0 22px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.13);
}

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

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

.proof-index {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-family: var(--display);
  font-size: 0.88rem;
}

.proof-item h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
}

.proof-item p {
  max-width: 320px;
  margin: 0;
  color: #687377;
  font-size: 0.9rem;
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.feature-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 30px;
  border-radius: 30px;
  background: var(--white);
}

.feature-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 38px;
}

.card-index {
  color: #859296;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.icon-tile {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
}

.icon-cyan {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.icon-pink {
  color: var(--pink-dark);
  background: var(--pink-soft);
}

.icon-green {
  color: var(--green-dark);
  background: var(--green-soft);
}

.feature-card h3 {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 0.98;
}

.feature-card p {
  margin: 0;
  color: #626d71;
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-metric {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: auto;
  padding-top: 28px;
  color: #7f8c90;
  font-size: 0.77rem;
  font-weight: 700;
}

.feature-metric strong {
  color: var(--accent-deep);
  font-family: var(--display);
  font-size: 1.62rem;
  letter-spacing: -0.06em;
}

.section-footnote {
  display: flex;
  max-width: 720px;
  align-items: center;
  gap: 12px;
  margin: 34px auto 0;
  color: #4f5c60;
  font-size: 0.87rem;
  text-align: center;
}

.section-footnote p {
  margin: 0;
}

.footnote-mark {
  display: inline-flex;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--accent);
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1;
}

.translation-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: center;
}

.translation-layout .section-heading h2 {
  font-size: var(--text-3xl);
}

.inline-proof {
  display: flex;
  max-width: 300px;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  padding-top: 21px;
  border-top: 1px solid rgba(17, 17, 17, 0.13);
  color: #5f6b6f;
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.3;
}

.inline-proof-number {
  color: var(--accent-deep);
  font-family: var(--display);
  font-size: 2.1rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.translation-board {
  overflow: hidden;
  padding: 18px;
  border-radius: 32px;
  background: var(--white);
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 20px;
  color: #697579;
  font-size: 0.76rem;
  font-weight: 800;
}

.board-title {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.035em;
}

.board-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
}

.board-status .status-dot {
  width: 7px;
  height: 7px;
  margin: 0;
}

.route-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 22px 17px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 75% 10%, rgba(244, 154, 245, 0.21), transparent 35%),
    #f5fbfc;
}

.route-card {
  min-height: 205px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 20px;
  background: var(--white);
}

.route-source {
  box-shadow: inset 0 5px 0 var(--accent);
}

.route-output {
  box-shadow: inset 0 5px 0 var(--pink);
}

.route-card .route-label {
  margin-bottom: 30px;
}

.route-card strong {
  display: block;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 1.52rem;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.route-card p {
  max-width: 190px;
  margin: 12px 0 22px;
  color: #6a7578;
  font-size: 0.8rem;
  line-height: 1.4;
}

.route-chip {
  display: inline-flex;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.68rem;
  font-weight: 800;
}

.route-output .route-chip {
  color: var(--pink-dark);
  background: var(--pink-soft);
}

.route-connector {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 195, 255, 0.35);
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--accent);
  box-shadow: 0 6px 0 rgba(0, 141, 184, 0.17);
  font-size: 1.3rem;
  font-weight: 800;
}

.translation-board-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 8px 3px;
  color: #718084;
  font-size: 0.71rem;
  font-weight: 700;
}

.translation-board-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.translation-board-footer span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.section-workflow .section-heading h2,
.section-workflow .section-heading .section-lead {
  color: var(--white);
}

.section-workflow .section-heading .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.workflow-card {
  position: relative;
  display: flex;
  min-height: 304px;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 220ms ease, background 220ms ease, border 220ms ease;
}

.workflow-card::after {
  position: absolute;
  top: -90px;
  right: -50px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(0, 195, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.workflow-card:hover {
  border-color: rgba(0, 195, 255, 0.6);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-5px);
}

.workflow-number {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.workflow-icon {
  position: relative;
  z-index: 1;
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin: 33px 0 28px;
  border: 1px solid rgba(0, 195, 255, 0.35);
  border-radius: 18px;
  color: var(--blue-dark);
  background: var(--accent);
  font-family: var(--display);
  font-size: 1.55rem;
}

.workflow-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 11px;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 0.98;
}

.workflow-card p {
  position: relative;
  z-index: 1;
  max-width: 295px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.46;
}

.workflow-link {
  display: block;
  margin-top: auto;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.workflow-link b {
  margin-left: 5px;
  font-size: 1rem;
}

.workflow-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 39px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workflow-bottom i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

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

.usecase-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 29px 31px 25px;
  border-radius: 30px;
  background: var(--white);
}

.usecase-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--accent);
  content: "";
}

.usecase-green::before {
  background: var(--green);
}

.usecase-pink::before {
  background: var(--pink);
}

.usecase-dark::before {
  background: var(--blue-dark);
}

.usecase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
  color: #899397;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.usecase-head i {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(0, 195, 255, 0.5);
  border-radius: 50%;
  background: var(--blue-soft);
}

.usecase-green .usecase-head i {
  border-color: rgba(39, 201, 64, 0.5);
  background: var(--green-soft);
}

.usecase-pink .usecase-head i {
  border-color: rgba(244, 154, 245, 0.7);
  background: var(--pink-soft);
}

.usecase-dark .usecase-head i {
  border-color: rgba(3, 51, 55, 0.4);
  background: var(--mist);
}

.usecase-card h3 {
  max-width: 390px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.78rem;
  line-height: 0.98;
}

.usecase-card p {
  max-width: 430px;
  margin: 0;
  color: #697478;
  font-size: 0.91rem;
  line-height: 1.48;
}

.usecase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 27px;
}

.usecase-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 999px;
  color: #6b777a;
  background: #fafafa;
  font-size: 0.67rem;
  font-weight: 800;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  margin-top: 53px;
}

.trust-callout {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  padding: 31px;
  border-radius: 31px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 195, 255, 0.28), transparent 34%),
    var(--black);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 24px 48px rgba(3, 51, 55, 0.15);
}

.trust-callout::after {
  position: absolute;
  right: -62px;
  bottom: -75px;
  width: 225px;
  height: 225px;
  border: 1px solid rgba(244, 154, 245, 0.45);
  border-radius: 45% 55% 60% 40%;
  content: "";
  transform: rotate(23deg);
}

.callout-pill {
  width: max-content;
  padding: 8px 10px;
  border: 1px solid rgba(0, 195, 255, 0.37);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.callout-line {
  position: relative;
  z-index: 1;
  margin: 53px 0 25px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.callout-line em {
  color: var(--accent);
  font-style: normal;
}

.trust-callout h3 {
  position: relative;
  z-index: 1;
  max-width: 350px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.callout-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.77rem;
  font-weight: 700;
}

.callout-arrow {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--blue-dark);
  background: var(--accent);
  font-size: 1.12rem;
}

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

.trust-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 26px 22px;
  border-radius: 27px;
  background: var(--white);
}

.trust-card-index {
  color: #879397;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.trust-card h3 {
  margin: auto 0 14px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 0.98;
}

.trust-card p {
  margin: 0;
  color: #687478;
  font-size: 0.83rem;
  line-height: 1.5;
}

.trust-card:nth-child(1) {
  box-shadow: inset 0 5px 0 var(--accent), var(--shadow-soft);
}

.trust-card:nth-child(2) {
  box-shadow: inset 0 5px 0 var(--green), var(--shadow-soft);
}

.trust-card:nth-child(3) {
  box-shadow: inset 0 5px 0 var(--pink), var(--shadow-soft);
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 29px;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.faq-section {
  padding: clamp(96px, 10vw, 120px) 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(38px, 8vw, 114px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 28px;
}

.faq-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-3xl);
  line-height: 0.92;
}

.faq-intro p {
  max-width: 260px;
  margin: 23px 0 0;
  color: #4f5c60;
  font-size: 0.92rem;
  line-height: 1.5;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.faq-list details {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: var(--mist);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
  transition: border 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(0, 195, 255, 0.42);
  background: #f7fcfd;
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 25px;
  min-height: 76px;
  align-items: center;
  gap: 10px;
  padding: 20px 23px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
  list-style: none;
}

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

.faq-list summary::after {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(0, 195, 255, 0.42);
  border-radius: 50%;
  color: var(--accent-deep);
  content: "+";
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-list details[open] summary::after {
  color: var(--white);
  background: var(--accent-deep);
  content: "−";
  transform: rotate(180deg);
}

.faq-number {
  color: var(--accent-deep);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.faq-answer {
  padding: 0 58px 25px 75px;
}

.faq-answer p {
  max-width: 670px;
  margin: 0;
  color: #626d71;
  font-size: 0.92rem;
  line-height: 1.5;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 8vw, 112px) 0;
  background: var(--white);
}

.final-cta-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 42px;
  background:
    linear-gradient(110deg, rgba(0, 195, 255, 0.05), transparent 43%),
    linear-gradient(135deg, #000 0%, #033337 68%, #0b6670 100%);
  background-color: #033337;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 28px 66px rgba(3, 51, 55, 0.2);
}

.final-cta-panel::before {
  position: absolute;
  top: -160px;
  left: -100px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(0, 195, 255, 0.3);
  border-radius: 47% 53% 60% 40%;
  background: linear-gradient(145deg, rgba(0, 195, 255, 0.38), rgba(244, 154, 245, 0.2));
  content: "";
  transform: rotate(24deg);
}

.final-cta-panel::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(244, 154, 245, 0.38);
  border-radius: 50%;
  content: "";
}

.final-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 55px 28px;
  color: var(--white);
  text-align: center;
}

.final-cta-content .section-kicker {
  margin-bottom: 20px;
}

.final-cta-content h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: var(--text-3xl);
  line-height: 0.92;
}

.final-cta-content p {
  max-width: 470px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-lg);
  line-height: 1.4;
}

.button-final {
  margin-top: 30px;
  color: var(--blue-dark);
  background: var(--accent);
  box-shadow: 0 7px 0 rgba(0, 141, 184, 0.35), 0 17px 32px rgba(0, 195, 255, 0.2);
}

.button-final:hover {
  box-shadow: 0 9px 0 rgba(0, 141, 184, 0.35), 0 21px 37px rgba(0, 195, 255, 0.27);
}

.cta-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.cta-shape-one {
  top: 42px;
  right: 17%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 195, 255, 0.6);
  border-radius: 13px;
  transform: rotate(18deg);
}

.cta-shape-two {
  bottom: 53px;
  left: 17%;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 8px rgba(244, 154, 245, 0.1);
}

.site-footer {
  padding: 76px 0 25px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) repeat(4, minmax(110px, 1fr));
  gap: 32px;
}

.brand-footer {
  color: var(--white);
}

.footer-brand > p {
  max-width: 240px;
  margin: 23px 0 25px;
  color: #9ba6a9;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-cta {
  min-height: 43px;
  padding: 10px 14px;
  color: var(--blue-dark);
  background: var(--accent);
  box-shadow: 0 5px 0 rgba(0, 141, 184, 0.42);
  font-size: 0.89rem;
}

.footer-cta:hover {
  box-shadow: 0 7px 0 rgba(0, 141, 184, 0.42);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
  color: #8e9a9e;
  font-size: 0.82rem;
  line-height: 1.25;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 70px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #899497;
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #899497;
  transition: color 180ms ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--blue-dark);
  background: var(--accent);
  transform: translateY(-2px);
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: middle;
}

@media (max-width: 1080px) {
  .main-nav {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    order: 3;
    overflow-x: auto;
    padding-top: 4px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .platform-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.75fr);
  }

  .footer-grid {
    grid-template-columns: minmax(200px, 1.4fr) repeat(4, minmax(100px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .hero h1 {
    max-width: 760px;
  }

  .console-surface {
    grid-template-areas:
      "preview"
      "form";
    grid-template-columns: 1fr;
  }

  .console-preview {
    min-height: 440px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    border-left: 0;
  }

  .try-console {
    min-height: auto;
  }

  .split-heading,
  .translation-layout,
  .platform-grid,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 22px;
  }

  .platform-grid {
    gap: 36px;
  }

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

  .proof-item {
    display: block;
    padding: 0;
    border-bottom: 0;
  }

  .proof-item h3 {
    margin-top: 17px;
    font-size: 1.15rem;
  }

  .proof-item p {
    font-size: 0.84rem;
  }

  .workflow-grid {
    gap: 12px;
  }

  .workflow-card {
    padding: 24px;
  }

  .workflow-link {
    right: 24px;
    bottom: 23px;
    left: 24px;
  }

  .trust-callout {
    min-height: 330px;
  }

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

  .trust-card {
    min-height: 300px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro p {
    max-width: 450px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-legal {
    justify-content: flex-end;
  }

  .social-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

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

  .announcement-bar {
    min-height: 34px;
    padding: 7px 14px;
    font-size: 0.71rem;
  }

  .nav-wrap {
    margin-top: 10px;
  }

  .main-nav {
    padding: 13px 13px 10px 16px;
    border-radius: 22px;
  }

  .brand {
    font-size: 1.32rem;
  }

  .nav-actions {
    gap: 4px;
  }

  .nav-text-link {
    display: none;
  }

  .nav-actions .button-small {
    min-height: 38px;
    padding: 9px 10px;
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 61px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
    line-height: 0.91;
  }

  .hero-subhead {
    margin-top: 21px;
    font-size: 1rem;
  }

  .console-frame {
    margin-top: 35px;
    border-radius: 24px;
  }

  .console-surface {
    border-radius: 23px;
  }

  .console-preview {
    min-height: 355px;
  }

  .preview-copy {
    right: 20px;
    bottom: 25px;
    left: 20px;
  }

  .preview-copy strong {
    font-size: 2.48rem;
  }

  .preview-badge {
    right: 15px;
    bottom: 15px;
    font-size: 0.68rem;
  }

  .try-console {
    padding: 26px 20px 24px;
  }

  .console-heading {
    margin-bottom: 25px;
  }

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

  .tc-examples {
    gap: 8px;
  }

  .example-label {
    font-size: 0.67rem;
  }

  .trust-stats {
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 33px;
  }

  .trust-stat {
    min-width: 88px;
  }

  .trust-stat strong {
    font-size: 1.5rem;
  }

  .trust-stat span {
    font-size: 0.69rem;
  }

  .hero-cta {
    width: 100%;
    max-width: 310px;
    margin-top: 25px;
  }

  .hero-note {
    max-width: 290px;
    font-size: 0.71rem;
  }

  .section-heading h2,
  .translation-layout .section-heading h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .section-heading .section-lead {
    font-size: 1rem;
  }

  .split-heading {
    gap: 17px;
  }

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

  .script-pane {
    min-height: 255px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  }

  .canvas-pane {
    min-height: 330px;
  }

  .window-footer {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 17px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .proof-stack {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .proof-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .proof-item h3 {
    margin-top: 0;
  }

  .feature-grid,
  .workflow-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 290px;
  }

  .section-footnote {
    align-items: flex-start;
    text-align: left;
  }

  .translation-board {
    padding: 11px;
    border-radius: 25px;
  }

  .board-header {
    flex-wrap: wrap;
    gap: 8px;
    padding: 7px 8px 17px;
  }

  .route-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .route-card {
    min-height: 172px;
  }

  .route-card .route-label {
    margin-bottom: 21px;
  }

  .route-connector {
    width: 38px;
    height: 38px;
    margin: -3px auto;
    transform: rotate(90deg);
  }

  .translation-board-footer {
    justify-content: flex-start;
    gap: 8px 16px;
    padding-top: 15px;
  }

  .workflow-card {
    min-height: 285px;
  }

  .workflow-bottom {
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.67rem;
  }

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

  .trust-card {
    min-height: 220px;
  }

  .trust-card h3 {
    margin-top: 43px;
  }

  .trust-strip {
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.65rem;
    text-align: center;
  }

  .faq-section {
    padding-top: 91px;
    padding-bottom: 96px;
  }

  .faq-list summary {
    grid-template-columns: 32px minmax(0, 1fr) 25px;
    gap: 7px;
    padding: 18px 16px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 49px 21px 55px;
  }

  .faq-answer p {
    font-size: 0.86rem;
  }

  .final-cta {
    padding-top: 23px;
    padding-bottom: 23px;
  }

  .final-cta-panel,
  .final-cta-content {
    min-height: 430px;
  }

  .final-cta-panel {
    border-radius: 30px;
  }

  .final-cta-content {
    padding: 43px 20px;
  }

  .final-cta-content h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .final-cta-content p {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 39px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-top: 54px;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .social-links {
    grid-column: auto;
  }
}

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

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

/* Sub-pages share the component floor but must not inherit the landing hero geometry. */
:root {
  --muted: #5f5f5f;
  --faint: #666666;
  --accent-deep: #006b88;
}

main p,
main h1 + p {
  max-width: 820px;
}

main > .hero:not([aria-labelledby="hero-title"]) {
  padding: var(--s9) var(--gutter);
  background: var(--light);
  color: var(--ink);
}

main > .hero:not([aria-labelledby="hero-title"]) .hero-inner {
  align-items: flex-start;
  text-align: left;
}

main > .hero:not([aria-labelledby="hero-title"]) h1 {
  max-width: 820px;
  margin: 0 0 var(--s5);
  background: none;
  color: var(--ink);
  font-size: var(--t-h1);
  line-height: 1.04;
  letter-spacing: var(--tr-tight);
}

main > .hero:not([aria-labelledby="hero-title"]) .hero-subhead {
  max-width: 820px;
  margin: 0 0 var(--s5);
  color: var(--muted);
  font-size: var(--t-lead);
  line-height: 1.45;
  letter-spacing: normal;
}

main > section.band .section-heading h2,
main > section.band-tint .section-heading h2,
main > section.band-dark .section-heading h2 {
  font-size: var(--t-h2);
  line-height: 1.12;
  letter-spacing: var(--tr-tight);
}

.band-dark .section-heading .section-lead,
.band-dark > .container > .section-heading > p,
.band-dark p {
  color: var(--muted-dark);
}

.section-workflow .workflow-card {
  background: #0b4247;
}

.band-dark .workflow-card {
  background: #0b0b0b;
}

main > .hero[aria-labelledby="hero-title"] .hero-subhead {
  width: 100%;
  max-width: 820px;
  padding-inline: 0;
}

main > .hero[aria-labelledby="hero-title"] h1 {
  max-width: 820px;
}

/* --- composition rules (visual-check.py: ragged image rows, stranded columns) --- */
main figure img,
main .ba img,
main .card-media img,
main .media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.section-heading {
  max-width: 780px;
  margin-inline: auto;
}
.faq-list {
  max-width: 860px;
  margin-inline: auto;
}
.ba-note {
  max-width: 820px;
  margin-inline: auto;
}
