:root {
  --ink-950: #050b14;
  --ink-900: #07111f;
  --ink-850: #0a1626;
  --ink-800: #0d1b2d;
  --ink-700: #18304b;
  --slate-700: #34475d;
  --slate-600: #52657a;
  --slate-500: #718196;
  --slate-400: #98a5b6;
  --slate-300: #c4ccd6;
  --slate-200: #dce2e9;
  --slate-100: #edf1f5;
  --paper: #f6f8fb;
  --white: #fff;
  --mint: #2be0c3;
  --mint-dark: #0ca78e;
  --blue: #5c7cff;
  --blue-bright: #7f98ff;
  --violet: #9879ff;
  --amber: #ffbf5d;
  --shadow-sm: 0 14px 40px rgba(8, 20, 36, 0.08);
  --shadow-lg: 0 36px 100px rgba(3, 11, 23, 0.26);
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1180px;
  --header-height: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink-900);
  background: var(--white);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  background: rgba(7, 17, 31, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(2, 8, 16, 0.14);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand-word {
  font-size: 25px;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand-word span {
  color: var(--mint);
}

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

.main-nav > a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 580;
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--mint);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.main-nav > a:hover,
.main-nav > a:focus-visible {
  color: var(--white);
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-cta {
  padding: 10px 17px;
  color: var(--ink-900);
  background: var(--white);
  border-radius: 999px;
}

.main-nav .nav-cta:hover {
  color: var(--ink-900);
  background: var(--mint);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 1.5px;
  background: currentColor;
  transition: transform 220ms ease;
}

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

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

.hero {
  position: relative;
  min-height: 880px;
  padding: 164px 0 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 26%, rgba(92, 124, 255, 0.13), transparent 27%),
    linear-gradient(145deg, #07111f 0%, #081626 54%, #0a1828 100%);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(3, 9, 17, 0.25));
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 66px 66px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 86%);
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

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

.hero-glow-one {
  top: 124px;
  right: -190px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(43, 224, 195, 0.13), transparent 67%);
}

.hero-glow-two {
  bottom: -260px;
  left: 16%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(92, 124, 255, 0.11), transparent 66%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(450px, 0.95fr);
  gap: 78px;
  align-items: center;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 25px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(43, 224, 195, 0.09);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 5.3vw, 5.5rem);
  font-weight: 710;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.text-gradient {
  display: block;
  color: transparent;
  background: linear-gradient(95deg, var(--mint), #8aeedc 38%, var(--blue-bright) 93%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(226, 234, 243, 0.7);
  font-size: 18px;
  line-height: 1.75;
}

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

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease);
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible,
.contact-mail:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(43, 224, 195, 0.42);
  outline-offset: 3px;
}

.button-primary {
  color: var(--ink-950);
  background: var(--mint);
  box-shadow: 0 14px 35px rgba(43, 224, 195, 0.18);
}

.button-primary:hover {
  background: #4ee8ce;
  box-shadow: 0 17px 44px rgba(43, 224, 195, 0.25);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.13);
}

.button-light {
  color: var(--ink-900);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(2, 8, 16, 0.18);
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 13px;
}

.button-full {
  width: 100%;
}

.hero-proof {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.proof-item {
  padding: 20px 18px 0 0;
}

.proof-item + .proof-item {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.45;
}

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

.system-card {
  position: absolute;
  top: 26px;
  inset-inline: 0;
  min-height: 480px;
  background: linear-gradient(150deg, rgba(18, 36, 58, 0.9), rgba(8, 20, 34, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

.system-card::before {
  position: absolute;
  inset: 0;
  background:
    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: 38px 38px;
  content: "";
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 74%);
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.system-card-top {
  position: relative;
  z-index: 2;
  height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.window-dots span:first-child { background: rgba(255, 108, 122, 0.65); }
.window-dots span:nth-child(2) { background: rgba(255, 191, 93, 0.65); }
.window-dots span:last-child { background: rgba(43, 224, 195, 0.65); }

.system-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.system-status i {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(43, 224, 195, 0.8);
}

.system-stage {
  position: relative;
  z-index: 1;
  height: 350px;
}

.system-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  background: radial-gradient(circle at 35% 25%, rgba(92, 124, 255, 0.26), rgba(10, 26, 43, 0.96));
  border: 1px solid rgba(127, 152, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(92, 124, 255, 0.04), 0 0 60px rgba(92, 124, 255, 0.2);
  transform: translate(-50%, -50%);
}

.system-core img { width: 55px; height: 55px; }
.system-core span { color: rgba(255, 255, 255, 0.76); font-size: 10px; font-weight: 700; }

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

.orbit-one { width: 260px; height: 260px; animation: spin 30s linear infinite; }
.orbit-two { width: 375px; height: 285px; border-color: rgba(43, 224, 195, 0.12); animation: spin-reverse 44s linear infinite; }

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

.system-node {
  position: absolute;
  z-index: 4;
  min-width: 166px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(9, 25, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.node-ai { top: 44px; left: 28px; }
.node-product { top: 124px; right: 22px; }
.node-data { bottom: 34px; left: 31px; }

.node-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--mint);
  background: rgba(43, 224, 195, 0.09);
  border-radius: 10px;
}

.node-product .node-icon { color: var(--blue-bright); background: rgba(92, 124, 255, 0.11); }
.node-data .node-icon { color: var(--amber); background: rgba(255, 191, 93, 0.09); }

.node-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.system-node > span:last-child { display: flex; flex-direction: column; }
.system-node b { color: rgba(255, 255, 255, 0.8); font-size: 10px; }
.system-node small { color: rgba(255, 255, 255, 0.38); font-size: 9px; }

.system-footer {
  position: relative;
  z-index: 2;
  height: 71px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-footer i {
  height: 1px;
  flex: 1;
  margin: 0 11px;
  background: linear-gradient(to right, rgba(43, 224, 195, 0.55), rgba(92, 124, 255, 0.15));
}

.floating-chip {
  position: absolute;
  z-index: 7;
  padding: 9px 14px 9px 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(13, 31, 50, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  font-size: 10px;
  font-weight: 650;
}

.floating-chip span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--ink-950);
  background: var(--mint);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.chip-one { top: 7px; right: 30px; }
.chip-two { right: -9px; bottom: 12px; }
.chip-two span { color: var(--white); background: var(--blue); }

.capability-strip {
  position: relative;
  z-index: 3;
  margin-top: 86px;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-strip i {
  width: 3px;
  height: 3px;
  background: var(--mint);
  border-radius: 50%;
}

.section { padding: 116px 0; }

.solutions {
  background: radial-gradient(circle at 20% 10%, rgba(92, 124, 255, 0.07), transparent 26%), var(--paper);
}

.section-heading {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.section-kicker { margin-bottom: 14px; }
.section-kicker-light { color: var(--mint); }

.section-heading h2,
.product-copy h2,
.principles-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1.07;
}

.section-heading p {
  margin-bottom: 6px;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.75;
}

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

.solution-card {
  position: relative;
  min-height: 380px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 38px rgba(7, 17, 31, 0.04);
  overflow: hidden;
  transition: transform 300ms var(--ease), border-color 300ms ease, box-shadow 300ms ease;
}

.solution-card:hover {
  border-color: rgba(92, 124, 255, 0.2);
  box-shadow: 0 24px 58px rgba(7, 17, 31, 0.08);
  transform: translateY(-5px);
}

.solution-card-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 15%, rgba(43, 224, 195, 0.12), transparent 25%),
    linear-gradient(145deg, var(--ink-900), #0c2035);
  border-color: transparent;
}

.card-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--slate-300);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.solution-card-featured .card-number { color: rgba(255, 255, 255, 0.34); }

.solution-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(92, 124, 255, 0.09);
  border-radius: 14px;
}

.solution-card-featured .solution-icon { color: var(--mint); background: rgba(43, 224, 195, 0.09); }

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

.solution-card h3 {
  margin-bottom: 13px;
  font-size: 23px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.solution-card p {
  max-width: 500px;
  margin-bottom: 26px;
  color: var(--slate-600);
  font-size: 14px;
}

.solution-card-featured p { color: rgba(255, 255, 255, 0.58); }

.solution-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.solution-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--slate-700);
  font-size: 12px;
  font-weight: 570;
}

.solution-card li::before {
  width: 5px;
  height: 5px;
  background: var(--mint-dark);
  border-radius: 50%;
  content: "";
}

.solution-card-featured li { color: rgba(255, 255, 255, 0.67); }
.solution-card-featured li::before { background: var(--mint); }

.product-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 85%, rgba(92, 124, 255, 0.12), transparent 28%),
    linear-gradient(140deg, #081421, #091929 70%, #0b2130);
  overflow: hidden;
}

.product-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
}

.product-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(500px, 1.22fr);
  gap: 76px;
  align-items: center;
}

.product-title-row {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-copy h2 { font-size: clamp(3.6rem, 6vw, 6rem); }

.live-badge {
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.live-badge i {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(43, 224, 195, 0.8);
}

.product-lead {
  margin-bottom: 33px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.product-points {
  margin-bottom: 35px;
  display: grid;
  gap: 15px;
}

.product-points > div {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.product-points span { color: var(--mint); font-size: 10px; font-weight: 800; }
.product-points p { margin: 0; color: rgba(255, 255, 255, 0.52); font-size: 13px; }
.product-points b { color: rgba(255, 255, 255, 0.85); }

.product-window {
  overflow: hidden;
  background: #f4f7fa;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-3deg);
}

.product-window-bar {
  height: 56px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--slate-500);
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
}

.window-url {
  min-width: 190px;
  padding: 7px 18px;
  text-align: center;
  background: var(--slate-100);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 650;
}

.window-lock { justify-self: end; }
.window-lock svg { width: 14px; height: 14px; fill: none; stroke: var(--mint-dark); stroke-width: 1.7; }

.product-window-body {
  min-height: 440px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 20px;
  color: var(--ink-900);
  background: radial-gradient(circle at 20% 20%, rgba(92, 124, 255, 0.07), transparent 30%), #f4f7fa;
}

.document-preview,
.analysis-panel {
  position: relative;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(6, 17, 31, 0.06);
}

.document-preview { padding: 17px; overflow: hidden; }

.document-top {
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--slate-100);
}

.document-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(92, 124, 255, 0.09);
  border-radius: 9px;
}

.document-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.document-top > div { min-width: 0; display: flex; flex: 1; flex-direction: column; }
.document-top strong { font-size: 9px; }
.document-top small { overflow: hidden; color: var(--slate-400); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }

.complete-mark {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--mint-dark);
  background: rgba(43, 224, 195, 0.1);
  border-radius: 50%;
}

.complete-mark svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }

.document-lines { margin-top: 24px; display: grid; gap: 14px; }
.document-lines span { height: 7px; background: var(--slate-100); border-radius: 99px; }
.document-lines span:nth-child(1) { width: 73%; height: 10px; background: var(--slate-200); }
.document-lines span:nth-child(2) { width: 92%; }
.document-lines span:nth-child(3) { width: 85%; }
.document-lines span:nth-child(4) { width: 96%; }
.document-lines span:nth-child(5) { width: 64%; }

.scan-line {
  position: absolute;
  z-index: 2;
  right: 12px;
  left: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  box-shadow: 0 0 18px rgba(43, 224, 195, 0.55);
  animation: scan 4.2s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { top: 100px; opacity: 0; }
  15%, 85% { opacity: 1; }
  50% { top: 340px; }
}

.analysis-panel { padding: 20px; }
.analysis-header { display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 750; }

.analysis-header b {
  padding: 5px 8px;
  color: var(--mint-dark);
  background: rgba(43, 224, 195, 0.1);
  border-radius: 99px;
  font-size: 7px;
  text-transform: uppercase;
}

.score-ring {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 24px auto 21px;
}

.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring circle { fill: none; stroke: var(--slate-100); stroke-width: 6; }
.score-ring circle:last-child { stroke: var(--blue); stroke-dasharray: 220; stroke-dashoffset: 40; stroke-linecap: round; }

.score-ring > div {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.score-ring b { font-size: 29px; line-height: 1; }
.score-ring span { margin-top: 5px; color: var(--slate-400); font-size: 7px; text-transform: uppercase; }

.analysis-list { display: grid; gap: 8px; }
.analysis-list > div { padding: 9px 10px; display: grid; grid-template-columns: 8px 1fr auto; gap: 8px; align-items: center; background: var(--paper); border-radius: 9px; }
.analysis-list i { width: 6px; height: 6px; border-radius: 50%; }
.analysis-list .ok { background: var(--mint-dark); }
.analysis-list .warn { background: var(--amber); }
.analysis-list span { color: var(--slate-600); font-size: 7px; }
.analysis-list b { color: var(--slate-700); font-size: 6px; text-transform: uppercase; }

.analysis-progress { height: 4px; margin-top: 17px; background: var(--slate-100); border-radius: 99px; overflow: hidden; }
.analysis-progress span { width: 82%; height: 100%; display: block; background: linear-gradient(90deg, var(--blue), var(--mint)); }

.product-section-arsalink {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 82% 18%, rgba(43, 224, 195, 0.13), transparent 28%),
    linear-gradient(140deg, #0a1723, #0a2024 68%, #0c2827);
}

.product-layout-reverse {
  grid-template-columns: minmax(500px, 1.22fr) minmax(330px, 0.78fr);
}

.product-layout-reverse .product-copy { order: 2; }
.product-layout-reverse .product-window { order: 1; }

.arsalink-window {
  background: #eef4ef;
  transform: perspective(1200px) rotateY(3deg);
}

.arsalink-window-body {
  min-height: 440px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
  color: var(--ink-900);
  background: #edf3ef;
}

.arsalink-map {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background-color: #dce8de;
  background-image:
    linear-gradient(rgba(34, 83, 62, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 83, 62, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  border: 1px solid rgba(31, 76, 56, 0.1);
  border-radius: 18px;
  box-shadow: inset 0 0 50px rgba(45, 88, 67, 0.07);
}

.map-road {
  position: absolute;
  z-index: 1;
  display: block;
  background: #f7f9f6;
  border: 1px solid rgba(77, 105, 88, 0.1);
  box-shadow: 0 0 0 5px rgba(247, 249, 246, 0.46);
}

.map-road-one {
  top: -25%;
  left: 46%;
  width: 22px;
  height: 160%;
  transform: rotate(21deg);
}

.map-road-two {
  top: 51%;
  left: -20%;
  width: 140%;
  height: 18px;
  transform: rotate(-8deg);
}

.map-road-three {
  top: 9%;
  right: -25%;
  width: 105%;
  height: 13px;
  transform: rotate(34deg);
}

.parcel {
  position: absolute;
  z-index: 2;
  display: block;
  background: rgba(119, 168, 127, 0.22);
  border: 1px solid rgba(40, 105, 68, 0.29);
  clip-path: polygon(9% 0, 100% 13%, 88% 100%, 0 80%);
}

.parcel-one { top: 12%; left: 8%; width: 31%; height: 26%; transform: rotate(-6deg); }
.parcel-two { right: 5%; bottom: 8%; width: 35%; height: 30%; transform: rotate(9deg); }
.parcel-three { bottom: 10%; left: 7%; width: 28%; height: 24%; transform: rotate(4deg); }

.parcel-selected {
  top: 28%;
  left: 38%;
  width: 38%;
  height: 36%;
  background: rgba(43, 224, 195, 0.25);
  border: 2px solid #1d9b76;
  box-shadow: 0 12px 35px rgba(16, 100, 73, 0.2);
  transform: rotate(-3deg);
}

.map-location-label {
  position: absolute;
  z-index: 4;
  top: 15px;
  left: 15px;
  padding: 8px 11px;
  color: #28523f;
  background: rgba(255, 255, 255, 0.89);
  border: 1px solid rgba(37, 93, 66, 0.1);
  border-radius: 10px;
  box-shadow: 0 7px 22px rgba(31, 71, 52, 0.1);
  font-size: 8px;
  font-weight: 750;
}

.map-pin {
  position: absolute;
  z-index: 5;
  top: 40%;
  left: 55%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #12785a;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(15, 93, 67, 0.35);
  transform: translate(-50%, -50%);
}

.map-pin svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.map-zoom {
  position: absolute;
  z-index: 5;
  right: 13px;
  bottom: 13px;
  display: grid;
  color: #315744;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(31, 71, 52, 0.12);
  overflow: hidden;
}

.map-zoom span { width: 30px; height: 28px; display: grid; place-items: center; font-size: 15px; }
.map-zoom span + span { border-top: 1px solid rgba(31, 71, 52, 0.1); }

.parcel-panel {
  min-width: 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(31, 76, 56, 0.1);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(27, 64, 47, 0.07);
}

.parcel-panel-head {
  padding-bottom: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--slate-100);
}

.parcel-panel-head > div { display: grid; gap: 4px; }
.parcel-panel-head span { color: var(--slate-400); font-size: 7px; text-transform: uppercase; }
.parcel-panel-head strong { font-size: 11px; letter-spacing: -0.02em; }

.parcel-panel-head > b {
  padding: 5px 8px;
  color: #12785a;
  background: rgba(43, 224, 195, 0.12);
  border-radius: 99px;
  font-size: 7px;
  text-transform: uppercase;
}

.parcel-summary {
  margin: 16px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.parcel-summary > div {
  padding: 11px 9px;
  display: grid;
  gap: 6px;
  background: #f2f7f3;
  border-radius: 10px;
}

.parcel-summary span { color: var(--slate-500); font-size: 6px; }
.parcel-summary b { color: #234f3a; font-size: 9px; }
.parcel-flow { display: grid; gap: 8px; }

.parcel-flow > div {
  padding: 9px;
  display: grid;
  grid-template-columns: 7px 1fr auto;
  gap: 7px;
  align-items: center;
  background: var(--paper);
  border-radius: 9px;
}

.parcel-flow i { width: 6px; height: 6px; background: #1d9b76; border-radius: 50%; }
.parcel-flow span { color: var(--slate-600); font-size: 6px; }
.parcel-flow b { color: #315d46; font-size: 5px; text-transform: uppercase; }

.parcel-cta {
  margin-top: 17px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(135deg, #12785a, #1d9b76);
  border-radius: 10px;
  font-size: 7px;
  font-weight: 750;
}

.parcel-cta span { font-size: 12px; }

.approach { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-step { min-width: 0; padding-right: 30px; }
.process-step + .process-step { padding-left: 30px; }
.process-top { margin-bottom: 32px; display: flex; align-items: center; }

.process-top span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(92, 124, 255, 0.08);
  border: 1px solid rgba(92, 124, 255, 0.13);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.process-top i { flex: 1; height: 1px; margin-left: 13px; background: linear-gradient(to right, var(--slate-200), transparent); }
.process-step h3 { margin-bottom: 12px; font-size: 18px; font-weight: 680; letter-spacing: -0.03em; }
.process-step p { margin-bottom: 0; color: var(--slate-600); font-size: 13px; }

.principles {
  position: relative;
  padding: 116px 0;
  color: var(--white);
  background: var(--ink-900);
  overflow: hidden;
}

.principles::before {
  position: absolute;
  top: -300px;
  left: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(92, 124, 255, 0.12), transparent 64%);
  border-radius: 50%;
  content: "";
}

.principles-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  align-items: start;
}

.principles-copy { position: sticky; top: 130px; }
.principles-copy h2 { margin-bottom: 27px; }
.principles-copy p { color: rgba(255, 255, 255, 0.58); font-size: 16px; }
.principle-list { display: grid; }

.principle {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.principle:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.principle > span { padding-top: 5px; color: var(--mint); font-size: 10px; font-weight: 800; }
.principle h3 { margin-bottom: 9px; font-size: 22px; font-weight: 640; letter-spacing: -0.035em; }
.principle p { margin: 0; color: rgba(255, 255, 255, 0.47); font-size: 14px; }

.contact-section {
  background: radial-gradient(circle at 80% 20%, rgba(43, 224, 195, 0.1), transparent 25%), var(--paper);
}

.contact-card {
  padding: 68px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 100%, rgba(92, 124, 255, 0.17), transparent 30%),
    linear-gradient(145deg, var(--ink-900), #0b1e31);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 90px rgba(6, 17, 31, 0.17);
}

.contact-copy h2 { margin-bottom: 21px; font-size: clamp(2.7rem, 4.2vw, 4.2rem); }
.contact-copy > p { margin-bottom: 34px; color: rgba(255, 255, 255, 0.56); }

.contact-mail {
  padding: 12px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  transition: background 180ms ease, transform 180ms var(--ease);
}

.contact-mail:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }

.contact-mail > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--mint);
  background: rgba(43, 224, 195, 0.09);
  border-radius: 12px;
}

.contact-mail svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.contact-mail div { display: flex; flex-direction: column; }
.contact-mail small { color: rgba(255, 255, 255, 0.37); font-size: 9px; text-transform: uppercase; }
.contact-mail b { font-size: 13px; }

.contact-form {
  padding: 28px;
  color: var(--ink-900);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.16);
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.contact-form label { margin-bottom: 15px; display: block; }
.contact-form label > span { margin-bottom: 7px; display: block; color: var(--slate-600); font-size: 10px; font-weight: 700; text-transform: uppercase; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink-900);
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: 11px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input { height: 47px; padding: 0 13px; }
.contact-form textarea { padding: 12px 13px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--slate-400); }
.contact-form input:focus, .contact-form textarea:focus { background: var(--white); border-color: rgba(92, 124, 255, 0.5); box-shadow: 0 0 0 4px rgba(92, 124, 255, 0.08); }
.form-note { margin: 11px 0 0; color: var(--slate-500); text-align: center; font-size: 9px; }
.form-note.is-success { color: var(--mint-dark); }

.site-footer { color: var(--white); background: var(--ink-950); }
.footer-top { padding: 72px 0 55px; display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; }
.brand-footer { margin-bottom: 18px; }
.footer-brand p { max-width: 310px; color: rgba(255, 255, 255, 0.43); font-size: 13px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links > div { display: grid; align-content: start; gap: 9px; }
.footer-links b { margin-bottom: 8px; color: rgba(255, 255, 255, 0.85); font-size: 11px; }
.footer-links a { color: rgba(255, 255, 255, 0.43); font-size: 12px; transition: color 180ms ease; }
.footer-links a:hover { color: var(--mint); }

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.32);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 10px;
}

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

.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

.legal-main { min-height: 70vh; padding: 150px 0 100px; }
.legal-shell { max-width: 860px; }
.legal-heading { margin-bottom: 48px; }
.legal-heading h1 { margin-bottom: 10px; font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 690; letter-spacing: -0.055em; line-height: 1.05; }
.legal-heading p { color: var(--slate-500); font-size: 13px; }

.legal-content {
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-content section + section { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--slate-100); }
.legal-content h2 { margin-bottom: 12px; font-size: 20px; font-weight: 680; }
.legal-content p { margin-bottom: 0; color: var(--slate-600); font-size: 14px; }
.legal-content a { color: var(--blue); font-weight: 650; text-decoration: underline; }
.legal-footer .footer-bottom { border-top: 0; }

.not-found-page {
  min-height: 100vh;
  padding: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: radial-gradient(circle at 70% 20%, rgba(92, 124, 255, 0.18), transparent 30%), var(--ink-900);
}

.not-found-card { max-width: 560px; text-align: center; }
.not-found-card .brand { margin-bottom: 42px; }
.not-found-code { display: block; color: var(--mint); font-size: 12px; font-weight: 800; letter-spacing: 0.2em; }
.not-found-card h1 { margin: 10px 0 15px; font-size: clamp(2.6rem, 7vw, 5.2rem); font-weight: 700; letter-spacing: -0.06em; line-height: 1; }
.not-found-card p { margin-bottom: 30px; color: rgba(255, 255, 255, 0.52); }

@media (max-width: 1080px) {
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { width: min(100%, 660px); min-height: 520px; margin-inline: auto; }
  .system-card, .product-window { transform: none; }
  .product-layout { grid-template-columns: 1fr; }
  .product-copy { max-width: 720px; }
  .product-layout-reverse .product-copy { order: 1; }
  .product-layout-reverse .product-window { order: 2; }
  .contact-card { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    max-height: 0;
    padding: 0 22px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: rgba(7, 17, 31, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.32);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: max-height 350ms var(--ease), opacity 200ms ease, transform 300ms var(--ease), padding 300ms ease;
  }

  .main-nav.is-open { max-height: 460px; padding-block: 14px 18px; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a { padding: 13px 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); font-size: 15px; }
  .main-nav > a::after { display: none; }
  .main-nav .nav-cta { margin-top: 12px; text-align: center; border-bottom: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .principles-layout { grid-template-columns: 1fr; gap: 55px; }
  .principles-copy { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .process-step:nth-child(3) { padding-left: 0; }
  .contact-card { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .brand-word { font-size: 22px; }
  .hero { padding-top: 126px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .proof-item { padding: 17px 0; }
  .proof-item + .proof-item { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.08); border-left: 0; }
  .hero-visual { min-height: 464px; }
  .system-card { top: 8px; min-height: 425px; border-radius: 23px; }
  .system-stage { height: 304px; }
  .system-core { width: 108px; height: 108px; }
  .system-core img { width: 45px; height: 45px; }
  .orbit-one { width: 210px; height: 210px; }
  .orbit-two { width: 300px; height: 240px; }
  .system-node { min-width: 130px; padding: 8px 9px; }
  .node-icon { width: 29px; height: 29px; }
  .node-ai { top: 26px; left: 13px; }
  .node-product { top: 103px; right: 10px; }
  .node-data { bottom: 24px; left: 13px; }
  .system-node b { font-size: 8px; }
  .system-node small { font-size: 7px; }
  .system-footer { height: 62px; padding: 0 14px; font-size: 7px; }
  .floating-chip { display: none; }
  .capability-strip { margin-top: 45px; flex-wrap: wrap; gap: 10px 15px; font-size: 8px; }
  .section, .principles { padding: 82px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .product-copy h2, .principles-copy h2, .contact-copy h2 { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 0; padding: 28px; }
  .solution-icon { margin-bottom: 34px; }
  .product-layout { gap: 48px; }
  .product-title-row { align-items: flex-start; flex-direction: column; gap: 8px; }
  .product-window-body { min-height: 650px; grid-template-columns: 1fr; }
  .arsalink-window-body { min-height: 650px; grid-template-columns: 1fr; }
  .arsalink-map { min-height: 300px; }
  .product-window-bar { grid-template-columns: 1fr auto; }
  .window-url { display: none; }
  .document-preview { min-height: 270px; }
  .analysis-panel { min-height: 320px; }
  .scan-line { animation: none; top: 175px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { padding: 0; }
  .principle { grid-template-columns: 32px 1fr; }
  .contact-card { width: min(calc(100% - 20px), var(--shell)); padding: 38px 20px; border-radius: 24px; }
  .contact-mail { width: 100%; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 20px; }
  .footer-top { padding-top: 58px; gap: 45px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); row-gap: 35px; }
  .footer-bottom { padding: 18px 0; align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
  .legal-main { padding: 120px 0 72px; }
  .legal-content { padding: 27px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-note.is-error { color: #b42318; }
.contact-form button:disabled { cursor: wait; opacity: .65; }
