@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --bg: #0b0b10;
  --bg-soft: #101019;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.68);
  --muted-strong: rgba(255, 255, 255, 0.78);
  --accent: #8b7bff;
  --accent-strong: #6d5cff;
  --accent-2: #5eead4;
  --focus: rgba(94, 234, 212, 0.36);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1120px;
  --nav-bg: rgba(10, 10, 15, 0.72);
  --nav-border: rgba(255, 255, 255, 0.08);
  --body-overlay: rgba(255, 255, 255, 0.04);
  --grid-line: rgba(255, 255, 255, 0.45);
  --hero-rule: rgba(255, 255, 255, 0.22);
  --hero-title: linear-gradient(90deg, #ffffff 0%, #c8c2ff 45%, #ffffff 100%);
  --hero-copy: rgba(255, 255, 255, 0.72);
  --pill-bg: rgba(255, 255, 255, 0.055);
  --pill-border: rgba(255, 255, 255, 0.13);
  --surface-line: rgba(255, 255, 255, 0.12);
  --divider: rgba(255, 255, 255, 0.08);
  --secondary-bg: rgba(255, 255, 255, 0.055);
  --secondary-hover: rgba(255, 255, 255, 0.09);
  --secondary-border: rgba(255, 255, 255, 0.13);
  --input-bg: rgba(255, 255, 255, 0.055);
  --input-border: rgba(255, 255, 255, 0.14);
  --input-text: #ffffff;
  --placeholder: rgba(255, 255, 255, 0.48);
  --footer-muted: rgba(255, 255, 255, 0.5);
  --ambient-opacity: 0.2;
  --visual-glow: rgba(139, 123, 255, 0.18);
  --visual-track: rgba(255, 255, 255, 0.08);
  --tag-bg: rgba(255, 255, 255, 0.07);
  color-scheme: dark;
}

:root[data-theme="light"] {
  --bg: #f4f6fb;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --panel-border: rgba(25, 31, 52, 0.12);
  --text: #111827;
  --muted: #526071;
  --muted-strong: #344054;
  --focus: rgba(109, 92, 255, 0.32);
  --shadow: 0 22px 70px rgba(43, 52, 88, 0.13);
  --nav-bg: rgba(250, 251, 255, 0.86);
  --nav-border: rgba(25, 31, 52, 0.10);
  --body-overlay: rgba(255, 255, 255, 0.62);
  --grid-line: rgba(25, 31, 52, 0.14);
  --hero-rule: rgba(25, 31, 52, 0.18);
  --hero-title: linear-gradient(90deg, #111827 0%, #4f46e5 48%, #0f766e 100%);
  --hero-copy: #3f4b5f;
  --pill-bg: rgba(255, 255, 255, 0.72);
  --pill-border: rgba(25, 31, 52, 0.12);
  --surface-line: rgba(25, 31, 52, 0.14);
  --divider: rgba(25, 31, 52, 0.10);
  --secondary-bg: rgba(255, 255, 255, 0.72);
  --secondary-hover: rgba(239, 242, 255, 0.94);
  --secondary-border: rgba(25, 31, 52, 0.13);
  --input-bg: rgba(255, 255, 255, 0.86);
  --input-border: rgba(25, 31, 52, 0.16);
  --input-text: #111827;
  --placeholder: rgba(82, 96, 113, 0.72);
  --footer-muted: rgba(52, 64, 84, 0.72);
  --ambient-opacity: 0.16;
  --visual-glow: rgba(79, 70, 229, 0.12);
  --visual-track: rgba(25, 31, 52, 0.10);
  --tag-bg: rgba(239, 242, 255, 0.84);
  color-scheme: light;
}

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

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

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(145deg, rgba(139, 123, 255, 0.18), transparent 34%),
    linear-gradient(25deg, transparent 42%, rgba(94, 234, 212, 0.10), transparent 72%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s ease, color 0.35s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, var(--body-overlay), transparent 42%);
  z-index: 0;
}

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

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.25rem;
  line-height: 1.08;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

button,
input {
  font: inherit;
}

::selection {
  background: rgba(94, 234, 212, 0.32);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

section {
  padding: 88px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

:root[data-theme="light"] body {
  background:
    linear-gradient(145deg, rgba(139, 123, 255, 0.12), transparent 34%),
    linear-gradient(25deg, transparent 42%, rgba(94, 234, 212, 0.16), transparent 72%),
    var(--bg);
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.045;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  z-index: 0;
}

.ambient {
  position: fixed;
  inset-inline: -20%;
  height: 38vh;
  pointer-events: none;
  filter: blur(72px);
  opacity: var(--ambient-opacity);
  z-index: 0;
}

.ambient-one {
  top: -20vh;
  background: linear-gradient(90deg, transparent, var(--accent), rgba(94, 234, 212, 0.5), transparent);
}

.ambient-two {
  bottom: -26vh;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.45), rgba(139, 123, 255, 0.5), transparent);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid var(--nav-border);
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(139, 123, 255, 0.24);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover {
  background: var(--secondary-hover);
  color: var(--text);
  transform: translateY(-1px);
}

.theme-toggle {
  width: 48px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: var(--panel);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(139, 123, 255, 0.4);
  box-shadow: 0 10px 24px var(--visual-glow);
}

.theme-toggle-track {
  position: relative;
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: var(--divider);
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.12);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

:root[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(16px);
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 123, 255, 0.14);
}

.hero {
  min-height: 94svh;
  display: grid;
  place-items: center;
  padding: 132px 0 70px;
}

.page-main {
  padding-top: 96px;
}

.page-hero {
  max-width: 820px;
  padding: 96px 0 54px;
}

.page-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 4.2rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

:root[data-theme="light"] .eyebrow {
  color: #4f46e5;
}

.updated-note {
  margin-top: 18px;
  color: var(--footer-muted);
  font-size: 0.95rem;
}

.page-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  padding-top: 24px;
}

.hero-card {
  width: 100%;
  text-align: center;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -28px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hero-rule), transparent);
}

.pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 22px;
  border: 1px solid var(--pill-border);
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.3;
}

.pill-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 16px rgba(94, 234, 212, 0.8);
}

h1 {
  margin-bottom: 18px;
  font-size: 5.8rem;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--hero-title);
  background-clip: text;
  color: transparent;
  animation: titleIn 0.8s ease both;
}

@keyframes titleIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.subtitle {
  min-height: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--muted-strong);
  font-size: 1.18rem;
  line-height: 1.5;
}

.typing-text {
  display: inline-block;
  white-space: nowrap;
}

.cursor {
  display: inline-block;
  width: 1px;
  height: 1.15em;
  margin-left: 4px;
  background: var(--muted-strong);
  transform: translateY(2px);
  animation: blink 0.8s steps(1) infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--hero-copy);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  box-shadow: 0 14px 30px rgba(139, 123, 255, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(139, 123, 255, 0.34);
}

.btn-secondary {
  border-color: var(--secondary-border);
  background: var(--secondary-bg);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--secondary-hover);
  border-color: rgba(139, 123, 255, 0.32);
}

.hero-visual {
  max-width: 840px;
  margin: 0 auto 36px;
  padding: 18px;
  border: 1px solid var(--panel-border);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(180deg, var(--panel-strong), var(--panel)),
    radial-gradient(circle at 20% 0%, var(--visual-glow), transparent 36%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  text-align: left;
  overflow: hidden;
  transform: translateZ(0);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-visual:hover {
  border-color: rgba(139, 123, 255, 0.28);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28), 0 0 42px var(--visual-glow);
  transform: translateY(-3px);
}

:root[data-theme="light"] .hero-visual:hover {
  box-shadow: 0 28px 90px rgba(43, 52, 88, 0.16), 0 0 42px var(--visual-glow);
}

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

.visual-kicker,
.visual-card span,
.visual-status {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.visual-header strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 1.02rem;
}

.visual-status {
  padding: 7px 10px;
  border: 1px solid var(--secondary-border);
  border-radius: 999px;
  background: var(--secondary-bg);
  color: var(--muted-strong);
  white-space: nowrap;
}

.workflow-rail {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 8px 0 18px;
}

.workflow-node {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(139, 123, 255, 0.12);
}

.workflow-node.active {
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(94, 234, 212, 0.13), 0 0 20px rgba(94, 234, 212, 0.42);
}

.workflow-line {
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--visual-track), var(--accent-2));
  transform-origin: left;
  animation: railPulse 4.8s ease-in-out infinite;
}

@keyframes railPulse {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.visual-card {
  min-height: 112px;
  padding: 15px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: var(--secondary-bg);
}

.visual-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 1rem;
}

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

.visual-meter {
  height: 6px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--visual-track);
}

.visual-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  animation: meterIn 1.1s ease both;
}

.meter-72 {
  width: 72%;
}

.meter-58 {
  width: 58%;
}

@keyframes meterIn {
  from {
    transform: scaleX(0.4);
    opacity: 0.2;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.visual-tags span {
  padding: 7px 9px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: var(--tag-bg);
  color: var(--muted-strong);
  font-size: 0.82rem;
}

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

.mini-card,
.stat,
.service-card {
  border-top: 1px solid var(--surface-line);
}

.mini-card {
  min-height: 114px;
  padding: 18px 4px 0;
  color: var(--muted);
  text-align: left;
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.mini-card:hover,
.service-card:hover,
.stat:hover {
  border-color: rgba(139, 123, 255, 0.3);
  transform: translateY(-2px);
}

.mini-card strong,
.feature strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.mini-card span {
  display: block;
  line-height: 1.65;
}

.section-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.3s ease;
}

.section-card:hover {
  border-color: rgba(139, 123, 255, 0.22);
}

.stacked-copy {
  margin-top: 14px;
}

.section-header {
  max-width: 780px;
  margin-bottom: 26px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--divider);
  color: var(--muted);
  line-height: 1.65;
  transition: color 0.22s ease, transform 0.22s ease;
}

.feature:hover {
  color: var(--muted-strong);
  transform: translateX(2px);
}

.feature:first-child {
  padding-top: 0;
  border-top: 0;
}

.bullet {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(139, 123, 255, 0.28);
}

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

.stat {
  min-height: 128px;
  padding: 18px 4px 0;
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.stat span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.stat strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.25;
}

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

.service-card {
  min-height: 168px;
  padding-top: 18px;
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.service-index {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.98rem;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.waitlist-form input {
  min-width: 0;
  min-height: 48px;
  flex: 1 1 260px;
  padding: 0 16px;
  border: 1px solid var(--input-border);
  border-radius: var(--radius);
  background: var(--input-bg);
  color: var(--input-text);
  outline: none;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.waitlist-form input::placeholder {
  color: var(--placeholder);
}

.waitlist-form input:focus {
  border-color: rgba(94, 234, 212, 0.62);
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.12);
}

.waitlist-note {
  margin-top: 14px;
  color: var(--footer-muted);
  font-size: 0.95rem;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 12px;
  color: var(--accent-2);
  font-size: 0.95rem;
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 12px;
}

.contact-label {
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-link {
  width: fit-content;
  color: var(--text);
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.2;
  transition: color 0.22s ease, transform 0.22s ease;
}

.contact-link:hover {
  color: var(--accent-2);
  transform: translateY(-1px);
}

.legal-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.legal-section .section-card {
  box-shadow: none;
}

.legal-content {
  max-width: 840px;
  margin-bottom: 40px;
}

.legal-content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content a {
  color: var(--accent-2);
  font-weight: 700;
}

:root[data-theme="light"] .legal-content a {
  color: #4f46e5;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  padding: 28px 0 56px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--panel-border);
}

.footer p,
.footer-links a,
.social-links a {
  color: var(--footer-muted);
  font-size: 0.92rem;
}

.footer-nav {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a,
.social-links a {
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--text);
}

.social-links a {
  padding: 6px 9px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: var(--secondary-bg);
}

.social-links a:hover {
  border-color: rgba(139, 123, 255, 0.3);
  background: var(--secondary-hover);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-grid,
  .hero-grid,
  .service-grid,
  .visual-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    min-height: 96px;
    padding: 12px 0;
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: center;
  }

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

  .page-main {
    padding-top: 112px;
  }

  .page-hero {
    padding-top: 72px;
  }

  .page-hero h1 {
    font-size: 3.1rem;
  }

  .mini-card,
  .service-card,
  .stat {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 118px;
  }

  .wrap,
  .nav-inner {
    width: min(100% - 28px, var(--max));
  }

  section {
    padding: 62px 0;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  p {
    font-size: 1rem;
  }

  .nav-links {
    justify-content: center;
    gap: 4px;
  }

  .nav-links a {
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.9rem;
  }

  .pill {
    align-items: flex-start;
    text-align: left;
  }

  .subtitle {
    min-height: 58px;
    align-items: flex-start;
    font-size: 1.05rem;
  }

  .visual-header {
    align-items: stretch;
    flex-direction: column;
  }

  .visual-status {
    width: fit-content;
  }

  .page-main {
    padding-top: 122px;
  }

  .page-hero {
    padding: 58px 0 36px;
  }

  .page-hero h1 {
    font-size: 2.42rem;
  }

  .typing-text {
    white-space: normal;
  }

  .hero-copy {
    margin-bottom: 24px;
  }

  .btn,
  .hero-actions,
  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
  }

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

  .section-card {
    padding: 22px;
  }

  .contact-link {
    font-size: 1.12rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav,
  .footer-links,
  .social-links {
    justify-items: start;
    justify-content: flex-start;
  }
}

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