/* Gatekey landing page */
:root {
  --ink: #0b1714;
  --ink-soft: #43514c;
  --ink-muted: #6d7a75;
  --night: #07110f;
  --night-2: #0b1815;
  --surface: #f4f7f2;
  --surface-white: #fbfdf9;
  --line: #dbe2dc;
  --line-dark: rgba(220, 244, 231, 0.13);
  --mint: #8ff2bd;
  --mint-bright: #a8f7ca;
  --mint-deep: #176443;
  --mint-wash: #e2f8ea;
  --white: #f7fbf8;
  --shadow-sm: 0 10px 28px rgba(13, 33, 26, 0.07);
  --shadow-md: 0 28px 80px rgba(5, 18, 13, 0.17);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 76px;
  --sans: Inter, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

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

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

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

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--night);
  background: var(--mint);
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--night);
  background: var(--mint);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(143, 242, 189, 0.75);
  outline-offset: 3px;
}

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

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

.section {
  padding: 132px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--mint-deep);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 17px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: var(--mint);
}

.eyebrow-dark::before {
  display: none;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 560;
  line-height: 1.02;
}

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

.section-heading.centered {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  display: flex;
  justify-content: center;
}

.section-heading.centered .eyebrow::after {
  width: 17px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-heading > p,
.section-heading.centered > p {
  max-width: 620px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 680;
  letter-spacing: -0.01em;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button svg,
.arrow-link svg,
.faq-intro a svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

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

.button:hover svg,
.arrow-link:hover svg,
.faq-intro a:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 8px;
  font-size: 13px;
}

.button-primary {
  color: #07140f;
  background: var(--mint);
  box-shadow: 0 12px 32px rgba(61, 218, 137, 0.14);
}

.button-primary:hover {
  background: var(--mint-bright);
  box-shadow: 0 16px 38px rgba(61, 218, 137, 0.22);
}

.button-light {
  color: var(--night);
  background: var(--white);
}

.button-light:hover {
  background: var(--mint-bright);
}

.button-ghost-dark {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(244, 251, 247, 0.9);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  border-color: #cdd7d0;
  color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.button-dark {
  color: var(--white);
  background: var(--night);
}

.button-dark:hover {
  background: #12231e;
  box-shadow: 0 12px 30px rgba(7, 17, 15, 0.14);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    height 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  height: 66px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 15, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 48px), var(--container));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand-mark {
  width: 25px;
  height: 25px;
  fill: var(--mint);
}

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

.desktop-nav a,
.text-link {
  color: rgba(238, 247, 242, 0.66);
  font-size: 13px;
  font-weight: 530;
  transition: color 160ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 170px 0 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(6, 17, 14, 0) 0%, rgba(6, 17, 14, 0.2) 80%, #07110f 100%),
    var(--night);
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(180, 224, 199, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 224, 199, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.75) 55%, transparent 95%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -260px;
  left: 8%;
  width: 650px;
  height: 650px;
  opacity: 0.1;
  background: radial-gradient(circle, #49d88e 0%, transparent 67%);
}

.hero-glow-two {
  right: -250px;
  bottom: -140px;
  width: 720px;
  height: 720px;
  opacity: 0.08;
  background: radial-gradient(circle, #79e5e0 0%, transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.hero-copy {
  padding-bottom: 22px;
}

.hero-copy .eyebrow {
  margin-bottom: 27px;
  color: rgba(216, 246, 229, 0.7);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(143, 242, 189, 0.1);
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(143, 242, 189, 0.36);
  border-radius: inherit;
  content: "";
  animation: status-ping 2.4s ease-out infinite;
}

@keyframes status-ping {
  0% { opacity: 0.7; transform: scale(0.7); }
  65%, 100% { opacity: 0; transform: scale(1.9); }
}

.hero h1 {
  max-width: 600px;
  margin-bottom: 28px;
  color: #f5faf7;
  font-size: clamp(54px, 5.4vw, 78px);
  font-weight: 540;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 35px;
  color: rgba(222, 235, 228, 0.7);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-proof {
  display: flex;
  gap: 24px;
  margin-top: 22px;
  color: rgba(220, 235, 227, 0.48);
  font-size: 12px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof svg {
  width: 13px;
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Hero product UI */
.gateway-demo {
  position: relative;
  padding: 23px 0 30px;
}

.demo-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(197, 228, 212, 0.16);
  border-radius: 17px;
  background: rgba(12, 27, 23, 0.91);
  box-shadow:
    0 55px 110px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.demo-window::after {
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 230, 173, 0.07), transparent 68%);
  content: "";
}

.window-bar {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  border-bottom: 1px solid rgba(220, 244, 231, 0.09);
  background: rgba(255, 255, 255, 0.018);
}

.window-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(239, 248, 243, 0.87);
  font-size: 13px;
  font-weight: 610;
}

.window-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(143, 242, 189, 0.18);
  border-radius: 7px;
  background: rgba(143, 242, 189, 0.08);
}

.window-mark svg {
  width: 17px;
  fill: var(--mint);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(214, 232, 222, 0.5);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #61dda0;
  box-shadow: 0 0 10px rgba(97, 221, 160, 0.65);
}

.demo-body {
  padding: 28px 28px 30px;
}

.url-group {
  margin-bottom: 25px;
}

.field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 11px;
}

.field-label label {
  color: rgba(234, 245, 239, 0.68);
  font-weight: 590;
}

.field-label span {
  color: rgba(193, 215, 203, 0.32);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.url-input-shell {
  display: flex;
  height: 51px;
  align-items: center;
  padding: 0 6px 0 13px;
  border: 1px solid rgba(211, 239, 224, 0.13);
  border-radius: 9px;
  background: rgba(2, 10, 8, 0.45);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.url-input-shell:focus-within {
  border-color: rgba(143, 242, 189, 0.52);
  box-shadow: 0 0 0 3px rgba(143, 242, 189, 0.07);
}

.url-input-shell.has-error {
  border-color: rgba(255, 129, 118, 0.68);
  box-shadow: 0 0 0 3px rgba(255, 129, 118, 0.07);
}

.protocol-lock {
  display: grid;
  width: 25px;
  flex: 0 0 auto;
  place-items: center;
}

.protocol-lock svg {
  width: 14px;
  fill: none;
  stroke: rgba(143, 242, 189, 0.63);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.url-input-shell input {
  width: 100%;
  min-width: 0;
  padding: 0 9px;
  border: 0;
  outline: 0;
  color: rgba(240, 249, 244, 0.89);
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
}

.url-input-shell input::selection {
  color: var(--night);
}

.icon-button {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  color: var(--night);
  background: var(--mint);
  transition: background-color 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  background: var(--mint-bright);
  transform: translateX(1px);
}

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

.route-visual {
  display: grid;
  grid-template-columns: 1fr 68px 1fr;
  align-items: center;
  margin: 7px 0 26px;
}

.route-node {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.route-node > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.route-node strong {
  overflow: hidden;
  color: rgba(240, 249, 244, 0.76);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-node small {
  overflow: hidden;
  color: rgba(205, 223, 213, 0.33);
  font-size: 9px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(214, 240, 226, 0.11);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
}

.route-icon svg {
  width: 19px;
  fill: none;
  stroke: rgba(225, 241, 233, 0.65);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.route-gateway .route-icon {
  border-color: rgba(143, 242, 189, 0.22);
  background: rgba(143, 242, 189, 0.08);
}

.route-gateway .route-icon svg {
  stroke: var(--mint);
}

.route-line {
  position: relative;
  height: 1px;
  margin: 0 10px;
  overflow: hidden;
  background: rgba(168, 207, 187, 0.17);
}

.route-pulse {
  position: absolute;
  top: 0;
  left: -22px;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint));
  animation: route-pulse 2.2s ease-in-out infinite;
}

@keyframes route-pulse {
  0% { transform: translateX(0); }
  55%, 100% { transform: translateX(90px); }
}

.protected-result {
  padding: 15px;
  border: 1px solid rgba(143, 242, 189, 0.16);
  border-radius: 11px;
  background: rgba(78, 196, 132, 0.055);
  transition: opacity 180ms ease, transform 180ms ease;
}

.protected-result.is-refreshing {
  opacity: 0.45;
  transform: translateY(3px);
}

.result-heading,
.result-heading > div,
.result-heading > div > span:last-child {
  display: flex;
}

.result-heading {
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 13px;
}

.result-heading > div {
  align-items: center;
  gap: 9px;
}

.result-heading > div > span:last-child {
  flex-direction: column;
}

.result-heading strong {
  color: rgba(232, 246, 238, 0.83);
  font-size: 11px;
  font-weight: 620;
  line-height: 1.4;
}

.result-heading small {
  color: rgba(201, 222, 211, 0.38);
  font-size: 9px;
  line-height: 1.5;
}

.success-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--mint);
  background: rgba(143, 242, 189, 0.1);
}

.success-icon svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.time-chip {
  padding: 3px 6px;
  border: 1px solid rgba(180, 218, 198, 0.1);
  border-radius: 5px;
  color: rgba(191, 214, 202, 0.34);
  font-family: var(--mono);
  font-size: 8px;
}

.result-url {
  display: flex;
  height: 39px;
  align-items: center;
  justify-content: space-between;
  padding-left: 11px;
  border: 1px solid rgba(198, 228, 212, 0.09);
  border-radius: 7px;
  background: rgba(1, 8, 6, 0.35);
}

.result-url code {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: rgba(221, 240, 230, 0.57);
  font-family: var(--mono);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-url button {
  display: grid;
  width: 38px;
  height: 100%;
  flex: 0 0 auto;
  place-items: center;
  border-left: 1px solid rgba(198, 228, 212, 0.09);
  color: rgba(222, 239, 230, 0.47);
  background: transparent;
}

.result-url button:hover {
  color: var(--mint);
}

.result-url button svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.result-url .check-icon {
  display: none;
  stroke-width: 2;
}

.result-url button.is-copied .copy-icon {
  display: none;
}

.result-url button.is-copied .check-icon {
  display: block;
}

.floating-event {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 190px;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border: 1px solid rgba(211, 238, 224, 0.16);
  border-radius: 10px;
  background: rgba(17, 35, 30, 0.92);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  animation: float-event 5s ease-in-out infinite;
}

.floating-event > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.floating-event strong {
  color: rgba(241, 249, 245, 0.83);
  font-size: 9px;
  font-weight: 620;
  line-height: 1.4;
}

.floating-event small {
  color: rgba(204, 225, 214, 0.4);
  font-size: 8px;
  line-height: 1.4;
}

.floating-event-one {
  top: -7px;
  right: -19px;
}

.floating-event-two {
  bottom: 4px;
  left: -35px;
  animation-delay: -2.2s;
}

@keyframes float-event {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.event-provider {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
}

.event-github {
  color: #e8f1ec;
  background: #26342f;
}

.event-github img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.event-client {
  background: rgba(217, 119, 87, 0.15);
}

.event-client img {
  width: 18px;
  height: 18px;
}

.event-check {
  width: 13px;
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.event-status {
  width: 6px;
  height: 6px;
  flex: 0 0 auto !important;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(143, 242, 189, 0.55);
}

/* Compatible client strip */
.client-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 120px;
  padding: 29px 0 32px;
  border-top: 1px solid rgba(218, 240, 228, 0.09);
}

.client-strip > p {
  margin: 0;
  color: rgba(218, 235, 226, 0.35);
  font-size: 11px;
  font-weight: 570;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.client-list {
  display: flex;
  align-items: center;
  gap: 39px;
}

.client-name {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(229, 240, 234, 0.55);
  font-size: 13px;
  font-weight: 590;
}

.client-logo {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 6px;
  color: rgba(238, 247, 242, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

.client-logo svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.client-logo img {
  display: block;
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.claude-logo {
  background: rgba(217, 119, 87, 0.12);
}

.openai-logo img {
  filter: invert(1);
  opacity: 0.78;
}

.cursor-logo img {
  opacity: 0.9;
}

.openai-logo img {
  width: 16px;
  height: 16px;
}

.custom-logo svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Steps */
.steps-section {
  background: var(--surface);
}

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

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 404px;
  padding: 25px 25px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(251, 253, 249, 0.72);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.step-card:hover {
  border-color: #c3cec6;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.step-number {
  color: #819087;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.step-visual {
  display: flex;
  height: 205px;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 630;
  line-height: 1.2;
}

.step-card > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.mini-input {
  display: flex;
  width: 90%;
  height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 8px 0 12px;
  border: 1px solid #d4ded7;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(12, 35, 26, 0.07);
}

.mini-input svg {
  width: 14px;
  fill: none;
  stroke: #56806c;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.mini-input span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: #53615c;
  font-family: var(--mono);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-input i {
  position: relative;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  border-radius: 7px;
  background: var(--night);
}

.mini-input i::after {
  position: absolute;
  top: 10px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--white);
  border-right: 1.5px solid var(--white);
  content: "";
  transform: rotate(45deg);
}

.step-visual-policy {
  flex-direction: column;
  gap: 8px;
}

.policy-row {
  display: flex;
  width: 88%;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #dbe3dd;
  border-radius: 9px;
  color: #66736e;
  background: rgba(255, 255, 255, 0.7);
}

.policy-row-active {
  border-color: #acd7bf;
  background: #f8fcf9;
  box-shadow: 0 10px 28px rgba(24, 86, 57, 0.07);
}

.provider-mini {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #e1e7e2;
  border-radius: 7px;
  background: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.provider-mini img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.google-mini {
  color: #4285f4;
}

.github-mini {
  color: #27352f;
}

.github-mini img {
  width: 16px;
  height: 16px;
}

.policy-row > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.policy-row strong {
  color: #25332e;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.4;
}

.policy-row small {
  font-size: 8px;
  line-height: 1.5;
}

.policy-row i {
  position: relative;
  width: 28px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 20px;
  background: #d5ddd8;
}

.policy-row i::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
  content: "";
}

.policy-row-active i {
  background: #54c889;
}

.policy-row-active i::after {
  left: 14px;
}

.mini-result {
  display: flex;
  width: 92%;
  height: 54px;
  align-items: center;
  padding-left: 13px;
  border: 1px solid #cbe2d4;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(15, 57, 40, 0.08);
}

.result-light {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #47bf7d;
  box-shadow: 0 0 0 4px #e5f7ec;
}

.mini-result code {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  margin-left: 11px;
  color: #3e5148;
  font-family: var(--mono);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-square {
  display: grid;
  width: 49px;
  height: 100%;
  flex: 0 0 auto;
  place-items: center;
  border-left: 1px solid #e5ebe7;
  color: #6e8077;
}

.copy-square svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

/* Architecture */
.architecture-section {
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.architecture-shell {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 70px;
}

.architecture-copy h2 {
  color: #f1f8f4;
}

.architecture-copy > p {
  max-width: 520px;
  margin-bottom: 36px;
  color: rgba(218, 234, 225, 0.57);
  font-size: 16px;
  line-height: 1.75;
}

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

.assurance-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.assurance-list svg {
  width: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.assurance-list span {
  display: flex;
  flex-direction: column;
  color: rgba(207, 225, 215, 0.43);
  font-size: 12px;
}

.assurance-list strong {
  margin-bottom: 2px;
  color: rgba(240, 248, 244, 0.86);
  font-size: 13px;
  font-weight: 620;
}

.architecture-diagram {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: 125px 1fr 178px;
  align-items: center;
  gap: 42px;
  padding: 62px 35px 54px;
  border: 1px solid rgba(202, 232, 216, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(rgba(179, 221, 199, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179, 221, 199, 0.028) 1px, transparent 1px),
    rgba(255, 255, 255, 0.018);
  background-size: 35px 35px;
}

.architecture-diagram::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 210, 135, 0.085), transparent 68%);
  content: "";
  transform: translate(-42%, -50%);
}

.diagram-label {
  position: absolute;
  top: 22px;
  left: 50%;
  color: rgba(197, 221, 208, 0.22);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  transform: translateX(-50%);
}

.diagram-clients {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.diagram-node {
  display: flex;
  align-items: center;
}

.small-node {
  gap: 9px;
  padding: 9px;
  border: 1px solid rgba(207, 235, 220, 0.11);
  border-radius: 9px;
  color: rgba(222, 237, 229, 0.54);
  background: rgba(255, 255, 255, 0.025);
  font-size: 9px;
}

.node-avatar {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
}

.node-claude {
  background: rgba(217, 119, 87, 0.12);
}

.node-cursor {
  background: #27342f;
}

.node-avatar img {
  display: block;
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.node-cursor img {
  opacity: 0.9;
}

.node-code {
  color: #78dbaa;
  background: rgba(87, 202, 142, 0.1);
  font-family: var(--mono);
  font-size: 8px;
}

.diagram-connection {
  position: absolute;
  z-index: 1;
  top: 50%;
  height: 1px;
  overflow: hidden;
  background: rgba(124, 203, 164, 0.22);
}

.connection-left {
  left: 158px;
  width: calc(50% - 205px);
}

.connection-right {
  right: 210px;
  width: calc(50% - 175px);
}

.packet {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(143, 242, 189, 0.7);
}

.packet-one,
.packet-two {
  left: 0;
  animation: packet-right 2.8s linear infinite;
}

.packet-two {
  animation-delay: -1.45s;
}

.packet-three {
  left: 0;
  animation: packet-right 2.8s linear infinite -0.7s;
}

@keyframes packet-right {
  from { transform: translateX(-6px); }
  to { transform: translateX(150px); }
}

.gateway-core {
  position: relative;
  z-index: 3;
  display: flex;
  min-width: 174px;
  min-height: 210px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-self: center;
}

.core-rings,
.core-rings i {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(128, 229, 178, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.core-rings {
  width: 180px;
  height: 180px;
  border-color: rgba(128, 229, 178, 0.08);
}

.core-rings i:nth-child(1) {
  width: 140px;
  height: 140px;
}

.core-rings i:nth-child(2) {
  width: 105px;
  height: 105px;
  border-color: rgba(128, 229, 178, 0.2);
}

.core-rings i:nth-child(3) {
  width: 78px;
  height: 78px;
  border-color: rgba(128, 229, 178, 0.25);
  background: rgba(74, 190, 130, 0.04);
}

.core-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid rgba(143, 242, 189, 0.29);
  border-radius: 14px;
  background: #112b22;
  box-shadow: 0 0 40px rgba(74, 213, 140, 0.12);
}

.core-icon svg {
  width: 31px;
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.gateway-core > strong,
.gateway-core > span,
.core-chips {
  position: relative;
  z-index: 2;
}

.gateway-core > strong {
  color: rgba(240, 249, 244, 0.89);
  font-size: 11px;
  font-weight: 650;
}

.gateway-core > span {
  color: rgba(195, 221, 207, 0.37);
  font-family: var(--mono);
  font-size: 7px;
}

.core-chips {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.core-chips small {
  padding: 2px 5px;
  border: 1px solid rgba(143, 242, 189, 0.14);
  border-radius: 4px;
  color: rgba(143, 242, 189, 0.55);
  font-family: var(--mono);
  font-size: 6px;
}

.diagram-origin {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 188px;
  align-items: center;
  padding: 23px 17px 18px;
  border: 1px solid rgba(203, 228, 215, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  flex-direction: column;
}

.server-rack {
  display: grid;
  width: 66px;
  gap: 4px;
  margin-bottom: 15px;
  padding: 7px;
  border: 1px solid rgba(207, 231, 218, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.15);
}

.server-rack > span {
  display: flex;
  height: 13px;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  border: 1px solid rgba(205, 231, 217, 0.12);
  border-radius: 3px;
}

.server-rack i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #71dfa8;
}

.server-rack b {
  width: 17px;
  height: 1px;
  background: rgba(205, 231, 217, 0.18);
}

.diagram-origin > strong {
  color: rgba(239, 248, 243, 0.79);
  font-size: 10px;
  font-weight: 620;
}

.diagram-origin > small {
  color: rgba(200, 221, 210, 0.33);
  font-size: 8px;
}

.origin-badge {
  margin-top: 14px;
  padding: 3px 7px;
  border: 1px solid rgba(199, 220, 209, 0.1);
  border-radius: 4px;
  color: rgba(208, 227, 217, 0.3);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.12em;
}

.diagram-caption {
  position: absolute;
  right: 20px;
  bottom: 16px;
  left: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  color: rgba(194, 217, 205, 0.27);
  font-size: 7px;
}

.diagram-caption span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.diagram-caption i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.legend-auth {
  background: var(--mint);
}

.legend-origin {
  border: 1px solid rgba(210, 231, 220, 0.45);
}

/* Feature bento */
.features-section {
  background: #eef2ed;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 460px;
  margin: 0 0 7px;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding: 30px;
  border: 1px solid #d9e1db;
  border-radius: var(--radius-md);
  background: #f9fbf8;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  border-color: #c7d2ca;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.feature-card-wide {
  display: grid;
  min-height: 430px;
  grid-column: span 2;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 25px;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 23px;
  place-items: center;
  border: 1px solid #cde4d6;
  border-radius: 11px;
  color: #26704d;
  background: #edf9f2;
}

.feature-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 640;
  line-height: 1.18;
}

.feature-card p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.auth-visual {
  display: flex;
  height: 285px;
  align-items: center;
  padding-left: 10px;
}

.auth-code {
  width: 100%;
  overflow: hidden;
  border: 1px solid #263f36;
  border-radius: 12px;
  color: rgba(222, 236, 228, 0.64);
  background: #0e1c18;
  box-shadow: 0 25px 55px rgba(9, 28, 21, 0.16);
  font-family: var(--mono);
  font-size: 9px;
}

.auth-code > div {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(222, 238, 229, 0.08);
  white-space: nowrap;
}

.auth-code > div > span {
  display: inline-block;
  margin-right: 8px;
  color: #8ff2bd;
  font-weight: 700;
}

.auth-code .code-response {
  padding-top: 9px;
  padding-bottom: 9px;
  color: rgba(211, 230, 219, 0.38);
}

.auth-code .code-response span {
  color: #7bddaa;
}

.auth-code .code-response i {
  font-style: normal;
}

.auth-code pre {
  overflow: hidden;
  margin: 0;
  padding: 15px 14px 17px;
  color: #95a9a0;
  font-family: inherit;
  line-height: 1.8;
  text-overflow: ellipsis;
}

.auth-code pre b {
  color: #d6e9df;
  font-weight: 400;
}

.identity-stack {
  position: absolute;
  right: 30px;
  bottom: 33px;
  left: 30px;
  display: grid;
  gap: 8px;
}

.identity-chip {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid #dde5df;
  border-radius: 9px;
  color: #34463e;
  background: #fff;
  box-shadow: 0 8px 20px rgba(14, 43, 31, 0.04);
  font-size: 11px;
  font-weight: 600;
}

.identity-chip b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid #e0e6e1;
  border-radius: 6px;
  font-size: 10px;
}

.identity-chip b img {
  display: block;
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.google-g {
  color: #4285f4;
}

.github-g {
  color: #293630;
}

.sso-g {
  color: #5e4cc4;
  background: #f2efff;
}

.domain-preview {
  position: absolute;
  right: -22px;
  bottom: -6px;
  left: 30px;
  min-height: 125px;
  overflow: hidden;
  border: 1px solid #d7dfd9;
  border-radius: 11px 11px 0 0;
  background: #fff;
  box-shadow: 0 18px 44px rgba(14, 41, 31, 0.08);
}

.browser-bar {
  display: flex;
  height: 31px;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border-bottom: 1px solid #e6ebe7;
  background: #f4f6f4;
}

.browser-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ccd4cf;
}

.browser-url {
  display: flex;
  width: calc(100% - 28px);
  height: 35px;
  align-items: center;
  gap: 7px;
  margin: 17px 14px;
  padding: 0 10px;
  border: 1px solid #dfe5e1;
  border-radius: 7px;
  color: #4f6258;
  background: #f8faf8;
  font-family: var(--mono);
  font-size: 8px;
}

.browser-url span {
  font-size: 8px;
}

.operations-card {
  grid-template-columns: 0.75fr 1.25fr;
}

.inline-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 23px;
}

.inline-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #66776f;
  font-size: 9px;
  font-weight: 580;
}

.inline-features i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #56bf84;
}

.operations-visual {
  padding: 20px 18px 13px;
  border: 1px solid #dbe3dd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(13, 41, 30, 0.07);
}

.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.chart-header > span {
  color: #738079;
  font-size: 9px;
  font-weight: 620;
}

.chart-header strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.chart-header small {
  padding: 2px 5px;
  border-radius: 4px;
  color: #26734e;
  background: #e7f8ee;
  font-size: 7px;
  font-weight: 650;
}

.request-chart {
  width: 100%;
  height: 150px;
  overflow: visible;
}

.chart-area {
  fill: url(#chart-fill);
}

.chart-line {
  fill: none;
  stroke: #42bd79;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.request-chart line {
  stroke: #bad8c7;
  stroke-dasharray: 3 3;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.request-chart circle {
  fill: #fff;
  stroke: #42bd79;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #a0aaa5;
  font-family: var(--mono);
  font-size: 7px;
}

/* Protocol section */
.protocol-section {
  background: var(--surface);
}

.protocol-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}

.protocol-copy > p {
  max-width: 480px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border-bottom: 1px solid #9fb0a7;
  color: #1a593e;
  font-size: 13px;
  font-weight: 650;
}

.request-terminal {
  overflow: hidden;
  border: 1px solid #243c33;
  border-radius: 16px;
  color: rgba(220, 237, 228, 0.68);
  background: #0b1814;
  box-shadow: 0 30px 75px rgba(8, 27, 19, 0.18);
}

.terminal-top {
  display: flex;
  height: 47px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid rgba(216, 239, 227, 0.08);
  background: rgba(255, 255, 255, 0.018);
}

.terminal-top > div {
  display: flex;
  gap: 6px;
}

.terminal-top > div span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(213, 232, 222, 0.16);
}

.terminal-top small {
  color: rgba(205, 226, 214, 0.29);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.terminal-content {
  padding: 22px;
}

.request-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.method-pill {
  padding: 3px 7px;
  border: 1px solid rgba(143, 242, 189, 0.17);
  border-radius: 5px;
  color: var(--mint);
  background: rgba(143, 242, 189, 0.06);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
}

.request-line code {
  color: rgba(235, 246, 240, 0.85);
  font-family: var(--mono);
  font-size: 11px;
}

.request-time {
  margin-left: auto;
  color: #72dda7;
  font-family: var(--mono);
  font-size: 8px;
}

.terminal-divider {
  height: 1px;
  margin: 18px 0;
  background: rgba(216, 239, 227, 0.07);
}

.terminal-content pre {
  margin: 0;
  color: rgba(202, 224, 212, 0.48);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.85;
}

.terminal-content pre i {
  color: #7d998b;
  font-style: normal;
}

.terminal-content pre b {
  color: #b9d1c4;
  font-weight: 400;
}

.terminal-content pre span {
  color: #8ee1b4;
}

.forwarded-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 11px 12px;
  border: 1px solid rgba(143, 242, 189, 0.1);
  border-radius: 8px;
  color: rgba(205, 226, 214, 0.42);
  background: rgba(143, 242, 189, 0.035);
  font-size: 8px;
}

.forwarded-row > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.forwarded-row i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(143, 242, 189, 0.5);
}

.forwarded-row svg {
  width: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

/* Pricing */
.pricing-section {
  border-top: 1px solid #e0e6e1;
  background: #f7f9f6;
}

.pricing-grid {
  display: grid;
  max-width: 1040px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 535px;
  padding: 29px;
  border: 1px solid #d9e1db;
  border-radius: var(--radius-md);
  background: #fbfdfb;
  flex-direction: column;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.price-card:hover {
  border-color: #c5d0c8;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.featured-price {
  border-color: #89cda7;
  box-shadow: 0 22px 55px rgba(18, 76, 50, 0.1);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 5px 9px 6px;
  border-radius: 0 0 6px 6px;
  color: #10482f;
  background: var(--mint);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.plan-name {
  display: inline-block;
  margin-bottom: 12px;
  color: #20322a;
  font-size: 17px;
  font-weight: 680;
}

.price-top > p {
  min-height: 50px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.price {
  display: flex;
  min-height: 61px;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 25px;
}

.price strong {
  font-size: 43px;
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price span {
  margin-bottom: 3px;
  color: #77837d;
  font-size: 9px;
  line-height: 1.4;
}

.price-custom {
  align-items: center;
}

.price-custom strong {
  font-size: 30px;
}

.price-card .button {
  width: 100%;
  min-height: 47px;
  margin-bottom: 27px;
  font-size: 12px;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid #e2e7e3;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #536159;
  font-size: 11px;
}

.price-card li svg {
  width: 14px;
  fill: none;
  stroke: #3b9e69;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pricing-note {
  margin: 25px 0 0;
  color: #7c8881;
  font-size: 10px;
  text-align: center;
}

/* FAQ */
.faq-section {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 120px;
}

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

.faq-intro h2 {
  font-size: clamp(40px, 4.5vw, 59px);
}

.faq-intro > p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 13px;
}

.faq-intro a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1c6343;
  font-size: 13px;
  font-weight: 650;
}

.faq-list {
  border-top: 1px solid #cad5cd;
}

.faq-item {
  border-bottom: 1px solid #cad5cd;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
  color: #1c2c25;
  background: transparent;
  font-size: 16px;
  font-weight: 610;
  letter-spacing: -0.02em;
  text-align: left;
}

.faq-item button span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid #bdcac1;
  border-radius: 50%;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: #43584d;
  content: "";
  transition: transform 180ms ease;
  transform: translate(-50%, -50%);
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 650px;
  margin: 0;
  padding: 0 45px 26px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 125px;
  color: var(--white);
  background: var(--night);
}

.cta-grid {
  opacity: 0.42;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 73%);
}

.cta-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 780px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 220, 145, 0.09), transparent 68%);
  transform: translate(-50%, -50%);
}

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

.cta-mark {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 29px;
  place-items: center;
  border: 1px solid rgba(143, 242, 189, 0.2);
  border-radius: 17px;
  background: rgba(143, 242, 189, 0.065);
  box-shadow: 0 0 60px rgba(77, 220, 146, 0.09);
}

.cta-mark svg {
  width: 38px;
  fill: var(--mint);
}

.cta-inner .eyebrow {
  margin-bottom: 20px;
}

.cta-inner h2 {
  max-width: 900px;
  margin-bottom: 23px;
  color: #f3faf6;
  font-size: clamp(48px, 6vw, 74px);
}

.cta-inner > p {
  margin-bottom: 27px;
  color: rgba(216, 233, 224, 0.53);
  font-size: 16px;
}

.ml-form-embedContainer {
  width: min(100%, 620px);
  margin: 0 auto;
}

.ml-form-embedContainer .row-form,
.signup-form {
  width: 100%;
}

.signup-field {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(210, 239, 224, 0.17);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.signup-field:focus-within {
  border-color: rgba(143, 242, 189, 0.55);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.18),
    0 0 0 3px rgba(143, 242, 189, 0.07);
}

.signup-input-wrap {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
}

.signup-email-icon {
  display: grid;
  width: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: rgba(177, 214, 195, 0.46);
}

.signup-email-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.signup-input-wrap input {
  width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0 14px 0 0;
  border: 0;
  outline: 0;
  color: rgba(242, 249, 245, 0.9);
  background: transparent;
  font-size: 14px;
}

.signup-input-wrap input::placeholder {
  color: rgba(203, 224, 213, 0.34);
}

.signup-action {
  min-width: 174px;
  flex: 0 0 auto;
}

.signup-submit {
  display: inline-flex;
  min-width: 174px;
  min-height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 9px;
  color: var(--night);
  background: var(--mint);
  font-size: 13px;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.signup-submit:hover:not(:disabled) {
  background: var(--mint-bright);
  transform: translateY(-1px);
}

.signup-submit:disabled {
  cursor: default;
}

.signup-action .signup-submit {
  width: 100%;
}

.signup-loading-content {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.signup-submit svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.signup-check,
.signup-spinner {
  display: none;
}

.signup-spinner {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(7, 17, 15, 0.24);
  border-top-color: var(--night);
  border-radius: 50%;
  animation: signup-spin 700ms linear infinite;
}

@keyframes signup-spin {
  to { transform: rotate(360deg); }
}

.signup-form.is-submitting .signup-arrow {
  display: none;
}

.signup-form.is-submitting .signup-spinner {
  display: block;
}

.signup-form.has-email-error .signup-field {
  border-color: rgba(255, 137, 126, 0.66);
  box-shadow: 0 0 0 3px rgba(255, 137, 126, 0.07);
}

.signup-form.is-success .signup-field {
  border-color: rgba(143, 242, 189, 0.42);
}

.signup-form.is-success .signup-arrow {
  display: none;
}

.signup-form.is-success .signup-check {
  display: block;
}

.signup-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 11px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(210, 239, 224, 0.14);
  border-radius: 10px;
  color: rgba(224, 239, 231, 0.72);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.signup-consent:hover,
.signup-consent:focus-within {
  border-color: rgba(143, 242, 189, 0.38);
  background: rgba(143, 242, 189, 0.055);
}

.signup-consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--mint);
}

.signup-consent input:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.signup-consent-copy {
  display: grid;
  gap: 1px;
}

.signup-consent-copy strong {
  color: rgba(242, 249, 245, 0.9);
  font-size: 10px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.signup-form.has-consent-error .signup-consent {
  border-color: rgba(255, 137, 126, 0.8);
  color: #ffd0ca;
  background: rgba(255, 107, 94, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 137, 126, 0.08);
}

.signup-form.has-consent-error .signup-consent-copy strong {
  color: #ffaaa1;
}

.signup-legal {
  margin: 5px 4px 0;
  color: rgba(201, 222, 210, 0.37);
  font-size: 9px;
  line-height: 1.55;
  text-align: left;
}

.signup-legal a {
  color: rgba(143, 242, 189, 0.72);
  text-decoration: underline;
  text-decoration-color: rgba(143, 242, 189, 0.26);
  text-underline-offset: 2px;
}

.signup-legal a:hover {
  color: var(--mint);
}

.signup-feedback {
  min-height: 21px;
  margin: 8px 0 0;
  color: rgba(205, 226, 214, 0.47);
  font-size: 10px;
  line-height: 1.5;
  text-align: left;
}

.signup-form.has-error .signup-feedback {
  color: #ffaaa1;
}

.signup-form.is-success .signup-feedback {
  color: rgba(143, 242, 189, 0.75);
  text-align: center;
}

.signup-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
  color: rgba(209, 229, 218, 0.35);
  font-size: 10px;
}

.signup-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.signup-meta svg {
  width: 12px;
  fill: none;
  stroke: rgba(143, 242, 189, 0.7);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* Footer */
.site-footer {
  color: rgba(224, 238, 231, 0.54);
  background: #050c0a;
}

.footer-top {
  display: flex;
  min-height: 260px;
  justify-content: space-between;
  padding-top: 61px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(213, 236, 224, 0.08);
}

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

.footer-brand > p {
  margin: 15px 0 0;
  color: rgba(207, 225, 215, 0.33);
  font-size: 11px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 130px);
  gap: 45px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
}

.footer-links strong {
  margin-bottom: 14px;
  color: rgba(237, 246, 241, 0.77);
  font-size: 10px;
  font-weight: 650;
}

.footer-links a {
  margin-bottom: 8px;
  color: rgba(211, 228, 219, 0.36);
  font-size: 10px;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
  color: rgba(202, 219, 210, 0.28);
  font-size: 9px;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(202, 219, 210, 0.31);
  font-size: 8px;
}

.footer-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #57d994;
}

.footer-bottom a {
  color: rgba(211, 229, 219, 0.33);
  transition: color 160ms ease;
}

.footer-bottom a:hover {
  color: var(--mint);
}

.footer-bottom svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

/* Thank-you page */
.thank-you-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  color: var(--white);
  background: var(--night);
}

.thank-you-page .thank-you-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 15, 0.78);
  backdrop-filter: blur(18px);
}

.thank-you-main {
  position: relative;
  display: flex;
  min-height: calc(100vh - 74px);
  flex: 1;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 84px;
  background:
    linear-gradient(180deg, rgba(7, 17, 15, 0.08), rgba(7, 17, 15, 0.74)),
    var(--night);
}

.thank-you-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(180, 224, 199, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 224, 199, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, rgba(0, 0, 0, 0.72) 44%, transparent 82%);
}

.thank-you-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.thank-you-glow-one {
  top: -350px;
  left: 8%;
  width: 760px;
  height: 760px;
  opacity: 0.11;
  background: radial-gradient(circle, #49d88e 0%, transparent 67%);
}

.thank-you-glow-two {
  right: -260px;
  bottom: -400px;
  width: 800px;
  height: 800px;
  opacity: 0.08;
  background: radial-gradient(circle, #79e5e0 0%, transparent 68%);
}

.thank-you-layout {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1080px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: stretch;
  gap: 24px;
}

.thank-you-card,
.thank-you-next {
  border: 1px solid rgba(206, 240, 220, 0.12);
  border-radius: 24px;
  background: rgba(13, 31, 25, 0.68);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.thank-you-card {
  padding: 54px;
}

.thank-you-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(143, 242, 189, 0.28);
  border-radius: 18px;
  color: var(--mint);
  background: rgba(143, 242, 189, 0.09);
  box-shadow: inset 0 0 0 6px rgba(143, 242, 189, 0.025);
}

.thank-you-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.thank-you-eyebrow {
  margin-bottom: 18px;
  color: rgba(193, 239, 212, 0.76);
  font-size: 10px;
}

.thank-you-eyebrow .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(143, 242, 189, 0.08);
}

.thank-you-card h1 {
  max-width: 600px;
  margin-bottom: 22px;
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 560;
  line-height: 1.02;
}

.thank-you-lede {
  max-width: 585px;
  margin-bottom: 34px;
  color: rgba(220, 236, 227, 0.58);
  font-size: 17px;
  line-height: 1.7;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.thank-you-note {
  margin: 28px 0 0;
  color: rgba(203, 224, 213, 0.36);
  font-size: 11px;
}

.thank-you-next {
  align-self: center;
  padding: 30px;
}

.thank-you-next-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: rgba(214, 234, 223, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.thank-you-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(143, 242, 189, 0.62);
  letter-spacing: 0;
  text-transform: none;
}

.thank-you-secure svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.thank-you-next h2 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 560;
  line-height: 1.1;
}

.thank-you-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.thank-you-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 28px;
}

.thank-you-steps li:not(:last-child)::after {
  position: absolute;
  top: 32px;
  bottom: 6px;
  left: 16px;
  width: 1px;
  background: rgba(143, 242, 189, 0.14);
  content: "";
}

.thank-you-steps li:last-child {
  padding-bottom: 0;
}

.thank-you-step-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(143, 242, 189, 0.2);
  border-radius: 10px;
  color: var(--mint);
  background: rgba(143, 242, 189, 0.06);
  font-family: var(--mono);
  font-size: 9px;
}

.thank-you-steps strong {
  display: block;
  margin: 2px 0 4px;
  color: rgba(246, 251, 248, 0.9);
  font-size: 13px;
  font-weight: 650;
}

.thank-you-steps p {
  margin: 0;
  color: rgba(207, 228, 217, 0.42);
  font-size: 11px;
  line-height: 1.6;
}

.thank-you-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(213, 236, 224, 0.08);
}

.thank-you-legal-links {
  gap: 18px !important;
}

.thank-you-legal-links a {
  font-size: 10px;
}

@media (max-width: 880px) {
  .thank-you-main {
    padding-top: 126px;
  }

  .thank-you-layout {
    max-width: 680px;
    grid-template-columns: 1fr;
  }

  .thank-you-next {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .thank-you-home-link {
    min-height: 38px;
    padding-inline: 13px;
  }

  .thank-you-home-link svg {
    display: none;
  }

  .thank-you-main {
    align-items: flex-start;
    padding: 104px 0 48px;
  }

  .thank-you-card {
    padding: 32px 24px;
  }

  .thank-you-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
    border-radius: 15px;
  }

  .thank-you-icon svg {
    width: 29px;
  }

  .thank-you-card h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .thank-you-lede {
    font-size: 15px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .thank-you-next {
    padding: 26px 24px;
  }

  .thank-you-next-heading {
    align-items: flex-start;
    gap: 12px;
  }

  .thank-you-footer .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    text-align: center;
  }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

[data-reveal][data-reveal-delay="1"] {
  transition-delay: 100ms;
}

[data-reveal][data-reveal-delay="2"] {
  transition-delay: 200ms;
}

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

/* Tablet */
@media (max-width: 1080px) {
  :root {
    --container: 940px;
  }

  .desktop-nav {
    gap: 24px;
    margin-left: 30px;
  }

  .hero {
    min-height: auto;
    padding-top: 145px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(50px, 6vw, 67px);
  }

  .floating-event-one {
    right: -5px;
  }

  .floating-event-two {
    left: -15px;
  }

  .client-list {
    gap: 23px;
  }

  .architecture-shell {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .architecture-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
  }

  .architecture-copy .eyebrow,
  .architecture-copy h2 {
    grid-column: 1;
  }

  .architecture-copy > p {
    grid-column: 1;
  }

  .assurance-list {
    grid-column: 2;
    grid-row: 2 / 5;
    align-self: end;
    padding-bottom: 3px;
  }

  .architecture-diagram {
    min-height: 500px;
    grid-template-columns: 155px 1fr 195px;
  }

  .connection-left {
    left: 190px;
  }

  .connection-right {
    right: 230px;
  }

  .feature-card-wide,
  .operations-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .faq-layout {
    gap: 75px;
  }
}

/* Small tablet / mobile navigation */
@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

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

  .section {
    padding: 96px 0;
  }

  h2 {
    font-size: clamp(38px, 8vw, 56px);
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(221, 240, 230, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    flex-direction: column;
  }

  .menu-toggle span {
    width: 15px;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease;
  }

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

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

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: 65px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 20px 18px;
    visibility: hidden;
    opacity: 0;
    background: rgba(7, 17, 15, 0.98);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-nav nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav nav > a:not(.button) {
    padding: 17px 5px;
    border-bottom: 1px solid rgba(218, 238, 227, 0.09);
    color: rgba(237, 247, 242, 0.76);
    font-size: 16px;
  }

  .mobile-nav .button {
    margin-top: 22px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 62px;
  }

  .hero-copy,
  .gateway-demo {
    min-width: 0;
  }

  .hero-copy {
    max-width: 650px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(56px, 10vw, 78px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .gateway-demo {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .floating-event-one {
    top: -10px;
    right: -8px;
  }

  .floating-event-two {
    bottom: 4px;
    left: -8px;
  }

  .client-strip {
    align-items: flex-start;
    margin-top: 92px;
    flex-direction: column;
    gap: 22px;
  }

  .client-list {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

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

  .step-card {
    display: grid;
    min-height: 290px;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-rows: auto 1fr auto auto;
    column-gap: 30px;
  }

  .step-number {
    grid-column: 2;
  }

  .step-visual {
    height: 100%;
    min-height: 210px;
    grid-column: 1;
    grid-row: 1 / 5;
  }

  .step-card h3,
  .step-card > p {
    grid-column: 2;
  }

  .step-card h3 {
    align-self: end;
  }

  .architecture-copy {
    grid-template-columns: 1fr;
  }

  .architecture-copy .eyebrow,
  .architecture-copy h2,
  .architecture-copy > p,
  .assurance-list {
    grid-column: 1;
    grid-row: auto;
  }

  .assurance-list {
    margin-top: 7px;
  }

  .architecture-diagram {
    min-height: 445px;
    grid-template-columns: 115px 1fr 155px;
    gap: 27px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .connection-left {
    left: 137px;
  }

  .connection-right {
    right: 180px;
  }

  .gateway-core {
    min-width: 145px;
  }

  .core-rings {
    width: 150px;
    height: 150px;
  }

  .core-rings i:nth-child(1) {
    width: 120px;
    height: 120px;
  }

  .core-rings i:nth-child(2) {
    width: 92px;
    height: 92px;
  }

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

  .feature-card-wide {
    grid-column: 1 / -1;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .split-heading > p {
    max-width: 570px;
  }

  .protocol-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .protocol-copy {
    max-width: 650px;
  }

  .request-terminal {
    width: min(100%, 650px);
  }

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

  .price-card {
    display: grid;
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    column-gap: 38px;
  }

  .price-card .price-top,
  .price-card .button {
    grid-column: 1;
  }

  .price-card .button {
    align-self: end;
    margin-bottom: 0;
  }

  .price-card ul {
    align-content: center;
    grid-column: 2;
    grid-row: 1 / 3;
    padding: 0 0 0 30px;
    border-top: 0;
    border-left: 1px solid #e2e7e3;
  }

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

  .faq-intro {
    position: static;
  }

  .footer-top {
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* Phones */
@media (max-width: 590px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

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

  h2 {
    font-size: clamp(36px, 11.2vw, 48px);
  }

  .section-heading > p,
  .section-heading.centered > p {
    font-size: 15px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-grid,
  .cta-grid {
    background-size: 48px 48px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(46px, 14vw, 64px);
    line-height: 0.99;
  }

  .hero-lede {
    margin-bottom: 27px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-proof {
    gap: 15px;
    font-size: 10px;
  }

  .hero-layout {
    gap: 46px;
  }

  .gateway-demo {
    width: calc(100% + 6px);
    margin-left: -3px;
    padding-bottom: 49px;
  }

  .window-bar {
    height: 52px;
    padding: 0 13px;
  }

  .window-title {
    font-size: 11px;
  }

  .demo-body {
    padding: 21px 14px 20px;
  }

  .url-input-shell input {
    font-size: 10px;
  }

  .route-visual {
    grid-template-columns: 1fr 38px 1fr;
  }

  .route-line {
    margin: 0 4px;
  }

  .route-node {
    gap: 6px;
  }

  .route-icon {
    width: 31px;
    height: 31px;
  }

  .route-node strong {
    font-size: 9px;
  }

  .route-node small {
    font-size: 7px;
  }

  .result-url code {
    font-size: 8px;
  }

  .floating-event {
    min-width: 166px;
    padding: 8px;
  }

  .floating-event-one {
    top: 2px;
    right: -5px;
  }

  .floating-event-two {
    bottom: 4px;
    left: 11px;
  }

  .client-strip {
    margin-top: 62px;
  }

  .client-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }

  .client-name {
    font-size: 11px;
  }

  .steps-grid {
    gap: 12px;
  }

  .step-card {
    display: block;
    min-height: 385px;
    padding: 21px;
  }

  .step-visual {
    height: 195px;
    min-height: 0;
  }

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

  .architecture-shell {
    gap: 45px;
  }

  .architecture-copy > p {
    font-size: 14px;
  }

  .architecture-diagram {
    min-height: 610px;
    grid-template-columns: 1fr;
    grid-template-rows: 115px 1fr 150px;
    gap: 29px;
    padding: 48px 24px 47px;
  }

  .diagram-clients {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .small-node {
    justify-content: center;
    padding: 7px;
    flex-direction: column;
    gap: 5px;
  }

  .diagram-connection {
    top: auto;
    left: 50%;
    width: 1px;
    height: 50px;
    background: rgba(124, 203, 164, 0.22);
  }

  .connection-left {
    top: 160px;
  }

  .connection-right {
    right: auto;
    bottom: 175px;
  }

  .packet {
    top: 0;
    left: -2px;
  }

  .packet-one,
  .packet-two,
  .packet-three {
    animation-name: packet-down;
  }

  @keyframes packet-down {
    from { transform: translateY(-6px); }
    to { transform: translateY(58px); }
  }

  .gateway-core {
    align-self: center;
  }

  .core-icon {
    margin-bottom: 30px;
  }

  .diagram-origin {
    width: 180px;
    min-height: 145px;
    justify-self: center;
    padding: 14px;
  }

  .server-rack {
    margin-bottom: 8px;
  }

  .origin-badge {
    margin-top: 8px;
  }

  .diagram-caption {
    bottom: 13px;
  }

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

  .feature-card,
  .feature-card-wide {
    display: block;
    min-height: 390px;
    grid-column: auto;
    padding: 24px;
  }

  .auth-card {
    min-height: 530px;
  }

  .auth-visual {
    position: absolute;
    right: 20px;
    bottom: 22px;
    left: 20px;
    height: 235px;
    padding: 0;
  }

  .auth-code {
    font-size: 7px;
  }

  .identity-stack {
    right: 24px;
    bottom: 25px;
    left: 24px;
  }

  .domain-preview {
    left: 24px;
  }

  .operations-card {
    min-height: 585px;
  }

  .operations-visual {
    position: absolute;
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .protocol-layout {
    gap: 40px;
  }

  .terminal-content {
    padding: 17px;
  }

  .terminal-content pre {
    overflow-x: auto;
    font-size: 8px;
  }

  .forwarded-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .price-card {
    display: flex;
    padding: 25px;
  }

  .price-card ul {
    padding: 23px 0 0;
    border-top: 1px solid #e2e7e3;
    border-left: 0;
  }

  .price-card .button {
    margin-bottom: 25px;
  }

  .price-top > p {
    min-height: auto;
  }

  .faq-item button {
    min-height: 74px;
    font-size: 14px;
  }

  .faq-answer p {
    padding-right: 25px;
    font-size: 12px;
  }

  .cta-section {
    padding: 88px 0 92px;
  }

  .cta-inner h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .cta-inner > p {
    font-size: 14px;
  }

  .signup-field {
    align-items: stretch;
    flex-direction: column;
    padding: 7px;
  }

  .signup-input-wrap {
    min-height: 50px;
  }

  .signup-submit {
    width: 100%;
  }

  .signup-action {
    width: 100%;
  }

  .signup-feedback {
    text-align: center;
  }

  .signup-consent,
  .signup-legal {
    margin-right: 2px;
    margin-left: 2px;
  }

  .signup-meta {
    flex-wrap: wrap;
    gap: 8px 15px;
  }

  .footer-top {
    min-height: auto;
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    row-gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    padding: 24px 0;
    flex-direction: column-reverse;
    gap: 14px;
  }
}

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

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

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