:root {
  --ink: #eaf2ff;
  --muted: #94a6bf;
  --blue: #1877ff;
  --blue-bright: #41a0ff;
  --blue-soft: #0c2f5f;
  --night: #050a12;
  --navy: #07111f;
  --panel: #0b1727;
  --panel-2: #0e1c2e;
  --line: rgba(146, 179, 217, 0.16);
  --line-strong: rgba(146, 179, 217, 0.28);
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 25% -20%, rgba(24, 119, 255, 0.14), transparent 34%),
    var(--night);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

img {
  max-width: 100%;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(65, 160, 255, 0.7);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1679ff, #65c3ff);
  box-shadow: 0 0 18px rgba(62, 164, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.cursor-spotlight {
  display: none;
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 480px;
    height: 480px;
    background: radial-gradient(
      circle,
      rgba(72, 157, 255, 0.1) 0,
      rgba(48, 132, 243, 0.045) 34%,
      transparent 70%
    );
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-1000px, -1000px, 0);
    transition: opacity 220ms ease;
    will-change: transform;
    mix-blend-mode: screen;
  }

  .cursor-spotlight.is-active {
    opacity: 1;
  }
}

.section-index {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 90;
  display: flex;
  gap: 11px;
  flex-direction: column;
  transform: translateY(-50%);
}

.section-index a {
  position: relative;
  display: flex;
  min-height: 18px;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #4e6077;
}

.section-index b {
  position: absolute;
  right: 62px;
  padding: 4px 7px;
  color: #c9d8ea;
  background: rgba(7, 17, 31, 0.8);
  border: 1px solid rgba(125, 170, 222, 0.14);
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateX(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(12px);
}

.section-index span {
  width: 19px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.55rem;
  text-align: right;
  transition: color 180ms ease;
}

.section-index i {
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(135, 170, 211, 0.24);
  transition:
    width 220ms var(--ease),
    background 180ms ease,
    box-shadow 180ms ease;
}

.section-index a:hover b,
.section-index a:focus-visible b,
.section-index a[aria-current="true"] b {
  opacity: 1;
  transform: translateX(0);
}

.section-index a[aria-current="true"] {
  color: #82bdff;
}

.section-index a[aria-current="true"] i {
  width: 34px;
  background: #3c9dff;
  box-shadow: 0 0 12px rgba(60, 157, 255, 0.55);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.scrolled {
  background: rgba(5, 10, 18, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 106px;
  transition: height 240ms var(--ease);
}

.nav-spacer {
  display: block;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: fit-content;
}

.brand-mark {
  display: block;
  width: 42px;
  height: auto;
  margin-right: 6px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 9px 18px rgba(15, 110, 255, 0.35));
}

.brand-word {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 760;
  letter-spacing: -0.055em;
}

.rn-spacing {
  display: inline-block;
  width: 0.055em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(82px, 6.8vw, 104px);
  margin-left: 0;
  justify-self: center;
  transition: gap 240ms var(--ease);
}

.desktop-nav a {
  color: #b3c1d4;
  font-size: 1.45rem;
  font-weight: 680;
  letter-spacing: -0.03em;
  transition:
    color 180ms ease,
    font-size 240ms var(--ease),
    transform 180ms var(--ease);
}

.desktop-nav a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -45%;
  width: 28%;
  height: 300%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  pointer-events: none;
  transform: rotate(18deg) translateX(-160%);
  transition: transform 650ms var(--ease);
}

.button:hover::before {
  transform: rotate(18deg) translateX(520%);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--blue), #0c61df);
  box-shadow:
    0 13px 35px rgba(17, 111, 242, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-primary:hover {
  box-shadow:
    0 17px 42px rgba(17, 111, 242, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-outline {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-strong);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(117, 176, 255, 0.4);
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 10px;
  font-size: 0.82rem;
}

.nav-cta {
  justify-self: end;
  min-height: 64px;
  padding: 0 35px;
  border-radius: 15px;
  font-size: 1.17rem;
  white-space: nowrap;
  transform: translateY(84px);
  transition:
    transform 240ms var(--ease),
    min-height 240ms var(--ease),
    padding 240ms var(--ease),
    font-size 240ms var(--ease);
}

.nav-cta:hover {
  transform: translateY(82px);
}

.site-header.scrolled .nav-shell {
  height: 82px;
}

.site-header.scrolled .desktop-nav {
  gap: 44px;
}

.site-header.scrolled .desktop-nav a {
  font-size: 1rem;
}

.site-header.scrolled .nav-cta {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 11px;
  font-size: 0.9rem;
  transform: translateX(0);
}

.site-header.scrolled .nav-cta:hover {
  transform: translateY(-2px);
}

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

.hero {
  position: relative;
  min-height: 860px;
  padding: 158px 0 0;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    520px circle at var(--pointer-x, 74%) var(--pointer-y, 34%),
    rgba(31, 128, 255, 0.13),
    transparent 68%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 210px;
  background: linear-gradient(to top, var(--night), transparent);
}

.hero-grid,
.about-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(126, 177, 236, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 177, 236, 0.14) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-grid {
  transform: translate3d(0, var(--hero-grid-shift, 0), 0);
  will-change: transform;
}

.hero-glow {
  position: absolute;
  z-index: -3;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow-one {
  top: -260px;
  right: -160px;
  background: radial-gradient(circle, rgba(14, 108, 255, 0.32), transparent 67%);
  transform: translate3d(0, var(--hero-glow-shift, 0), 0);
  will-change: transform;
}

.hero-glow-two {
  top: 260px;
  left: -430px;
  background: radial-gradient(circle, rgba(0, 167, 255, 0.12), transparent 66%);
  transform: translate3d(0, var(--hero-glow-shift-reverse, 0), 0);
  will-change: transform;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: #75b5ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 12px;
  background: rgba(14, 82, 167, 0.14);
  border: 1px solid rgba(69, 149, 247, 0.24);
  border-radius: 999px;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: #64b5ff;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(71, 169, 255, 0.8);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(100, 181, 255, 0.4);
  border-radius: inherit;
  animation: ping 2.2s ease-out infinite;
}

@keyframes ping {
  0% {
    opacity: 1;
    transform: scale(0.6);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.hero-brand-lockup {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 680px;
  margin-bottom: 19px;
  color: var(--white);
}

.hero-brand-lockup::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 18%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.34),
    transparent
  );
  opacity: 0;
  pointer-events: none;
  transform: skewX(-18deg);
}

.hero-brand-lockup img {
  display: block;
  width: clamp(92px, 7.2vw, 116px);
  height: auto;
  margin-right: 0;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(17, 111, 242, 0.32));
}

.hero-brand-lockup > span {
  margin-left: -0.018em;
  font-size: clamp(4rem, 6vw, 5.4rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 4.7vw, 4.15rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.mobile-break {
  display: none;
}

.hero h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(100deg, #ffffff 5%, #6fb8ff 46%, #1475fb 96%);
  background-size: 180% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: headline-shimmer 7s 1.8s ease-in-out infinite alternate;
}

@keyframes headline-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.hero-lede {
  max-width: 610px;
  margin: 26px 0 0;
  color: #aab9cd;
  font-size: 1.1rem;
  line-height: 1.75;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: #d8e5f7;
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link span {
  color: #63aeff;
  transition: transform 180ms var(--ease);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 640px;
  margin-top: 46px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-proof strong {
  color: var(--white);
  font-size: 0.89rem;
}

.hero-proof span {
  color: #71839d;
  font-size: 0.73rem;
}

.js-ready [data-hero-reveal] {
  opacity: 0;
  filter: blur(9px);
  transform: translateY(25px);
}

.js-ready [data-hero-reveal="stage"] {
  clip-path: inset(9% 0 5% 7% round 28px);
  transform: none;
}

.js-ready body.site-ready [data-hero-reveal] {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition:
    opacity 820ms var(--ease),
    filter 820ms var(--ease),
    transform 820ms var(--ease),
    clip-path 1050ms var(--ease);
}

.js-ready body.site-ready [data-hero-reveal="1"] {
  transition-delay: 80ms;
}

.js-ready body.site-ready [data-hero-reveal="2"] {
  transition-delay: 170ms;
}

.js-ready body.site-ready [data-hero-reveal="3"] {
  transition-delay: 280ms;
}

.js-ready body.site-ready [data-hero-reveal="4"] {
  transition-delay: 390ms;
}

.js-ready body.site-ready [data-hero-reveal="5"] {
  transition-delay: 500ms;
}

.js-ready body.site-ready [data-hero-reveal="6"] {
  transition-delay: 610ms;
}

.js-ready body.site-ready [data-hero-reveal="stage"] {
  clip-path: inset(0 round 0);
  transition-delay: 360ms;
}

.js-ready body.site-ready .hero-brand-lockup::after {
  animation: brand-sweep 950ms 820ms var(--ease) both;
}

@keyframes brand-sweep {
  0% {
    left: -30%;
    opacity: 0;
  }
  28% {
    opacity: 0.55;
  }
  100% {
    left: 112%;
    opacity: 0;
  }
}

.hero-stage {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  background: rgba(12, 104, 238, 0.18);
  border-radius: 50%;
  filter: blur(70px);
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(92, 161, 245, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
}

.orbit-one {
  width: 570px;
  height: 350px;
  animation: orbit-drift 18s linear infinite;
}

.orbit-two {
  width: 470px;
  height: 600px;
  animation: orbit-drift-reverse 24s linear infinite;
}

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

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

.signal-pulse {
  position: absolute;
  top: 47%;
  left: 52%;
  z-index: 0;
  width: 380px;
  height: 380px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.signal-pulse span,
.signal-pulse i {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-pulse span {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(72, 158, 255, 0.2);
  opacity: 0;
  animation: signal-wave 4.8s ease-out infinite;
}

.signal-pulse span:nth-child(2) {
  animation-delay: 1.6s;
}

.signal-pulse span:nth-child(3) {
  animation-delay: 3.2s;
}

.signal-pulse i {
  width: 8px;
  height: 8px;
  background: #63b6ff;
  box-shadow:
    0 0 18px rgba(75, 169, 255, 0.9),
    0 0 55px rgba(35, 125, 255, 0.65);
}

@keyframes signal-wave {
  0% {
    width: 12%;
    height: 12%;
    opacity: 0.65;
  }
  72%,
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

.browser-window {
  overflow: hidden;
  background: #0c1624;
  border: 1px solid rgba(132, 179, 232, 0.25);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-browser {
  position: absolute;
  top: 57px;
  left: 38px;
  width: 560px;
  transform: rotateY(-8deg) rotateX(2deg) rotateZ(1deg);
  animation: float 7s ease-in-out infinite;
}

.hero-browser::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.11) 44%,
    transparent 60%
  );
  pointer-events: none;
  transform: translateX(-145%);
  animation: screen-sweep 5.8s 2s var(--ease) infinite;
}

@keyframes screen-sweep {
  0%,
  58% {
    transform: translateX(-145%);
  }
  82%,
  100% {
    transform: translateX(145%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: rotateY(-8deg) rotateX(2deg) rotateZ(1deg) translateY(0);
  }
  50% {
    transform: rotateY(-8deg) rotateX(2deg) rotateZ(1deg) translateY(-11px);
  }
}

.browser-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 42px;
  padding: 0 15px;
  background: #101d2e;
  border-bottom: 1px solid var(--line);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 7px;
  height: 7px;
  background: #40536e;
  border-radius: 50%;
}

.browser-address {
  padding: 5px 44px;
  color: #62758f;
  background: rgba(255, 255, 255, 0.035);
  border-radius: 5px;
  font-size: 0.55rem;
}

.browser-lock {
  justify-self: end;
  color: #2ebd85;
  font-size: 0.44rem;
}

.demo-site {
  min-height: 390px;
  padding: 24px 26px 18px;
  color: #092d2b;
  background:
    radial-gradient(circle at 78% 35%, rgba(126, 227, 198, 0.55), transparent 27%),
    #ecf7f2;
}

.demo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-logo {
  width: 54px;
  height: 10px;
  background: #0a3430;
  border-radius: 3px;
}

.demo-links {
  display: flex;
  gap: 16px;
}

.demo-links span {
  width: 25px;
  height: 4px;
  background: rgba(9, 45, 43, 0.28);
  border-radius: 4px;
}

.demo-button {
  width: 64px;
  height: 19px;
  background: #0a3430;
  border-radius: 5px;
}

.demo-hero {
  max-width: 260px;
  padding: 67px 0 55px 10px;
}

.demo-hero p {
  margin: 0 0 9px;
  color: #1a7b6d;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.demo-hero h2 {
  margin: 0 0 18px;
  font-family: Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.demo-copy {
  display: block;
  width: 195px;
  height: 5px;
  margin-bottom: 7px;
  background: rgba(9, 45, 43, 0.2);
  border-radius: 4px;
}

.demo-copy.short {
  width: 140px;
}

.demo-actions {
  display: flex;
  gap: 9px;
  margin-top: 23px;
}

.demo-actions span {
  width: 70px;
  height: 23px;
  background: #0a3430;
  border-radius: 4px;
}

.demo-actions span:last-child {
  background: transparent;
  border: 1px solid rgba(10, 52, 48, 0.24);
}

.demo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.demo-cards div {
  height: 50px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 87, 79, 0.1);
  border-radius: 6px;
}

.demo-cards span {
  color: #2f8c7d;
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(10, 24, 41, 0.9);
  border: 1px solid rgba(121, 178, 242, 0.22);
  border-radius: 15px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.score-card {
  top: 15px;
  right: -33px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 132px;
  padding: 16px 14px 14px;
  animation: drift 6s 0.8s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(9px);
  }
}

.floating-label {
  color: #7487a1;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-ring {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 10px 0 7px;
  place-items: center;
  background:
    radial-gradient(circle at center, #0b1828 58%, transparent 60%),
    conic-gradient(#35a1ff 98%, rgba(255, 255, 255, 0.08) 0);
  border-radius: 50%;
}

.score-ring strong {
  color: var(--white);
  font-size: 1.12rem;
}

.score-card small {
  color: #91a3bb;
  font-size: 0.58rem;
}

.lead-card {
  right: 2px;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 190px;
  padding: 13px;
  animation: drift 6.5s 1.2s ease-in-out infinite reverse;
}

.lead-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: #a8d4ff;
  background: rgba(30, 133, 255, 0.18);
  border: 1px solid rgba(65, 160, 255, 0.24);
  border-radius: 9px;
  place-items: center;
}

.lead-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lead-card strong {
  color: #edf6ff;
  font-size: 0.7rem;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 94px;
  padding: 27px 0 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip > span {
  color: #687a93;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.industry-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.industry-list span {
  color: #a8b7ca;
  font-size: 0.83rem;
  font-weight: 650;
}

.section {
  position: relative;
  padding: 140px 0;
  scroll-margin-top: 76px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 110px;
  margin-bottom: 58px;
}

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

.section-heading h2,
.plans-heading h2,
.process-intro h2,
.about-copy h2,
.contact-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 1;
}

.section-heading > p,
.process-intro > p:not(.kicker),
.about-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: 28px;
  overflow: hidden;
  flex-direction: column;
  background: linear-gradient(155deg, rgba(14, 30, 49, 0.9), rgba(7, 17, 31, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition:
    border-color 220ms ease,
    transform 220ms var(--ease);
}

.service-card:hover {
  border-color: rgba(88, 162, 247, 0.32);
  transform: translateY(-4px);
}

.service-featured {
  background:
    radial-gradient(circle at 90% 100%, rgba(18, 104, 222, 0.19), transparent 43%),
    linear-gradient(155deg, rgba(14, 30, 49, 0.95), rgba(7, 17, 31, 0.82));
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}

.service-number {
  color: #5d7089;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.69rem;
}

.service-icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: #92c8ff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 10px;
  place-items: center;
}

.service-card h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.service-card p {
  max-width: 420px;
  margin: 0;
  color: #8fa0b7;
  font-size: 0.92rem;
  line-height: 1.72;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 9px;
  color: #879ab3;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 0.63rem;
  font-weight: 650;
}

.service-visual {
  position: absolute;
  right: -22px;
  bottom: -24px;
  width: 78%;
  height: 170px;
}

.browser-mini {
  padding: 13px;
  background: #0b2038;
  border: 1px solid rgba(91, 165, 247, 0.25);
  border-radius: 14px 0 0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  transform: rotate(-4deg);
}

.mini-top {
  width: 35%;
  height: 6px;
  margin-bottom: 15px;
  background: rgba(139, 191, 255, 0.3);
  border-radius: 5px;
}

.mini-body {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 8px;
}

.mini-body span {
  height: 115px;
  background: linear-gradient(145deg, #156de2, #0b3f83);
  border-radius: 8px;
}

.mini-body span:nth-child(2),
.mini-body span:nth-child(3) {
  height: 52px;
  background: rgba(255, 255, 255, 0.06);
}

.mini-body span:nth-child(3) {
  grid-column: 2;
}

.pipeline-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: linear-gradient(140deg, rgba(10, 38, 69, 0.96), #091726);
  border: 1px solid var(--line);
  border-radius: 14px 0 0;
  transform: rotate(3deg);
}

.pipeline-mini div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 7px;
}

.pipeline-mini span {
  width: 45%;
  height: 4px;
  background: rgba(180, 212, 247, 0.21);
  border-radius: 4px;
}

.pipeline-mini i {
  width: 7px;
  height: 7px;
  background: #3ca3ff;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(60, 163, 255, 0.7);
}

.automation-mini {
  background:
    radial-gradient(circle at 70% 30%, rgba(39, 142, 255, 0.28), transparent 28%),
    linear-gradient(140deg, #0c2038, #081623);
  border: 1px solid var(--line);
  border-radius: 50% 0 0;
}

.automation-mini span {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #102d4c;
  border: 1px solid #318be9;
  border-radius: 5px;
  box-shadow: 0 0 18px rgba(49, 139, 233, 0.28);
}

.automation-mini span:nth-child(1) {
  top: 65px;
  left: 45px;
}

.automation-mini span:nth-child(2) {
  top: 32px;
  left: 128px;
}

.automation-mini span:nth-child(3) {
  right: 35px;
  bottom: 34px;
}

.automation-mini i {
  position: absolute;
  top: 82px;
  left: 54px;
  width: 175px;
  height: 1px;
  background: linear-gradient(90deg, #318be9, transparent);
  transform: rotate(-17deg);
  transform-origin: left;
}

.work {
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.5), rgba(4, 9, 16, 0.98)),
    radial-gradient(circle at 75% 10%, rgba(17, 92, 186, 0.11), transparent 33%);
}

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

.project-card {
  min-width: 0;
}

.project-preview {
  position: relative;
  height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease;
}

.project-card:hover .project-preview {
  border-color: rgba(95, 165, 246, 0.35);
  transform: translateY(-5px);
}

.project-wide {
  grid-column: 1 / -1;
}

.project-wide .project-preview {
  height: 540px;
}

.project-browser {
  position: absolute;
  right: 7%;
  bottom: -8%;
  width: 82%;
  overflow: hidden;
  background: #101924;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px 15px 0 0;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
}

.project-browser-bar {
  height: 30px;
  padding: 12px;
  background: #172331;
}

.project-browser-bar span {
  display: block;
  width: 38px;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.auto-preview {
  background:
    linear-gradient(130deg, rgba(16, 22, 29, 0.1), rgba(4, 10, 15, 0.7)),
    #a4b5bd;
}

.auto-preview::before {
  content: "CONCEPT 01";
  position: absolute;
  top: 35px;
  left: 35px;
  color: rgba(3, 15, 23, 0.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.auto-site {
  position: relative;
  height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 42%, rgba(66, 180, 196, 0.24), transparent 23%),
    #10191f;
}

.auto-copy {
  position: absolute;
  top: 90px;
  left: 58px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 45%;
}

.auto-copy span {
  color: #7cced1;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.auto-copy strong {
  max-width: 330px;
  margin-top: 14px;
  color: #f0f3f3;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.auto-copy i {
  width: 90px;
  height: 29px;
  margin-top: 25px;
  background: #74c8cb;
  border-radius: 4px;
}

.auto-car {
  position: absolute;
  right: -80px;
  bottom: 70px;
  width: 52%;
  height: 125px;
  transform: skewX(-5deg);
}

.car-body {
  position: absolute;
  inset: 26px 0 20px;
  background: linear-gradient(160deg, #dfe4e5, #657881 58%, #202e35);
  border-radius: 65% 15% 16% 24% / 65% 34% 33% 45%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.car-roof {
  position: absolute;
  top: 0;
  left: 32%;
  z-index: 1;
  width: 49%;
  height: 60px;
  background: linear-gradient(150deg, #d9e2e4, #536872);
  border-radius: 70% 32% 0 0;
  transform: skewX(-15deg);
}

.auto-car > span {
  position: absolute;
  bottom: 2px;
  z-index: 2;
  width: 46px;
  height: 46px;
  background: radial-gradient(circle, #1a242a 30%, #6e7e84 33% 48%, #11191e 51%);
  border-radius: 50%;
}

.auto-car > span:nth-last-child(2) {
  left: 17%;
}

.auto-car > span:last-child {
  right: 17%;
}

.roof-preview {
  padding: 55px;
  background:
    linear-gradient(90deg, rgba(7, 18, 27, 0.95), rgba(7, 18, 27, 0.14)),
    linear-gradient(145deg, #0d2332 25%, #7c8a8c);
}

.roof-preview::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -90px;
  width: 380px;
  height: 300px;
  background: linear-gradient(145deg, #79898c, #31434a);
  clip-path: polygon(50% 0, 100% 48%, 78% 48%, 78% 100%, 22% 100%, 22% 48%, 0 48%);
  filter: drop-shadow(-28px 18px 24px rgba(0, 0, 0, 0.25));
}

.roof-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 60%;
}

.roof-copy span {
  color: #8fc8ff;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.roof-copy strong {
  margin-top: 15px;
  color: #fff;
  font-size: 2.7rem;
  line-height: 1;
}

.roof-copy i {
  width: 75px;
  height: 26px;
  margin-top: 22px;
  background: #2e8ce8;
  border-radius: 4px;
}

.roof-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.2;
}

.roof-lines span {
  position: absolute;
  width: 1px;
  height: 150%;
  background: #d9efff;
  transform: rotate(41deg);
}

.roof-lines span:nth-child(1) {
  right: 12%;
  top: -35%;
}

.roof-lines span:nth-child(2) {
  right: 24%;
  top: -31%;
}

.roof-lines span:nth-child(3) {
  right: 36%;
  top: -26%;
}

.legal-preview {
  display: grid;
  grid-template-columns: 105px 1fr;
  background:
    radial-gradient(circle at 78% 73%, rgba(213, 175, 98, 0.11), transparent 26%),
    #161614;
}

.legal-sidebar {
  display: flex;
  align-items: center;
  gap: 27px;
  padding: 25px 24px;
  flex-direction: column;
  background: #ede8dd;
}

.legal-sidebar span {
  color: #272720;
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

.legal-sidebar i {
  width: 28px;
  height: 3px;
  margin-top: 18px;
  background: rgba(39, 39, 32, 0.23);
}

.legal-copy {
  display: flex;
  justify-content: center;
  padding: 52px;
  flex-direction: column;
}

.legal-copy > span {
  color: #c6a864;
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.legal-copy strong {
  max-width: 350px;
  margin: 18px 0 30px;
  color: #f0ece2;
  font-family: Georgia, serif;
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.08;
}

.legal-copy div {
  display: flex;
  gap: 8px;
}

.legal-copy i {
  width: 72px;
  height: 25px;
  background: #c6a864;
}

.legal-copy i:last-child {
  background: transparent;
  border: 1px solid rgba(198, 168, 100, 0.36);
}

.project-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 2px 5px;
}

.project-meta span {
  color: #71839a;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 5px 0 0;
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.project-meta p {
  max-width: 280px;
  margin: 0;
  color: #7f91a8;
  font-size: 0.78rem;
  text-align: right;
}

.concept-note,
.pricing-note {
  margin: 35px auto 0;
  color: #5f728b;
  font-size: 0.72rem;
  text-align: center;
}

.process {
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -30%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(15, 102, 224, 0.13), transparent 67%);
  pointer-events: none;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 120px;
}

.process-intro {
  position: sticky;
  top: 155px;
  height: fit-content;
}

.process-intro h2 {
  font-size: clamp(2.7rem, 4.8vw, 4rem);
}

.process-intro > p:not(.kicker) {
  max-width: 470px;
  margin-top: 28px;
}

.process-intro .text-link {
  margin-top: 30px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: #4e6888;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.67rem;
}

.process-list h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.process-list p {
  max-width: 540px;
  margin: 0;
  color: #899bb2;
  font-size: 0.9rem;
  line-height: 1.72;
}

.plans {
  background:
    radial-gradient(circle at 50% 20%, rgba(17, 102, 224, 0.13), transparent 31%),
    #060c15;
  border-top: 1px solid rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.025);
}

.plans-heading {
  margin-bottom: 62px;
  text-align: center;
}

.plans-heading h2 {
  margin-inline: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 15px;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 32px;
  flex-direction: column;
  background: linear-gradient(155deg, rgba(15, 29, 46, 0.9), rgba(8, 17, 29, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.price-featured {
  background:
    radial-gradient(circle at 70% -15%, rgba(47, 137, 255, 0.28), transparent 32%),
    linear-gradient(155deg, #0e2542, #081727);
  border-color: rgba(73, 150, 243, 0.44);
  box-shadow: 0 22px 75px rgba(7, 80, 177, 0.14);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 9px;
  color: #b8dbff;
  background: rgba(39, 132, 248, 0.16);
  border: 1px solid rgba(78, 158, 252, 0.27);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-name {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.plan-description {
  min-height: 84px;
  margin: 0;
  color: #899ab1;
  font-size: 0.85rem;
  line-height: 1.65;
}

.price {
  display: flex;
  gap: 7px;
  min-height: 108px;
  margin-top: 30px;
  padding: 26px 0 24px;
  flex-direction: column;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price span {
  color: #70829a;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price strong {
  color: var(--white);
  font-size: 2.25rem;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price-card ul {
  display: flex;
  gap: 13px;
  min-height: 210px;
  margin: 27px 0 30px;
  padding: 0;
  flex-direction: column;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #a9b7c9;
  font-size: 0.83rem;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #55a8ff;
  font-weight: 800;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 110px;
}

.about-visual {
  position: relative;
  display: flex;
  min-height: 600px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(27, 121, 255, 0.16), transparent 34%),
    #071320;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.about-grid {
  z-index: 0;
  opacity: 0.45;
  mask-image: radial-gradient(circle at center, black, transparent 77%);
}

.about-mark {
  position: relative;
  display: flex;
  align-items: end;
  gap: 12px;
  filter: drop-shadow(0 35px 60px rgba(14, 108, 250, 0.25));
}

.about-mark::before {
  content: "";
  position: absolute;
  inset: -90px;
  z-index: -1;
  background: radial-gradient(circle, rgba(23, 117, 255, 0.24), transparent 67%);
}

.about-mark span {
  display: block;
  width: 54px;
  background: linear-gradient(160deg, #71bdff, #0b62de 78%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px 13px 4px 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.27);
  transform: skewY(-17deg);
}

.about-mark span:nth-child(1) {
  height: 100px;
}

.about-mark span:nth-child(2) {
  height: 185px;
}

.about-mark span:nth-child(3) {
  height: 135px;
}

.about-caption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: #526984;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-copy .about-lede {
  margin-bottom: 20px;
  color: #c0cede;
  font-size: 1.08rem;
}

.about-copy > p:not(.kicker):not(.about-lede) {
  color: #8193aa;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.value-row div {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.value-row strong {
  color: var(--white);
  font-size: 0.84rem;
}

.value-row span {
  color: #6f829a;
  font-size: 0.7rem;
  line-height: 1.5;
}

.contact {
  overflow: hidden;
  background: #07111f;
  border-top: 1px solid var(--line);
}

.contact-glow {
  position: absolute;
  right: -180px;
  bottom: -380px;
  width: 850px;
  height: 850px;
  background: radial-gradient(circle, rgba(19, 113, 249, 0.2), transparent 66%);
  pointer-events: none;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
}

.contact-copy {
  padding-top: 22px;
}

.contact-copy h2 {
  font-size: clamp(3rem, 5vw, 4.6rem);
}

.contact-copy > p:not(.kicker) {
  max-width: 470px;
  margin-top: 28px;
}

.contact-direct {
  display: flex;
  gap: 5px;
  margin-top: 42px;
  flex-direction: column;
}

.contact-direct span {
  color: #62758e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct a {
  color: #cbe4ff;
  font-size: 1.02rem;
  font-weight: 700;
}

.contact-form {
  display: flex;
  gap: 21px;
  padding: 34px;
  flex-direction: column;
  background: rgba(12, 27, 45, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.contact-form label {
  display: flex;
  gap: 8px;
  color: #bccadd;
  font-size: 0.75rem;
  font-weight: 700;
  flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--white);
  background: rgba(5, 13, 23, 0.74);
  border: 1px solid rgba(131, 166, 208, 0.2);
  border-radius: 10px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 49px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #52657e;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(6, 17, 31, 0.95);
  border-color: rgba(64, 154, 255, 0.67);
  box-shadow: 0 0 0 3px rgba(37, 133, 242, 0.11);
}

.contact-form select {
  color-scheme: dark;
}

.contact-form select:invalid {
  color: #52657e;
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-note {
  margin: -7px 0 0;
  color: #5d7089;
  font-size: 0.64rem;
  line-height: 1.5;
  text-align: center;
}

.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.site-footer {
  background: #04080e;
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 56px 0 46px;
}

.footer-top > p {
  max-width: 380px;
  margin: 0 auto;
  color: #6e8096;
  font-size: 0.78rem;
  text-align: center;
}

.footer-top > .text-link {
  justify-self: end;
  font-size: 0.78rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 22px 0 29px;
  color: #48586b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.65rem;
}

.js-ready [data-reveal] {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(40px) scale(0.988);
  transition:
    opacity 760ms var(--ease) var(--reveal-delay, 0ms),
    filter 760ms var(--ease) var(--reveal-delay, 0ms),
    transform 760ms var(--ease) var(--reveal-delay, 0ms);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@media (min-width: 861px) {
  .hero-stage {
    top: 18px;
  }
}

@media (max-width: 1280px) {
  .section-index {
    display: none;
  }

  .nav-shell {
    height: 98px;
  }

  .desktop-nav {
    gap: 70px;
  }

  .desktop-nav a {
    font-size: 1.18rem;
  }

  .nav-cta {
    min-height: 56px;
    padding: 0 27px;
    font-size: 1.02rem;
    transform: translateY(64px);
  }

  .nav-cta:hover {
    transform: translateY(62px);
  }

  .site-header.scrolled .nav-cta {
    transform: translateX(0);
  }

  .site-header.scrolled .nav-cta:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 1100px) {
  .nav-shell {
    height: 90px;
  }

  .desktop-nav {
    gap: 28px;
    margin-left: 0;
  }

  .desktop-nav a {
    font-size: 0.94rem;
  }

  .nav-cta {
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.88rem;
    transform: translateX(0);
  }

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

  .site-header.scrolled .nav-cta {
    transform: translateX(0);
  }

  .site-header.scrolled .nav-cta:hover {
    transform: translateY(-2px);
  }

  .hero {
    padding-top: 140px;
  }

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

  .hero h1 {
    font-size: clamp(2.75rem, 4.7vw, 3.9rem);
  }

  .hero-stage {
    min-height: 500px;
    transform: scale(0.88);
    transform-origin: left center;
  }

  .section-heading,
  .about-layout,
  .contact-layout {
    gap: 70px;
  }

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

  .service-featured {
    grid-column: 1 / -1;
  }

  .service-featured .service-visual {
    width: 45%;
  }

  .process-layout {
    gap: 70px;
  }

  .price-card {
    padding: 27px 23px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

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

  .nav-shell {
    display: flex;
    justify-content: flex-end;
  }

  .nav-spacer {
    display: none;
  }

  .menu-toggle {
    display: flex;
    gap: 6px;
    width: 45px;
    height: 45px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: inherit;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
    border-radius: 10px;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #d8e7f8;
    transition: transform 180ms ease;
  }

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

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

  .mobile-nav {
    position: fixed;
    inset: 90px 0 auto;
    display: flex;
    gap: 0;
    padding: 16px 18px 24px;
    flex-direction: column;
    background: rgba(5, 10, 18, 0.97);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    padding: 16px 7px;
    color: #becbdb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    font-size: 0.92rem;
    font-weight: 650;
  }

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

  .hero {
    min-height: 0;
    padding-top: 118px;
  }

  .hero-layout {
    display: flex;
    gap: 30px;
    flex-direction: column;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 8.5vw, 4.1rem);
  }

  .hero-stage {
    width: 100%;
    min-height: 560px;
    transform: none;
  }

  .hero-browser {
    left: 50%;
    width: min(86vw, 560px);
    transform: translateX(-50%) rotateY(-5deg) rotateZ(1deg);
    animation: none;
  }

  .score-card {
    right: 1%;
  }

  .lead-card {
    right: 4%;
  }

  .trust-strip,
  .industry-list {
    align-items: flex-start;
  }

  .trust-strip {
    margin-top: 20px;
    flex-direction: column;
  }

  .industry-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 16px 30px;
  }

  .section {
    padding: 105px 0;
  }

  .section-heading {
    display: flex;
    gap: 27px;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .work-grid,
  .pricing-grid,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .project-wide {
    grid-column: auto;
  }

  .project-wide .project-preview,
  .project-preview {
    height: 430px;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-intro {
    position: static;
  }

  .pricing-grid {
    max-width: 610px;
    margin-inline: auto;
  }

  .plan-description,
  .price-card ul {
    min-height: 0;
  }

  .about-layout {
    gap: 60px;
  }

  .about-visual {
    min-height: 520px;
  }

  .contact-layout {
    gap: 55px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-top > p {
    margin: 0;
    text-align: left;
  }

  .footer-top > .text-link {
    justify-self: start;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell {
    height: 72px;
  }

  .mobile-nav {
    inset: 72px 0 auto;
  }

  .hero {
    padding-top: 22px;
  }

  .eyebrow {
    max-width: calc(100% - 62px);
    margin-bottom: 28px;
    padding: 6px 8px;
    font-size: clamp(0.5rem, 2.35vw, 0.56rem);
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .eyebrow .status-dot {
    flex: 0 0 auto;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 9.6vw, 2.55rem);
    line-height: 0.96;
  }

  .mobile-break {
    display: none;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .hero-brand-lockup {
    gap: 0;
    margin-bottom: 24px;
  }

  .hero-brand-lockup img {
    width: 80px;
    height: auto;
    margin-right: 0;
  }

  .hero-brand-lockup > span {
    font-size: clamp(3.35rem, 16.5vw, 4.35rem);
  }

  .hero-brand-lockup .rn-spacing {
    width: 0.06em;
  }

  .hero-lede {
    margin-top: 26px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: stretch;
    gap: 13px;
    margin-top: 28px;
    flex-direction: column;
  }

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

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
    padding-top: 18px;
  }

  .hero-proof div {
    display: flex;
    min-width: 0;
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-proof strong {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .hero-proof span {
    font-size: 0.64rem;
    line-height: 1.4;
  }

  .hero-stage {
    min-height: 390px;
    margin-top: 0;
  }

  .orbit-two {
    display: none;
  }

  .signal-pulse {
    width: 280px;
    height: 280px;
  }

  .hero-browser {
    top: 20px;
    width: 94%;
  }

  .browser-topbar {
    grid-template-columns: 1fr 2.5fr 0.5fr;
  }

  .browser-address {
    overflow: hidden;
    padding: 5px 12px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .demo-site {
    min-height: 320px;
    padding: 20px;
  }

  .demo-hero {
    padding: 50px 0 35px 3px;
  }

  .demo-hero h2 {
    font-size: 1.8rem;
  }

  .demo-links {
    display: none;
  }

  .score-card {
    top: 4px;
    right: 1%;
    transform: scale(0.72);
    transform-origin: top right;
    animation: none;
  }

  .lead-card {
    right: 1%;
    bottom: 8px;
    transform: scale(0.74);
    transform-origin: bottom right;
    animation: none;
  }

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

  .section {
    padding: 85px 0;
  }

  .section-heading h2,
  .plans-heading h2,
  .process-intro h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

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

  .service-featured {
    grid-column: auto;
  }

  .service-card {
    min-height: 490px;
  }

  .service-featured .service-visual,
  .service-visual {
    width: 86%;
  }

  .project-wide .project-preview,
  .project-preview {
    height: 360px;
  }

  .project-browser {
    right: 4%;
    width: 92%;
  }

  .auto-site {
    height: 340px;
  }

  .auto-copy {
    top: 62px;
    left: 30px;
    width: 60%;
  }

  .auto-copy strong {
    font-size: 2.2rem;
  }

  .auto-car {
    right: -100px;
    bottom: 48px;
    width: 75%;
  }

  .roof-preview {
    padding: 38px 30px;
  }

  .roof-copy {
    width: 82%;
  }

  .roof-copy strong {
    font-size: 2.3rem;
  }

  .legal-preview {
    grid-template-columns: 65px 1fr;
  }

  .legal-sidebar {
    padding: 21px 12px;
  }

  .legal-copy {
    padding: 35px 25px;
  }

  .legal-copy strong {
    font-size: 1.85rem;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-meta p {
    text-align: left;
  }

  .process-list li {
    grid-template-columns: 45px 1fr;
    gap: 13px;
  }

  .price-card {
    padding: 28px 24px;
  }

  .about-visual {
    min-height: 430px;
  }

  .about-mark {
    transform: scale(0.75);
  }

  .about-caption {
    gap: 8px;
    flex-direction: column;
  }

  .value-row {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-bottom {
    gap: 10px;
    flex-direction: column;
  }
}

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

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

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

  [data-hero-reveal],
  .js-ready [data-hero-reveal],
  .js-ready [data-hero-reveal="stage"] {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
  }
}
