:root {
  --bg: #060a12;
  --bg-soft: #0b111d;
  --panel: rgba(12, 20, 32, 0.82);
  --panel-strong: #111927;
  --line: rgba(139, 246, 255, 0.18);
  --line-strong: rgba(44, 241, 230, 0.72);
  --text: #eef5f8;
  --muted: #9aa8b8;
  --cyan: #2ff1e6;
  --cyan-deep: #0baaa7;
  --magenta: #ff3bd5;
  --amber: #ffac55;
  --green: #6bf2a3;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(47, 241, 230, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(47, 241, 230, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 96px 96px;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(6, 10, 18, 0.58), rgba(6, 10, 18, 0.95) 38%, rgba(13, 15, 26, 0.98)),
    radial-gradient(circle at 82% 12%, rgba(255, 59, 213, 0.12), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(47, 241, 230, 0.13), transparent 28%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(transparent 92%, rgba(47, 241, 230, 0.08) 100%),
    linear-gradient(110deg, transparent 0 58%, rgba(255, 172, 85, 0.06) 58% 59%, transparent 59% 100%);
  background-size: 100% 9px, 220px 220px;
  opacity: 0.55;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(6, 10, 18, 0.78);
  backdrop-filter: blur(18px);
  transition: min-height 240ms ease, padding 240ms ease, background 240ms ease;
}

.site-header.scrolled {
  min-height: 58px;
  padding-block: 7px;
  background: rgba(6, 10, 18, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: var(--text);
  font-family: var(--font-display);
}

/* Full designed lockup: shield + Impulse by Design as one asset */
.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(220px, 46vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 12px rgba(47, 241, 230, 0.18));
  transition: height 240ms ease, max-width 240ms ease;
}

.site-header.scrolled .brand-logo {
  height: 34px;
  max-width: min(176px, 42vw);
}

.site-footer .brand-logo {
  height: 52px;
  max-width: min(240px, 70vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(238, 245, 248, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
  transition: gap 240ms ease, font-size 240ms ease;
}

.site-header.scrolled .site-nav {
  gap: clamp(14px, 2.2vw, 26px);
  font-size: 0.88rem;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--cyan);
}

.nav-cta {
  padding: 12px 20px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  box-shadow: 0 0 24px rgba(47, 241, 230, 0.2);
}

.ambient-cursor {
  --cursor-accent: var(--cyan);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cursor-accent);
  box-shadow: 0 0 18px rgba(47, 241, 230, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  will-change: transform;
}

.ambient-cursor::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(47, 241, 230, 0.46);
  border-radius: 50%;
  background: rgba(47, 241, 230, 0.14);
  content: "";
  transform: translate(-50%, -50%);
  transition: width 160ms ease, height 160ms ease, border-color 160ms ease, background 160ms ease;
}

.ambient-cursor svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  overflow: visible;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.ambient-cursor circle {
  fill: none;
  stroke: var(--magenta);
  stroke-width: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0.82;
  transition: stroke-dashoffset 120ms linear;
}

.ambient-cursor.is-visible {
  opacity: 1;
}

.ambient-cursor.is-interactive::after {
  width: 38px;
  height: 38px;
  border-color: rgba(255, 59, 213, 0.58);
  background: rgba(255, 59, 213, 0.12);
}

@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .ambient-cursor {
    display: block;
  }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 185svh;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage {
  position: sticky;
  top: 0;
  display: grid;
  align-items: center;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: min(76vw, 1240px);
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.48;
  filter: saturate(1.08) contrast(1.05);
  mask-image: linear-gradient(90deg, transparent 0%, black 32%, black 100%);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(0deg, rgba(6, 10, 18, 0.92), transparent);
  pointer-events: none;
}

.hero-grid,
.section,
.final-cta,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.82fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
  padding: 108px 0 54px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 8vw, 7.2rem);
}

.hero h1 {
  display: grid;
  max-width: 720px;
  gap: 0.02em;
  font-size: clamp(3rem, 6.4vw, 6.4rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  color: #dbe7ed;
  font-size: 0.7em;
  letter-spacing: -0.04em;
}

.hero h1 span:last-child {
  color: var(--cyan);
}

h1::after {
  color: var(--amber);
  content: ".";
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
}

.hero-lede {
  max-width: 690px;
  color: #cad5df;
  font-size: clamp(1.05rem, 2vw, 1.36rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.button svg {
  width: 18px;
  height: 18px;
}

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

.button-primary {
  background: var(--cyan);
  color: #041012;
  box-shadow: 0 0 34px rgba(47, 241, 230, 0.4);
}

.button-price-pill {
  min-width: min(100%, 340px);
  min-height: 64px;
  padding: 0 28px;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: linear-gradient(180deg, #f8fbf7 0%, #e8eee8 100%);
  color: #071013;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  box-shadow:
    0 0 34px rgba(47, 241, 230, 0.34),
    0 18px 44px rgba(0, 0, 0, 0.3);
}

.button-price-pill:hover {
  background: #ffffff;
  box-shadow:
    0 0 42px rgba(47, 241, 230, 0.52),
    0 20px 48px rgba(0, 0, 0, 0.34);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.full-width {
  width: 100%;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  color: #ced9e5;
  font-size: 0.95rem;
  font-weight: 700;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}

.proof-strip svg,
.check-list svg,
.comparison-row svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex: 0 0 auto;
}

.launch-panel {
  align-self: end;
  border: 1px solid var(--line-strong);
  border-right-color: rgba(255, 59, 213, 0.7);
  border-bottom-color: rgba(255, 59, 213, 0.7);
  background: linear-gradient(145deg, rgba(11, 23, 37, 0.88), rgba(17, 21, 32, 0.78));
  box-shadow: var(--shadow), 0 0 44px rgba(47, 241, 230, 0.17);
  padding: clamp(22px, 3vw, 34px);
}

.offer-device {
  position: relative;
  z-index: 1;
  align-self: center;
  aspect-ratio: 0.9;
  width: min(100%, 520px);
  padding: clamp(15px, 2vw, 22px);
  border: 1px solid rgba(197, 234, 244, 0.78);
  border-right-color: rgba(255, 59, 213, 0.82);
  border-bottom-color: rgba(255, 172, 85, 0.88);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(191, 225, 236, 0.13), rgba(6, 13, 24, 0.9) 36%, rgba(10, 15, 29, 0.92)),
    rgba(8, 16, 28, 0.92);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.62),
    0 0 46px rgba(47, 241, 230, 0.18),
    inset 0 0 40px rgba(255, 255, 255, 0.045);
  opacity: var(--device-opacity, 1);
  filter: blur(var(--device-blur, 0));
  transform: translate3d(var(--device-x, 0), var(--device-y, 0), 0) scale(var(--device-scale, 1)) rotate(var(--device-tilt, 0deg));
  transform-origin: 58% 78%;
  transition: border-color 220ms ease, opacity 180ms ease, filter 180ms ease;
  will-change: transform, opacity, filter;
}

.offer-device::before {
  position: absolute;
  inset: -12px 18px 18px -12px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(47, 241, 230, 0.32);
  border-radius: 32px;
  transform: rotate(-2.4deg);
}

.device-camera {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 11px var(--cyan);
  transform: translateX(-50%);
}

.device-screen {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: clamp(22px, 3.2vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(152, 184, 198, 0.3);
  border-radius: 17px;
  background:
    linear-gradient(rgba(47, 241, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 241, 230, 0.025) 1px, transparent 1px),
    linear-gradient(145deg, rgba(111, 137, 151, 0.22), rgba(9, 16, 28, 0.83) 42%, rgba(16, 20, 34, 0.92));
  background-size: 100% 7px, 34px 100%, auto;
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.36);
}

.device-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(24px, 4vh, 42px);
  color: rgba(219, 231, 237, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero.is-scroll-ready .device-status,
.hero.is-scroll-ready .device-kicker,
.hero.is-scroll-ready .device-scroll-cue {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 360ms ease;
}

.hero.is-device-open .device-status,
.hero.is-device-open .device-kicker,
.hero.is-device-open .device-scroll-cue {
  opacity: 1;
  transform: translateY(0);
}

.device-status-live {
  color: var(--cyan);
}

.device-status-live::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 12px var(--magenta);
  content: "";
}

.device-kicker {
  margin-bottom: 22px;
  color: #dce9ee;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  font-weight: 700;
}

.scroll-offers {
  display: grid;
  gap: clamp(14px, 2.3vh, 22px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.scroll-offers li {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 12px;
  align-items: start;
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 360ms ease, transform 460ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 360ms ease;
}

.hero.is-scroll-ready .scroll-offers li {
  opacity: 0;
  transform: translateX(-20px);
  filter: blur(2px);
}

.hero.is-scroll-ready .scroll-offers li.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: none;
}

.prompt-mark {
  padding-top: 2px;
  color: #ff496f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(255, 73, 111, 0.82);
}

.scroll-offers strong,
.scroll-offers small {
  display: block;
}

.scroll-offers strong {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(0.84rem, 1.2vw, 1rem);
  letter-spacing: 0.015em;
  line-height: 1.25;
}

.scroll-offers small {
  margin-top: 3px;
  color: rgba(224, 235, 240, 0.7);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  line-height: 1.35;
}

.device-scroll-cue {
  align-self: end;
  margin: auto 0 0;
  padding-top: 18px;
  color: rgba(224, 235, 240, 0.46);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-scroll-cue span {
  color: var(--magenta);
}

.launch-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
}

.price-readout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 22px;
}

.price-readout div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}

.price-readout dt {
  color: var(--muted);
  font-size: 0.8rem;
}

.price-readout dd {
  margin: 4px 0 0;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #c9d4df;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.signal-band {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.035);
}

.marquee {
  display: flex;
  width: max-content;
  animation: drift 34s linear infinite;
}

.marquee span {
  padding: 20px 34px;
  color: rgba(238, 245, 248, 0.58);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 3.3rem);
  font-weight: 800;
  white-space: nowrap;
}

.marquee span:nth-child(3n + 1) {
  color: var(--magenta);
}

.marquee span:nth-child(3n + 2) {
  color: var(--cyan);
}

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

  to {
    transform: translateX(-42%);
  }
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.product-copy h2,
.fit-copy h2,
.final-cta h2 {
  max-width: 820px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  perspective: 1400px;
}

.feature-story {
  min-height: 180vh;
  padding-bottom: 0;
}

.feature-sticky {
  position: sticky;
  top: clamp(82px, 11vh, 118px);
}

.feature-flip {
  --feature-accent: var(--cyan);
  position: relative;
  min-height: 270px;
  transform-style: preserve-3d;
}

.feature-flip--amber {
  --feature-accent: var(--amber);
}

.feature-flip--magenta {
  --feature-accent: var(--magenta);
}

.feature-flip--green {
  --feature-accent: var(--green);
}

.feature-card--cyan {
  --feature-accent: var(--cyan);
}

.feature-card--amber {
  --feature-accent: var(--amber);
}

.feature-card--magenta {
  --feature-accent: var(--magenta);
}

.feature-flip-inner {
  position: relative;
  width: 100%;
  min-height: 270px;
  height: 100%;
  transform: rotateX(0deg);
  transform-style: preserve-3d;
  will-change: transform;
}

.feature-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.feature-face--front {
  transform: rotateX(0deg);
}

.feature-face--back {
  transform: rotateX(180deg);
  pointer-events: none;
}

.feature-flip.is-back-active .feature-face--front {
  pointer-events: none;
}

.feature-flip.is-back-active .feature-face--back {
  pointer-events: auto;
}

.feature-flip.is-flipped .feature-face--front {
  visibility: hidden;
}

.feature-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: color-mix(in srgb, var(--feature-accent) 70%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--feature-accent) 9%, transparent), transparent 48%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--feature-accent) 65%, transparent);
  overflow: hidden;
}

.feature-card::after {
  position: absolute;
  inset: auto -28% -50% 18%;
  height: 120px;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse, color-mix(in srgb, var(--feature-accent) 14%, transparent), transparent 66%);
  filter: blur(12px);
}

.feature-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: color-mix(in srgb, var(--feature-accent) 72%, white);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.7;
}

.feature-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--feature-accent);
}

.feature-card p,
.product-copy p,
.fit-copy p,
.pricing-card p,
.timeline p,
.faq-item p,
.site-footer p {
  color: var(--muted);
}

.feature-card--form {
  --feature-accent: var(--green);
  padding-top: 18px;
}

.feature-card--form > svg {
  width: 27px;
  height: 27px;
  margin-bottom: 10px;
}

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

.mini-lead-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.mini-lead-form input {
  width: 100%;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  outline: none;
  background: rgba(3, 8, 14, 0.72);
  color: var(--text);
}

.mini-lead-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(107, 242, 163, 0.15);
}

.mini-lead-form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid var(--green);
  border-radius: 0;
  background: var(--green);
  color: #07120d;
  cursor: pointer;
  font-weight: 800;
}

.mini-lead-form button svg {
  width: 17px;
  height: 17px;
  margin: 0;
  color: currentColor;
}

.mini-lead-form button:disabled {
  cursor: default;
  opacity: 0.75;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--green) !important;
  font-size: 0.76rem;
}

.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;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.ownership-board {
  display: grid;
  gap: 14px;
}

.ownership-address {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(47, 241, 230, 0.14), rgba(255, 172, 85, 0.08)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow), 0 0 42px rgba(47, 241, 230, 0.12);
}

.ownership-steps article > svg {
  color: var(--cyan);
}

.ownership-address > span {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ownership-address strong,
.ownership-domain {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  /* Keep the full domain on one line — never split mid-word like yourbusiness.co / m */
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  font-size: clamp(1.55rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ownership-domain .ownership-host {
  display: inline;
  margin: 0;
  color: var(--text);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.ownership-domain .ownership-tld {
  display: inline;
  margin: 0;
  color: var(--cyan);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.ownership-address small {
  display: block;
  max-width: 620px;
  margin-top: 14px;
  color: #cdd9e4;
  font-size: clamp(1rem, 1.6vw, 1.14rem);
}

.ownership-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ownership-steps article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.ownership-steps article > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
}

.ownership-steps article:nth-child(2) > svg {
  color: var(--amber);
}

.ownership-steps article:nth-child(3) > svg {
  color: var(--magenta);
}

.ownership-steps p {
  color: var(--muted);
  font-size: 0.95rem;
}

.browser-mockup {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(140deg, rgba(47, 241, 230, 0.12), rgba(255, 59, 213, 0.08) 48%, rgba(255, 172, 85, 0.1));
  box-shadow: var(--shadow);
}

.browser-mockup::before,
.browser-mockup::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(47, 241, 230, 0.18);
  transform: rotate(-12deg);
}

.browser-mockup::before {
  inset: 72px -70px auto auto;
  width: 290px;
  height: 180px;
}

.browser-mockup::after {
  inset: auto auto 70px -84px;
  width: 230px;
  height: 150px;
  border-color: rgba(255, 172, 85, 0.22);
}

.browser-bar {
  display: flex;
  gap: 9px;
  height: 46px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(8, 13, 22, 0.86);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.browser-bar span:nth-child(2) {
  background: var(--amber);
}

.browser-bar span:nth-child(3) {
  background: var(--magenta);
}

.mockup-body {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 424px;
}

.mockup-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 18, 0.44);
}

.mockup-sidebar b,
.mockup-copy-line,
.mockup-buttons span,
.mockup-cards span,
.mockup-hero-line {
  display: block;
  background: rgba(238, 245, 248, 0.16);
}

.mockup-sidebar b {
  height: 12px;
}

.mockup-sidebar b:first-child {
  background: var(--cyan);
}

.mockup-main {
  padding: clamp(26px, 5vw, 52px);
}

.mockup-hero-line {
  width: min(94%, 520px);
  height: 72px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
}

.mockup-copy-line {
  width: min(84%, 470px);
  height: 16px;
  margin-bottom: 12px;
}

.mockup-copy-line.short {
  width: min(58%, 320px);
}

.mockup-buttons {
  display: flex;
  gap: 12px;
  margin: 32px 0;
}

.mockup-buttons span {
  width: 150px;
  height: 46px;
  border-radius: 999px;
}

.mockup-buttons span:first-child {
  background: var(--cyan);
  box-shadow: 0 0 32px rgba(47, 241, 230, 0.38);
}

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

.mockup-cards span {
  height: 96px;
  border: 1px solid rgba(47, 241, 230, 0.22);
  background: rgba(6, 10, 18, 0.44);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.metric-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.metric-row strong {
  display: block;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 2rem;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.examples-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.examples-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.examples-display-title {
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

.examples-display-title::after {
  content: none;
}

.examples-lede {
  margin: 0 auto;
  max-width: 640px;
  color: #cdd9e4;
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
}

.examples-lede a {
  color: var(--cyan);
  font-weight: 800;
}

.examples-stack {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  width: 100%;
  margin: 0 0 28px;
  overflow: visible;
}

.example-slide-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  padding: 20px 8px 36px;
  overflow: visible;
}

.example-slide {
  position: relative;
  left: 0;
  display: block;
  /* 3 cards + 2 overlaps of 40px must equal row width: (W + 80) / 3 */
  flex: 0 0 calc((100% + 80px) / 3);
  width: calc((100% + 80px) / 3);
  max-width: none;
  height: clamp(320px, 34vw, 360px);
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  background: #111111;
  box-shadow: -1rem 0 3rem #000;
  overflow: hidden;
  cursor: default;
  transition: transform 0.4s ease-out, left 0.4s ease-out, box-shadow 0.4s ease-out, border-color 0.3s ease;
  z-index: 1;
}

.example-slide:not(:first-child) {
  margin-left: -40px;
}

.example-slide:nth-child(1) {
  z-index: 1;
}

.example-slide:nth-child(2) {
  z-index: 2;
}

.example-slide:nth-child(3) {
  z-index: 3;
}

.example-slide:hover {
  z-index: 8;
  transform: translateY(-18px);
  border-color: rgba(47, 241, 230, 0.35);
  box-shadow: -0.5rem 1.2rem 2.8rem rgba(0, 0, 0, 0.55), 0 0 28px rgba(47, 241, 230, 0.12);
}

.example-slide:hover ~ .example-slide {
  left: 36px;
}

.example-slide-title {
  position: absolute;
  top: 16px;
  left: 18px;
  right: 18px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.example-slide-title span {
  display: inline-block;
  margin-top: 4px;
  color: rgba(238, 245, 248, 0.55);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.example-slide-bar {
  position: absolute;
  top: 78px;
  left: 18px;
  right: 18px;
  z-index: 2;
  height: 4px;
}

.example-slide-bar-empty {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.example-slide-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 0;
  height: 100%;
  border-radius: 999px;
  transition: width 0.45s ease-out;
}

.example-slide:hover .example-slide-bar-fill {
  width: 100%;
}

.example-slide-preview {
  position: absolute;
  inset: 96px 0 0;
  padding: 14px 16px 16px;
  background: #070b12;
}

.example-slide-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
  background: #141820;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.examples-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(120deg, rgba(47, 241, 230, 0.1), rgba(255, 59, 213, 0.06) 50%, rgba(255, 172, 85, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.examples-footer-cta h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.examples-footer-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer a {
  color: var(--cyan);
  font-weight: 700;
}

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

.timeline article {
  padding: 28px;
  border-top: 2px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.timeline article:nth-child(2) {
  border-top-color: var(--amber);
}

.timeline article:nth-child(3) {
  border-top-color: var(--magenta);
}

.timeline span {
  display: block;
  margin-bottom: 36px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 800;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(12, 22, 35, 0.92), rgba(13, 14, 25, 0.92));
  box-shadow: var(--shadow), 0 0 42px rgba(47, 241, 230, 0.12);
}

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

.pricing-topline > span {
  color: var(--cyan);
  font-weight: 800;
}

.pricing-topline strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.92;
  white-space: nowrap;
}

.pricing-topline strong span {
  color: var(--muted);
  font-size: 1rem;
}

.plan-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 24px 0;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.plan-switcher button {
  min-height: 44px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.plan-switcher button.active {
  border-color: rgba(47, 241, 230, 0.34);
  background: rgba(47, 241, 230, 0.12);
  color: var(--text);
}

.pricing-list {
  margin-bottom: 28px;
}

.comparison-table {
  display: grid;
  align-content: stretch;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 120px 120px;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(16px, 3vw, 28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row span {
  font-weight: 700;
}

.comparison-row strong {
  color: var(--muted);
  text-align: center;
}

.comparison-row svg {
  justify-self: center;
}

.comparison-row svg[data-lucide="minus"] {
  color: rgba(255, 255, 255, 0.26);
}

.header-row {
  min-height: 58px;
  background: rgba(255, 255, 255, 0.035);
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fit-list span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: #d9e3ea;
  font-weight: 800;
}

.fit-list span:nth-child(3n + 1) {
  border-left: 2px solid var(--cyan);
}

.fit-list span:nth-child(3n + 2) {
  border-left: 2px solid var(--amber);
}

.fit-list span:nth-child(3n + 3) {
  border-left: 2px solid var(--magenta);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  width: 100%;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.faq-item p {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0;
}

.faq-item[aria-expanded="false"] p {
  display: none;
}

.faq-item svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
  transition: transform 180ms ease;
}

.faq-item[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 58px);
  margin-bottom: 78px;
  padding: clamp(24px, 3.6vw, 38px);
  border: 1px solid rgba(47, 241, 230, 0.36);
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 20%, rgba(47, 241, 230, 0.18), transparent 34%),
    linear-gradient(120deg, rgba(47, 241, 230, 0.1), rgba(255, 59, 213, 0.07) 48%, rgba(255, 172, 85, 0.08)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.03;
}

.final-cta-copy {
  max-width: 660px;
  margin: 0;
  color: #c6d2dc;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    inset: 74px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 13, 22, 0.97);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

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

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    position: relative;
    height: auto;
    min-height: auto;
  }

  .hero-art {
    width: 100%;
    opacity: 0.36;
    mask-image: none;
  }

  .hero-grid,
  .product-section,
  .pricing-layout,
  .fit-section {
    grid-template-columns: 1fr;
  }

  .example-slide-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 0 0 12px;
  }

  .example-slide,
  .example-slide:not(:first-child) {
    margin-left: 0;
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    height: 320px;
  }

  .example-slide:hover ~ .example-slide {
    left: 0;
  }

  .example-slide:hover {
    transform: translateY(-8px);
  }

  .examples-footer-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-grid {
    padding-top: 92px;
  }

  .launch-panel,
  .offer-device {
    align-self: auto;
  }

  .offer-device {
    justify-self: center;
    width: min(100%, 500px);
    aspect-ratio: 1.02;
    transform: none !important;
  }

  .scroll-offers li {
    opacity: 1;
    transform: none;
    filter: none;
  }

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

  .feature-story {
    min-height: auto;
  }

  .feature-sticky {
    position: relative;
    top: auto;
  }

  .feature-flip,
  .feature-flip-inner {
    min-height: 270px;
  }

  .browser-mockup {
    min-height: 390px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

  .site-nav {
    inset: 66px 16px auto;
  }

  .brand-logo {
    height: 40px;
    max-width: min(168px, 52vw);
  }

  .hero-grid,
  .section,
  .final-cta,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    position: relative;
    height: auto;
    min-height: auto;
  }

  .hero-grid {
    padding: 96px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.25rem);
  }

  .offer-device {
    aspect-ratio: auto;
    min-height: 520px;
    transform: none !important;
  }

  .scroll-offers li {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-actions,
  .final-cta,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .proof-strip span,
  .proof-strip {
    width: 100%;
  }

  .feature-grid,
  .timeline,
  .ownership-steps,
  .metric-row,
  .fit-list,
  .price-readout {
    grid-template-columns: 1fr;
  }

  .example-slide {
    height: 300px;
  }

  .example-slide-title {
    font-size: 1.1rem;
  }

  .feature-card {
    min-height: 250px;
  }

  .feature-flip,
  .feature-flip-inner {
    min-height: 250px;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .mockup-sidebar {
    display: none;
  }

  .mockup-cards {
    grid-template-columns: 1fr;
  }

  .pricing-topline,
  .comparison-row {
    align-items: start;
  }

  .plan-switcher {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: minmax(100px, 1fr) 70px 70px;
    min-height: 66px;
    padding-inline: 12px;
    font-size: 0.84rem;
  }

  .comparison-row strong {
    font-size: 0.78rem;
  }

  .faq-item {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-cursor {
    display: none !important;
  }

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

  .example-slide:hover,
  .example-slide:hover ~ .example-slide {
    transform: none;
    left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    position: relative;
    height: auto;
  }

  .offer-device,
  .scroll-offers li {
    opacity: 1;
    transform: none !important;
    filter: none;
  }
}
