:root {
  --navy: #07122c;
  --navy-deep: #050d21;
  --navy-soft: #101d3c;
  --surface: #fcfaf7;
  --surface-soft: #f4f0eb;
  --ink: #0d1733;
  --purple: #2d075b;
  --blue: #3a63ff;
  --blue-strong: #244bff;
  --cyan: #45d3ff;
  --red: #ff3152;
  --white: #ffffff;
  --muted: #b9c4de;
  --muted-dark: #5a647f;
  --line: rgba(255, 255, 255, 0.11);
  --line-dark: rgba(13, 23, 51, 0.12);
  --shadow: 0 26px 60px rgba(1, 7, 23, 0.2);
  --shadow-deep: 0 38px 90px rgba(1, 7, 23, 0.34);
  --container: 1180px;
  --radius: 16px;
  --font: "Segoe UI Variable", "Inter", "Aptos", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 20px;
  transition: padding 360ms var(--ease-out);
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(1300px, calc(100% - 40px));
  min-height: 68px;
  margin-inline: auto;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(69, 211, 255, 0.15);
  border-radius: 13px;
  background: rgba(5, 13, 33, 0.78);
  box-shadow: 0 16px 38px rgba(1, 7, 23, 0.2);
  backdrop-filter: blur(16px);
  transition:
    min-height 360ms var(--ease-out),
    width 360ms var(--ease-out),
    border-color 360ms ease,
    background 360ms ease,
    box-shadow 360ms ease;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.site-header.is-scrolled .nav-shell {
  width: min(1240px, calc(100% - 28px));
  min-height: 60px;
  border-color: rgba(69, 211, 255, 0.24);
  background: rgba(5, 13, 33, 0.92);
  box-shadow: 0 18px 48px rgba(1, 7, 23, 0.34);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--white);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
  transition: transform 260ms var(--ease-out);
}

.brand-logo {
  width: 42px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 9px 20px rgba(255, 49, 82, 0.18));
  transition: filter 300ms ease, transform 420ms var(--ease-spring);
}

.wordmark:hover {
  transform: translateY(-1px);
}

.wordmark:hover .brand-logo {
  filter: drop-shadow(0 11px 24px rgba(255, 49, 82, 0.32));
  transform: rotate(-4deg) scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.nav-links a,
.login-link {
  position: relative;
  color: #dce5f8;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--cyan);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.login-link:hover {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  overflow: hidden;
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease, transform 240ms var(--ease-out);
}

.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: rotate(0deg) scaleX(0.6);
  transition: opacity 180ms ease, transform 420ms var(--ease-spring);
}

.nav-toggle .icon {
  transition: opacity 160ms ease, transform 360ms var(--ease-spring);
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(69, 211, 255, 0.54);
  background: rgba(58, 99, 255, 0.15);
  box-shadow: 0 0 0 5px rgba(58, 99, 255, 0.08), inset 0 0 22px rgba(69, 211, 255, 0.08);
  transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.58);
}

.nav-toggle[aria-expanded="true"]::before,
.nav-toggle[aria-expanded="true"]::after {
  opacity: 1;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg) scaleX(1);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg) scaleX(1);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 9px;
  background: linear-gradient(180deg, #4d70ff 0%, var(--blue) 100%);
  box-shadow: 0 12px 32px rgba(58, 99, 255, 0.24);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  isolation: isolate;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::before {
  position: absolute;
  z-index: -1;
  top: -45%;
  bottom: -45%;
  left: -70%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  content: "";
  transform: skewX(-20deg) translateX(0);
  transition: transform 620ms var(--ease-out);
}

.button:hover {
  box-shadow: 0 16px 40px rgba(58, 99, 255, 0.34);
  transform: translateY(-2px);
}

.button:hover::before {
  transform: skewX(-20deg) translateX(430%);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 12px;
}

.button-outline {
  border-color: rgba(69, 211, 255, 0.45);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover {
  border-color: var(--cyan);
  box-shadow: 0 12px 30px rgba(69, 211, 255, 0.12);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: none;
}

.arrow-button .icon,
.button .icon {
  width: 18px;
  height: 18px;
  transition: transform 260ms var(--ease-out);
}

.arrow-button:hover .icon,
.button:hover .icon {
  transform: translateX(3px);
}

.dark-section {
  position: relative;
  background: var(--navy);
  color: var(--white);
}

.light-section {
  background: var(--surface);
  color: var(--ink);
}

.hero {
  isolation: isolate;
  overflow: hidden;
  min-height: 1040px;
  padding: 155px 0 92px;
  background:
    linear-gradient(rgba(58, 99, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 99, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 32%, rgba(58, 99, 255, 0.14), transparent 34%),
    linear-gradient(180deg, var(--navy-deep), var(--navy) 70%, #081631);
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.hero::before {
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 30% 34%, rgba(69, 211, 255, 0.1), transparent 25%),
    radial-gradient(circle at 70% 28%, rgba(126, 70, 255, 0.14), transparent 28%);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1);
  animation: hero-ambient 11s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(5, 13, 33, 0.48));
  content: "";
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 990px;
  text-align: center;
}

.hero h1 {
  max-width: 960px;
  margin: 36px auto 22px;
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 820;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.hero-copy > p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .button {
  min-width: 206px;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 72px 1fr 1.25fr 1.12fr;
  min-height: 355px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(69, 211, 255, 0.24);
  border-radius: 18px;
  background: rgba(9, 24, 52, 0.86);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dashboard-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  border-right: 1px solid var(--line);
  background: rgba(4, 12, 30, 0.72);
}

.dashboard-rail span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #9fafd0;
}

.dashboard-rail span.is-active {
  border-color: rgba(69, 211, 255, 0.32);
  background: linear-gradient(145deg, var(--blue), #2953da);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(58, 99, 255, 0.28);
}

.dashboard-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 23px;
  border-right: 1px solid var(--line);
}

.dashboard-panel:last-child {
  border-right: 0;
}

.preview-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.preview-heading strong {
  font-size: 16px;
}

.preview-heading span {
  color: #8190b2;
  font-size: 10px;
}

.priority-list {
  display: grid;
  gap: 9px;
}

.priority-list > div {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.priority-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
}

.priority-icon.blue {
  background: rgba(58, 99, 255, 0.24);
  color: #7390ff;
}

.priority-icon.cyan {
  background: rgba(69, 211, 255, 0.16);
  color: var(--cyan);
}

.priority-icon.purple {
  background: rgba(111, 54, 210, 0.2);
  color: #a67cff;
}

.priority-list span:not(.priority-icon) {
  color: #dce5f8;
  font-size: 13px;
}

.priority-list strong {
  font-size: 17px;
}

.dashboard-panel > a {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  color: #7f9cff;
  font-size: 12px;
}

.dashboard-panel > a .icon {
  width: 15px;
  height: 15px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.room-grid > div {
  position: relative;
  display: grid;
  min-height: 84px;
  align-content: center;
  padding: 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.045);
}

.room-grid span {
  color: #b6c1d9;
  font-size: 11px;
}

.room-grid strong {
  margin-top: 4px;
  font-size: 20px;
}

.room-grid i {
  position: absolute;
  right: 12px;
  bottom: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.blue-dot { background: var(--blue); }
.cyan-dot { background: var(--cyan); }
.red-dot { background: var(--red); }
.purple-dot { background: #8a54ff; }

.task-panel ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.task-panel li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.task-panel li > span {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 1px solid #5c78ba;
  border-radius: 4px;
}

.task-panel li strong,
.task-panel li small {
  display: block;
}

.task-panel li strong {
  color: #e6ecf9;
  font-size: 11px;
}

.task-panel li small {
  margin-top: 3px;
  color: #8291b3;
  font-size: 9px;
}

.proof-rows {
  margin-top: 46px;
}

.proof-rows > div {
  display: grid;
  grid-template-columns: 54px minmax(210px, 0.8fr) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  border-top: 1px solid var(--line);
}

.proof-rows > div:last-child {
  border-bottom: 1px solid var(--line);
}

.proof-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(69, 211, 255, 0.38);
  border-radius: 11px;
  color: var(--cyan);
}

.proof-rows strong {
  font-size: 16px;
}

.proof-rows p {
  margin: 0;
  color: #a8b5d0;
  font-size: 13px;
}

.proof-rows > div > .icon {
  width: 18px;
  color: #cbd6ed;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 46px;
}

.section-heading h2 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 820;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.section-heading p {
  max-width: 450px;
  margin: 0 0 4px;
  color: var(--muted);
}

.section-heading.dark-copy p {
  color: var(--muted-dark);
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered p {
  margin-inline: auto;
}

.section-heading.centered p {
  margin-top: 14px;
}

.workflow {
  padding: 112px 0;
  background:
    linear-gradient(90deg, rgba(58, 99, 255, 0.04) 1px, transparent 1px),
    linear-gradient(var(--navy), var(--navy-deep));
  background-size: 78px 100%, auto;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.workflow-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 0 0 6px rgba(58, 99, 255, 0.06);
}

.step-copy {
  min-height: 154px;
  padding-top: 22px;
}

.step-copy h3 {
  margin: 0;
  font-size: 15px;
}

.step-copy p {
  margin: 8px 0 0;
  color: #a7b4d0;
  font-size: 12px;
}

.workflow-screen {
  min-height: 330px;
  padding: 15px;
  border: 1px solid rgba(150, 168, 207, 0.28);
  border-radius: 12px;
  background: #0a152c;
  box-shadow: 0 18px 35px rgba(1, 6, 18, 0.24);
}

.workflow-screen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.workflow-screen-head strong {
  font-size: 12px;
}

.workflow-screen-head span {
  padding: 3px 7px;
  border-radius: 99px;
  background: rgba(69, 211, 255, 0.1);
  color: var(--cyan);
  font-size: 8px;
}

.mini-list {
  display: grid;
  margin-top: 12px;
}

.mini-list b,
.mini-list span {
  padding: 7px 8px;
}

.mini-list b {
  border-top: 1px solid var(--line);
  color: #e5ebf8;
  font-size: 10px;
}

.mini-list b:first-child {
  border: 0;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(90deg, var(--purple), var(--blue-strong));
}

.mini-list span {
  color: #8392b4;
  font-size: 8px;
}

.guest-mini {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
}

.avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(69, 211, 255, 0.16);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
}

.guest-mini b,
.guest-mini small {
  display: block;
}

.guest-mini b {
  font-size: 10px;
}

.guest-mini small {
  color: #8e9dbd;
  font-size: 8px;
}

.room-choice {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.room-choice span {
  color: #93a2c1;
  font-size: 8px;
}

.room-choice strong {
  font-size: 11px;
}

.step-track {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.step-track i {
  width: 16px;
  height: 16px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--blue);
}

.step-track i:not(:last-child)::after {
  display: block;
  width: 23px;
  height: 1px;
  margin: 7px 0 0 15px;
  background: var(--blue);
  content: "";
}

.workflow-screen dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 18px;
  font-size: 9px;
}

.workflow-screen dt {
  color: #8795b6;
}

.workflow-screen dd {
  margin: 0;
  text-align: right;
}

.workflow-screen button,
.arrival-windows button {
  width: 100%;
  min-height: 36px;
  margin-top: 18px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
}

.task-mini {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
}

.task-mini > span {
  width: 13px;
  height: 13px;
  border: 1px solid var(--blue);
  border-radius: 50%;
}

.task-mini b,
.task-mini small {
  display: block;
}

.task-mini b { font-size: 9px; }
.task-mini small { color: #8695b5; font-size: 7px; }

.capabilities {
  padding: 112px 0 118px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.capability {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.capability > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(58, 99, 255, 0.08);
  color: var(--blue-strong);
}

.capability h3 {
  margin: 22px 0 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.capability p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
}

.capability > a {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: var(--blue);
}

.capability > a .icon {
  width: 18px;
}

.arrival {
  padding: 112px 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(45, 7, 91, 0.42), transparent 32%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
}

.arrival-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 70px;
  align-items: center;
}

.arrival-copy h2,
.onboarding h2,
.pillar h2,
.contact-copy h2,
.compact-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 820;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.arrival-copy > p,
.onboarding-layout > div > p,
.pillar p,
.contact-copy > p,
.compact-cta p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 22px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.feature-list > li > .icon {
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid rgba(69, 211, 255, 0.42);
  border-radius: 50%;
  color: var(--cyan);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.feature-list span {
  color: #9eacc8;
  font-size: 12px;
}

.arrival-flow {
  min-width: 0;
}

.flow-line {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: #dce5f8;
  font-size: 10px;
}

.flow-line span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--cyan);
}

.flow-line i {
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.arrival-windows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.arrival-windows article {
  min-height: 320px;
  padding: 18px;
  border: 1px solid rgba(151, 170, 207, 0.28);
  border-radius: 11px;
  background: rgba(8, 20, 43, 0.88);
}

.arrival-windows h3 {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 13px;
}

.arrival-windows h3 small {
  padding: 3px 6px;
  border: 1px solid rgba(69, 211, 255, 0.35);
  border-radius: 5px;
  color: var(--cyan);
  font-size: 7px;
  font-weight: 700;
}

.arrival-windows article > div:not(.room-art):not(.guest-mini):not(.step-track) {
  display: grid;
  gap: 2px;
  padding: 12px 10px;
  border-top: 1px solid var(--line);
}

.arrival-windows article > div strong,
.arrival-windows article > div span {
  display: block;
  font-size: 9px;
}

.arrival-windows article > div span {
  color: #8796b8;
}

.arrival-windows .selected-row {
  border: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--purple), var(--blue-strong));
}

.room-art {
  display: grid;
  min-height: 105px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(69, 211, 255, 0.12), rgba(58, 99, 255, 0.18)),
    linear-gradient(135deg, #13264b, #0a1630);
  color: var(--cyan);
}

.room-art .icon {
  width: 54px;
  height: 54px;
}

.arrival-windows dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  font-size: 8px;
}

.arrival-windows dd {
  margin: 0;
  text-align: right;
}

.arrival-windows dt {
  color: #8796b8;
}

.audience {
  padding: 108px 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 15px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(7, 18, 44, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.audience-card:hover {
  border-color: rgba(58, 99, 255, 0.4);
  box-shadow: 0 24px 54px rgba(7, 18, 44, 0.11);
  transform: translateY(-4px);
}

.audience-card > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgba(45, 7, 91, 0.08);
  color: var(--purple);
}

.audience-card h3 {
  margin: 20px 0 12px;
  font-size: 19px;
}

.audience-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted-dark);
  font-size: 13px;
}

.audience-card > .icon {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 20px;
  color: var(--blue);
}

.security-band {
  padding: 94px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 50%, rgba(58, 99, 255, 0.2), transparent 27%),
    linear-gradient(100deg, var(--navy-deep), #081839 62%, #09204a);
}

.security-band::after {
  position: absolute;
  width: 360px;
  height: 360px;
  right: 2%;
  margin-top: -270px;
  border: 1px solid rgba(69, 211, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(69, 211, 255, 0.035), 0 0 0 72px rgba(69, 211, 255, 0.02);
  content: "";
}

.security-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.security-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.security-copy h2 em {
  color: var(--cyan);
  font-style: normal;
}

.security-copy p {
  max-width: 450px;
  color: var(--muted);
}

.security-copy a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
}

.security-copy a .icon {
  width: 17px;
}

.security-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.security-controls article {
  min-height: 245px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.security-controls article > span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--cyan);
}

.security-controls article > span .icon {
  width: 42px;
  height: 42px;
}

.security-controls h3 {
  margin: 20px 0 9px;
  font-size: 15px;
}

.security-controls p {
  margin: 0;
  color: #a8b5cf;
  font-size: 12px;
}

.trust-strip {
  padding: 38px 0;
  background: var(--surface);
  color: var(--ink);
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip .container > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 8px 24px;
  border-right: 1px solid var(--line-dark);
}

.trust-strip .container > div:first-child { padding-left: 0; }
.trust-strip .container > div:last-child { padding-right: 0; border-right: 0; }

.trust-strip span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(58, 99, 255, 0.42);
  border-radius: 50%;
  color: var(--blue);
}

.trust-strip p,
.trust-strip strong {
  display: block;
}

.trust-strip p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 11px;
}

.trust-strip strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 12px;
}

.onboarding {
  padding: 90px 0;
  background: linear-gradient(100deg, #06112a, #081a3c);
}

.onboarding-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
  align-items: center;
}

.onboarding h2 {
  font-size: clamp(34px, 3.5vw, 50px);
}

.onboarding ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.onboarding li {
  position: relative;
  min-width: 0;
}

.onboarding li::before {
  position: absolute;
  z-index: 0;
  top: 19px;
  left: 38px;
  width: calc(100% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(69, 211, 255, 0.2));
  content: "";
}

.onboarding li:last-child::before {
  display: none;
}

.onboarding li .step-number {
  position: relative;
  z-index: 1;
  background: var(--navy);
}

.onboarding li > i {
  display: grid;
  width: 56px;
  height: 56px;
  margin-top: 28px;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
}

.onboarding h3 {
  margin: 17px 0 7px;
  font-size: 14px;
}

.onboarding li p {
  margin: 0;
  color: #a4b1cb;
  font-size: 11px;
}

.pricing-teaser {
  padding: 108px 0;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.price-row article {
  min-height: 228px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: var(--white);
}

.price-row article.is-featured {
  border-color: rgba(58, 99, 255, 0.42);
  box-shadow: 0 18px 48px rgba(58, 99, 255, 0.1);
}

.price-row h3 {
  margin: 0;
  font-size: 18px;
}

.price-row p {
  min-height: 62px;
  color: var(--muted-dark);
  font-size: 12px;
}

.price-row strong {
  display: block;
  color: var(--purple);
  font-size: 30px;
  letter-spacing: -0.04em;
}

.price-row small {
  font-size: 11px;
  font-weight: 600;
}

.price-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted-dark);
  font-size: 10px;
}

.pillar {
  padding: 88px 0;
  background:
    linear-gradient(90deg, rgba(58, 99, 255, 0.07) 1px, transparent 1px),
    linear-gradient(110deg, var(--navy), #0b1d43);
  background-size: 72px 100%, auto;
}

.pillar-layout,
.compact-cta .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
}

.pillar h2 {
  max-width: 800px;
  font-size: clamp(36px, 4vw, 54px);
}

.pillar p {
  max-width: 760px;
}

.pillar-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pillar-topic-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(69, 211, 255, 0.24);
  border-radius: 8px;
  color: #dce5f8;
  font-size: 12px;
  font-weight: 700;
}

.pillar-topic-links a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.pillar-topic-links .icon {
  width: 15px;
}

.faq {
  padding: 104px 0 112px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  border-top: 1px solid var(--line-dark);
}

.faq details {
  border-bottom: 1px solid var(--line-dark);
  transition: border-color 220ms ease;
}

.faq summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  list-style: none;
  transition: color 220ms ease;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq summary .icon {
  grid-area: 1 / 1;
  width: 18px;
  height: 18px;
  transition:
    opacity 190ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq .minus-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.72);
}

.faq details[open]:not(.is-closing) .plus-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.72);
}

.faq details[open]:not(.is-closing) .minus-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.faq details[open]:not(.is-closing) summary span {
  background: rgba(58, 99, 255, 0.1);
  transform: rotate(180deg);
}

.faq summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq details p {
  margin: -4px 44px 20px 0;
  color: var(--muted-dark);
  font-size: 13px;
  transform-origin: top;
}

.contact-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 10% 22%, rgba(45, 7, 91, 0.46), transparent 28%),
    linear-gradient(110deg, var(--navy-deep), #081a3c);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(38px, 4vw, 56px);
}

.contact-copy > p {
  max-width: 430px;
}

.privacy-note {
  display: flex;
  max-width: 390px;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
  color: #a8b5cf;
  font-size: 12px;
}

.privacy-note .icon {
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid rgba(69, 211, 255, 0.42);
  border-radius: 50%;
  color: var(--cyan);
}

.contact-form {
  padding: 24px;
  border: 1px solid rgba(69, 211, 255, 0.2);
  border-radius: 13px;
  background: rgba(7, 23, 51, 0.72);
  box-shadow: 0 24px 54px rgba(1, 7, 23, 0.22);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: #dbe4f6;
  font-size: 11px;
  font-weight: 680;
}

.form-grid .full-field {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(163, 183, 221, 0.23);
  border-radius: 7px;
  background: rgba(5, 13, 33, 0.48);
  color: var(--white);
  font-size: 14px;
}

.form-grid input,
.form-grid select {
  min-height: 46px;
  padding: 0 12px;
}

.form-grid textarea {
  min-height: 116px;
  padding: 11px 12px;
  resize: vertical;
}

.form-grid option {
  background: var(--navy);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--cyan);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(69, 211, 255, 0.12);
}

.form-button {
  width: 100%;
  margin-top: 16px;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-note,
.form-status {
  margin: 11px 0 0;
  color: #8291b2;
  font-size: 10px;
  text-align: center;
}

.form-status.is-success {
  color: var(--cyan);
}

.form-status.is-error {
  color: #ff9bad;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 76px 0 26px;
  border-top: 1px solid rgba(69, 211, 255, 0.1);
  background: #030a18;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.78fr);
  gap: 48px;
}

.footer-brand p {
  max-width: 390px;
  margin: 17px 0 0;
  color: #8291ae;
  font-size: 12px;
}

.footer-brand p a,
.footer-contact a,
.footer-legal a {
  color: var(--cyan);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 13px;
}

.footer-links a {
  color: #8e9bb5;
  font-size: 12px;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 38px;
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.footer-company p,
.footer-company address {
  margin: 0;
  color: #68758e;
  font-size: 10px;
  font-style: normal;
}

.footer-company p + p,
.footer-company address {
  margin-top: 4px;
}

.footer-contact {
  display: flex;
  gap: 20px;
  align-items: start;
  font-size: 11px;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding-top: 15px;
  font-size: 10px;
}

.reveal-ready .reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(26px) scale(0.987);
  transition:
    opacity 680ms ease,
    filter 680ms ease,
    transform 760ms var(--ease-out);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@keyframes hero-ambient {
  0% { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  100% { transform: translate3d(1.5%, 1%, 0) scale(1.045); }
}

@keyframes dashboard-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (min-width: 881px) and (prefers-reduced-motion: no-preference) {
  .dashboard-preview {
    animation: dashboard-float 7s var(--ease-out) infinite;
  }
}

@media (hover: hover) and (pointer: fine) {
  .workflow-screen,
  .capability,
  .security-controls article,
  .inner-product-window,
  .channel-status-grid article,
  .pricing-card {
    transition:
      transform 360ms var(--ease-out),
      border-color 280ms ease,
      background-color 280ms ease,
      box-shadow 360ms var(--ease-out);
  }

  .workflow-card:hover .workflow-screen,
  .inner-product-window:hover,
  .channel-status-grid article:hover {
    border-color: rgba(69, 211, 255, 0.38);
    box-shadow: 0 24px 54px rgba(1, 7, 23, 0.28), 0 0 0 1px rgba(69, 211, 255, 0.05);
    transform: translateY(-5px);
  }

  .capability:hover,
  .security-controls article:hover {
    background-color: rgba(58, 99, 255, 0.045);
    transform: translateY(-4px);
  }

  .capability:hover > span,
  .security-controls article:hover > span {
    transform: scale(1.07) rotate(-3deg);
  }

  .capability > span,
  .security-controls article > span {
    transition: transform 360ms var(--ease-spring), background-color 280ms ease;
  }

  .pricing-card:not(.is-featured):hover {
    border-color: rgba(58, 99, 255, 0.28);
    box-shadow: 0 24px 58px rgba(13, 23, 51, 0.11);
    transform: translateY(-6px);
  }

  .pricing-card.is-featured:hover {
    box-shadow: 0 30px 72px rgba(58, 99, 255, 0.2);
    transform: translateY(-14px);
  }
}

/* Inner pages */
.inner-main {
  background: var(--navy);
}

.inner-hero {
  min-height: 720px;
  padding: 132px 0 86px;
  background:
    linear-gradient(rgba(58, 99, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 99, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 38%, rgba(45, 7, 91, 0.4), transparent 30%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 54px;
  color: #8493b1;
  font-size: 11px;
}

.breadcrumbs a:hover,
.breadcrumbs a[aria-current="page"] {
  color: var(--cyan);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 70px;
  align-items: center;
}

.section-name {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inner-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 820;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.inner-hero-grid > div:first-child > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.inner-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  color: #8493b1;
  font-size: 10px;
}

.inner-product-window {
  overflow: hidden;
  border: 1px solid rgba(69, 211, 255, 0.24);
  border-radius: 16px;
  background: rgba(9, 24, 52, 0.78);
  box-shadow: var(--shadow-deep);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #475779;
}

.window-bar > span:first-child { background: var(--red); }
.window-bar > span:nth-child(2) { background: var(--cyan); }
.window-bar > span:nth-child(3) { background: var(--blue); }

.window-bar strong {
  margin-left: auto;
  color: #91a0bd;
  font-size: 9px;
  font-weight: 700;
}

.window-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.window-grid section {
  min-height: 270px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.window-grid section:last-child {
  border-right: 0;
}

.window-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  background: rgba(58, 99, 255, 0.17);
  color: var(--cyan);
}

.window-grid h3 {
  margin: 20px 0 22px;
  font-size: 13px;
}

.skeleton-line {
  width: 74%;
  height: 8px;
  margin-top: 12px;
  border-radius: 99px;
  background: rgba(146, 166, 206, 0.14);
}

.skeleton-line.wide { width: 100%; background: linear-gradient(90deg, rgba(58, 99, 255, 0.48), rgba(69, 211, 255, 0.22)); }
.skeleton-line.short { width: 54%; }

.window-grid a {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 54px;
  color: var(--cyan);
  font-size: 9px;
}

.window-grid a .icon {
  width: 13px;
}

.inner-content {
  padding: 96px 0 110px;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: 82px;
  justify-content: center;
  align-items: start;
}

.in-page-nav {
  position: sticky;
  top: 28px;
  display: grid;
  padding-right: 28px;
  border-right: 1px solid var(--line-dark);
}

.in-page-nav strong {
  margin-bottom: 14px;
  color: var(--purple);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.in-page-nav a {
  padding: 10px 0 10px 13px;
  border-left: 2px solid transparent;
  color: var(--muted-dark);
  font-size: 12px;
}

.in-page-nav a:hover,
.in-page-nav a[aria-current="true"] {
  border-left-color: var(--blue);
  color: var(--blue);
}

.article-body {
  min-width: 0;
}

.article-section {
  padding: 0 0 48px;
  border-bottom: 1px solid var(--line-dark);
}

.article-section + .article-section {
  padding-top: 48px;
}

.article-section h2,
.related h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.article-section p {
  margin: 0;
  color: #37435f;
  font-size: 16px;
  line-height: 1.75;
}

.article-section p + p {
  margin-top: 17px;
}

.article-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(7, 18, 44, 0.05);
  scrollbar-color: var(--blue) var(--surface-soft);
}

.article-table-wrap:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.article-table-wrap table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  color: #37435f;
  font-size: 13px;
  line-height: 1.55;
}

.article-table-wrap caption {
  padding: 17px 18px 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  text-align: left;
}

.article-table-wrap th,
.article-table-wrap td {
  padding: 14px 16px;
  border-top: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.article-table-wrap th {
  background: rgba(58, 99, 255, 0.07);
  color: var(--purple);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-table-wrap tbody tr:nth-child(even) {
  background: rgba(244, 240, 235, 0.45);
}

.article-note {
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid rgba(58, 99, 255, 0.24);
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  background: linear-gradient(110deg, rgba(58, 99, 255, 0.07), rgba(69, 211, 255, 0.06));
}

.article-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--purple);
  font-size: 13px;
}

.article-note p {
  font-size: 14px;
  line-height: 1.65;
}

.article-section ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 28px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.article-section li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
  align-items: start;
  color: #37435f;
  font-size: 14px;
}

.article-section li .icon {
  width: 20px;
  color: var(--blue);
}

.related {
  padding-top: 52px;
}

.related > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.related a {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 17px;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.related a:hover {
  border-color: rgba(58, 99, 255, 0.42);
  color: var(--blue);
}

.related a .icon {
  width: 18px;
}

.compact-cta {
  padding: 74px 0;
  background: linear-gradient(110deg, var(--navy-deep), #0b1d43);
}

.compact-cta h2 {
  font-size: clamp(32px, 3.4vw, 48px);
}

.compact-cta p {
  margin-bottom: 0;
}

.legal-facts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 22px;
  align-self: stretch;
  align-content: center;
  padding: 32px;
  border: 1px solid rgba(69, 211, 255, 0.2);
  border-radius: 14px;
  background: rgba(9, 24, 52, 0.72);
}

.legal-facts strong {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-facts span {
  color: #d8e1f2;
  font-size: 13px;
}

.legal-page .article-layout {
  grid-template-columns: 250px minmax(0, 780px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 72px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 15px;
  background: var(--white);
  color: var(--ink);
}

.pricing-card.is-featured {
  border-color: rgba(58, 99, 255, 0.5);
  box-shadow: 0 24px 64px rgba(58, 99, 255, 0.14);
  transform: translateY(-10px);
}

.plan-label {
  display: block;
  margin: -28px -28px 24px;
  padding: 9px;
  border-radius: 14px 14px 0 0;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.pricing-card h2 {
  margin: 0;
  font-size: 24px;
}

.pricing-card > p {
  min-height: 68px;
  color: var(--muted-dark);
  font-size: 13px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
}

.plan-price strong {
  color: var(--purple);
  font-size: 42px;
  letter-spacing: -0.05em;
}

.plan-price span,
.pricing-card > small {
  color: var(--muted-dark);
  font-size: 11px;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 8px;
  align-items: start;
  color: #37435f;
  font-size: 12px;
}

.pricing-card li .icon {
  width: 18px;
  color: var(--blue);
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-card .button-outline {
  border-color: rgba(58, 99, 255, 0.34);
  color: var(--blue);
}

.pricing-copy {
  max-width: 780px;
  margin-inline: auto;
}

.operational-reality {
  padding: 108px 0;
  background:
    radial-gradient(circle at 94% 2%, rgba(69, 211, 255, 0.11), transparent 30%),
    var(--surface);
}

.reality-table {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 18, 44, 0.07);
}

.reality-head,
.reality-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.reality-head {
  background: var(--navy);
  color: var(--white);
}

.reality-head strong {
  padding: 18px 26px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reality-head strong:last-child {
  border-left: 1px solid var(--line);
  color: var(--cyan);
}

.reality-row {
  border-top: 1px solid var(--line-dark);
}

.reality-row > span {
  min-width: 0;
  padding: 21px 26px;
  color: var(--muted-dark);
  font-size: 14px;
}

.reality-row > span:last-child {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-left: 1px solid var(--line-dark);
  color: var(--ink);
  font-weight: 650;
}

.reality-row .icon {
  width: 19px;
  min-width: 19px;
  color: var(--blue);
}

.product-boundary {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 22px;
  padding: 24px 26px;
  border: 1px solid rgba(58, 99, 255, 0.2);
  border-radius: 14px;
  background: rgba(58, 99, 255, 0.06);
}

.product-boundary > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cyan);
}

.product-boundary strong {
  color: var(--ink);
  font-size: 14px;
}

.product-boundary p {
  margin: 6px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
}

.channel-status {
  padding: 104px 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(45, 7, 91, 0.52), transparent 31%),
    linear-gradient(105deg, var(--navy-deep), #081b40);
}

.channel-status-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.channel-status-grid article {
  min-height: 248px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.channel-status-grid article > span {
  display: inline-block;
  min-height: 29px;
  padding: 7px 10px;
  border: 1px solid rgba(69, 211, 255, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.channel-status-grid h3 {
  margin: 26px 0 10px;
  font-size: 17px;
}

.channel-status-grid p {
  margin: 0;
  color: #a8b5cf;
  font-size: 12px;
}

.channel-status-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 28px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 750;
}

.channel-status-link .icon {
  width: 18px;
}

.implementation-ownership {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.implementation-ownership article {
  padding: 24px;
  background: #091936;
}

.implementation-ownership strong {
  color: var(--cyan);
  font-size: 12px;
}

.implementation-ownership p {
  margin: 9px 0 0;
  color: #a4b1cb;
  font-size: 12px;
}

.plan-billing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}

.plan-billing > span {
  padding: 11px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: var(--surface);
}

.plan-billing small,
.plan-billing strong {
  display: block;
}

.plan-billing small {
  color: var(--muted-dark);
  font-size: 9px;
  text-transform: uppercase;
}

.plan-billing strong {
  margin-top: 3px;
  color: var(--ink);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 16px;
  }

  .login-link {
    display: none;
  }

  .dashboard-preview {
    grid-template-columns: 64px 1fr 1.1fr;
  }

  .dashboard-preview .task-panel {
    display: none;
  }

  .workflow-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-card:nth-child(n + 4) {
    margin-top: 28px;
  }

  .capability-grid,
  .price-row,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .channel-status-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-card.is-featured {
    transform: none;
  }

  .arrival-layout,
  .security-layout,
  .contact-layout {
    gap: 42px;
  }

  .security-controls article {
    padding: 16px;
  }

  .onboarding-layout {
    grid-template-columns: 1fr;
  }

  .inner-hero-grid {
    grid-template-columns: 1fr;
  }

  .inner-product-window {
    max-width: 760px;
  }
}

@media (max-width: 880px) {
  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 62px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100vh - 102px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    overflow-y: auto;
    border: 1px solid rgba(69, 211, 255, 0.24);
    border-radius: 15px;
    background: rgba(5, 13, 33, 0.94);
    box-shadow: 0 28px 72px rgba(1, 7, 23, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.975);
    transform-origin: 50% 0;
    visibility: hidden;
    backdrop-filter: blur(24px) saturate(130%);
    transition:
      opacity 240ms ease,
      transform 420ms var(--ease-spring),
      visibility 0s linear 420ms;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-links a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    border-radius: 9px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-7px);
    transition:
      color 180ms ease,
      background-color 180ms ease,
      opacity 260ms ease,
      transform 420ms var(--ease-spring);
  }

  .nav-links.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.is-open a:nth-child(1) { transition-delay: 50ms; }
  .nav-links.is-open a:nth-child(2) { transition-delay: 90ms; }
  .nav-links.is-open a:nth-child(3) { transition-delay: 130ms; }
  .nav-links.is-open a:nth-child(4) { transition-delay: 170ms; }
  .nav-links.is-open a:nth-child(5) { transition-delay: 210ms; }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a[aria-current="page"] {
    background: linear-gradient(90deg, rgba(58, 99, 255, 0.15), rgba(69, 211, 255, 0.04));
  }

  .nav-links a::after {
    top: 12px;
    right: auto;
    bottom: 12px;
    left: 0;
    width: 2px;
    height: auto;
    transform: scaleY(0.2);
  }

  .nav-links a:hover::after,
  .nav-links a[aria-current="page"]::after {
    transform: scaleY(1);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  body::before {
    position: fixed;
    z-index: 40;
    inset: 0;
    background: rgba(2, 7, 20, 0.56);
    content: "";
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    backdrop-filter: blur(5px);
    transition: opacity 260ms ease, visibility 0s linear 260ms;
  }

  body.nav-open::before {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .hero {
    padding-top: 128px;
  }

  .dashboard-preview {
    grid-template-columns: 58px 1fr;
  }

  .dashboard-preview .room-panel {
    display: none;
  }

  .proof-rows > div {
    grid-template-columns: 48px 1fr auto;
    gap: 16px;
  }

  .proof-rows p {
    grid-column: 2 / 3;
    margin-top: -20px;
    padding-bottom: 16px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 16px;
  }

  .workflow-steps,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .channel-status-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-card:nth-child(n + 3) {
    margin-top: 28px;
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arrival-layout,
  .security-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .security-controls {
    margin-top: 14px;
  }

  .trust-strip .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .trust-strip .container > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip .container > div:nth-child(3) {
    padding-left: 0;
  }

  .onboarding ol {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }

  .onboarding li:nth-child(2)::before {
    display: none;
  }

  .pillar-layout,
  .compact-cta .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-links:last-child {
    grid-column: 2 / -1;
  }

  .article-layout,
  .legal-page .article-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .in-page-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
    border: 1px solid var(--line-dark);
    border-radius: 10px;
  }

  .in-page-nav strong {
    grid-column: 1 / -1;
  }

  .legal-page .in-page-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 14px;
    border-right: 1px solid var(--line-dark);
    white-space: nowrap;
    scrollbar-color: var(--blue) var(--surface-soft);
    scrollbar-width: thin;
  }

  .legal-page .in-page-nav strong,
  .legal-page .in-page-nav a {
    flex: 0 0 auto;
  }

  .legal-page .in-page-nav strong {
    display: inline-flex;
    align-items: center;
    margin: 0 6px 0 0;
  }

  .legal-page .in-page-nav a {
    padding: 9px 12px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    background: var(--white);
  }

  .legal-page .in-page-nav a:hover,
  .legal-page .in-page-nav a[aria-current="true"] {
    border-color: var(--blue);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .nav-shell {
    width: calc(100% - 20px);
    padding-inline: 12px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 70px;
    background-size: 44px 44px, 44px 44px, auto, auto;
  }

  .hero h1 {
    margin-top: 28px;
    font-size: 43px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions,
  .inner-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .inner-actions .button {
    width: 100%;
  }

  .dashboard-preview {
    grid-template-columns: 50px 1fr;
    min-height: 330px;
    margin-top: 34px;
  }

  .dashboard-rail {
    padding-inline: 6px;
  }

  .dashboard-rail span {
    width: 36px;
    height: 36px;
  }

  .dashboard-rail .icon {
    width: 18px;
  }

  .dashboard-panel {
    padding: 18px;
  }

  .proof-rows {
    margin-top: 32px;
  }

  .proof-rows > div {
    grid-template-columns: 42px 1fr;
    padding: 14px 0;
  }

  .proof-rows p {
    grid-column: 2;
    margin-top: -14px;
    padding: 0;
  }

  .proof-rows > div > .icon {
    display: none;
  }

  .proof-icon {
    width: 40px;
    height: 40px;
  }

  .workflow,
  .operational-reality,
  .capabilities,
  .channel-status,
  .arrival,
  .audience,
  .pricing-teaser,
  .faq,
  .contact-section,
  .inner-content {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .arrival-copy h2,
  .security-copy h2,
  .onboarding h2,
  .pillar h2,
  .contact-copy h2 {
    font-size: 37px;
  }

  .workflow-steps,
  .capability-grid,
  .channel-status-grid,
  .audience-grid,
  .price-row,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card:nth-child(n + 2) {
    margin-top: 28px;
  }

  .step-copy {
    min-height: auto;
    padding-bottom: 20px;
  }

  .workflow-screen {
    min-height: 280px;
  }

  .capability {
    min-height: 195px;
  }

  .flow-line {
    grid-template-columns: auto 1fr auto 1fr auto 1fr;
  }

  .flow-line i {
    display: none;
  }

  .flow-line b {
    font-size: 8px;
  }

  .arrival-windows {
    grid-template-columns: 1fr;
  }

  .arrival-windows article {
    min-height: 280px;
  }

  .security-controls {
    grid-template-columns: 1fr;
  }

  .security-controls article {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-strip .container,
  .onboarding ol {
    grid-template-columns: 1fr;
  }

  .trust-strip .container > div {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .onboarding li::before {
    display: none;
  }

  .reality-head {
    display: none;
  }

  .reality-row {
    grid-template-columns: 1fr;
  }

  .reality-row > span:last-child {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
    background: rgba(58, 99, 255, 0.035);
  }

  .product-boundary,
  .implementation-ownership {
    grid-template-columns: 1fr;
  }

  .implementation-ownership {
    gap: 1px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .full-field {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-links:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-contact,
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal {
    align-items: flex-start;
  }

  .inner-hero {
    min-height: auto;
    padding: 112px 0 72px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .inner-hero h1 {
    font-size: 43px;
  }

  .inner-hero-grid > div:first-child > p {
    font-size: 16px;
  }

  .window-grid {
    grid-template-columns: 1fr;
  }

  .window-grid section {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .window-grid section:last-child {
    border-bottom: 0;
  }

  .window-grid a {
    margin-top: 32px;
  }

  .in-page-nav {
    grid-template-columns: 1fr;
  }

  .legal-page .in-page-nav {
    display: flex;
  }

  .article-section ul,
  .related > div {
    grid-template-columns: 1fr;
  }

  .article-table-wrap {
    margin-right: -15px;
    margin-left: -15px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .article-table-wrap table {
    min-width: 600px;
  }

  .article-note {
    padding: 18px;
  }

  .pillar-topic-links {
    display: grid;
  }

  .pillar-topic-links a {
    justify-content: space-between;
  }

  .pricing-card {
    min-height: 520px;
  }

  .legal-facts {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready .reveal {
    filter: none;
    opacity: 1;
    transform: none;
  }
}
/* One flag links to the equivalent page in the other language. */
.site-header .nav-shell { grid-template-columns: auto 1fr auto auto; gap: 22px; }
.language-switch { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 9px; grid-column: 4; grid-row: 1; }
.language-switch img { display: block; width: 22px; height: 14px; object-fit: contain; }
.language-switch:hover { background: rgba(255,255,255,.08); }
.language-switch:focus-visible { outline: 2px solid #45d3ff; outline-offset: 3px; }
.site-header .nav-links { grid-column: 2; grid-row: 1; }
.site-header .nav-actions { grid-column: 3; grid-row: 1; }
@media (max-width: 1100px) and (min-width: 881px) {
  .site-header .nav-shell { gap: 12px; }
  .site-header .nav-links { gap: 15px; }
  html[lang="en"] .site-header .nav-actions .login-link { display: none; }
}
@media (max-width: 880px) {
  .site-header .nav-shell { grid-template-columns: 1fr auto auto; gap: 8px; }
  .language-switch { grid-column: 2; }
  .site-header .nav-toggle { grid-column: 3; grid-row: 1; }
  .site-header .nav-links { grid-column: auto; grid-row: auto; }
}

/* Supplied demo screenshots: keep the top of the app and crop the long page tail. */
.product-screenshot { min-width: 0; width: 100%; margin: 0; overflow: hidden; border: 1px solid rgba(69,211,255,.24); border-radius: 16px; background: #091834; box-shadow: var(--shadow-deep); }
.product-screenshot-crop { aspect-ratio: 16 / 10; overflow: hidden; background: #f3f0eb; }
.product-screenshot-crop img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: left top; }
.product-screenshot figcaption { display: flex; justify-content: space-between; gap: 12px; padding: 13px 18px; color: #d6e2f5; font-size: 12px; line-height: 1.5; }
.product-screenshot figcaption span:last-child { color: #99abc7; }
.product-screenshot-hero { max-width: 1120px; margin-inline: auto; }
.product-screenshot-hero .product-screenshot-crop { aspect-ratio: 16 / 9; }
@media (max-width: 700px) { .product-screenshot { border-radius: 10px; } .product-screenshot figcaption { padding: 10px 12px; font-size: 10px; } }

.product-screenshot-hero { margin-top: 48px; }
