:root {
  --brand: #00aad4;
  --brand-cyan: #00b3d5;
  --brand-strong: #007a99;
  --secondary: #e053aa;
  --secondary-strong: #a12870;
  --violet: #6332b5;
  --success: #006b3c;
  --warning: #a65f00;
  --error: #b42323;
  --ink: #1c2129;
  --ink-soft: #596375;
  --background: #f6f7fa;
  --surface: #ffffff;
  --surface-muted: #eef1f5;
  --border: #d9dee7;
  --shadow-sm: 0 8px 28px rgba(28, 33, 41, 0.08);
  --shadow-lg: 0 30px 90px rgba(37, 58, 82, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(0, 122, 153, 0.5);
  outline-offset: 4px;
}

.page-glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.page-glow--cyan {
  top: 80px;
  right: -170px;
  background: radial-gradient(circle, rgba(0, 179, 213, 0.14), transparent 70%);
}

.page-glow--pink {
  top: 540px;
  left: -230px;
  background: radial-gradient(circle, rgba(224, 83, 170, 0.1), transparent 70%);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(217, 222, 231, 0.72);
  background: rgba(246, 247, 250, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 35px;
  height: 35px;
  overflow: visible;
  fill: none;
  stroke: var(--brand-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-mark circle {
  fill: var(--secondary);
  stroke: var(--surface);
  stroke-width: 1.5;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a,
.footer-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease;
}

.primary-nav a:hover,
.footer-nav a:hover {
  color: var(--brand-strong);
}

.header-status {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 0 4px rgba(166, 95, 0, 0.12);
}

[data-health-state="online"] .status-dot,
.status-dot[data-state="online"] {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(0, 107, 60, 0.12);
}

[data-health-state="offline"] .status-dot,
.status-dot[data-state="offline"] {
  background: var(--error);
  box-shadow: 0 0 0 4px rgba(180, 35, 35, 0.12);
}

.hero {
  position: relative;
  padding: 94px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: 74px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 17px;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 122, 153, 0.18);
  border-radius: 999px;
  background: rgba(0, 170, 212, 0.07);
  letter-spacing: 0.08em;
  color: #00657f;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 170, 212, 0.12);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 5.1vw, 72px);
  font-weight: 850;
  letter-spacing: -0.057em;
  line-height: 0.99;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(110deg, var(--brand-strong) 3%, var(--brand) 50%, var(--violet) 98%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 610px;
  margin: 27px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--brand-strong), #008fb4);
  box-shadow: 0 12px 28px rgba(0, 122, 153, 0.24);
  color: #fff;
}

.button--primary:hover {
  box-shadow: 0 16px 34px rgba(0, 122, 153, 0.31);
}

.button--secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.button--secondary:hover {
  background: #fff;
}

.demo-note {
  display: flex;
  max-width: 580px;
  align-items: center;
  gap: 8px;
  margin: 19px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.demo-note svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--brand-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.demo-note strong {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.product-preview {
  position: relative;
  min-height: 590px;
}

.preview-orbit {
  position: absolute;
  border: 1px dashed rgba(0, 122, 153, 0.19);
  border-radius: 50%;
}

.preview-orbit--one {
  inset: 6% -9% 1% 4%;
}

.preview-orbit--two {
  inset: 15% 1% 11% 15%;
  border-color: rgba(161, 40, 112, 0.16);
}

.app-window {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 8%;
  width: min(420px, 91%);
  padding: 0 15px 17px;
  overflow: hidden;
  border: 1px solid rgba(217, 222, 231, 0.94);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.25deg);
}

.window-bar {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 6px;
  margin-inline: -15px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  background: #fafbfc;
}

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

.window-bar span:first-child {
  background: var(--secondary);
}

.window-bar span:nth-child(2) {
  background: #f59e0b;
}

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

.window-bar p {
  margin: 0 0 0 10px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
}

.app-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 21px 2px 14px;
}

.app-toolbar p,
.app-toolbar strong {
  margin: 0;
}

.app-toolbar p {
  color: var(--ink-soft);
  font-size: 11px;
}

.app-toolbar strong {
  display: block;
  margin-top: 2px;
  font-size: 15px;
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-strong);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.search-preview {
  display: flex;
  height: 41px;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fbfcfd;
  color: var(--ink-soft);
  font-size: 11px;
}

.search-preview svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--ink-soft);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.tag-row {
  display: flex;
  gap: 7px;
  padding: 13px 0;
  overflow: hidden;
}

.tag {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
}

.tag--active {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
  color: #fff;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 9px 25px rgba(28, 33, 41, 0.07);
}

.project-visual {
  position: relative;
  height: 126px;
  overflow: hidden;
  background: linear-gradient(135deg, #d5f3f8, #bbdef3 62%, #dbcff7);
}

.project-visual svg {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  fill: rgba(0, 122, 153, 0.2);
}

.project-visual svg circle {
  fill: rgba(255, 255, 255, 0.6);
}

.project-visual span {
  position: absolute;
  top: 11px;
  left: 11px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.91);
  color: var(--brand-strong);
  font-size: 8px;
  font-weight: 800;
}

.project-body {
  padding: 13px;
}

.project-body h2,
.project-body p {
  margin: 0;
}

.project-body h2 {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.project-body p {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 9px;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 9px;
}

.project-meta span {
  color: var(--ink-soft);
}

.project-meta strong {
  color: var(--success);
}

.mini-project {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 13px;
}

.mini-project-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #f7d7eb;
  color: var(--secondary-strong);
  font-size: 12px;
  font-weight: 850;
}

.mini-project div {
  min-width: 0;
  flex: 1;
}

.mini-project strong,
.mini-project p {
  display: block;
  overflow: hidden;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-project strong {
  font-size: 10px;
}

.mini-project p {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 8px;
}

.mini-arrow {
  color: var(--brand-strong);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 222, 231, 0.94);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 35px rgba(28, 33, 41, 0.14);
  backdrop-filter: blur(12px);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 11px;
}

.floating-card small {
  margin-top: 1px;
  color: var(--ink-soft);
  font-size: 9px;
}

.floating-card--resource {
  bottom: 65px;
  left: -16px;
  transform: rotate(-3deg);
}

.floating-card--match {
  top: 98px;
  right: -30px;
  transform: rotate(2deg);
}

.floating-icon,
.match-check {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
}

.floating-icon {
  background: rgba(0, 170, 212, 0.12);
  color: var(--brand-strong);
}

.floating-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.match-check {
  border-radius: 50%;
  background: rgba(0, 107, 60, 0.11);
  color: var(--success);
  font-size: 16px;
  font-weight: 900;
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.63);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-list p {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding-inline: 20px;
  border-right: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.trust-list p:first-child {
  padding-left: 0;
}

.trust-list p:last-child {
  border-right: 0;
}

.trust-list span {
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 850;
}

.section {
  padding: 112px 0;
}

.section--soft {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(217, 222, 231, 0.78);
  border-bottom: 1px solid rgba(217, 222, 231, 0.78);
  background:
    radial-gradient(circle at 12% 80%, rgba(0, 170, 212, 0.08), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(224, 83, 170, 0.07), transparent 29%),
    #f0f3f7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 45px;
}

.section-heading--compact {
  margin-bottom: 35px;
}

.section-heading h2,
.steps-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading > p:last-child,
.steps-copy > p:not(.section-kicker) {
  max-width: 670px;
  margin: 19px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.feature-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card::after {
  position: absolute;
  right: -52px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
}

.feature-card--cyan::after {
  background: var(--brand);
}

.feature-card--violet::after {
  background: var(--violet);
}

.feature-card--pink::after {
  background: var(--secondary);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(28, 33, 41, 0.12);
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
}

.feature-card--cyan .feature-icon {
  background: rgba(0, 170, 212, 0.11);
  color: var(--brand-strong);
}

.feature-card--violet .feature-icon {
  background: rgba(99, 50, 181, 0.1);
  color: var(--violet);
}

.feature-card--pink .feature-icon {
  background: rgba(224, 83, 170, 0.1);
  color: var(--secondary-strong);
}

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

.feature-number {
  position: absolute;
  top: 31px;
  right: 30px;
  margin: 0;
  color: #bbc2cd;
  font-size: 12px;
  font-weight: 800;
}

.feature-card h3 {
  margin: 66px 0 0;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.feature-card > p:last-child {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.steps-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.05fr;
  align-items: start;
  gap: 110px;
}

.steps-copy {
  position: sticky;
  top: 130px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--brand-strong);
  font-size: 15px;
  font-weight: 800;
}

.text-link span {
  transition: transform 160ms ease;
}

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

.steps-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 25px;
  border: 1px solid rgba(217, 222, 231, 0.95);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 6px 20px rgba(28, 33, 41, 0.04);
}

.step-number {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(0, 122, 153, 0.18);
  border-radius: 17px;
  background: rgba(0, 170, 212, 0.08);
  color: var(--brand-strong);
  font-size: 18px;
  font-weight: 850;
}

.step h3,
.step p {
  margin: 0;
}

.step h3 {
  font-size: 19px;
}

.step p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 14px;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.access-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.access-card::before {
  position: absolute;
  top: -100px;
  right: -95px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
}

.access-card--app::before {
  background: radial-gradient(circle, rgba(0, 170, 212, 0.16), transparent 68%);
}

.access-card--api::before {
  background: radial-gradient(circle, rgba(99, 50, 181, 0.14), transparent 68%);
}

.access-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(28, 33, 41, 0.13);
}

.access-card-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.access-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-top: 36px;
  border-radius: 18px;
}

.access-card--app .access-icon {
  background: rgba(0, 170, 212, 0.1);
  color: var(--brand-strong);
}

.access-card--api .access-icon {
  background: rgba(99, 50, 181, 0.1);
  color: var(--violet);
}

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

.access-card h3 {
  margin: 24px 0 0;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.access-card p {
  max-width: 490px;
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.access-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 800;
}

.access-card--api .access-link {
  color: var(--violet);
}

.access-link span {
  transition: transform 160ms ease;
}

.access-card:hover .access-link span {
  transform: translateX(4px);
}

.service-status {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 23px 27px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}

.service-status-main {
  display: flex;
  align-items: center;
  gap: 17px;
}

.service-status-icon {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: rgba(166, 95, 0, 0.1);
  color: var(--warning);
}

.service-status-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-status[data-state="online"] .service-status-icon {
  background: rgba(0, 107, 60, 0.1);
  color: var(--success);
}

.service-status[data-state="offline"] .service-status-icon {
  background: rgba(180, 35, 35, 0.1);
  color: var(--error);
}

.status-eyebrow {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-status h3,
.service-status-main p:last-child {
  margin: 0;
}

.service-status h3 {
  margin-top: 2px;
  font-size: 17px;
}

.service-status-main p:last-child {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 13px;
}

.service-status-action {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 15px;
}

.service-status time {
  color: var(--ink-soft);
  font-size: 11px;
}

.retry-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.retry-button:hover {
  border-color: var(--brand-strong);
  color: var(--brand-strong);
}

.retry-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.final-cta {
  padding: 20px 0 80px;
}

.final-cta-inner {
  position: relative;
  display: flex;
  min-height: 280px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 54px 58px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 95% 0, rgba(224, 83, 170, 0.42), transparent 35%),
    radial-gradient(circle at 5% 100%, rgba(0, 179, 213, 0.32), transparent 39%),
    #172f43;
  box-shadow: 0 30px 70px rgba(23, 47, 67, 0.2);
  color: #fff;
}

.final-cta-inner::after {
  position: absolute;
  top: -170px;
  right: 17%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.final-cta .section-kicker {
  color: #78d9eb;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  font-size: clamp(30px, 3.8vw, 47px);
}

.button--light {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.16);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px 60px;
  padding-top: 44px;
  padding-bottom: 33px;
}

.brand--footer {
  min-height: 36px;
}

.footer-inner > div > p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-nav {
  display: flex;
  gap: 25px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 11px;
}

.js .reveal.is-pending {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr 430px;
    gap: 34px;
  }

  .floating-card--resource {
    left: -5px;
  }

  .floating-card--match {
    right: -4px;
  }

  .steps-layout {
    gap: 60px;
  }

  .service-status {
    align-items: flex-start;
  }

  .service-status-action {
    align-items: flex-end;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .primary-nav {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

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

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

  .product-preview {
    width: min(100%, 560px);
    margin-inline: auto;
  }

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

  .trust-list p:nth-child(2) {
    border-right: 0;
  }

  .trust-list p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .trust-list p:nth-child(3) {
    padding-left: 0;
  }

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

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

  .feature-card h3 {
    margin-top: 45px;
  }

  .steps-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-copy {
    position: static;
  }

  .access-card {
    min-height: 390px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

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

  .header-status {
    min-height: 38px;
    padding-inline: 11px;
    font-size: 10px;
  }

  .brand {
    font-size: 19px;
  }

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

  .hero {
    padding: 54px 0 64px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .demo-note {
    align-items: flex-start;
  }

  .product-preview {
    min-height: 510px;
  }

  .app-window {
    right: 2%;
    width: 96%;
  }

  .floating-card {
    min-width: 160px;
    padding: 10px 11px;
  }

  .floating-card--resource {
    bottom: 20px;
    left: -4px;
  }

  .floating-card--match {
    top: 76px;
    right: -6px;
  }

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

  .trust-list p {
    min-height: 58px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-list p:nth-child(3) {
    border-bottom: 1px solid var(--border);
  }

  .trust-list p:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 80px 0;
  }

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

  .section-heading h2,
  .steps-copy h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child,
  .steps-copy > p:not(.section-kicker) {
    font-size: 15px;
  }

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

  .feature-number {
    top: 27px;
    right: 25px;
  }

  .steps-list {
    gap: 11px;
  }

  .step {
    grid-template-columns: 45px 1fr;
    gap: 14px;
    padding: 19px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    border-radius: 13px;
  }

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

  .access-card {
    min-height: 350px;
    padding: 27px;
    border-radius: 24px;
  }

  .access-icon {
    margin-top: 28px;
  }

  .service-status {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 21px;
  }

  .service-status-main {
    align-items: flex-start;
  }

  .service-status-action {
    align-items: stretch;
    flex-direction: row;
    justify-content: space-between;
  }

  .final-cta {
    padding-bottom: 60px;
  }

  .final-cta-inner {
    min-height: 0;
    gap: 31px;
    padding: 38px 27px;
    border-radius: 25px;
  }

  .final-cta h2 {
    font-size: 32px;
  }

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

  .footer-nav {
    flex-wrap: wrap;
    gap: 14px 23px;
  }
}

@media (max-width: 420px) {
  .header-status span:last-child {
    max-width: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-preview {
    min-height: 480px;
  }

  .project-visual {
    height: 104px;
  }

  .floating-card--match {
    top: 64px;
  }

  .service-status-action {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
}
