:root {
  color-scheme: dark;
  --bg: #08080a;
  --bg-soft: #0e0e11;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.092);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --text: #f7f5ef;
  --text-soft: rgba(247, 245, 239, 0.76);
  --muted: rgba(247, 245, 239, 0.54);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.2);
  --brand-blue: #008eff;
  --brand-blue-soft: rgba(0, 142, 255, 0.18);
  --brand-blue-dim: rgba(0, 142, 255, 0.08);
  --accent: #f2eee4;
  --accent-dark: #141414;
  --warm: #c9bca8;
  --cool: #9fb4bf;
  --success: #95d8b8;
  --error: #f1a7a0;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: min(1120px, calc(100% - 40px));
  --header-height: 76px;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 4%, rgba(0, 142, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 30% -10%, rgba(201, 188, 168, 0.13), transparent 32rem),
    linear-gradient(180deg, #101013 0%, var(--bg) 34%, #0b0b0d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

::selection {
  background: rgba(0, 142, 255, 0.34);
  color: var(--text);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  transform: translateY(-140%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--accent-dark);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(8, 8, 10, 0.62);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 8, 10, 0.82);
}

.header-inner {
  width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: var(--brand-blue);
  box-shadow: 0 10px 28px rgba(0, 142, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.site-nav a {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text-soft);
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(0, 142, 255, 0.12);
  color: var(--text);
  outline: none;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.header-cta {
  border: 1px solid rgba(0, 142, 255, 0.38);
  background: rgba(0, 142, 255, 0.14);
  padding: 0 17px;
  font-size: 14px;
  color: #eaf7ff;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button {
  min-width: 150px;
  padding: 0 22px;
}

.button-primary {
  background: var(--brand-blue);
  color: #03111d;
  box-shadow: 0 18px 50px rgba(0, 142, 255, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #2aa3ff;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 142, 255, 0.1);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.section-shell {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 58px;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: 84px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 870px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 6.2vw, 76px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 66px);
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--text-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

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

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6% auto auto;
  width: 76%;
  height: 72%;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(0, 142, 255, 0.24), rgba(159, 180, 191, 0.1));
  filter: blur(42px);
  opacity: 0.65;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 7% 2% 12% 9%;
  z-index: 1;
  border-radius: 38px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(0, 142, 255, 0.18) 49% 51%, transparent 52% 100%),
    linear-gradient(180deg, transparent 0 48%, rgba(0, 142, 255, 0.14) 49% 51%, transparent 52% 100%);
  background-size: 86px 86px;
  opacity: 0.3;
  animation: grid-drift 18s linear infinite;
}

.browser-mockup {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(0, 142, 255, 0.2);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.045);
}

.browser-bar > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 142, 255, 0.42);
}

.address-pill {
  flex: 1;
  margin-left: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 12px;
  background: rgba(0, 0, 0, 0.18);
}

.browser-content {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  min-height: 430px;
}

.mock-sidebar {
  border-right: 1px solid var(--line);
  padding: 22px 18px;
  background: rgba(0, 0, 0, 0.12);
}

.mock-sidebar > div:not(.mock-logo) {
  height: 8px;
  margin-top: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.mock-logo {
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--brand-blue);
  box-shadow: 0 12px 34px rgba(0, 142, 255, 0.22);
}

.mock-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-page {
  padding: 34px;
}

.mock-hero-line {
  width: 96px;
  height: 12px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(0, 142, 255, 0.55);
  animation: pulse-line 4s ease-in-out infinite;
}

.mock-title-line {
  width: 78%;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.19);
}

.mock-title-line.short {
  width: 46%;
  margin-bottom: 30px;
}

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

.status-card,
.launch-panel,
.floating-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.status-card {
  min-height: 102px;
  padding: 16px;
}

.status-card.strong {
  background: linear-gradient(145deg, rgba(0, 142, 255, 0.2), rgba(255, 255, 255, 0.06));
}

.status-card span,
.floating-card span,
.panel-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.status-card strong,
.floating-card strong,
.launch-panel strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}

.launch-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 108px;
  padding: 18px;
}

.setup-flow {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}

.setup-flow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 0 rgba(0, 142, 255, 0.34);
  animation: flow-pulse 1.8s ease-in-out infinite;
}

.setup-flow span:nth-child(2) {
  animation-delay: 0.22s;
}

.setup-flow span:nth-child(3) {
  animation-delay: 0.44s;
}

.progress-ring {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #151518 0 51%, transparent 53%),
    conic-gradient(var(--brand-blue) 0 78%, rgba(255, 255, 255, 0.12) 78% 100%);
  animation: progress-breathe 4.5s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: min(230px, 45%);
  padding: 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: float-soft 7s ease-in-out infinite;
}

.card-domain {
  right: -18px;
  top: 78px;
}

.card-email {
  left: -18px;
  bottom: 70px;
  animation-delay: -2.5s;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 86px 86px, 86px 86px;
  }
}

@keyframes flow-pulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.78);
    box-shadow: 0 0 0 0 rgba(0, 142, 255, 0.24);
  }

  50% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(0, 142, 255, 0);
  }
}

@keyframes pulse-line {
  0%,
  100% {
    opacity: 0.58;
  }

  50% {
    opacity: 1;
  }
}

@keyframes progress-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(0, 142, 255, 0));
  }

  50% {
    filter: drop-shadow(0 0 14px rgba(0, 142, 255, 0.38));
  }
}

@keyframes surface-shift {
  0%,
  100% {
    background-position: 0 0, 0 0, 0% 50%;
  }

  50% {
    background-position: 0 0, 0 0, 100% 50%;
  }
}

@keyframes cursor-glide {
  0%,
  100% {
    transform: translate(0, 0);
  }

  45% {
    transform: translate(-82px, 42px);
  }

  70% {
    transform: translate(-36px, 70px);
  }
}

@keyframes scan-down {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }

  18%,
  70% {
    opacity: 0.74;
  }

  82% {
    transform: translateY(229px);
    opacity: 0;
  }
}

@keyframes chart-rise {
  0%,
  100% {
    transform: scaleY(0.72);
  }

  50% {
    transform: scaleY(1);
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.trust-strip div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.trust-strip span,
.card-number,
.process-step span,
.why-grid span,
.category,
.concept-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip span {
  margin-bottom: 8px;
}

.trust-strip strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.section-block {
  padding: 118px 0 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--text-soft);
  font-size: 18px;
}

.primary-services {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
}

.service-card,
.addon-card,
.example-card,
.support-card,
.process-step,
.contact-form,
.contact-note {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-card {
  min-height: 250px;
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.example-card:hover,
.support-card:hover,
.addon-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 142, 255, 0.28);
  background: var(--surface-strong);
}

.service-feature {
  grid-row: span 2;
  min-height: 516px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(0, 142, 255, 0.07), rgba(242, 238, 228, 0)),
    var(--surface);
}

.service-feature::before {
  content: "";
  width: min(100%, 380px);
  aspect-ratio: 1.35;
  margin-bottom: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, rgba(0, 142, 255, 0.28) 0 28%, transparent 28% 100%),
    linear-gradient(135deg, rgba(0, 142, 255, 0.24), rgba(159, 180, 191, 0.14));
  background-size: 100% 100%, 100% 100%, 170% 170%;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  animation: surface-shift 9s ease-in-out infinite;
}

.card-number {
  margin-bottom: 22px;
}

.service-card p,
.addon-card p,
.example-card p,
.support-card p,
.process-step p,
.why-grid p,
.contact-copy p {
  color: var(--text-soft);
}

.addon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.addon-card {
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--surface-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.addon-card h3,
.support-card h3 {
  font-size: 18px;
}

.addon-card p,
.support-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.examples-section {
  position: relative;
}

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

.example-card {
  min-width: 0;
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.example-preview {
  position: relative;
  overflow: hidden;
  height: 230px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 142, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035));
}

.service-preview {
  padding: 20px;
}

.preview-top {
  width: 100%;
  height: 18px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-hero {
  width: 80%;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 142, 255, 0.42), rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 50px rgba(0, 142, 255, 0.11);
}

.preview-cursor {
  position: absolute;
  right: 42px;
  top: 92px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 8px rgba(0, 142, 255, 0.12);
  animation: cursor-glide 5.8s ease-in-out infinite;
}

.preview-lines span,
.preview-menu span {
  display: block;
  height: 9px;
  margin-bottom: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.preview-lines span:first-child {
  width: 64%;
}

.preview-lines span:last-child {
  width: 44%;
}

.preview-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.preview-tiles span {
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-tiles span:first-child {
  background: rgba(0, 142, 255, 0.18);
}

.restaurant-preview {
  position: relative;
  display: grid;
  grid-template-rows: 1.1fr 0.75fr 32px;
}

.preview-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 142, 255, 0.85), transparent);
  opacity: 0.74;
  animation: scan-down 6.5s ease-in-out infinite;
}

.preview-photo {
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.24), transparent 11%),
    linear-gradient(135deg, rgba(0, 142, 255, 0.26), rgba(201, 188, 168, 0.28)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
}

.preview-menu {
  padding: 20px;
}

.preview-menu span:nth-child(1) {
  width: 82%;
}

.preview-menu span:nth-child(2) {
  width: 62%;
}

.preview-menu span:nth-child(3) {
  width: 72%;
}

.preview-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.startup-preview {
  padding: 24px;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 142, 255, 0.3), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
}

.preview-badge {
  width: 92px;
  height: 18px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(0, 142, 255, 0.44);
}

.preview-headline {
  width: 90%;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.19);
}

.preview-headline.small {
  width: 58%;
}

.preview-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 74px;
  margin-top: 30px;
}

.preview-chart span {
  flex: 1;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, rgba(0, 142, 255, 0.76), rgba(0, 142, 255, 0.1));
  transform-origin: bottom;
  animation: chart-rise 4.6s ease-in-out infinite;
}

.preview-chart span:nth-child(1) {
  height: 42%;
}

.preview-chart span:nth-child(2) {
  height: 76%;
  animation-delay: 0.28s;
}

.preview-chart span:nth-child(3) {
  height: 58%;
  animation-delay: 0.56s;
}

.example-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}

.concept-label,
.category {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
}

.concept-label {
  color: #dff2ff;
  border-color: rgba(0, 142, 255, 0.22);
  background: rgba(0, 142, 255, 0.11);
}

.example-card p {
  margin-bottom: 4px;
}

.why-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    #0c0c0e;
  box-shadow: var(--shadow);
}

.why-panel .section-heading {
  margin-bottom: 34px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.why-grid div {
  min-height: 210px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.why-grid span {
  margin-bottom: 28px;
  color: var(--brand-blue);
}

.why-grid p {
  margin: 0;
  font-size: 17px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.process-step {
  min-height: 260px;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.process-step span {
  margin-bottom: 42px;
  color: var(--brand-blue);
}

.process-step p {
  margin-bottom: 0;
  font-size: 15px;
}

.additional-section {
  padding-top: 96px;
}

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

.support-card {
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--surface-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
  padding-bottom: 112px;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.contact-copy h2 {
  max-width: 580px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 480px;
  font-size: 19px;
}

.contact-note {
  max-width: 420px;
  margin-top: 32px;
  border-radius: var(--radius-md);
  padding: 20px;
}

.contact-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-note strong {
  display: block;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.field-group {
  min-width: 0;
}

.field-full,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

select {
  color: var(--text);
}

select option {
  color: #101013;
  background: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(247, 245, 239, 0.36);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 142, 255, 0.68);
  background: rgba(0, 0, 0, 0.24);
  box-shadow: 0 0 0 4px rgba(0, 142, 255, 0.12);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: var(--error);
  font-size: 12px;
}

.field-group.is-invalid input,
.field-group.is-invalid select,
.field-group.is-invalid textarea {
  border-color: rgba(241, 167, 160, 0.72);
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

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

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 122px;
  padding: 26px 0;
}

.footer-inner p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .header-inner {
    gap: 16px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding: 8px 9px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }

  .hero-visual {
    max-width: 760px;
    min-height: 490px;
  }

  .primary-services,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-feature {
    min-height: 430px;
  }

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

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

  .contact-copy {
    position: static;
  }

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

  .footer-inner p {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    display: grid;
    gap: 6px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    border-radius: 22px;
    padding: 12px;
    background: rgba(16, 16, 19, 0.96);
    box-shadow: var(--shadow);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
    font-size: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    gap: 42px;
    padding: 64px 0 48px;
  }

  h1 {
    font-size: clamp(44px, 10.5vw, 64px);
  }

  .hero-text {
    font-size: 18px;
  }

  .trust-strip,
  .addon-row,
  .examples-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding-top: 86px;
  }

  .browser-content {
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 390px;
  }

  .mock-page {
    padding: 24px;
  }

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

  .status-card {
    min-height: 78px;
  }

  .launch-panel {
    min-height: 94px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 24px, 520px);
  }

  .site-header {
    min-height: 68px;
  }

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

  .site-nav {
    top: 68px;
  }

  .hero {
    padding-top: 48px;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .browser-mockup {
    border-radius: 22px;
  }

  .browser-bar {
    min-height: 48px;
    padding: 0 12px;
  }

  .address-pill {
    min-width: 0;
    padding: 8px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .browser-content {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-page {
    padding: 22px;
  }

  .mock-title-line {
    height: 26px;
  }

  .floating-card {
    display: none;
  }

  .service-card,
  .why-panel,
  .contact-form {
    border-radius: 22px;
    padding: 22px;
  }

  .service-feature {
    min-height: 390px;
  }

  .service-feature::before {
    width: 100%;
  }

  .why-grid,
  .process-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .why-grid div,
  .process-step {
    min-height: auto;
  }

  .process-step span {
    margin-bottom: 26px;
  }

  .contact-section {
    gap: 34px;
    padding-bottom: 84px;
  }

  .field-full,
  .form-submit,
  .form-status {
    grid-column: auto;
  }

  .footer-inner {
    min-height: 0;
    padding: 32px 0;
  }
}
