:root {
  color-scheme: dark;
  --bg: #070b12;
  --bg-soft: #0a101b;
  --surface: #0d1522;
  --surface-strong: #111c2d;
  --surface-blue: #0b1a30;
  --text: #f4f7fb;
  --muted: #a8b4c5;
  --muted-strong: #c7d0dd;
  --faint: #728096;
  --line: rgba(148, 163, 184, 0.16);
  --line-strong: rgba(148, 163, 184, 0.27);
  --blue: #2f7df6;
  --blue-light: #69a6ff;
  --cyan: #65c7ff;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.2);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --header-height: 72px;
  --container: 1180px;
  --container-wide: 1320px;
  --type-hero: clamp(2.35rem, 4.1vw, 3.4rem);
  --type-section: clamp(1.75rem, 2.8vw, 2.4rem);
  --type-subsection: clamp(1rem, 1.25vw, 1.12rem);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 5%, rgba(47, 125, 246, 0.1), transparent 31rem),
    linear-gradient(180deg, #080d15 0%, var(--bg) 40%);
  content: "";
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

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

p {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: var(--type-hero);
}

h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: var(--type-section);
}

h3 {
  margin-bottom: 10px;
  font-size: var(--type-subsection);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

::selection {
  background: rgba(101, 199, 255, 0.3);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--white);
  color: #07101d;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(7, 11, 18, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 11, 18, 0.97);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.03rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 29px;
  height: 29px;
  overflow: visible;
  fill: none;
  stroke: var(--blue-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

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

.desktop-nav a {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 19px;
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(47, 125, 246, 0.2);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 740;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: #438bfa;
  box-shadow: 0 14px 34px rgba(47, 125, 246, 0.28);
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  border-radius: 9px;
  padding: 10px 15px;
  font-size: 0.82rem;
}

.button-light {
  background: var(--white);
  box-shadow: 0 12px 35px rgba(4, 23, 54, 0.18);
  color: #10213a;
}

.button-light:hover {
  background: #eaf2ff;
  color: #081a35;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.93rem;
  font-weight: 680;
}

.text-link::after {
  color: var(--blue-light);
  content: "↓";
  transition: transform 160ms ease;
}

.text-link:hover {
  color: var(--white);
}

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

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 76px) 0 82px;
}

.hero::after {
  position: absolute;
  right: 3%;
  bottom: 10%;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: rgba(47, 125, 246, 0.07);
  content: "";
  filter: blur(90px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(46px, 6vw, 90px);
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.86fr);
}

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

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-light);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
  content: "";
}

.hero-lede,
.section-heading > p:not(.kicker),
.control-copy > p:not(.kicker),
.cta-grid > div > p:not(.kicker) {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.72;
}

.hero-lede {
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.hero-actions > span {
  max-width: 260px;
  color: var(--faint);
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-signals li,
.hero-signals > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(13, 21, 34, 0.72);
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 630;
}

.hero-signals li::before,
.hero-signals > span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.hero-media {
  position: relative;
  min-height: 530px;
  overflow: visible;
}

.hero-media::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(101, 199, 255, 0.5), transparent 38%, rgba(47, 125, 246, 0.28));
  content: "";
}

.hero-media > img {
  width: 100%;
  height: 530px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: 56% center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 56%, rgba(3, 8, 14, 0.58));
  content: "";
  pointer-events: none;
}

.incoming-card {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: -42px;
  width: min(370px, calc(100% - 28px));
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 18px;
  background: rgba(9, 16, 27, 0.92);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.incoming-topline {
  display: grid;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 680;
  grid-template-columns: auto 1fr auto;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #57d99a;
  box-shadow: 0 0 12px rgba(87, 217, 154, 0.68);
}

.incoming-card > strong {
  display: block;
  margin-bottom: 15px;
  color: var(--white);
  font-size: 0.94rem;
  letter-spacing: -0.012em;
  line-height: 1.45;
}

.response-row {
  display: grid;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
  grid-template-columns: auto 1fr auto;
}

.response-row p {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.response-row b {
  color: var(--blue-light);
  font-weight: 700;
}

.response-icon,
.check-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 8px;
  background: rgba(47, 125, 246, 0.12);
  color: var(--blue-light);
}

.response-icon svg,
.check-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.check-icon {
  width: 25px;
  height: 25px;
  background: rgba(87, 217, 154, 0.1);
  color: #79dfa9;
}

.concept-label {
  position: absolute;
  right: 17px;
  bottom: 8px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
}

.incoming-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8de9ba;
}

.status-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #57d99a;
  box-shadow: 0 0 12px rgba(87, 217, 154, 0.7);
  content: "";
}

.message-bubble {
  border-radius: 12px 12px 12px 3px;
  padding: 13px 14px;
  background: #17243a;
  color: #e7edf6;
  font-size: 0.88rem;
  line-height: 1.5;
}

.response-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 690;
}

.response-line svg {
  width: 15px;
  height: 15px;
}

.issue-strip {
  border-block: 1px solid var(--line);
  background: #0a101a;
}

.issue-grid {
  display: grid;
  min-height: 160px;
  align-items: stretch;
  grid-template-columns: 1.25fr repeat(3, 1fr);
}

.issue-intro,
.issue-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px;
}

.issue-intro {
  padding-left: 0;
}

.issue-intro strong {
  max-width: 260px;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.issue-intro {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.issue-intro span {
  margin-bottom: 7px;
  color: var(--blue-light);
  font-size: 0.68rem;
  font-weight: 770;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.issue-item {
  border-left: 1px solid var(--line);
}

.issue-time {
  margin-bottom: 8px;
  color: var(--blue-light);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.issue-item strong {
  margin-bottom: 5px;
  font-size: 0.96rem;
  line-height: 1.35;
}

.issue-item p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.issue-grid > article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  padding: 28px 30px;
}

.issue-grid > article time {
  margin-bottom: 8px;
  color: var(--blue-light);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.09em;
}

.issue-grid > article strong {
  margin-bottom: 5px;
  font-size: 0.96rem;
  line-height: 1.35;
}

.issue-grid > article p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.section {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  max-width: 850px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered > p {
  margin-inline: auto;
}

.section-heading.centered .kicker {
  justify-self: center;
}

.row-heading {
  max-width: none;
  align-items: end;
  gap: 48px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.62fr);
}

.row-heading > p {
  padding-bottom: 7px;
}

.section-heading.center h2,
.section-heading.center > p {
  margin-inline: auto;
}

.section-heading.center .kicker {
  justify-self: center;
}

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

.feature-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 29px;
  background: linear-gradient(150deg, rgba(17, 28, 45, 0.95), rgba(10, 16, 27, 0.95));
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, transform 180ms ease;
}

.feature-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(47, 125, 246, 0.08);
  content: "";
  filter: blur(4px);
}

.feature-card:hover,
.industry-card:hover {
  border-color: rgba(105, 166, 255, 0.42);
  transform: translateY(-4px);
}

.icon-box,
.industry-icon,
.integration-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(105, 166, 255, 0.28);
  border-radius: 11px;
  background: rgba(47, 125, 246, 0.1);
  color: var(--blue-light);
}

.icon-box svg,
.industry-icon svg,
.integration-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card p {
  position: relative;
  z-index: 1;
  max-width: 330px;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-number {
  position: absolute;
  top: 30px;
  right: 28px;
  color: rgba(105, 166, 255, 0.32);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.industries-section {
  border-block: 1px solid var(--line);
  background: #090f18;
}

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

.industry-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 180ms ease, transform 180ms ease;
}

.industry-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.industry-card:hover .industry-image {
  transform: scale(1.025);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: linear-gradient(180deg, rgba(5, 9, 15, 0.06) 20%, rgba(5, 9, 15, 0.92) 76%, #070b12 100%);
}

.industry-icon {
  margin-bottom: 17px;
  background: rgba(9, 17, 29, 0.82);
  backdrop-filter: blur(12px);
}

.industry-overlay p {
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.industry-photo {
  position: relative;
  height: 232px;
  overflow: hidden;
}

.industry-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 11, 18, 0.7));
  content: "";
}

.industry-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.industry-card:hover .industry-photo img {
  transform: scale(1.025);
}

.trade-icon {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(105, 166, 255, 0.3);
  border-radius: 11px;
  background: rgba(9, 17, 29, 0.84);
  color: var(--blue-light);
  backdrop-filter: blur(10px);
}

.trade-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.industry-body {
  padding: 24px;
}

.industry-body > span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-light);
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.industry-body p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.additional-industries {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.compact-industry-card {
  min-height: 172px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  background: rgba(13, 21, 34, 0.72);
}

.compact-industry-card h3 {
  margin-bottom: 8px;
  color: var(--blue-light);
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.compact-industry-card p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.industry-conclusion {
  margin-top: 20px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 650;
  text-align: center;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

.service-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--muted-strong);
  font-size: 0.66rem;
  font-weight: 650;
}

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

.process-grid::before {
  position: absolute;
  top: 29px;
  right: 16.5%;
  left: 16.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105, 166, 255, 0.4), transparent);
  content: "";
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}

.step-number {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 23px;
  place-items: center;
  border: 1px solid rgba(105, 166, 255, 0.34);
  border-radius: 14px;
  background: #0d192b;
  box-shadow: 0 0 0 9px var(--bg), 0 12px 30px rgba(0, 0, 0, 0.22);
  color: var(--blue-light);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-card p {
  max-width: 310px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid > li {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}

.step-badge {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-light);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid rgba(105, 166, 255, 0.34);
  border-radius: 14px;
  background: #0d192b;
  box-shadow: 0 0 0 9px var(--bg), 0 12px 30px rgba(0, 0, 0, 0.22);
  color: var(--blue-light);
}

.process-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process-grid > li p {
  max-width: 310px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.9rem;
}

.control-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 50%, rgba(47, 125, 246, 0.12), transparent 30rem),
    #080e17;
}

.control-grid {
  display: grid;
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 0.72fr);
}

.control-copy ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.control-copy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted-strong);
  font-size: 0.93rem;
}

.control-copy li::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 14px rgba(105, 166, 255, 0.55);
  content: "";
}

.control-copy li::before {
  display: none;
}

.control-copy li > span {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 125, 246, 0.13);
  color: var(--blue-light);
}

.control-copy li svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.samantha-embedded-panel {
  position: relative;
  width: min(100%, 560px);
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(105, 166, 255, 0.24);
  border-radius: 24px;
  padding: 18px;
  background: rgba(13, 21, 34, 0.9);
  box-shadow: var(--shadow);
}

.samantha-embedded-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px 16px;
}

.samantha-embedded-identity span,
.samantha-embedded-identity small {
  display: block;
}

.samantha-embedded-identity span {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.samantha-embedded-identity small {
  margin-top: 2px;
  color: var(--faint);
  font-size: 0.7rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(87, 217, 154, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(87, 217, 154, 0.08);
  color: #8de9ba;
  font-size: 0.69rem;
  font-weight: 720;
}

.live-badge .live-dot {
  flex: 0 0 auto;
}

.samantha-embedded-widget {
  display: grid;
  width: 100%;
  min-height: 500px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #080d15;
}

.integration-shell {
  position: relative;
  border: 1px solid rgba(105, 166, 255, 0.24);
  border-radius: 24px;
  padding: 18px;
  background: rgba(13, 21, 34, 0.88);
  box-shadow: var(--shadow);
}

.integration-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 680;
}

.integration-badge {
  border: 1px solid rgba(87, 217, 154, 0.25);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(87, 217, 154, 0.09);
  color: #8de9ba;
}

.integration-phone {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #080d15;
}

.phone-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  background: #0c1421;
}

.phone-bar span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #57d99a;
  box-shadow: 0 0 10px rgba(87, 217, 154, 0.62);
}

.phone-bar strong {
  font-size: 0.82rem;
}

.phone-bar small {
  margin-left: auto;
  color: var(--faint);
  font-size: 0.68rem;
}

.conversation {
  display: grid;
  gap: 12px;
  min-height: 330px;
  align-content: start;
  padding: 24px 18px;
}

.chat-message {
  max-width: 84%;
  border-radius: 13px 13px 13px 3px;
  padding: 12px 13px;
  background: #17243a;
  color: #e5ebf4;
  font-size: 0.82rem;
  line-height: 1.48;
}

.chat-message.agent {
  justify-self: end;
  border-radius: 13px 13px 3px 13px;
  background: #1f65cc;
  color: var(--white);
}

.conversation-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  padding: 11px 12px;
  border: 1px solid rgba(87, 217, 154, 0.17);
  border-radius: 11px;
  background: rgba(87, 217, 154, 0.07);
  color: #9be8bf;
  font-size: 0.74rem;
  font-weight: 680;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: linear-gradient(135deg, #175bc4, #2f7df6 58%, #438eff);
}

.cta-section::after {
  position: absolute;
  top: -180px;
  right: -80px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 56px;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.55fr);
}

.cta-grid h2 {
  margin-bottom: 15px;
  color: var(--white);
}

.cta-grid > div > p:not(.kicker) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
}

.kicker-light {
  color: #d9e9ff;
}

.cta-action {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.cta-action p {
  max-width: 290px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.72rem;
  line-height: 1.5;
}

.cta-action p strong {
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: #060910;
}

.footer-inner {
  display: grid;
  align-items: center;
  gap: 24px;
  grid-template-columns: auto 1fr auto auto;
}

.footer-inner > p,
.footer-links {
  color: var(--faint);
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.legal-page {
  min-height: 100vh;
  width: min(calc(100% - 48px), 780px);
  margin: 0 auto;
  padding: 112px 0 84px;
  background: var(--bg);
  color: var(--text);
}

.legal-shell.container {
  width: 100%;
}

.back-link {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--blue-light);
  font-size: 0.86rem;
  font-weight: 680;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.legal-page h2 {
  margin-top: 44px;
  font-size: 1.45rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page a:not(.brand) {
  color: var(--blue-light);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 980px) {
  :root {
    --header-height: 66px;
  }

  .samantha-embedded-panel {
    width: min(100%, 560px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    padding: 0;
    background: var(--surface);
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 17px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 24px;
    background: rgba(7, 11, 18, 0.98);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.32);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding: 13px 4px;
    color: var(--muted-strong);
    font-weight: 650;
  }

  .mobile-menu .button {
    margin-top: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 68px);
  }

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

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

  .hero-media {
    min-height: 520px;
  }

  .hero-media > img {
    height: 520px;
  }

  .incoming-card {
    left: 24px;
  }

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

  .issue-intro {
    grid-column: 1 / -1;
    min-height: 112px;
    border-bottom: 1px solid var(--line);
    padding-inline: 0;
  }

  .issue-intro strong {
    max-width: 500px;
  }

  .issue-item:first-of-type {
    border-left: 0;
    padding-left: 0;
  }

  .issue-grid > article:first-of-type {
    border-left: 0;
    padding-left: 0;
  }

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

  .feature-card:last-child,
  .industry-card:last-child {
    grid-column: 1 / -1;
  }

  .industry-card:last-child {
    min-height: 390px;
  }

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

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

  .row-heading {
    align-items: start;
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .integration-shell {
    width: min(100%, 660px);
  }

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

  .footer-inner > p:first-of-type {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 62px;
    --type-hero: clamp(2.25rem, 9.5vw, 2.8rem);
    --type-section: clamp(1.65rem, 7vw, 2.1rem);
    --type-subsection: 1.05rem;
  }

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

  .brand {
    font-size: 0.93rem;
  }

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

  .header-cta {
    display: none;
  }

  .hero {
    padding: calc(var(--header-height) + 48px) 0 62px;
  }

  .hero-grid {
    gap: 46px;
  }

  .hero-actions {
    align-items: stretch;
    gap: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-actions > span {
    max-width: none;
    text-align: center;
  }

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

  .hero-media {
    min-height: 420px;
  }

  .hero-media > img {
    height: 420px;
    object-position: 60% center;
  }

  .incoming-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 15px;
  }

  .issue-grid,
  .feature-grid,
  .industry-grid,
  .process-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .additional-industries {
    grid-template-columns: 1fr;
  }

  .compact-industry-card {
    min-height: 0;
  }

  .issue-intro {
    grid-column: auto;
    padding: 27px 0;
  }

  .issue-item,
  .issue-item:first-of-type {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 23px 0;
  }

  .issue-grid > article,
  .issue-grid > article:first-of-type {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 23px 0;
  }

  .issue-intro + article {
    border-top: 0;
  }

  .issue-intro + .issue-item {
    border-top: 0;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .feature-card,
  .feature-card:last-child,
  .industry-card,
  .industry-card:last-child {
    min-height: 0;
    grid-column: auto;
  }

  .feature-card {
    padding: 25px;
  }

  .industry-card,
  .industry-card:last-child {
    min-height: 390px;
  }

  .process-grid {
    gap: 38px;
  }

  .process-grid::before {
    display: none;
  }

  .process-card {
    padding: 0 8px;
  }

  .process-grid > li {
    padding: 0 8px;
  }

  .control-grid {
    gap: 42px;
  }

  .integration-shell {
    padding: 12px;
    border-radius: 18px;
  }

  .conversation {
    min-height: 300px;
    padding: 20px 13px;
  }

  .samantha-embedded-panel {
    border-radius: 18px;
    padding: 12px;
  }

  .samantha-embedded-header {
    padding: 2px 4px 12px;
  }

  .samantha-embedded-widget {
    min-height: 440px;
    border-radius: 14px;
  }

  .cta-section {
    padding: 62px 0;
  }

  .cta-grid {
    gap: 28px;
  }

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

  .footer-inner > p:last-child {
    grid-column: 1 / -1;
  }

  .footer-links {
    justify-self: end;
  }

  .legal-page {
    width: min(calc(100% - 32px), 780px);
    padding-top: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

}
