@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/PretendardVariable.woff2") format("woff2-variations");
}

:root {
  --ink: #0b0d11;
  --muted: #68707d;
  --line: #dfe4eb;
  --soft-line: #eef1f5;
  --paper: #ffffff;
  --surface: #f4f7fa;
  --surface-blue: #eef6ff;
  --blue: #1687ff;
  --blue-deep: #0872e6;
  --cyan: #65c9ff;
  --night: #07090d;
  --night-soft: #10141c;
  --shell: min(1180px, calc(100% - 48px));
  --header-height: 76px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  border: 0;
}

a {
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

::selection {
  background: var(--blue);
  color: #fff;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.subpage {
  background: var(--night);
  color: #fff;
}

.todo-page {
  display: grid;
  min-height: 100vh;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 50% 35%, rgba(22, 135, 255, 0.13), transparent 28%),
    var(--night);
  place-content: center;
  color: rgba(255, 255, 255, 0.56);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(17, 22, 30, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 35px rgba(20, 32, 50, 0.08);
  color: var(--ink);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  width: min(1320px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: 146px;
  height: 38px;
  align-items: center;
}

.brand img {
  width: 142px;
  height: auto;
}

.brand-logo-on-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-on-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-on-light {
  display: block;
}

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

.nav-link {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}

.nav-link::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 200ms var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .nav-link {
  color: #8a9099;
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 650;
}

.header-cta svg {
  width: 18px;
  transition: transform 180ms var(--ease);
}

.header-cta:hover svg {
  transform: translateX(3px);
}

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

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 80% 33%, rgba(21, 126, 255, 0.16), transparent 26%),
    radial-gradient(circle at 50% 110%, rgba(26, 128, 255, 0.1), transparent 38%),
    var(--night);
  color: #fff;
}

.hero-grid,
.appliance-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

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

.hero-glow-one {
  top: 210px;
  right: -220px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(40, 151, 255, 0.14);
  box-shadow: inset 0 0 120px rgba(29, 132, 255, 0.07);
}

.hero-glow-two {
  top: 330px;
  right: 80px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 680px;
  padding-top: 94px;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  align-items: center;
  gap: 36px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 1px;
  background: currentColor;
}

.hero-copy h1 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 560;
  letter-spacing: -0.052em;
  line-height: 1.2;
}

.hero-copy h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-description {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms var(--ease), background 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
}

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

.button-primary {
  background: var(--blue);
  box-shadow: 0 12px 35px rgba(22, 135, 255, 0.24);
  color: #fff;
}

.button-primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 16px 40px rgba(22, 135, 255, 0.32);
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  background: #eaf4ff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
}

.text-link span {
  color: var(--blue);
  font-size: 20px;
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(22, 135, 255, 0.9);
  content: "";
}

.orbit-one {
  width: 400px;
  height: 400px;
  animation: rotate 22s linear infinite;
}

.orbit-one::before {
  top: 28px;
  left: 82px;
}

.orbit-one::after {
  right: 18px;
  bottom: 118px;
}

.orbit-two {
  width: 260px;
  height: 260px;
  border-color: rgba(22, 135, 255, 0.2);
  animation: rotate-reverse 17s linear infinite;
}

.orbit-two::before {
  top: 90px;
  right: -4px;
  background: #fff;
}

.orbit-two::after {
  bottom: 2px;
  left: 114px;
}

.core-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 172px;
  height: 172px;
  border: 1px solid rgba(117, 199, 255, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.92), rgba(89, 180, 255, 0.68) 15%, rgba(19, 122, 237, 0.32) 46%, rgba(6, 15, 27, 0.94) 72%);
  box-shadow: 0 0 70px rgba(22, 135, 255, 0.34), inset -18px -18px 42px rgba(0, 0, 0, 0.42);
  place-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
}

.sphere-mark {
  margin-bottom: 6px;
  color: #d8f1ff;
  font-size: 20px;
}

.core-sphere strong {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.asset-chip {
  position: absolute;
  display: grid;
  width: 184px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(14, 19, 28, 0.76);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.asset-chip::after {
  position: absolute;
  top: 50%;
  width: 62px;
  height: 1px;
  background: linear-gradient(90deg, rgba(22, 135, 255, 0.7), transparent);
  content: "";
}

.asset-chip span {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.asset-chip strong {
  font-size: 14px;
  letter-spacing: 0.06em;
}

.asset-chip small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.chip-data {
  top: 58px;
  left: 0;
}

.chip-data::after {
  right: -62px;
}

.chip-process {
  top: 214px;
  right: 0;
}

.chip-process::after {
  left: -62px;
  transform: rotate(180deg);
}

.chip-operation {
  bottom: 50px;
  left: 26px;
}

.chip-operation::after {
  right: -62px;
}

.visual-caption {
  position: absolute;
  right: 16px;
  bottom: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-caption span {
  margin-right: 8px;
  color: var(--blue);
}

.hero-proof {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 104px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hero-proof > p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
}

.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.hero-proof i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue);
}

.section {
  position: relative;
  padding: 144px 0;
}

.section-heading {
  max-width: 820px;
}

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

.section-heading h2 {
  margin-top: 20px;
  font-size: clamp(38px, 4.35vw, 58px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.22;
}

.heading-description,
.split-heading > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.heading-description {
  max-width: 650px;
  margin-top: 24px;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  padding-bottom: 8px;
}

.shift-section {
  background: #fff;
}

.shift-stage {
  position: relative;
  display: grid;
  min-height: 435px;
  margin-top: 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 24px 70px rgba(25, 46, 75, 0.08);
}

.shift-side {
  padding: 54px 58px;
}

.commodity-side {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.68), rgba(224, 228, 233, 0.45)),
    repeating-linear-gradient(0deg, #e1e3e5 0 1px, transparent 1px 4px),
    #f0f1f2;
  color: #555a61;
}

.asset-side {
  background:
    radial-gradient(circle at 90% 0%, rgba(37, 148, 255, 0.3), transparent 32%),
    var(--night-soft);
  color: #fff;
}

.shift-label {
  color: #9298a0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.asset-side .shift-label {
  color: var(--blue);
}

.shift-side h3 {
  max-width: 390px;
  margin-top: 12px;
  font-size: 25px;
  font-weight: 580;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.shift-side ul {
  display: grid;
  margin-top: 44px;
  gap: 13px;
}

.shift-side li {
  display: flex;
  min-height: 53px;
  padding: 0 18px;
  border: 1px solid rgba(90, 97, 106, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.56);
  align-items: center;
  font-size: 15px;
}

.asset-side li {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.76);
}

.asset-side li span {
  width: 86px;
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shift-divider {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 54px;
  height: 100%;
  color: #fff;
  transform: translateX(-50%);
}

.shift-divider::before {
  position: absolute;
  inset: 0;
  background: var(--paper);
  clip-path: polygon(43% 0, 70% 7%, 45% 18%, 72% 28%, 40% 41%, 64% 53%, 39% 66%, 66% 78%, 42% 88%, 58% 100%, 0 100%, 0 0);
  content: "";
}

.shift-divider span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  border: 4px solid #fff;
  border-radius: 14px;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(10, 45, 85, 0.24);
  place-content: center;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: center;
  transform: translate(-50%, -50%);
}

.solution-section {
  background: var(--surface);
}

.deployment-layout {
  display: grid;
  min-height: 520px;
  margin-top: 72px;
  border: 1px solid #dbe2ea;
  border-radius: var(--radius-lg);
  overflow: hidden;
  grid-template-columns: 340px minmax(0, 1fr);
  background: #fff;
  box-shadow: 0 26px 80px rgba(30, 50, 75, 0.08);
}

.deployment-tabs {
  display: grid;
  padding: 16px;
  border-right: 1px solid var(--soft-line);
  gap: 8px;
  background: #fbfcfd;
}

.deployment-tab {
  position: relative;
  display: grid;
  padding: 28px 26px;
  border: 1px solid transparent;
  border-radius: 17px;
  background: transparent;
  color: #8c939c;
  cursor: pointer;
  text-align: left;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.deployment-tab:hover {
  transform: translateX(3px);
}

.deployment-tab.is-active {
  border-color: #c9e4ff;
  background: var(--surface-blue);
  color: var(--ink);
}

.deployment-tab > span {
  position: absolute;
  top: 28px;
  right: 24px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
}

.deployment-tab strong {
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.deployment-tab small {
  margin-top: 8px;
  color: currentColor;
  font-size: 13px;
}

.deployment-display {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 58px 56px;
  grid-template-columns: minmax(230px, 0.85fr) minmax(280px, 1.15fr);
  align-items: center;
  gap: 54px;
  background:
    radial-gradient(circle at 27% 50%, rgba(28, 143, 255, 0.12), transparent 30%),
    linear-gradient(145deg, #fff, #f4f8fd);
}

.deployment-display::after {
  position: absolute;
  right: -50px;
  bottom: -90px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(22, 135, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.deployment-network {
  position: relative;
  min-height: 330px;
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 76px;
  height: 76px;
  border: 1px solid #cfdbeb;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 13px 35px rgba(23, 53, 92, 0.12);
  place-content: center;
  color: #778391;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.node-core {
  top: 50%;
  left: 50%;
  width: 124px;
  height: 124px;
  border-color: #9ed1ff;
  background: radial-gradient(circle at 35% 25%, #78c5ff, var(--blue) 46%, #0758bb);
  box-shadow: 0 24px 55px rgba(22, 135, 255, 0.28);
  color: #fff;
  font-size: 13px;
  transform: translate(-50%, -50%);
}

.node-a { top: 18px; left: 8px; }
.node-b { top: 58px; right: -4px; }
.node-c { right: 24px; bottom: 10px; }

.line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 135px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(22, 135, 255, 0.12));
  transform-origin: left center;
}

.line-a { transform: rotate(218deg); }
.line-b { transform: rotate(316deg); }
.line-c { transform: rotate(38deg); }

.deployment-copy {
  position: relative;
  z-index: 2;
}

.deployment-copy > p:first-child {
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.deployment-copy h3 {
  margin-top: 12px;
  font-size: 31px;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.deployment-copy > p:nth-of-type(2) {
  margin-top: 19px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.deployment-copy ul {
  display: grid;
  margin-top: 28px;
  gap: 11px;
}

.deployment-copy li {
  position: relative;
  padding-left: 20px;
  color: #3b424c;
  font-size: 14px;
}

.deployment-copy li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 135, 255, 0.1);
  content: "";
}

.core-assets {
  display: flex;
  min-height: 98px;
  margin-top: 16px;
  padding: 0 28px;
  border: 1px solid #dbe2ea;
  border-radius: 20px;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.core-assets > p {
  color: #8a929c;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.core-assets > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.core-assets span {
  padding: 9px 14px;
  border-radius: 9px;
  background: var(--surface);
  color: #444d58;
  font-size: 12px;
  font-weight: 650;
}

.cases-section {
  overflow: hidden;
  background: #fff;
}

.case-tabs {
  display: flex;
  margin-top: 66px;
  border-bottom: 1px solid var(--line);
}

.case-tab {
  position: relative;
  display: flex;
  min-width: 160px;
  padding: 0 6px 20px;
  background: transparent;
  color: #949ba4;
  cursor: pointer;
  align-items: center;
  gap: 22px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  transition: color 180ms ease;
}

.case-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.case-tab span {
  color: #b5bac1;
  font-size: 11px;
  font-weight: 750;
}

.case-tab:hover,
.case-tab.is-active {
  color: var(--ink);
}

.case-tab.is-active span {
  color: var(--blue);
}

.case-tab.is-active::after {
  transform: scaleX(1);
}

.case-panels {
  margin-top: 38px;
}

.case-panel {
  display: grid;
  min-height: 610px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  grid-template-columns: 0.9fr 1.1fr;
  background:
    radial-gradient(circle at 80% 15%, rgba(22, 135, 255, 0.13), transparent 30%),
    var(--night);
  color: #fff;
  animation: panel-in 420ms var(--ease) both;
}

.case-panel[hidden] {
  display: none;
}

.case-copy {
  display: flex;
  padding: 66px 24px 58px 60px;
  flex-direction: column;
  justify-content: center;
}

.case-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-copy h3 {
  margin-top: 16px;
  font-size: clamp(34px, 3.5vw, 47px);
  font-weight: 580;
  letter-spacing: -0.045em;
  line-height: 1.32;
}

.case-copy h3 em {
  color: var(--blue);
  font-style: normal;
}

.case-copy > p:nth-of-type(2) {
  max-width: 480px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.75;
}

.case-flow {
  display: grid;
  margin-top: 33px;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.case-flow li {
  position: relative;
  display: grid;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  place-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  text-align: center;
}

.case-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -8px;
  color: var(--blue);
  content: "›";
  transform: translateY(-55%);
}

.case-flow span {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 9px;
}

.case-assets {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 8px;
}

.case-assets span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.case-visual {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 72px 56px 72px 20px;
  place-content: center;
}

.case-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(53, 156, 255, 0.15);
  border-radius: 50%;
  content: "";
  transform: translate(-48%, -50%);
}

.browser-frame {
  position: relative;
  z-index: 2;
  max-width: 610px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: #f6f8fb;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.36);
  transform: perspective(1100px) rotateY(-6deg) rotateX(2deg);
}

.browser-bar {
  display: flex;
  height: 36px;
  padding: 0 13px;
  background: #f0f3f7;
  color: #929aa5;
  align-items: center;
  gap: 6px;
  font-size: 9px;
}

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

.browser-bar span {
  margin-left: 7px;
}

.browser-frame img {
  width: 100%;
  min-height: 290px;
  object-fit: cover;
  object-position: top center;
}

.floating-status {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 88px;
  display: flex;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(11, 15, 22, 0.84);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.floating-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #33dc98;
  box-shadow: 0 0 12px #33dc98;
}

.public-metric {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 18px;
}

.public-metric strong {
  color: var(--blue);
  font-size: 58px;
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.public-metric sup {
  font-size: 28px;
}

.public-metric span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.45;
}

.public-metric small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.document-stack {
  position: relative;
  z-index: 2;
  display: grid;
  width: 430px;
  height: 410px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
  place-content: center;
  transform: rotate(2deg);
}

.document-stack::before,
.document-stack::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  content: "";
  transform: rotate(-5deg);
}

.document-stack::after {
  inset: 35px;
  transform: rotate(5deg);
}

.document-stack img {
  position: relative;
  z-index: 2;
  width: 210px;
  margin: -24px auto 0;
  filter: drop-shadow(0 18px 25px rgba(0, 81, 185, 0.32));
}

.doc-line {
  position: absolute;
  z-index: 2;
  right: 72px;
  left: 72px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.line-one { bottom: 92px; }
.line-two { bottom: 72px; right: 125px; }
.line-three { bottom: 52px; right: 100px; }

.security-flow {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  text-transform: uppercase;
}

.security-flow strong {
  padding: 8px 10px;
  border: 1px solid rgba(22, 135, 255, 0.35);
  border-radius: 8px;
  color: var(--blue);
}

.security-flow i {
  color: var(--blue);
  font-style: normal;
}

.legal-browser {
  max-width: 640px;
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
}

.legal-browser img {
  min-height: 315px;
}

.appliance-section {
  overflow: hidden;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 68% 46%, rgba(25, 131, 255, 0.16), transparent 25%),
    #07090d;
  color: #fff;
}

.appliance-grid {
  mask-image: radial-gradient(circle at 70% 50%, #000, transparent 65%);
}

.appliance-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 0.72fr) minmax(530px, 1.28fr);
  align-items: center;
  gap: 30px;
}

.appliance-copy h2 {
  margin-top: 20px;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 580;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.appliance-copy > p:nth-of-type(2) {
  max-width: 490px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1.75;
}

.appliance-copy .button {
  margin-top: 36px;
}

.product-stage {
  position: relative;
  min-height: 570px;
}

.product-halo {
  position: absolute;
  top: 49%;
  left: 52%;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(83, 170, 255, 0.17);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(21, 127, 255, 0.08), 0 0 80px rgba(21, 127, 255, 0.08);
  transform: translate(-50%, -50%);
}

.product-halo::before,
.product-halo::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.product-halo::before { width: 380px; height: 380px; }
.product-halo::after { width: 255px; height: 255px; border-color: rgba(22, 135, 255, 0.18); }

.product-stage > img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 51%;
  width: 660px;
  max-width: 112%;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.7));
  transform: translate(-50%, -47%);
}

.product-tag {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 176px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(13, 18, 26, 0.78);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.product-tag span {
  position: absolute;
  top: 16px;
  right: 15px;
  color: var(--blue);
  font-size: 9px;
}

.product-tag strong {
  font-size: 13px;
}

.product-tag small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.tag-local {
  top: 90px;
  left: 0;
}

.tag-master {
  right: 0;
  bottom: 76px;
}

.appliance-features {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  grid-template-columns: repeat(4, 1fr);
}

.appliance-features article {
  display: flex;
  min-height: 140px;
  padding: 32px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  align-items: flex-start;
  gap: 15px;
}

.appliance-features article:last-child {
  border-right: 0;
}

.appliance-features article > span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  place-content: center;
  font-size: 9px;
  font-weight: 750;
}

.appliance-features h3 {
  font-size: 15px;
  font-weight: 650;
}

.appliance-features p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.closing-section {
  background: #fff;
}

.closing-card {
  position: relative;
  min-height: 500px;
  padding: 74px 78px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(242, 247, 253, 0.98), rgba(244, 249, 255, 0.88)),
    #f2f7fd;
}

.closing-card h2 {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.closing-card > p:nth-of-type(2) {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
}

.closing-card .button {
  position: relative;
  z-index: 2;
  margin-top: 34px;
}

.closing-orbit {
  position: absolute;
  right: -80px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(22, 135, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(22, 135, 255, 0.08);
}

.closing-orbit::before,
.closing-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(22, 135, 255, 0.13);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.closing-orbit::before { width: 420px; height: 420px; }
.closing-orbit::after { width: 220px; height: 220px; background: radial-gradient(circle at 35% 25%, #a4d9ff, var(--blue) 52%, #0758bb); box-shadow: 0 25px 60px rgba(22, 135, 255, 0.25); }

.closing-orbit i {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(22, 135, 255, 0.9);
}

.closing-orbit i:nth-child(1) { top: 77px; left: 146px; }
.closing-orbit i:nth-child(2) { top: 298px; left: -5px; }
.closing-orbit i:nth-child(3) { top: 170px; right: 12px; }

.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--soft-line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 44px;
}

.footer-brand img {
  width: 138px;
}

.footer-brand p {
  margin-top: 12px;
  color: #969ca4;
  font-size: 12px;
}

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

.footer-links a {
  color: #626a74;
  font-size: 12px;
  font-weight: 650;
}

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

.copyright {
  padding-top: 32px;
  border-top: 1px solid var(--soft-line);
  grid-column: 1 / -1;
  color: #a5aab1;
  font-size: 11px;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 11, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lead-dialog {
  position: relative;
  display: grid;
  width: min(1060px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.35);
  grid-template-columns: 360px minmax(0, 1fr);
  animation: lead-dialog-in 320ms var(--ease);
}

.lead-close {
  position: absolute;
  z-index: 5;
  top: 22px;
  right: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid #e4e8ed;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  place-items: center;
}

.lead-close svg { width: 18px; }
.lead-close:hover { background: #f4f7fa; }

.lead-dialog-intro {
  position: relative;
  display: flex;
  min-height: 690px;
  padding: 58px 44px 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 92%, rgba(22, 135, 255, 0.3), transparent 28%),
    radial-gradient(circle at 95% 18%, rgba(22, 135, 255, 0.18), transparent 30%),
    #080b11;
  color: #fff;
  flex-direction: column;
}

.lead-dialog-intro::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(101, 201, 255, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(22, 135, 255, 0.13);
  content: "";
}

.lead-dialog-intro h2 {
  margin-top: 26px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.22;
}

.lead-dialog-intro > p:nth-of-type(2) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.lead-intro-note {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: auto;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
}

.lead-intro-note span {
  color: var(--cyan);
  font-size: 10px;
}

.lead-progress {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: auto;
  gap: 10px;
}

.lead-progress li {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease;
}

.lead-progress li span { color: inherit; font-size: 10px; }
.lead-progress li.is-active { color: #fff; }
.lead-progress li.is-complete { color: var(--cyan); }

.lead-form {
  min-width: 0;
  overflow-y: auto;
}

.lead-step {
  min-height: 690px;
  padding: 72px 58px 38px;
}

.lead-step[hidden],
.lead-success[hidden] { display: none; }

.lead-step-count {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-step fieldset {
  min-width: 0;
  border: 0;
}

.lead-step legend {
  margin-bottom: 28px;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.lead-options {
  display: grid;
  gap: 10px;
}

.lead-options-grid { grid-template-columns: repeat(2, 1fr); }
.lead-options-row { grid-template-columns: repeat(4, 1fr); }
.lead-options input { position: absolute; opacity: 0; pointer-events: none; }

.lead-options label > span {
  display: flex;
  min-height: 80px;
  padding: 18px;
  border: 1px solid #e1e5ea;
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  font-weight: 650;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.lead-options label > span small {
  margin-top: 3px;
  color: #9097a1;
  font-size: 11px;
  font-weight: 450;
}

.lead-options input:checked + span {
  border-color: var(--blue);
  background: #f1f8ff;
  box-shadow: 0 0 0 1px var(--blue);
  color: #096bcf;
}

.lead-options input:focus-visible + span { outline: 3px solid rgba(22, 135, 255, 0.25); }
.lead-options-row label > span { min-height: 58px; padding: 12px 8px; text-align: center; align-items: center; }
.lead-fieldset-gap { margin-top: 34px; }

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

.lead-fields label { display: grid; gap: 7px; }
.lead-fields label > span { color: #555d68; font-size: 12px; font-weight: 650; }
.lead-fields b, .lead-consent b { color: var(--blue); }
.lead-field-wide { grid-column: 1 / -1; }

.lead-fields input,
.lead-fields textarea {
  width: 100%;
  border: 1px solid #dfe4e9;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-fields input { height: 46px; padding: 0 14px; }
.lead-fields textarea { min-height: 88px; padding: 12px 14px; resize: vertical; }
.lead-fields input:focus, .lead-fields textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22, 135, 255, 0.1); }
.lead-fields input::placeholder, .lead-fields textarea::placeholder { color: #b0b5bc; }

.lead-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.lead-consent {
  display: flex;
  margin-top: 18px;
  align-items: center;
  gap: 9px;
  color: #6f7680;
  cursor: pointer;
  font-size: 12px;
}

.lead-consent input { width: 16px; height: 16px; accent-color: var(--blue); }
.lead-error { min-height: 22px; margin-top: 12px; color: #db3b3b; font-size: 12px; }

.lead-actions {
  display: flex;
  margin-top: 12px;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.lead-actions .button { min-width: 152px; border: 0; cursor: pointer; }
.lead-actions .button:disabled { cursor: wait; opacity: 0.65; }
.lead-back { padding: 12px 14px; background: none; color: #7c838d; cursor: pointer; font-size: 13px; font-weight: 650; }

.lead-success {
  display: grid;
  min-height: 690px;
  padding: 60px;
  text-align: center;
  place-content: center;
}

.lead-success-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #eaf5ff;
  color: var(--blue);
  place-items: center;
  font-size: 25px;
  font-weight: 700;
}

.lead-success h3 { font-size: 30px; letter-spacing: -0.04em; }
.lead-success > p:nth-of-type(2) { margin: 14px 0 28px; color: var(--muted); font-size: 14px; }
.lead-success .button { border: 0; cursor: pointer; }

@keyframes lead-dialog-in {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

body.is-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

body.is-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 920px);
  }

  .hero-layout {
    min-height: 760px;
    padding-top: 80px;
    grid-template-columns: 1fr 420px;
    gap: 10px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 5.5vw, 58px);
  }

  .hero-visual {
    transform: scale(0.88);
  }

  .shift-side {
    padding: 48px 38px;
  }

  .deployment-layout {
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .deployment-display {
    padding: 44px 35px;
    grid-template-columns: 210px minmax(230px, 1fr);
    gap: 28px;
  }

  .case-panel {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .case-copy {
    padding-left: 42px;
  }

  .case-visual {
    padding-right: 36px;
  }

  .appliance-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .product-stage > img {
    max-width: 122%;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
    --shell: calc(100% - 36px);
  }

  .header-inner {
    display: flex;
    width: calc(100% - 36px);
    justify-content: space-between;
  }

  .brand {
    width: 132px;
  }

  .brand img {
    width: 128px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    place-content: center;
    gap: 6px;
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: #dbe1e8;
    background: #fff;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    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-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    background: rgba(8, 10, 14, 0.98);
    opacity: 0;
    transition: max-height 350ms var(--ease), padding 350ms var(--ease), opacity 250ms ease;
  }

  .mobile-menu.is-open {
    max-height: calc(100vh - var(--header-height));
    padding: 24px 18px 30px;
    opacity: 1;
  }

  .mobile-menu a {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 21px;
    font-weight: 550;
  }

  .mobile-menu a:last-child {
    margin-top: 12px;
    border: 0;
    border-radius: 10px;
    background: var(--blue);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 24px;
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 700px;
    font-size: clamp(42px, 8vw, 60px);
  }

  .hero-visual {
    width: 590px;
    max-width: 100%;
    min-height: 560px;
    margin: 0 auto;
    transform: scale(0.9);
  }

  .hero-proof {
    display: grid;
    padding: 25px 0 30px;
    gap: 16px;
  }

  .hero-proof > div {
    flex-wrap: wrap;
    gap: 13px;
  }

  .section {
    padding: 105px 0;
  }

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

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

  .shift-stage {
    grid-template-columns: 1fr;
  }

  .shift-divider {
    top: 50%;
    left: 0;
    width: 100%;
    height: 54px;
    transform: translateY(-50%);
  }

  .shift-divider::before {
    display: none;
  }

  .shift-side {
    min-height: 390px;
  }

  .deployment-layout {
    grid-template-columns: 1fr;
  }

  .deployment-tabs {
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
    grid-template-columns: repeat(3, 1fr);
  }

  .deployment-tab {
    padding: 22px 18px;
  }

  .deployment-tab > span {
    top: 10px;
    right: 12px;
  }

  .deployment-tab small {
    display: none;
  }

  .deployment-display {
    min-height: 440px;
    grid-template-columns: minmax(190px, 0.8fr) minmax(240px, 1.2fr);
  }

  .case-panel {
    grid-template-columns: 1fr;
  }

  .case-copy {
    padding: 54px 48px 24px;
  }

  .case-copy > p:nth-of-type(2) {
    max-width: 630px;
  }

  .case-visual {
    min-height: 430px;
    padding: 34px 48px 64px;
  }

  .browser-frame {
    max-width: 640px;
    margin: 0 auto;
  }

  .floating-status {
    right: 70px;
    bottom: 45px;
  }

  .document-stack {
    width: min(430px, 85vw);
  }

  .appliance-layout {
    grid-template-columns: 1fr;
  }

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

  .product-stage {
    width: 650px;
    max-width: 100%;
    margin-inline: auto;
  }

  .appliance-features {
    grid-template-columns: 1fr 1fr;
  }

  .appliance-features article:nth-child(2) {
    border-right: 0;
  }

  .appliance-features article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lead-modal { padding: 0; }
  .lead-dialog { width: 100%; max-height: 100vh; min-height: 100vh; border: 0; border-radius: 0; grid-template-columns: 1fr; }
  .lead-dialog-intro { min-height: 154px; padding: 27px 64px 24px 24px; }
  .lead-dialog-intro h2 { margin-top: 10px; font-size: 27px; }
  .lead-dialog-intro > p:nth-of-type(2) { display: none; }
  .lead-intro-note { margin-top: 18px; padding: 0; border: 0; }
  .lead-progress { display: flex; margin-top: 18px; gap: 16px; }
  .lead-progress li { padding: 0; border: 0; }
  .lead-progress li span { display: none; }
  .lead-close { top: 20px; right: 18px; border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: #fff; }
  .lead-form { max-height: calc(100vh - 154px); }
  .lead-step, .lead-success { min-height: calc(100vh - 154px); padding: 35px 24px 28px; }
  .lead-options-row { grid-template-columns: repeat(2, 1fr); }
  .lead-fields { grid-template-columns: 1fr; gap: 13px; }
  .lead-field-wide { grid-column: auto; }
}

@media (max-width: 520px) {
  .lead-options-grid { grid-template-columns: 1fr; }
  .lead-options label > span { min-height: 64px; }
  .lead-step legend { font-size: 22px; margin-bottom: 21px; }
  .lead-actions { position: sticky; bottom: 0; padding-top: 10px; background: #fff; }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-lg: 22px;
  }

  .desktop-only {
    display: none;
  }

  .hero-grid,
  .appliance-grid {
    background-size: 50px 50px;
  }

  .hero-layout {
    padding-top: 74px;
  }

  .hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(38px, 11.7vw, 50px);
    line-height: 1.22;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

  .hero-visual {
    width: 470px;
    min-height: 500px;
    margin-top: -10px;
    margin-bottom: -20px;
    transform: scale(0.78);
    transform-origin: center;
  }

  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 230px; height: 230px; }
  .core-sphere { width: 145px; height: 145px; }
  .asset-chip { width: 166px; padding: 14px 15px; }
  .chip-process { right: -15px; }
  .chip-data { left: -15px; }
  .chip-operation { left: -2px; }

  .hero-proof > div {
    font-size: 10px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading h2,
  .appliance-copy h2 {
    font-size: 36px;
  }

  .heading-description,
  .split-heading > p {
    font-size: 15px;
  }

  .shift-stage {
    margin-top: 50px;
  }

  .shift-side {
    min-height: 420px;
    padding: 40px 24px 64px;
  }

  .shift-side h3 {
    font-size: 22px;
  }

  .shift-side li {
    min-height: 58px;
    padding: 0 13px;
    font-size: 13px;
  }

  .asset-side li {
    display: grid;
    padding: 12px 14px;
  }

  .asset-side li span {
    width: auto;
    margin-bottom: 3px;
  }

  .deployment-layout {
    margin-top: 48px;
  }

  .deployment-tabs {
    grid-template-columns: 1fr;
  }

  .deployment-tab {
    padding: 15px 18px;
  }

  .deployment-tab > span {
    top: 17px;
  }

  .deployment-tab strong {
    font-size: 17px;
  }

  .deployment-display {
    min-height: 680px;
    padding: 42px 26px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .deployment-network {
    min-height: 280px;
  }

  .deployment-copy h3 {
    font-size: 27px;
  }

  .core-assets {
    padding: 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .core-assets > div {
    justify-content: flex-start;
  }

  .case-tabs {
    margin-top: 48px;
  }

  .case-tab {
    min-width: 0;
    flex: 1;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
  }

  .case-copy {
    padding: 42px 24px 18px;
  }

  .case-copy h3 {
    font-size: 33px;
  }

  .case-flow {
    grid-template-columns: 1fr 1fr;
  }

  .case-flow li:nth-child(2)::after {
    display: none;
  }

  .case-visual {
    min-height: 340px;
    padding: 26px 22px 60px;
  }

  .browser-frame {
    transform: none;
  }

  .browser-frame img,
  .legal-browser img {
    min-height: 220px;
  }

  .floating-status {
    right: 32px;
    bottom: 30px;
  }

  .document-stack {
    width: min(330px, 82vw);
    height: 330px;
  }

  .document-stack img {
    width: 165px;
  }

  .public-metric strong {
    font-size: 48px;
  }

  .security-flow {
    align-items: flex-start;
    flex-direction: column;
  }

  .security-flow i {
    display: none;
  }

  .appliance-section {
    padding-top: 92px;
  }

  .product-stage {
    min-height: 390px;
  }

  .product-halo {
    width: 340px;
    height: 340px;
  }

  .product-halo::before { width: 250px; height: 250px; }
  .product-halo::after { width: 150px; height: 150px; }

  .product-stage > img {
    width: 470px;
    max-width: 132%;
  }

  .product-tag {
    width: 150px;
  }

  .tag-local { top: 28px; left: -4px; }
  .tag-master { right: -4px; bottom: 20px; }

  .appliance-features {
    grid-template-columns: 1fr;
  }

  .appliance-features article,
  .appliance-features article:nth-child(2) {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .closing-card {
    min-height: 580px;
    padding: 48px 28px;
  }

  .closing-card h2 {
    font-size: 40px;
  }

  .closing-card .button {
    width: 100%;
  }

  .closing-orbit {
    right: -260px;
    bottom: -330px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}

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

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