: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);
}

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--cyan);
  font-weight: 800;
  box-shadow: 0 0 30px rgba(47, 241, 230, 0.25), inset 0 0 18px rgba(47, 241, 230, 0.13);
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: -4px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 700;
}

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

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

.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;
  display: grid;
  align-items: center;
  min-height: min(790px, 82svh);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-art {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: min(72vw, 1120px);
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.62;
  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, 1.05fr) minmax(330px, 0.68fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
  padding: 70px 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);
}

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

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

.feature-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(47, 241, 230, 0.07), transparent 46%),
    rgba(255, 255, 255, 0.035);
}

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

.feature-card:nth-child(2) svg {
  color: var(--amber);
}

.feature-card:nth-child(3) svg {
  color: var(--magenta);
}

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

.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-address span,
.ownership-steps article > svg {
  color: var(--cyan);
}

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

.ownership-address strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  line-height: 0.98;
}

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

.authority-section {
  padding-top: 0;
}

.authority-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.authority-copy {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(47, 241, 230, 0.1), rgba(255, 59, 213, 0.055)),
    rgba(255, 255, 255, 0.035);
}

.authority-copy p {
  color: #cdd9e4;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.authority-copy p:last-child {
  margin-bottom: 0;
}

.authority-copy a {
  color: var(--cyan);
  font-weight: 800;
}

.authority-proof {
  display: grid;
  gap: 12px;
}

.authority-proof a {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.authority-proof a:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 241, 230, 0.42);
  background: rgba(47, 241, 230, 0.06);
}

.authority-proof span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.authority-proof strong {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.08;
}

.authority-proof small {
  color: var(--muted);
  font-size: 0.93rem;
}

.authority-proof a:nth-child(2) span {
  color: var(--amber);
}

.authority-proof a:nth-child(3) span {
  color: var(--magenta);
}

.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: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 78px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(47, 241, 230, 0.36);
  background:
    linear-gradient(120deg, rgba(47, 241, 230, 0.13), rgba(255, 59, 213, 0.08) 48%, rgba(255, 172, 85, 0.1)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.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-art {
    width: 100%;
    opacity: 0.36;
    mask-image: none;
  }

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

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

  .launch-panel {
    align-self: auto;
  }

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

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

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

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

  .brand strong {
    font-size: 1rem;
  }

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

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

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

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

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

  .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) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
