:root {
  --black: #050505;
  --ink: #101010;
  --muted: #6d6d6d;
  --blue: #0044ff;
  --blue-dark: #0032bf;
  --violet: #4a1fff;
  --white: #ffffff;
  --soft: #f4f6fb;
  --line: rgba(5, 5, 5, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.14);
  font-family:
    Inter, "Inter Tight", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--white), #f8f9fd 55%, var(--white));
  line-height: 1.5;
}

body.nav-open,
body.cookie-modal-open {
  overflow: hidden;
}

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

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 5, 5, 0.92);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 214px;
  min-width: 190px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.82) 42%, rgba(5, 5, 5, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.12) 46%);
  content: "";
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.92;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 210px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
strong,
dt,
dd {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: "DM Sans", Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.2vw, 5.7rem);
  line-height: 1;
  font-weight: 650;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.45rem);
  line-height: 1.06;
  font-weight: 650;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  font-weight: 750;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-weight: 750;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.button.ghost.dark {
  color: var(--ink);
  border-color: var(--line);
}

.hero-tag {
  display: inline-flex;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font-weight: 750;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-pills span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(5, 5, 5, 0.56);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.browser-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 28px;
}

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

.browser-bar span:first-child {
  background: var(--blue);
}

.mini-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card h2 {
  max-width: 360px;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.05;
}

.hero-checks {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.hero-checks span {
  padding: 12px 14px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-metrics div {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
}

.mini-metrics strong,
.mini-metrics small {
  display: block;
}

.mini-metrics strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.mini-metrics small {
  margin-top: 3px;
  color: var(--muted);
}

.hero-stats {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 36px));
  margin: 0;
  transform: translateX(-50%);
  border-top: 1px solid var(--line-dark);
}

.hero-stats div {
  min-height: 130px;
  padding: 26px 28px;
  border-right: 1px solid var(--line-dark);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  color: var(--white);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 750;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.ticker div {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.ticker span {
  padding: 18px 24px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.launch-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(18, 24, 38, 0.14);
}

.launch-strip > * {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
  background: var(--white);
}

.launch-strip div {
  color: var(--white);
  background: var(--black);
}

.launch-number {
  display: block;
  font-family: "DM Sans", Inter, sans-serif;
  font-size: clamp(3.6rem, 7vw, 6.6rem);
  line-height: 0.8;
  font-weight: 650;
}

.launch-strip div span:last-child {
  color: var(--acid, var(--blue));
  font-weight: 800;
  text-transform: uppercase;
}

.launch-strip p {
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
}

.section[id],
.final-cta {
  scroll-margin-top: 112px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}

.lead-copy,
.section-head > p,
.insight-panel span,
.privacy-grid p,
.contact-note p,
.final-cta p,
.faq p,
.timeline p,
.service-row p,
.price-card p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-head p {
  max-width: 720px;
  margin-top: 22px;
}

.insight-panel {
  display: grid;
  gap: 12px;
}

.insight-panel article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.insight-panel strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
}

.insight-panel span {
  font-size: 1.05rem;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(210px, 0.55fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding 180ms ease,
    background 180ms ease;
}

.service-row:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: var(--soft);
}

.service-row span {
  color: var(--blue);
  font-weight: 750;
}

.service-row strong {
  font-family: "DM Sans", Inter, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1.1;
  font-weight: 700;
}

.service-row p {
  margin-bottom: 0;
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
}

.outcomes article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(0, 68, 255, 0.96), rgba(5, 5, 5, 0.92)),
    var(--blue);
}

.outcomes article:nth-child(2) {
  background: var(--black);
}

.outcomes article:nth-child(3) {
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
}

.outcomes span {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.outcomes article:nth-child(3) span {
  color: var(--white);
  background: var(--blue);
}

.outcomes strong {
  max-width: 320px;
  font-family: "DM Sans", Inter, sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  line-height: 1.08;
  font-weight: 700;
}

.design-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: center;
  width: min(1240px, calc(100% - 36px));
  padding: clamp(36px, 7vw, 72px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 68, 255, 0.08), transparent 46%),
    var(--white);
  box-shadow: 0 28px 100px rgba(18, 24, 38, 0.09);
}

.design-preview-copy p:not(.section-kicker) {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.design-deck {
  position: relative;
  min-height: 380px;
}

.design-card {
  position: absolute;
  width: min(72%, 440px);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(18, 24, 38, 0.16);
}

.design-card span {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.design-card strong {
  font-family: "DM Sans", Inter, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.95;
  font-weight: 650;
}

.card-one {
  left: 0;
  top: 42px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(0, 68, 255, 0.92), rgba(5, 5, 5, 0.9));
  transform: rotate(-4deg);
}

.card-two {
  right: 22px;
  top: 0;
  z-index: 2;
  color: var(--ink);
  background: var(--acid, #d7ff38);
}

.card-three {
  right: 0;
  bottom: 8px;
  z-index: 3;
  color: var(--white);
  background: var(--black);
  transform: rotate(3deg);
}

.audit {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 7vw, 80px);
  align-items: center;
  padding-top: clamp(28px, 5vw, 62px);
}

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

.audit-list label {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  font-weight: 650;
}

.audit-list input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
}

.audit-result {
  grid-column: 2;
  margin: 8px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(0, 68, 255, 0.08);
  font-weight: 650;
}

.web-system {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
  width: min(1240px, calc(100% - 36px));
  padding: clamp(44px, 8vw, 84px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 68, 255, 0.22), rgba(255, 255, 255, 0.02)),
    var(--black);
}

.system-copy p:not(.section-kicker) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  margin: 20px 0 26px;
}

.system-board {
  position: relative;
  min-height: 430px;
}

.system-window {
  position: absolute;
  inset: 28px 0 0 34px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.wire,
.wire-grid span,
.wire-list span {
  display: block;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.hero-wire {
  height: 128px;
  margin-bottom: 16px;
  background:
    linear-gradient(90deg, var(--blue), rgba(255, 255, 255, 0.16));
}

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

.wire-grid span {
  height: 78px;
}

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

.wire-list span {
  height: 18px;
}

.wire-list span:nth-child(2) {
  width: 82%;
}

.wire-list span:nth-child(3) {
  width: 62%;
}

.system-note {
  position: absolute;
  display: grid;
  min-width: 88px;
  min-height: 88px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  font-weight: 750;
}

.note-one {
  top: 0;
  left: 0;
}

.note-two {
  top: 112px;
  right: 8px;
  color: var(--white);
  background: var(--blue);
}

.note-three {
  right: 70px;
  bottom: 0;
}

.dark-panel {
  width: min(1240px, calc(100% - 36px));
  padding: clamp(50px, 8vw, 86px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(0, 68, 255, 0.16), transparent 38%),
    var(--black);
}

.dark-panel .section-kicker,
.dark-panel .section-head p,
.dark-panel .price-card p,
.dark-panel li {
  color: rgba(255, 255, 255, 0.72);
}

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

.price-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.price-card.highlighted {
  background:
    linear-gradient(135deg, rgba(0, 68, 255, 0.38), rgba(74, 31, 255, 0.16)),
    rgba(255, 255, 255, 0.08);
}

.price-kind {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 750;
  text-transform: uppercase;
}

.price-card > strong {
  display: block;
  margin-bottom: 18px;
  font-family: "DM Sans", Inter, sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  line-height: 1;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 800;
}

.price-note {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.price-note > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-note div {
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.price-note strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.price-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

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

.privacy-grid article,
.timeline article,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.privacy-grid article {
  padding: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.privacy-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.privacy-grid span,
.timeline span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 750;
}

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

.timeline article {
  padding: 24px;
  background: var(--soft);
}

.markets {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: center;
  padding-top: 0;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.market-grid article {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.market-grid article:last-child {
  border-right: 0;
  color: var(--white);
  background: var(--blue);
}

.market-grid strong {
  font-family: "DM Sans", Inter, sans-serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
}

.market-grid span {
  color: var(--muted);
}

.market-grid article:last-child span {
  color: rgba(255, 255, 255, 0.74);
}

.contact-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(26px, 6vw, 84px);
  align-items: stretch;
  padding: clamp(44px, 7vw, 70px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 68, 255, 0.24), rgba(5, 5, 5, 0.06)),
    var(--black);
}

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

.contact-note p,
.contact-note a {
  color: rgba(255, 255, 255, 0.72);
}

.contact-email {
  margin-bottom: 0;
  font-weight: 750;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 22px;
}

.contact-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
}

.contact-email a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 68, 255, 0.26);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.consent-line {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.consent-line input {
  min-height: 20px;
  padding: 0;
  accent-color: var(--blue);
}

.consent-line a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 3px;
}

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

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 750;
}

.form-status:not(:empty) {
  display: block;
}

.form-status[data-type="success"] {
  color: var(--ink);
  background: var(--acid, #d7ff38);
}

.form-status[data-type="error"] {
  color: var(--white);
  background: rgba(220, 38, 38, 0.9);
}

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

.faq details {
  padding: 0 22px;
}

.faq summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 750;
}

.faq summary::marker {
  color: var(--blue);
}

.faq p {
  margin-bottom: 22px;
}

.final-cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(70px, 10vw, 120px);
  padding: clamp(46px, 8vw, 86px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 68, 255, 0.92), rgba(5, 5, 5, 0.86)),
    url("assets/socialheroes-team.webp") center right / cover;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta p {
  max-width: 700px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(18px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
}

.site-footer img {
  width: 190px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  max-width: 460px;
  margin: 14px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
  justify-content: end;
}

.site-footer a,
.site-footer button {
  color: var(--white);
  background: transparent;
  border: 0;
  padding: 0;
  font-weight: 700;
}

.legal-page {
  background: var(--soft);
}

.legal-hero {
  padding: 150px clamp(18px, 4vw, 58px) 70px;
  color: var(--white);
  background: var(--black);
}

.legal-hero > div,
.legal-content {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-content {
  padding: 64px 0 100px;
}

.legal-card {
  padding: clamp(26px, 5vw, 48px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin-top: 38px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

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

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card a {
  color: var(--blue);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-banner p {
  margin-bottom: 6px;
  color: var(--muted);
}

.cookie-banner a {
  color: var(--blue);
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(5, 5, 5, 0.72);
}

.cookie-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100svh - 36px);
  overflow: auto;
  padding: clamp(24px, 5vw, 40px);
  border-radius: var(--radius);
  background: var(--white);
}

.cookie-dialog h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  font-weight: 750;
}

.cookie-option {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option small {
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    z-index: 55;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    gap: 0;
    max-height: calc(100svh - 92px);
    overflow: auto;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    font-size: 0.98rem;
    text-transform: none;
  }

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

  .site-nav a {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 14px 14px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    opacity: 1;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 8px;
    color: var(--white);
    background: var(--blue);
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-toggle span:not(.sr-only) {
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .split,
  .hero-layout,
  .web-system,
  .markets,
  .audit,
  .launch-strip,
  .design-preview,
  .pricing-grid,
  .price-note,
  .contact-note,
  .form-grid,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .service-row {
    grid-template-columns: 54px 1fr;
  }

  .service-row p {
    grid-column: 2;
  }

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

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

  .outcomes article {
    min-height: 190px;
  }

  .audit {
    padding-top: 22px;
  }

  .audit-result {
    grid-column: auto;
  }

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

  .market-grid article {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .market-grid article:last-child {
    border-bottom: 0;
  }

  .design-deck {
    min-height: 330px;
  }

  .design-card {
    width: min(82%, 390px);
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    width: 146px;
    min-width: 132px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    inset: 60px 12px auto;
    max-height: calc(100svh - 82px);
    padding: 7px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 92px 0 24px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 2.95rem);
    line-height: 0.98;
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-bottom: 18px;
  }

  .hero-tag {
    display: none;
  }

  .hero-pills {
    gap: 7px;
  }

  .hero-pills span {
    font-size: 0.76rem;
  }

  .hero-card {
    display: none;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

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

  .hero-tag {
    border-radius: 8px;
  }

  .hero-stats {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100% - 36px, 1180px);
    margin: 0 auto;
    transform: none;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line-dark);
    padding-bottom: 18px;
  }

  .hero-stats div {
    min-height: auto;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-stats dt {
    font-size: 1rem;
  }

  .hero-stats dd {
    max-width: 46%;
    margin-top: 0;
    font-size: 0.78rem;
    line-height: 1.25;
    text-align: right;
    overflow-wrap: anywhere;
  }

  .ticker span {
    padding: 13px 18px;
    font-size: 0.82rem;
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding: 52px 0;
  }

  .launch-strip {
    width: min(100% - 32px, 1180px);
    margin-top: 0;
  }

  .launch-strip > * {
    min-height: auto;
    padding: 18px;
  }

  .service-row,
  .privacy-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .insight-panel article {
    grid-template-columns: 46px 1fr;
    padding: 14px;
  }

  .insight-panel strong {
    width: 36px;
    height: 36px;
  }

  .service-row p {
    grid-column: auto;
  }

  .service-row {
    gap: 9px;
    padding: 20px 0;
  }

  .service-row strong {
    font-size: 1.28rem;
  }

  .privacy-grid article,
  .timeline article,
  .faq details {
    border-radius: 8px;
  }

  .privacy-grid article,
  .timeline article {
    padding: 18px;
  }

  .privacy-grid span,
  .timeline span {
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    font-size: 0.82rem;
  }

  .dark-panel,
  .web-system,
  .design-preview,
  .contact-note,
  .final-cta {
    width: min(100% - 32px, 1180px);
    padding: 24px 18px;
  }

  .design-deck {
    min-height: 296px;
  }

  .design-card {
    min-height: 168px;
    padding: 18px;
  }

  .design-card strong {
    font-size: 2.2rem;
  }

  .system-board {
    min-height: 238px;
  }

  .system-window {
    inset: 12px 0 0 0;
    padding: 14px;
  }

  .hero-wire {
    height: 68px;
  }

  .wire-grid span {
    height: 42px;
  }

  .wire-list span {
    height: 13px;
  }

  .system-note {
    min-width: 58px;
    min-height: 58px;
    font-size: 0.76rem;
  }

  .note-two {
    right: 0;
    top: 88px;
  }

  .note-three {
    right: 20px;
  }

  .outcomes article {
    min-height: 156px;
    padding: 20px;
  }

  .outcomes strong {
    font-size: 1.35rem;
  }

  .audit-list label {
    min-height: 56px;
    padding: 14px;
    font-size: 0.92rem;
  }

  .market-grid article {
    min-height: 96px;
    padding: 16px;
  }

  .contact-note {
    gap: 20px;
  }

  .contact-form {
    padding: 16px;
    gap: 13px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 12px;
  }

  .consent-line {
    font-size: 0.82rem;
  }

  .form-note {
    font-size: 0.8rem;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 14px;
  }

  .cookie-banner p {
    font-size: 0.86rem;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    justify-content: start;
    margin-top: 22px;
  }

  .cookie-actions .button {
    width: 100%;
    flex: auto;
  }
}

/* Alternative premium studio direction */
.alt-design {
  --paper-alt: #eef2f8;
  --ink-soft: #1c2430;
  --acid: #d7ff38;
  background:
    linear-gradient(180deg, #f7f9fd 0%, #eef2f8 42%, #ffffff 100%);
}

.alt-design .site-header {
  inset: 16px clamp(14px, 3vw, 38px) auto;
  width: auto;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.alt-design .site-header.is-scrolled,
.alt-design .site-header.is-open {
  background: rgba(5, 5, 5, 0.88);
}

.alt-design .brand {
  width: 184px;
  min-width: 160px;
}

.alt-design .nav-cta,
.alt-design .button.primary {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--blue), #172fff);
  box-shadow: 0 14px 38px rgba(0, 68, 255, 0.32);
}

.alt-design .hero {
  min-height: auto;
  padding: 122px 0 0;
  background:
    linear-gradient(135deg, #050505 0%, #0d111a 58%, #0044ff 160%);
}

.alt-design .hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
}

.alt-design .hero-bg {
  left: auto;
  top: 116px;
  right: clamp(20px, 5vw, 74px);
  bottom: auto;
  width: min(42vw, 560px);
  height: min(66svh, 620px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.44);
}

.alt-design .hero-bg::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.52)),
    linear-gradient(90deg, rgba(0, 68, 255, 0.16), transparent);
}

.alt-design .hero-bg img {
  object-position: center;
  opacity: 1;
  filter: saturate(1.08) contrast(1.04);
}

.alt-design .hero-content {
  padding: 52px 0 52px;
}

.alt-design .hero-layout {
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 390px);
  align-items: center;
}

.alt-design .hero-main {
  position: relative;
  z-index: 2;
}

.alt-design h1 {
  max-width: 820px;
  font-size: clamp(2.85rem, 5.6vw, 5.95rem);
  line-height: 0.98;
  font-weight: 640;
}

.alt-design .hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.76);
}

.alt-design .hero-tag {
  color: var(--ink);
  background: var(--acid);
}

.alt-design .hero-card {
  z-index: 2;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.alt-design .hero-card h2,
.alt-design .hero-checks span,
.alt-design .mini-metrics strong {
  color: var(--ink);
}

.alt-design .hero-checks span {
  background: #eef2f8;
}

.alt-design .mini-metrics div {
  color: var(--white);
  background: var(--black);
}

.alt-design .mini-metrics strong {
  color: var(--white);
}

.alt-design .hero-stats {
  position: relative;
  left: auto;
  bottom: auto;
  width: min(1180px, calc(100% - 36px));
  margin: 22px auto 0;
  transform: none;
  border: 0;
  gap: 12px;
  padding: 0 0 32px;
}

.alt-design .hero-stats div {
  min-height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.alt-design .ticker {
  background: var(--acid);
  color: var(--ink);
}

.alt-design .launch-strip {
  margin-top: -18px;
}

.alt-design .launch-strip > * {
  min-height: 144px;
}

.alt-design .launch-strip p:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(0, 68, 255, 0.08), transparent),
    var(--white);
}

.alt-design .launch-strip p:nth-child(3) {
  color: var(--white);
  background: var(--blue);
}

.alt-design .section {
  padding-block: clamp(58px, 8vw, 108px);
}

.alt-design .intro {
  align-items: center;
}

.alt-design .insight-panel {
  grid-template-columns: 1fr;
}

.alt-design .insight-panel article {
  min-height: 84px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(18, 24, 38, 0.08);
}

.alt-design .service-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  border-top: 0;
}

.alt-design .service-row {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(18, 24, 38, 0.07);
}

.alt-design .service-row:hover {
  padding: 22px;
  transform: translateY(-4px);
  background: var(--black);
}

.alt-design .service-row:hover strong,
.alt-design .service-row:hover p {
  color: var(--white);
}

.alt-design .service-row:hover span {
  color: var(--acid);
}

.alt-design .service-row span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef2f8;
}

.alt-design .service-row strong {
  font-size: clamp(1.1rem, 1.55vw, 1.5rem);
}

.alt-design .service-row p {
  font-size: 0.94rem;
}

.alt-design .outcomes {
  width: min(1240px, calc(100% - 36px));
}

.alt-design .outcomes article {
  min-height: 310px;
}

.alt-design .design-preview {
  margin-top: 0;
}

.alt-design .design-deck::before {
  position: absolute;
  inset: 42px 50px 18px 92px;
  border: 1px solid rgba(0, 68, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 68, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 68, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
}

.alt-design .audit {
  width: min(1240px, calc(100% - 36px));
  padding: clamp(34px, 6vw, 68px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 90px rgba(18, 24, 38, 0.08);
}

.alt-design .audit-list label {
  border-color: transparent;
  background: #f3f6fb;
}

.alt-design .web-system,
.alt-design .dark-panel,
.alt-design .contact-note {
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.16);
}

.alt-design .price-card {
  min-height: 500px;
}

.alt-design .price-card.highlighted {
  background:
    linear-gradient(145deg, rgba(0, 68, 255, 0.74), rgba(0, 68, 255, 0.2)),
    rgba(255, 255, 255, 0.08);
}

.alt-design .privacy-grid article,
.alt-design .timeline article,
.alt-design .faq details {
  box-shadow: 0 14px 50px rgba(18, 24, 38, 0.06);
}

.alt-design .contact-form {
  background: rgba(255, 255, 255, 0.13);
}

@media (max-width: 1120px) {
  .alt-design .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alt-design .service-row {
    min-height: 210px;
  }
}

@media (max-width: 900px) {
  .alt-design .site-header {
    inset: 12px 12px auto;
    border-radius: 8px;
  }

  .alt-design .hero-bg {
    display: none;
  }

  .alt-design .hero {
    padding-top: 94px;
  }

  .alt-design .hero-layout {
    grid-template-columns: 1fr;
  }

  .alt-design .hero-content {
    padding-top: 34px;
  }

  .alt-design .service-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .alt-design .site-header {
    padding: 10px 12px;
  }

  .alt-design .brand {
    width: 140px;
  }

  .alt-design h1 {
    font-size: clamp(2.05rem, 10vw, 3.05rem);
  }

  .alt-design .hero {
    padding-top: 74px;
  }

  .alt-design .hero-content {
    padding: 42px 0 22px;
  }

  .alt-design .hero-stats {
    margin-top: 8px;
    padding-bottom: 18px;
  }

  .alt-design .launch-strip {
    margin-top: 0;
  }

  .alt-design .hero-stats div {
    min-height: auto;
    background: rgba(255, 255, 255, 0.06);
  }

  .alt-design .service-row {
    min-height: 172px;
  }

  .alt-design .outcomes article {
    min-height: 168px;
  }

  .alt-design .audit {
    width: min(100% - 32px, 1180px);
    padding: 22px 16px;
  }

  .alt-design .price-card {
    min-height: auto;
  }

  .price-note {
    grid-template-columns: 1fr;
  }

  .price-note div {
    padding: 15px;
  }

  .contact-badges {
    margin-bottom: 18px;
  }
}

/* New editorial studio design */
.nova-design {
  --cream: #f6f8ee;
  --lime: #d8ff36;
  --sky: #eef5ff;
  --navy: #060917;
  --panel: #101526;
  --text: #11131a;
  --quiet: #687083;
  --stroke: rgba(17, 19, 26, 0.1);
  color: var(--text);
  background:
    radial-gradient(circle at 16% 4%, rgba(216, 255, 54, 0.36), transparent 24rem),
    radial-gradient(circle at 88% 14%, rgba(0, 68, 255, 0.16), transparent 26rem),
    linear-gradient(180deg, #fbfcf6 0%, #eef3f9 46%, #ffffff 100%);
}

.nova-design::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(17, 19, 26, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 26, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.nova-design .site-header {
  inset: 18px clamp(16px, 3.8vw, 48px) auto;
  width: auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: var(--white);
  background: rgba(6, 9, 23, 0.86);
  box-shadow: 0 24px 80px rgba(6, 9, 23, 0.24);
  backdrop-filter: blur(22px);
}

.nova-design .site-header.is-scrolled,
.nova-design .site-header.is-open {
  background: rgba(6, 9, 23, 0.94);
}

.nova-design .brand {
  width: 188px;
  min-width: 156px;
}

.nova-design .site-nav {
  gap: clamp(14px, 1.9vw, 26px);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.nova-design .nav-cta,
.nova-design .button.primary {
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 16px 36px rgba(216, 255, 54, 0.26);
}

.nova-design .button.primary:hover {
  background: #cfff10;
}

.nova-design .button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.nova-design .hero {
  min-height: auto;
  padding: 118px 0 0;
  overflow: visible;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 68, 255, 0.28), transparent 42%),
    var(--navy);
}

.nova-design .hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background:
    linear-gradient(120deg, transparent 0 22%, rgba(216, 255, 54, 0.18) 22% 22.4%, transparent 22.4% 100%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  content: "";
}

.nova-design .hero-bg {
  inset: auto clamp(18px, 5vw, 70px) 44px auto;
  width: min(38vw, 520px);
  height: min(58vw, 660px);
  border-radius: 8px;
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.46);
}

.nova-design .hero-bg::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(6, 9, 23, 0.42) 100%),
    linear-gradient(90deg, rgba(0, 68, 255, 0.22), transparent);
}

.nova-design .hero-bg img {
  object-position: center;
  opacity: 1;
  filter: saturate(1.05) contrast(1.04);
}

.nova-design .hero-content {
  width: min(1240px, calc(100% - 36px));
  padding: clamp(46px, 7vw, 94px) 0 clamp(46px, 7vw, 90px);
}

.nova-design .hero-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 410px);
  align-items: center;
}

.nova-design .hero-main {
  position: relative;
  z-index: 2;
}

.nova-design h1 {
  max-width: 850px;
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: 0.93;
  font-weight: 760;
  letter-spacing: 0;
}

.nova-design h2 {
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  line-height: 1.02;
  font-weight: 720;
}

.nova-design .eyebrow,
.nova-design .section-kicker {
  color: var(--blue);
  letter-spacing: 0.16em;
}

.nova-design .hero .eyebrow {
  color: var(--lime);
}

.nova-design .hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.03rem, 1.6vw, 1.22rem);
}

.nova-design .hero-tag {
  color: var(--navy);
  background: var(--lime);
  border-radius: 8px;
}

.nova-design .hero-pills span {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.nova-design .hero-card {
  z-index: 3;
  margin-top: 82px;
  color: var(--text);
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  transform: translateX(-34px);
}

.nova-design .hero-card h2 {
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
}

.nova-design .browser-bar span {
  background: rgba(17, 19, 26, 0.18);
}

.nova-design .browser-bar span:first-child {
  background: var(--blue);
}

.nova-design .mini-kicker {
  color: var(--blue);
}

.nova-design .hero-checks span {
  color: var(--text);
  background: var(--sky);
}

.nova-design .mini-metrics div {
  color: var(--white);
  background: var(--navy);
}

.nova-design .mini-metrics div:first-child {
  color: var(--navy);
  background: var(--lime);
}

.nova-design .mini-metrics strong {
  color: inherit;
}

.nova-design .mini-metrics small {
  color: currentColor;
  opacity: 0.62;
}

.nova-design .hero-stats {
  position: relative;
  left: auto;
  bottom: auto;
  width: min(1240px, calc(100% - 36px));
  grid-template-columns: 1.1fr 1.2fr 1fr;
  gap: 12px;
  margin: -22px auto 0;
  padding-bottom: 28px;
  transform: none;
  border: 0;
}

.nova-design .hero-stats div {
  min-height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.nova-design .hero-stats dt {
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
}

.nova-design .ticker {
  color: var(--navy);
  background: var(--lime);
}

.nova-design .ticker span {
  padding-block: 16px;
}

.nova-design .launch-strip {
  width: min(1240px, calc(100% - 36px));
  margin: 28px auto 0;
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(17, 19, 26, 0.12);
}

.nova-design .launch-strip > * {
  min-height: 154px;
}

.nova-design .launch-strip div {
  color: var(--navy);
  background: var(--lime);
}

.nova-design .launch-strip p:nth-child(2) {
  background: var(--white);
}

.nova-design .launch-strip p:nth-child(3) {
  color: var(--white);
  background: var(--blue);
}

.nova-design .section {
  width: min(1240px, calc(100% - 36px));
  padding-block: clamp(58px, 8vw, 108px);
}

.nova-design .intro {
  align-items: end;
}

.nova-design .insight-panel {
  gap: 10px;
}

.nova-design .insight-panel article {
  min-height: 94px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 70px rgba(17, 19, 26, 0.08);
  backdrop-filter: blur(18px);
}

.nova-design .insight-panel strong {
  color: var(--navy);
  background: var(--lime);
}

.nova-design .services {
  width: min(100%, 1440px);
  padding-inline: clamp(18px, 4vw, 58px);
  border-radius: 0;
  color: var(--white);
  background: var(--navy);
}

.nova-design .services .section-head {
  max-width: 1040px;
}

.nova-design .services .section-kicker {
  color: var(--lime);
}

.nova-design .service-list {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 12px;
  border: 0;
}

.nova-design .service-row {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nova-design .service-row:first-child {
  grid-row: span 2;
  min-height: 532px;
  background:
    linear-gradient(145deg, rgba(0, 68, 255, 0.44), rgba(255, 255, 255, 0.06));
}

.nova-design .service-row:hover {
  padding: 24px;
  transform: translateY(-5px);
  border-color: rgba(216, 255, 54, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.nova-design .service-row span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--lime);
}

.nova-design .service-row strong {
  color: var(--white);
  font-size: clamp(1.45rem, 2.5vw, 2.8rem);
}

.nova-design .service-row p {
  color: rgba(255, 255, 255, 0.68);
}

.nova-design .outcomes {
  width: min(1240px, calc(100% - 36px));
  gap: 12px;
  padding-top: clamp(58px, 8vw, 108px);
}

.nova-design .outcomes article {
  min-height: 280px;
  border-radius: 8px;
  box-shadow: 0 22px 80px rgba(17, 19, 26, 0.1);
}

.nova-design .outcomes article:first-child {
  background: var(--blue);
}

.nova-design .outcomes article:nth-child(2) {
  background: var(--navy);
}

.nova-design .outcomes article:nth-child(3) {
  color: var(--navy);
  background: var(--lime);
  border: 0;
}

.nova-design .outcomes article:nth-child(3) span {
  color: var(--navy);
  background: rgba(6, 9, 23, 0.1);
}

.nova-design .design-preview {
  width: min(1240px, calc(100% - 36px));
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 255, 54, 0.5), transparent 38%),
    var(--white);
  box-shadow: 0 28px 100px rgba(17, 19, 26, 0.11);
}

.nova-design .card-two {
  background: var(--lime);
}

.nova-design .audit {
  width: min(1240px, calc(100% - 36px));
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 26px 90px rgba(17, 19, 26, 0.08);
  backdrop-filter: blur(20px);
}

.nova-design .audit-list label {
  border: 0;
  background: var(--white);
}

.nova-design .web-system {
  width: min(100%, 1440px);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(0, 68, 255, 0.38), transparent 42%),
    var(--navy);
}

.nova-design .dark-panel {
  width: min(1240px, calc(100% - 36px));
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 255, 54, 0.18), transparent 36%),
    var(--navy);
  box-shadow: 0 34px 110px rgba(6, 9, 23, 0.18);
}

.nova-design .price-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.nova-design .price-card.highlighted {
  color: var(--navy);
  background: var(--lime);
}

.nova-design .price-card.highlighted .price-kind,
.nova-design .price-card.highlighted p,
.nova-design .price-card.highlighted li {
  color: rgba(6, 9, 23, 0.72);
}

.nova-design .price-card.highlighted .button.primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: none;
}

.nova-design .price-note div {
  background: rgba(255, 255, 255, 0.07);
}

.nova-design .privacy-grid article,
.nova-design .timeline article,
.nova-design .faq details {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 70px rgba(17, 19, 26, 0.07);
}

.nova-design .privacy-grid span,
.nova-design .timeline span {
  color: var(--navy);
  background: var(--lime);
}

.nova-design .timeline {
  gap: 12px;
}

.nova-design .timeline article {
  background: var(--white);
}

.nova-design .markets {
  align-items: stretch;
}

.nova-design .market-grid {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(17, 19, 26, 0.1);
}

.nova-design .market-grid article:last-child {
  color: var(--navy);
  background: var(--lime);
}

.nova-design .market-grid article:last-child span {
  color: rgba(6, 9, 23, 0.66);
}

.nova-design .contact-note {
  width: min(1240px, calc(100% - 36px));
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 68, 255, 0.32), transparent 44%),
    var(--navy);
  box-shadow: 0 34px 110px rgba(6, 9, 23, 0.2);
}

.nova-design .contact-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
}

.nova-design .faq {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(30px, 6vw, 84px);
}

.nova-design .faq .section-head {
  margin-bottom: 0;
}

.nova-design .faq-list {
  gap: 12px;
}

.nova-design .final-cta {
  width: min(1240px, calc(100% - 36px));
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(6, 9, 23, 0.92), rgba(0, 68, 255, 0.62)),
    url("assets/socialheroes-team.webp") center right / cover;
  box-shadow: 0 34px 110px rgba(6, 9, 23, 0.2);
}

@media (max-width: 1120px) {
  .nova-design .hero-bg {
    width: min(42vw, 470px);
  }

  .nova-design .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nova-design .service-row:first-child {
    grid-row: auto;
    min-height: 260px;
  }
}

@media (max-width: 900px) {
  .nova-design .site-header {
    inset: 12px 12px auto;
  }

  .nova-design .site-nav {
    inset: 72px 12px auto;
    color: var(--text);
    background: rgba(255, 255, 255, 0.98);
  }

  .nova-design .hero {
    padding-top: 86px;
  }

  .nova-design .hero-bg {
    position: relative;
    inset: auto;
    width: min(100% - 36px, 620px);
    height: 340px;
    margin: 0 auto 28px;
    transform: none;
  }

  .nova-design .hero-layout,
  .nova-design .launch-strip,
  .nova-design .split,
  .nova-design .audit,
  .nova-design .web-system,
  .nova-design .pricing-grid,
  .nova-design .price-note,
  .nova-design .markets,
  .nova-design .contact-note,
  .nova-design .faq {
    grid-template-columns: 1fr;
  }

  .nova-design .hero-card {
    display: block;
    max-width: none;
    margin-top: 14px;
    transform: none;
  }

  .nova-design .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .nova-design .service-list {
    grid-template-columns: 1fr;
  }

  .nova-design .service-row {
    min-height: 210px;
  }

  .nova-design .design-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nova-design .site-header {
    padding: 10px 12px;
  }

  .nova-design .brand {
    width: 144px;
    min-width: 136px;
  }

  .nova-design .hero-content {
    width: min(100% - 32px, 1240px);
    padding: 34px 0 24px;
  }

  .nova-design h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
    line-height: 0.97;
  }

  .nova-design h2 {
    font-size: clamp(1.75rem, 8vw, 2.55rem);
  }

  .nova-design .hero-bg {
    width: min(100% - 32px, 620px);
    height: 270px;
  }

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

  .nova-design .hero-tag {
    display: inline-flex;
    border-radius: 8px;
    font-size: 0.86rem;
  }

  .nova-design .hero-card {
    padding: 18px;
  }

  .nova-design .hero-card h2 {
    font-size: 1.45rem;
  }

  .nova-design .mini-metrics {
    grid-template-columns: 1fr;
  }

  .nova-design .hero-stats {
    width: min(100% - 32px, 1240px);
    padding-bottom: 22px;
  }

  .nova-design .hero-stats div {
    display: grid;
    gap: 4px;
    padding: 16px;
  }

  .nova-design .hero-stats dd {
    max-width: none;
    text-align: left;
  }

  .nova-design .launch-strip,
  .nova-design .section,
  .nova-design .outcomes,
  .nova-design .design-preview,
  .nova-design .audit,
  .nova-design .dark-panel,
  .nova-design .contact-note,
  .nova-design .final-cta {
    width: min(100% - 32px, 1240px);
  }

  .nova-design .launch-strip > * {
    min-height: auto;
    padding: 20px;
  }

  .nova-design .services,
  .nova-design .web-system {
    width: 100%;
    padding-inline: 16px;
  }

  .nova-design .service-row {
    min-height: 180px;
  }

  .nova-design .outcomes article {
    min-height: 174px;
  }

  .nova-design .design-deck {
    min-height: 310px;
  }

  .nova-design .design-card {
    width: min(84%, 340px);
    min-height: 172px;
  }

  .nova-design .contact-note,
  .nova-design .dark-panel,
  .nova-design .final-cta {
    padding: 24px 18px;
  }
}
