:root {
  --bg: #04070d;
  --bg-soft: #0b1120;
  --surface: rgba(11, 17, 31, 0.78);
  --surface-strong: rgba(14, 22, 38, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --card: rgba(10, 16, 29, 0.88);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(148, 229, 255, 0.28);
  --text: #f5f7ff;
  --muted: #a3b0c9;
  --muted-strong: #c5d2ea;
  --accent: #94e5ff;
  --accent-strong: #7ff0d4;
  --accent-warm: #f4b56a;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 28px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(148, 229, 255, 0.14), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(127, 240, 212, 0.12), transparent 26%),
    radial-gradient(circle at 20% 82%, rgba(244, 181, 106, 0.12), transparent 24%),
    linear-gradient(180deg, #03060c 0%, #07101b 36%, #04070d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 16%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 24%);
}

::selection {
  background: rgba(148, 229, 255, 0.24);
  color: var(--text);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-chrome {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
  opacity: 0.78;
  animation: drift 14s ease-in-out infinite alternate;
}

.glow-one {
  top: 3%;
  right: -90px;
  width: 280px;
  height: 280px;
  background: rgba(148, 229, 255, 0.18);
}

.glow-two {
  bottom: 8%;
  left: -80px;
  width: 260px;
  height: 260px;
  background: rgba(244, 181, 106, 0.16);
  animation-duration: 18s;
}

.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 24%, transparent 82%);
  opacity: 0.55;
}

.site-header,
.section {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 6px -10px;
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled::before {
  border-color: var(--line);
  background: rgba(7, 12, 22, 0.8);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #eef9ff 0%, #94e5ff 42%, #2d5d76 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 28px rgba(148, 229, 255, 0.3);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.menu-toggle {
  border: 1px solid var(--line);
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-menu {
  position: fixed;
  top: 72px;
  right: 14px;
  left: 14px;
  z-index: 34;
}

.mobile-menu-panel {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 13, 24, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.mobile-menu-cta {
  justify-content: center;
  border: 1px solid rgba(148, 229, 255, 0.2);
  background: linear-gradient(135deg, rgba(148, 229, 255, 0.18), rgba(127, 240, 212, 0.16));
}

.section {
  padding: 28px 0 34px;
}

.hero {
  padding-top: 18px;
}

.eyebrow,
.form-kicker,
.demo-index,
.demo-meta span,
.hero-proof span,
.floating-card span,
.process-card span,
.contact-points span {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.25rem, 11vw, 5rem);
}

h2 {
  font-size: clamp(2.2rem, 7vw, 3.8rem);
}

h3 {
  font-size: clamp(1.6rem, 5vw, 2.15rem);
}

.headline-accent {
  display: inline-block;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: #e8f6ff;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-text,
.section-heading p,
.demo-description,
.capability-card p,
.authority-copy p,
.authority-grid p,
.process-card p,
.cta-copy p,
.form-note,
.site-footer span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 34ch;
  font-size: 0.98rem;
}

.hero-actions,
.demo-actions,
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, #f3f7ff 0%, #94e5ff 52%, #7ff0d4 100%);
  color: #041018;
  box-shadow: 0 18px 34px rgba(127, 240, 212, 0.2);
  font-weight: 700;
}

.button-secondary,
.button-tertiary,
.header-cta {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
}

.button-tertiary {
  color: var(--muted-strong);
}

.hero-proof {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof article,
.authority-grid article,
.process-card,
.contact-points article,
.lead-form,
.capability-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 13, 24, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-proof article {
  padding: 18px;
  border-radius: 20px;
}

.hero-proof strong {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-stage {
  margin-top: 22px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(148, 229, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(244, 181, 106, 0.14), transparent 30%),
    rgba(8, 13, 24, 0.78);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -24% -28% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(148, 229, 255, 0.24), transparent 68%);
}

.hero-panel-bar {
  display: flex;
  gap: 8px;
  padding: 16px 18px 0;
}

.hero-panel-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.hero-panel-body {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 18px 18px 22px;
}

.hero-panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-panel-topline p,
.hero-panel-topline span,
.demo-type,
.site-footer p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel-topline p,
.demo-type {
  color: var(--text);
}

.hero-panel-topline span {
  color: var(--muted);
}

.hero-device {
  position: relative;
  min-height: 380px;
}

.hero-device-screen {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(127, 240, 212, 0.12), transparent 28%),
    rgba(7, 12, 22, 0.94);
}

.hero-device-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-device-header strong {
  font-size: 1rem;
  font-weight: 700;
}

.hero-device-header span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-device-hero {
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(148, 229, 255, 0.16), rgba(127, 240, 212, 0.12)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 229, 255, 0.16);
}

.hero-device-hero p {
  margin: 0;
  max-width: 14ch;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.08;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 12, 22, 0.4);
  color: rgba(245, 247, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-device-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.hero-device-grid article {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-device-grid article span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-device-grid strong {
  line-height: 1.5;
}

.floating-card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(7, 12, 22, 0.82);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  line-height: 1.52;
}

.section-heading {
  display: grid;
  gap: 12px;
  align-items: end;
}

.section-heading p {
  margin: 0;
  max-width: 38rem;
}

.demo-section {
  padding-top: 52px;
}

.demo-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.demo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.demo-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -18% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
}

.demo-card-booking {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top left, rgba(148, 229, 255, 0.18), transparent 30%),
    rgba(11, 18, 31, 0.94);
}

.demo-card-ecom {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(244, 181, 106, 0.22), transparent 30%),
    rgba(18, 14, 11, 0.94);
}

.demo-card-saas {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(127, 240, 212, 0.18), transparent 28%),
    rgba(9, 16, 29, 0.96);
}

.demo-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.demo-description {
  margin: 0;
}

.demo-preview {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
}

.demo-preview-booking {
  background:
    linear-gradient(155deg, rgba(148, 229, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(10, 17, 31, 0.94);
}

.demo-preview-ecom {
  background:
    linear-gradient(155deg, rgba(244, 181, 106, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(22, 15, 11, 0.94);
}

.demo-preview-saas {
  background:
    linear-gradient(155deg, rgba(127, 240, 212, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(9, 14, 26, 0.94);
}

.preview-window,
.product-stage,
.dashboard-shell {
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  background: rgba(5, 9, 18, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-window {
  padding: 16px;
}

.preview-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.preview-line.short {
  width: 34%;
}

.preview-line.medium {
  width: 46%;
}

.preview-line.long {
  width: 72%;
  margin-top: 10px;
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.booking-slots span,
.preview-pills span,
.dashboard-rows div,
.dashboard-sidebar,
.booking-footer,
.product-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.booking-slots span {
  min-height: 44px;
}

.booking-footer {
  min-height: 54px;
  margin-top: 16px;
  background: linear-gradient(135deg, rgba(148, 229, 255, 0.22), rgba(127, 240, 212, 0.18));
}

.product-stage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  padding: 16px;
}

.product-card {
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-pills {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.preview-pills span {
  width: 44px;
  height: 34px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  padding: 14px;
}

.dashboard-sidebar {
  min-height: 100%;
}

.dashboard-main {
  display: grid;
  gap: 12px;
}

.chart-card {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 112px;
  padding: 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(127, 240, 212, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.chart-card span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: rgba(148, 229, 255, 0.36);
}

.chart-card span:nth-child(1) {
  height: 42px;
}

.chart-card span:nth-child(2) {
  height: 82px;
}

.chart-card span:nth-child(3) {
  height: 58px;
}

.chart-card span:nth-child(4) {
  height: 96px;
}

.dashboard-rows {
  display: grid;
  gap: 10px;
}

.dashboard-rows div {
  min-height: 30px;
}

.demo-meta {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.demo-meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-meta li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 247, 255, 0.84);
  font-size: 0.78rem;
}

.capability-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.capability-card {
  padding: 20px;
  border-radius: 24px;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(148, 229, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card-highlight {
  background:
    linear-gradient(135deg, rgba(148, 229, 255, 0.12), rgba(127, 240, 212, 0.08)),
    rgba(8, 13, 24, 0.72);
}

.authority-shell {
  padding: 22px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(148, 229, 255, 0.12), transparent 28%),
    rgba(8, 13, 24, 0.78);
  box-shadow: var(--shadow);
}

.authority-copy p {
  margin: 18px 0 0;
  max-width: 40rem;
}

.authority-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.authority-grid article {
  padding: 18px;
  border-radius: 20px;
}

.authority-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.process-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.process-card {
  padding: 20px;
  border-radius: 24px;
}

.process-card h3 {
  margin-top: 14px;
}

.process-card p {
  margin: 12px 0 0;
}

.cta-shell {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top left, rgba(244, 181, 106, 0.12), transparent 26%),
    rgba(8, 13, 24, 0.82);
  box-shadow: var(--shadow);
}

.cta-copy p {
  margin: 18px 0 0;
  max-width: 38rem;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-points article {
  padding: 16px;
  border-radius: 18px;
}

.contact-points strong {
  display: block;
  margin-top: 8px;
  line-height: 1.52;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
}

.form-kicker {
  color: var(--accent-warm);
}

.lead-form label {
  display: grid;
  gap: 10px;
  color: rgba(245, 247, 255, 0.82);
  font-size: 0.88rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(163, 176, 201, 0.78);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(148, 229, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(148, 229, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.lead-form textarea {
  resize: vertical;
  min-height: 124px;
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 34px;
}

.site-footer p {
  color: var(--text);
}

.site-footer a {
  color: rgba(245, 247, 255, 0.8);
}

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

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, 18px, 0) scale(1.06);
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus-visible,
  .header-cta:hover,
  .header-cta:focus-visible {
    transform: translateY(-2px);
  }

  .button-primary:hover,
  .button-primary:focus-visible {
    box-shadow: 0 22px 40px rgba(127, 240, 212, 0.24);
  }

  .button-secondary:hover,
  .button-secondary:focus-visible,
  .button-tertiary:hover,
  .button-tertiary:focus-visible {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.06);
  }

  .demo-card:hover,
  .demo-card:focus-within,
  .capability-card:hover,
  .capability-card:focus-within,
  .process-card:hover,
  .process-card:focus-within,
  .authority-grid article:hover,
  .authority-grid article:focus-within {
    transform: translateY(-4px);
    border-color: var(--line-strong);
  }

  .demo-card,
  .capability-card,
  .process-card,
  .authority-grid article {
    transition:
      transform 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
  }
}

@media (min-width: 760px) {
  .hero-actions,
  .demo-actions,
  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
  }

  .hero-proof,
  .authority-grid,
  .process-grid,
  .contact-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .capability-card-wide,
  .capability-card-highlight {
    grid-column: span 2;
  }

  .hero-proof article:last-child,
  .authority-grid article:last-child,
  .process-card:last-child {
    grid-column: span 2;
  }
}

@media (min-width: 920px) {
  .site-header {
    gap: 24px;
    padding: 18px 0;
  }

  .site-nav,
  .header-cta {
    display: inline-flex;
  }

  .site-nav {
    align-items: center;
    gap: 22px;
    margin-left: auto;
    color: rgba(245, 247, 255, 0.78);
    font-size: 0.9rem;
  }

  .site-nav a {
    transition: color 160ms ease;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--text);
  }

  .header-cta {
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
  }

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

  .section {
    padding: 40px 0 50px;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.92fr);
    gap: 28px;
    align-items: start;
  }

  .hero-stage {
    margin-top: 0;
  }

  .hero-text {
    max-width: 40ch;
  }

  .hero-panel-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 22px;
  }

  .hero-panel-topline,
  .hero-device {
    grid-column: 1 / -1;
  }

  .hero-device {
    min-height: 460px;
  }

  .floating-card {
    position: static;
    max-width: none;
    min-height: 100%;
    padding: 18px;
  }

  .section-heading {
    gap: 16px;
  }

  .demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .demo-card {
    min-height: 100%;
    padding: 22px;
  }

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

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

  .authority-shell,
  .cta-shell {
    padding: 28px;
  }

  .lead-form {
    padding: 24px;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1180px) {
  .section {
    padding: 46px 0 56px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    gap: 40px;
    align-items: center;
  }

  .hero-device {
    min-height: 520px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-proof article:last-child {
    grid-column: auto;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
    gap: 24px;
  }

  .authority-shell,
  .cta-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 30px;
  }

  .authority-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .authority-grid article:last-child {
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-card:last-child {
    grid-column: auto;
  }
}

@media (min-width: 1320px) {
  .demo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-card-highlight {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(1180px, calc(100vw - 20px));
  }

  h1 {
    font-size: clamp(2.8rem, 11vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-device {
    min-height: 350px;
  }

  .hero-device-hero p {
    font-size: 1.2rem;
  }

  .demo-card,
  .capability-card,
  .process-card,
  .lead-form,
  .authority-shell,
  .cta-shell {
    border-radius: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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