:root {
  color-scheme: dark;
  --black: #050202;
  --black-2: #0d0706;
  --panel: #140908;
  --panel-2: #23100d;
  --ivory: #fff7ec;
  --muted: #c7b7a3;
  --muted-2: #8e7863;
  --line: rgba(225, 34, 27, 0.18);
  --line-strong: rgba(205, 158, 76, 0.38);
  --gold: #d6a64a;
  --gold-2: #7d521f;
  --green: #e11d1d;
  --red: #e11d1d;
  --white: #fffaf2;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background:
    radial-gradient(
      circle at 14% 0%,
      rgba(225, 29, 29, 0.18),
      transparent 30rem
    ),
    radial-gradient(
      circle at 85% 12%,
      rgba(214, 166, 74, 0.12),
      transparent 34rem
    ),
    linear-gradient(180deg, #050202 0%, #120706 52%, #050202 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(214, 166, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 166, 74, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

.site-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 8, 12, 0.72);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease;
}

.site-popup[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.popup-panel {
  position: relative;
  width: min(100%, 620px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(105, 215, 255, 0.32);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 80% 8%,
      rgba(111, 255, 210, 0.14),
      transparent 14rem
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.028)
    ),
    #061722;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.58);
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
}

.site-popup[aria-hidden="false"] .popup-panel {
  transform: translateY(0) scale(1);
}

.popup-panel h2 {
  max-width: 520px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 780;
  letter-spacing: -0.04em;
}

.popup-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(194, 230, 255, 0.18);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.045);
  font-size: 1.35rem;
  line-height: 1;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 2, 2, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(143, 232, 255, 0.62);
  border-radius: 14px;
  background: linear-gradient(145deg, #081d2a, #0e3147);
  box-shadow:
    0 0 30px rgba(94, 207, 255, 0.22),
    inset 0 0 18px rgba(143, 232, 255, 0.14);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.brand-mark::before {
  inset: 11px 8px 13px;
  border-top: 2px solid #8fe8ff;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.brand-mark::after {
  right: 10px;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #8fe8ff;
  box-shadow: -16px 9px 0 rgba(216, 243, 255, 0.72);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

.home-hero {
  display: grid;
  align-content: center;
  min-height: calc(100vh - 76px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 4vw, 56px)
    clamp(56px, 8vw, 90px);
  border-bottom: 1px solid var(--line);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-kicker span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(194, 230, 255, 0.035);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1120px;
  margin-bottom: 28px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 9.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.88;
}

h2 {
  margin-bottom: 18px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.8vw, 5.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
}

h3 {
  margin-bottom: 12px;
  color: var(--ivory);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.home-hero > p,
.hero-sub {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ivory);
  background: transparent;
  font-weight: 760;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.button::before,
.button::after {
  content: none !important;
  display: none !important;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(105, 215, 255, 0.75);
}

.button.primary {
  border-color: var(--gold);
  color: #050202;
  background: linear-gradient(180deg, #f4d27c, #c7892e);
  box-shadow: 0 18px 44px rgba(214, 166, 74, 0.2);
}

.button.secondary {
  background: rgba(225, 29, 29, 0.08);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(194, 230, 255, 0.025);
}

.stats-bar div {
  min-height: 136px;
  padding: 24px clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

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

.stats-bar strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.stats-bar span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 4vw, 56px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.product-card,
.package {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      rgba(194, 230, 255, 0.05),
      rgba(194, 230, 255, 0.02)
    ),
    var(--panel);
  color: inherit;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.product-card:hover,
.package:hover {
  transform: translateY(-3px);
  border-color: rgba(105, 215, 255, 0.6);
}

.product-card.featured,
.package.featured {
  border-color: rgba(105, 215, 255, 0.55);
  background:
    linear-gradient(
      180deg,
      rgba(105, 215, 255, 0.14),
      rgba(194, 230, 255, 0.03)
    ),
    var(--panel);
  box-shadow: var(--shadow);
}

.product-number,
.step {
  display: block;
  margin-bottom: auto;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.product-card p,
.product-card strong,
.package p {
  color: var(--muted);
}

.product-card strong {
  display: block;
  margin-top: 28px;
  color: var(--ivory);
}

.thesis,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.copy-stack p,
.band-copy p,
.apply-copy p,
.rep-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.operating-room {
  border-top: 1px solid var(--line);
  background: rgba(194, 230, 255, 0.025);
}

.ops-grid,
.process-grid,
.tiers-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.ops-grid article,
.process-grid article,
.tiers-grid article,
.proof-grid article {
  min-height: 255px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--black-2);
}

.ops-grid article span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
}

.ops-grid p,
.process-grid p,
.tiers-grid p,
.proof-grid p,
.fit-list {
  color: var(--muted);
}

.rep-layer,
.band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(105, 215, 255, 0.1), transparent 40%), #071824;
}

.rep-rules,
.rules {
  display: grid;
  gap: 10px;
}

.rep-rules span,
.rules div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ivory);
  background: rgba(194, 230, 255, 0.04);
  font-weight: 760;
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.application {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(105, 215, 255, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(105, 215, 255, 0.09), transparent 36%),
    rgba(194, 230, 255, 0.035);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ivory);
  font-size: 0.88rem;
  font-weight: 740;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(7, 8, 6, 0.72);
  color: var(--ivory);
  outline: none;
}

input[name="_honey"] {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(105, 215, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(105, 215, 255, 0.12);
}

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

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 740;
}

.campaign-brief {
  margin-top: 8px;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(111, 255, 210, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(111, 255, 210, 0.12),
      transparent 18rem
    ),
    rgba(4, 16, 24, 0.86);
}

.campaign-brief[hidden] {
  display: none;
}

.brief-top,
.brief-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brief-top span {
  color: #7fe4ff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brief-copy {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(194, 230, 255, 0.2);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

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

.brief-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(194, 230, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.brief-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-grid strong {
  display: block;
  color: var(--ivory);
  font-size: 1.05rem;
  line-height: 1.25;
}

.brief-plan {
  padding-top: 2px;
}

.brief-plan h3 {
  margin-bottom: 8px;
}

.brief-plan ol {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.brief-plan li + li {
  margin-top: 8px;
}

.brief-actions {
  justify-content: flex-start;
  margin-top: 18px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  font-size: 0.82rem;
}

.footer a:hover {
  color: var(--ivory);
}

.site-footer {
  display: block;
  padding: clamp(46px, 6vw, 78px) clamp(20px, 4vw, 56px) 28px;
  border-top: 1px solid rgba(194, 230, 255, 0.13);
  color: var(--muted);
  background:
    radial-gradient(circle at 12% 0%, rgba(105, 215, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(194, 230, 255, 0.04), rgba(194, 230, 255, 0.015)),
    #030b12;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p,
.footer-column p {
  max-width: 460px;
  margin: 0;
  color: rgba(194, 230, 255, 0.72);
  line-height: 1.55;
}

.footer-contact {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  color: rgba(244, 251, 255, 0.82);
  font-weight: 720;
}

.footer-contact a {
  color: #8fe8ff;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: #8fe8ff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(244, 251, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 740;
}

.footer-column a:hover {
  color: #f4fbff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: clamp(36px, 5vw, 66px);
  padding-top: 20px;
  border-top: 1px solid rgba(194, 230, 255, 0.12);
  color: rgba(194, 230, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 720;
}

/* Subpages */
.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
  min-height: 76vh;
  padding: clamp(88px, 10vw, 150px) clamp(20px, 4vw, 56px)
    clamp(54px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(7, 8, 6, 0.78), rgba(7, 8, 6, 0.96)),
    url("./assets/hero-signal-room.png") center / cover;
}

.subpage-hero .eyebrow,
.subpage-hero p {
  color: rgba(194, 230, 255, 0.78);
}

.subpage-hero h1 {
  max-width: 980px;
}

.hero-panel {
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(7, 8, 6, 0.58);
  box-shadow: var(--shadow);
}

.hero-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.offer-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--black-2);
}

.offer-table th,
.offer-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

.offer-table th {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.offer-table td:first-child {
  color: var(--ivory);
  font-weight: 780;
}

.offer-table tr:last-child td {
  border-bottom: 0;
}

.dark-cta {
  background: #071824;
}

.dark-cta p {
  color: var(--muted);
}

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

.label {
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 820;
  text-transform: uppercase;
}

.price {
  margin-bottom: 28px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.fit-list {
  margin: 0;
  padding-left: 22px;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.fit-list li + li {
  margin-top: 12px;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .stats-bar,
  .product-grid,
  .ops-grid,
  .process-grid,
  .tiers-grid,
  .proof-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thesis,
  .split,
  .rep-layer,
  .band,
  .apply-section,
  .subpage-hero {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.8rem, 14vw, 6.4rem);
  }
}

@media (max-width: 640px) {
  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats-bar,
  .product-grid,
  .ops-grid,
  .process-grid,
  .tiers-grid,
  .proof-grid,
  .package-grid,
  .application {
    grid-template-columns: 1fr;
  }

  .product-card,
  .package {
    min-height: auto;
  }
}

/* V3 authority hub */
.prestige-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(70px, 9vw, 130px) clamp(20px, 4vw, 56px) clamp(52px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 80% 22%,
      rgba(105, 215, 255, 0.12),
      transparent 24rem
    ),
    radial-gradient(
      circle at 16% 76%,
      rgba(111, 255, 210, 0.11),
      transparent 26rem
    );
}

.prestige-copy h1 {
  max-width: 1080px;
  font-size: clamp(4rem, 8.2vw, 8.8rem);
  line-height: 0.9;
}

.prestige-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 32px;
  color: #beb5a2;
  font-size: clamp(1.08rem, 1.52vw, 1.34rem);
}

.media-room-card {
  width: min(100%, 640px);
  min-height: 0;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(105, 215, 255, 0.28);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(105, 215, 255, 0.09), transparent 36%),
    linear-gradient(
      180deg,
      rgba(194, 230, 255, 0.07),
      rgba(194, 230, 255, 0.02)
    ),
    #071824;
  box-shadow:
    0 44px 110px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateZ(0);
  animation: console-float 7s ease-in-out infinite;
}

.room-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(18px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-head b {
  padding: 6px 9px;
  border: 1px solid rgba(105, 215, 255, 0.42);
  border-radius: 999px;
  color: #69d7ff;
  font-size: 0.7rem;
}

.room-title {
  margin-bottom: 20px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  line-height: 0.96;
}

.room-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.room-metrics div {
  min-height: 102px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 8, 6, 0.48);
}

.room-metrics strong {
  display: block;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.room-metrics span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-flow {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(194, 230, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(194, 230, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.room-flow span {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(194, 230, 255, 0.12);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(7, 8, 6, 0.65);
  font-weight: 820;
}

.room-flow i {
  width: 2px;
  height: 18px;
  margin-left: 24px;
  background: linear-gradient(180deg, #69d7ff, transparent);
  box-shadow: 0 0 20px rgba(105, 215, 255, 0.45);
}

.room-intel {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.room-intel div {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(194, 230, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.room-intel span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.room-intel b {
  color: var(--ivory);
  font-size: 0.9rem;
}

@keyframes console-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.logo-strip span {
  display: grid;
  min-height: 86px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: #d8cfba;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-style: italic;
}

.logo-strip span:last-child {
  border-right: 0;
}

.ecosystem-strip {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.ecosystem-strip p,
.ecosystem-strip div {
  margin: 0;
  padding: 18px clamp(20px, 3vw, 34px);
  background: rgba(5, 20, 32, 0.92);
}

.ecosystem-strip p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ecosystem-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ecosystem-strip span {
  padding: 8px 11px;
  border: 1px solid rgba(105, 215, 255, 0.22);
  border-radius: 999px;
  color: #d9f4ff;
  background: rgba(105, 215, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 760;
}

.authority-split,
.room-system,
.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 92px);
  border-top: 1px solid var(--line);
}

.authority-copy p,
.trust-list p {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.45vw, 1.2rem);
}

.service-board {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

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

.service-tile {
  min-height: 430px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(194, 230, 255, 0.06),
      rgba(194, 230, 255, 0.018)
    ),
    #071824;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.service-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(105, 215, 255, 0.36);
}

.service-tile.featured {
  border-color: rgba(105, 215, 255, 0.34);
  box-shadow: var(--shadow);
}

.service-tile small {
  display: block;
  margin-bottom: clamp(80px, 10vw, 150px);
  color: #69d7ff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
}

.service-tile p {
  color: var(--muted);
}

.campaign-models {
  border-top: 1px solid var(--line);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.model-grid article {
  min-height: 500px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #071824;
}

.model-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 76px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-top b {
  color: var(--gold);
}

.model-grid p,
.model-grid li {
  color: var(--muted);
}

.model-grid ul {
  margin: 24px 0 0;
  padding-left: 18px;
}

.system-panel {
  align-self: start;
}

.system-panel p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(194, 230, 255, 0.74);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.6;
}

.system-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.system-steps {
  position: relative;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(105, 215, 255, 0.18);
  border-radius: 26px;
  padding: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(105, 215, 255, 0.15), transparent 22rem),
    linear-gradient(135deg, rgba(194, 230, 255, 0.065), rgba(194, 230, 255, 0.018)),
    rgba(5, 18, 28, 0.86);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.system-steps::before {
  position: absolute;
  inset: 22px auto 22px 55px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(105, 215, 255, 0.65),
    rgba(199, 154, 69, 0.45),
    transparent
  );
  content: "";
}

.system-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 128px;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(194, 230, 255, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    rgba(4, 16, 24, 0.78);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.system-steps article:hover,
.system-steps article.featured {
  transform: translateY(-2px);
  border-color: rgba(105, 215, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(105, 215, 255, 0.12), transparent 48%),
    rgba(4, 16, 24, 0.9);
}

.system-steps b {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(105, 215, 255, 0.28);
  border-radius: 50%;
  color: #69d7ff;
  background:
    radial-gradient(circle at 70% 20%, rgba(111, 255, 210, 0.28), transparent 42%),
    rgba(105, 215, 255, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.system-steps strong {
  display: block;
  margin-bottom: 7px;
  color: #f4fbff;
  font-size: clamp(1.1rem, 1.45vw, 1.38rem);
  letter-spacing: -0.025em;
}

.system-steps span {
  color: rgba(194, 230, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.5;
}

.decision-brief-section {
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(34px, 5vw, 72px);
  border-top: 1px solid rgba(194, 230, 255, 0.1);
}

.brief-download-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.72fr) auto;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(105, 215, 255, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 18%, rgba(105, 215, 255, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(194, 230, 255, 0.07), rgba(194, 230, 255, 0.018)),
    rgba(4, 16, 24, 0.9);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.brief-download-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.brief-download-card p {
  max-width: 700px;
  color: rgba(194, 230, 255, 0.74);
}

.brief-download-points {
  display: grid;
  gap: 10px;
}

.brief-download-points span {
  padding: 12px 14px;
  border: 1px solid rgba(194, 230, 255, 0.12);
  border-radius: 999px;
  color: #d9f4ff;
  background: rgba(105, 215, 255, 0.055);
  font-size: 0.9rem;
  font-weight: 780;
}

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

.brief-document-list article {
  display: grid;
  gap: 10px;
  min-height: 184px;
  padding: 18px;
  border: 1px solid rgba(194, 230, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(3, 12, 18, 0.62);
}

.brief-document-list article > span {
  width: max-content;
  padding: 8px 11px;
  border-color: rgba(143, 232, 255, 0.2);
  color: #8fe8ff;
  background: rgba(143, 232, 255, 0.07);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-document-list strong {
  color: #f4fbff;
  font-size: 1.1rem;
}

.brief-document-list p {
  color: rgba(194, 230, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.brief-document-list a {
  align-self: end;
  color: #8fe8ff;
  font-weight: 850;
}

.brief-download-actions {
  display: grid;
  gap: 10px;
  min-width: 230px;
}

.trust-section {
  background:
    linear-gradient(120deg, rgba(111, 255, 210, 0.12), transparent 44%), #06131d;
}

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

.trust-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.infrastructure-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(105, 215, 255, 0.035), transparent 34rem),
    rgba(255, 255, 255, 0.018);
}

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

.infra-grid article {
  min-height: 380px;
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(194, 230, 255, 0.06),
      rgba(194, 230, 255, 0.015)
    ),
    #071824;
}

.infra-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 72px;
  place-items: center;
  border: 1px solid rgba(105, 215, 255, 0.38);
  border-radius: 999px;
  color: #69d7ff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.infra-grid p {
  color: var(--muted);
}

.infra-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--ivory);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(34px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: #041018;
}

.case-stack {
  display: grid;
  gap: 12px;
}

.case-stack article {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(111, 255, 210, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.case-stack span {
  display: block;
  margin-bottom: 18px;
  color: #69d7ff;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-stack p {
  color: var(--muted);
}

.clip-wall-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(105, 215, 255, 0.12),
      transparent 30rem
    ),
    #031018;
}

.reel-chain {
  position: relative;
  overflow: hidden;
  margin-inline: calc(clamp(20px, 4vw, 56px) * -1);
  padding: 4px 0;
}

.reel-chain::before,
.reel-chain::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(38px, 9vw, 140px);
  content: "";
  pointer-events: none;
}

.reel-chain::before {
  left: 0;
  background: linear-gradient(90deg, #031018, transparent);
}

.reel-chain::after {
  right: 0;
  background: linear-gradient(270deg, #031018, transparent);
}

.reel-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding-inline: clamp(20px, 4vw, 56px);
  animation: reel-chain 42s linear infinite;
}

.reel-chain:hover .reel-track {
  animation-play-state: paused;
}

.reel-track article {
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(210px, 22vw, 320px);
  height: clamp(360px, 42vw, 540px);
  border: 1px solid rgba(194, 230, 255, 0.2);
  border-radius: 22px;
  background: #06131d;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.reel-track article::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0),
      rgba(105, 215, 255, 0.12),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(105, 215, 255, 0.16),
      transparent 17rem
    ),
    #06131d;
  background-size:
    220% 100%,
    auto;
  animation: reel-skeleton 1.8s ease-in-out infinite;
}

.reel-track video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

.reel-track article::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(3, 16, 24, 0.92));
  pointer-events: none;
}

.reel-track span {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes reel-skeleton {
  from {
    background-position:
      120% 0,
      0 0;
  }

  to {
    background-position:
      -120% 0,
      0 0;
  }
}

@keyframes reel-chain {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 7px), 0, 0);
  }
}

.clipping-reels-section {
  border-top: 1px solid var(--line);
  background: #031018;
}

.reel-chain.compact .reel-track article {
  flex-basis: clamp(190px, 19vw, 290px);
  height: clamp(330px, 38vw, 500px);
}

@media (max-width: 1080px) {
  .prestige-hero,
  .authority-split,
  .room-system,
  .trust-section,
  .case-study-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 880px) {
  .service-board-grid,
  .model-grid,
  .infra-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .room-metrics,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .logo-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .system-steps article {
    grid-template-columns: 1fr;
  }
}

/* V2 homepage and pricing */
.hero-command {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(70px, 9vw, 128px) clamp(20px, 4vw, 56px) clamp(52px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
}

.hero-left h1 {
  max-width: 920px;
  font-size: clamp(4.2rem, 8.8vw, 8.6rem);
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 32px;
  color: #b9b1a0;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
}

.distribution-console {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(214, 184, 112, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    ),
    #071824;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
}

.distribution-console::before {
  position: absolute;
  inset: -22% -18% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(105, 215, 255, 0.2),
    transparent 66%
  );
  content: "";
}

.console-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: #9f9787;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.console-top span:nth-child(2) {
  background: #69d7ff;
}

.console-top span:nth-child(3) {
  background: #6fffd2;
}

.console-top strong {
  margin-left: 8px;
  font-weight: 760;
}

.console-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  min-height: 116px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 8, 6, 0.48);
}

.metric.wide {
  grid-column: 1 / -1;
}

.metric small {
  display: block;
  margin-bottom: 12px;
  color: #8e8778;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric b {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.signal-map {
  position: relative;
  height: 150px;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(194, 230, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(194, 230, 255, 0.04) 1px, transparent 1px),
    rgba(7, 8, 6, 0.45);
  background-size: 32px 32px;
}

.signal-map i {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #69d7ff;
  box-shadow: 0 0 24px rgba(105, 215, 255, 0.6);
}

.signal-map i:nth-child(1) {
  left: 12%;
  top: 30%;
}
.signal-map i:nth-child(2) {
  left: 24%;
  top: 64%;
  background: var(--gold);
}
.signal-map i:nth-child(3) {
  left: 37%;
  top: 22%;
  background: #6fffd2;
}
.signal-map i:nth-child(4) {
  left: 48%;
  top: 52%;
}
.signal-map i:nth-child(5) {
  left: 62%;
  top: 30%;
  background: var(--gold);
}
.signal-map i:nth-child(6) {
  left: 70%;
  top: 72%;
  background: #6fffd2;
}
.signal-map i:nth-child(7) {
  left: 82%;
  top: 48%;
}
.signal-map i:nth-child(8) {
  left: 90%;
  top: 18%;
  background: var(--gold);
}

.console-feed {
  display: grid;
  gap: 8px;
}

.console-feed p {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #b9b1a0;
  background: rgba(7, 8, 6, 0.5);
  font-size: 0.92rem;
}

.console-feed span {
  color: var(--ivory);
  font-weight: 780;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.proof-strip div {
  padding: 24px clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

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

.editorial-split,
.machine-section,
.premium-layer {
  border-top: 1px solid var(--line);
}

.product-runway {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.tight {
  max-width: 820px;
}

.runway-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.95fr;
  gap: 14px;
}

.runway-card {
  min-height: 420px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(194, 230, 255, 0.055),
      rgba(194, 230, 255, 0.015)
    ),
    #071824;
}

.runway-card.primary-card {
  border-color: rgba(105, 215, 255, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(105, 215, 255, 0.12),
      rgba(194, 230, 255, 0.02)
    ),
    #071824;
  box-shadow: var(--shadow);
}

.runway-card span {
  display: block;
  margin-bottom: clamp(86px, 10vw, 150px);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
}

.runway-card p {
  color: var(--muted);
}

.machine-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 96px);
}

.machine-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.machine-list article {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 108px;
  padding: 22px;
  background: #071824;
}

.machine-list b {
  color: #69d7ff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.machine-list span {
  color: var(--muted);
  font-size: 1.02rem;
}

.premium-layer {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  background:
    linear-gradient(120deg, rgba(111, 255, 210, 0.12), transparent 44%), #06131d;
}

.premium-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(111, 255, 210, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.premium-panel p {
  color: var(--muted);
  font-size: 1.08rem;
}

.premium-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.premium-panel span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory);
  font-size: 0.82rem;
  font-weight: 760;
}

.pricing-hero {
  min-height: 58vh;
  padding: clamp(86px, 11vw, 150px) clamp(20px, 4vw, 56px)
    clamp(54px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
}

.pricing-hero h1 {
  max-width: 1040px;
  font-size: clamp(4.1rem, 9vw, 8.2rem);
}

.pricing-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.32rem);
}

.pricing-grid-section {
  padding-top: clamp(42px, 7vw, 88px);
}

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

.pricing-card {
  min-height: 0;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(194, 230, 255, 0.052),
      rgba(194, 230, 255, 0.015)
    ),
    #071824;
}

.pricing-card.featured {
  border-color: rgba(105, 215, 255, 0.34);
  box-shadow: var(--shadow);
}

.pricing-card > span {
  display: inline-block;
  margin-bottom: 42px;
  color: #69d7ff;
  font-size: 0.75rem;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card h2 {
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.92;
}

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

.pricing-card .fit-tag {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 12px;
  padding: 8px 11px;
  border: 1px solid rgba(111, 255, 210, 0.18);
  border-radius: 999px;
  color: #dffff7;
  background: rgba(111, 255, 210, 0.045);
  font-size: 0.84rem;
  font-weight: 780;
  letter-spacing: -0.01em;
}

.pricing-card ul {
  margin: 24px 0 18px;
  padding-left: 18px;
}

.pricing-card li + li {
  margin-top: 10px;
}

.pricing-card .button {
  margin-top: 6px;
}

@media (max-width: 1080px) {
  .hero-command,
  .machine-section,
  .premium-layer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 940px) {
  .runway-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .distribution-console {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .console-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .metric.wide {
    grid-column: auto;
  }

  .machine-list article {
    grid-template-columns: 1fr;
  }
}

.pricing-logic,
.pricing-logic-page,
.cpm-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 80px);
  border-top: 1px solid var(--line);
}

.logic-grid,
.budget-table {
  display: grid;
  gap: 12px;
}

.logic-grid article,
.budget-table div {
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.logic-grid strong,
.budget-table strong {
  display: block;
  margin-bottom: 8px;
  color: #69d7ff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
}

.logic-grid span,
.budget-table span,
.cpm-panel p,
.cpm-panel span {
  color: var(--muted);
}

.cpm-panel {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(105, 215, 255, 0.3);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(105, 215, 255, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.cpm-panel p {
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
}

.cpm-panel div {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.cpm-panel span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 8, 6, 0.42);
}

.choice-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-field legend {
  margin-bottom: 7px;
  color: var(--ivory);
  font-size: 0.88rem;
  font-weight: 740;
}

.field-help {
  margin: -2px 0 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.choice-grid label {
  display: block;
}

.choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(7, 8, 6, 0.48);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 760;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.choice-grid input:checked + span {
  border-color: #69d7ff;
  color: var(--ivory);
  background: rgba(105, 215, 255, 0.12);
}

.choice-grid input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .pricing-logic,
  .pricing-logic-page,
  .cpm-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .room-metrics {
    grid-template-columns: 1fr;
  }

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

/* Clipping conversion page */
.clipping-page {
  background:
    radial-gradient(
      circle at 88% 4%,
      rgba(105, 215, 255, 0.16),
      transparent 32rem
    ),
    radial-gradient(
      circle at 12% 18%,
      rgba(111, 255, 210, 0.1),
      transparent 34rem
    );
}

.clip-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 5.5vw, 82px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(64px, 9vw, 124px) clamp(20px, 4vw, 56px) clamp(44px, 7vw, 80px);
  border-bottom: 1px solid var(--line);
}

.clip-hero h1 {
  max-width: 980px;
  font-size: clamp(3.5rem, 8vw, 8.4rem);
}

.clip-hero-copy .hero-sub {
  max-width: 760px;
}

.clip-command-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(105, 215, 255, 0.35);
  border-radius: 26px;
  background:
    linear-gradient(
      180deg,
      rgba(194, 230, 255, 0.08),
      rgba(194, 230, 255, 0.02)
    ),
    #061722;
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
}

.clip-command-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(194, 230, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 230, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.clip-command-card > * {
  position: relative;
}

.command-top,
.progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.command-top {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.command-top b {
  padding: 6px 10px;
  border: 1px solid rgba(111, 255, 210, 0.42);
  border-radius: 999px;
  color: var(--green);
}

.clip-command-card h2 {
  max-width: 440px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
}

.command-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.command-metrics article {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.command-metrics strong {
  display: block;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.command-metrics span,
.progress-head span,
.clip-table span {
  color: var(--muted);
}

.progress-room {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.progress-head {
  margin-bottom: 12px;
  font-size: 0.92rem;
  font-weight: 760;
}

.progress-head b {
  color: var(--green);
}

.progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.clip-table {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.clip-table div {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.clip-table b {
  color: var(--gold);
}

.clip-table strong {
  color: var(--ivory);
}

.authority-logos {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.authority-logos p,
.authority-logos div {
  margin: 0;
  padding: 22px clamp(20px, 4vw, 56px);
}

.authority-logos p {
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.authority-logos div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.authority-logos span {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 780;
}

.clip-proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.clip-proof-band article {
  min-height: 168px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(105, 215, 255, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.035);
}

.clip-proof-band strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 0.95;
}

.clip-proof-band span {
  color: var(--muted);
  font-weight: 720;
}

.clip-split,
.comparison-section,
.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(30px, 6vw, 88px);
  border-top: 1px solid var(--line);
}

.mechanism-grid,
.campaign-room-grid,
.economics-grid,
.example-room-grid,
.comparison-grid {
  display: grid;
  gap: 14px;
}

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

.mechanism-grid article,
.campaign-room-grid article,
.economics-grid article,
.example-room-grid article,
.comparison-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(194, 230, 255, 0.055),
      rgba(194, 230, 255, 0.018)
    ),
    #061722;
}

.mechanism-grid article {
  min-height: 290px;
  padding: clamp(22px, 3vw, 30px);
}

.mechanism-grid b {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid rgba(105, 215, 255, 0.42);
  border-radius: 999px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.mechanism-grid p,
.campaign-room-grid p,
.comparison-grid p,
.economics-grid p,
.example-room-grid p,
.faq-list p {
  color: var(--muted);
}

.campaign-room-section,
.economics-section,
.example-rooms {
  border-top: 1px solid var(--line);
}

.campaign-room-grid,
.economics-grid,
.example-room-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.campaign-room-grid article,
.economics-grid article,
.example-room-grid article {
  min-height: 270px;
  padding: clamp(22px, 3vw, 30px);
}

.campaign-room-grid span,
.economics-grid span,
.example-room-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.comparison-grid article {
  padding: clamp(22px, 3vw, 30px);
}

.featured-comparison {
  border-color: rgba(105, 215, 255, 0.45) !important;
  box-shadow: 0 0 0 1px rgba(105, 215, 255, 0.12) inset;
}

.comparison-grid ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--ivory);
}

.economics-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
}

.economics-note {
  max-width: 980px;
  margin: 28px 0 0;
  padding: 24px;
  border: 1px solid rgba(105, 215, 255, 0.32);
  border-radius: 22px;
  color: var(--ivory);
  background: rgba(105, 215, 255, 0.06);
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
}

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

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  color: var(--ivory);
  font-size: 1.05rem;
  font-weight: 820;
  cursor: pointer;
}

.faq-list p {
  margin: 16px 0 0;
}

@media (max-width: 1080px) {
  .clip-hero,
  .clip-split,
  .comparison-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .authority-logos {
    grid-template-columns: 1fr;
  }

  .authority-logos p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 820px) {
  .command-metrics,
  .clip-proof-band,
  .mechanism-grid,
  .campaign-room-grid,
  .economics-grid,
  .example-room-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .clip-hero {
    padding-top: 48px;
  }

  .clip-hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
  }

  .authority-logos div {
    grid-template-columns: 1fr 1fr;
  }

  .clip-table div {
    grid-template-columns: 34px 1fr;
  }

  .clip-table strong {
    grid-column: 2;
  }
}

/* Final performance and positioning overrides */
.reel-track {
  animation: none !important;
}

.media-hero-refined {
  min-height: auto;
}

@media (max-width: 720px) {
  .target-map-rows article,
  .engine-output-grid {
    grid-template-columns: 1fr;
  }

  .media-engine-card,
  .target-map-panel {
    padding: 18px;
  }
}

.prestige-hero,
.media-hero-current {
  overflow: hidden;
}

.prestige-copy,
.system-console,
.media-hero-current > div,
.media-engine-card {
  min-width: 0;
}

.prestige-copy h1,
.media-hero-current h1 {
  max-width: 100%;
  text-wrap: balance;
}

.hero-actions .button {
  white-space: normal;
  text-align: center;
}

@media (max-width: 720px) {
  .prestige-hero,
  .media-hero-current {
    padding: 54px 20px 44px;
  }

  .prestige-copy h1,
  .media-hero-current h1 {
    font-size: clamp(2.45rem, 9.2vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
  }

  .prestige-copy p:not(.eyebrow),
  .hero-sub,
  .sf-line {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions .button {
    width: min(100%, 360px);
    min-height: 46px;
    padding: 12px 16px;
  }
}

/* Hegemonic red/gold authority pass */
.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(214, 166, 74, 0.3);
  border-radius: 999px;
  color: #d6a64a;
  background: rgba(5, 2, 2, 0.68);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.26);
}

.hero-brand-lockup img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
}

.hero-brand-lockup span {
  font-size: 0.75rem;
  font-weight: 860;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.prestige-hero,
.media-page,
.clip-wall-section,
.trusted-logo-section {
  background:
    radial-gradient(
      circle at 78% 16%,
      rgba(225, 29, 29, 0.15),
      transparent 28rem
    ),
    radial-gradient(
      circle at 16% 72%,
      rgba(214, 166, 74, 0.11),
      transparent 30rem
    ),
    linear-gradient(180deg, #050202 0%, #120706 54%, #050202 100%) !important;
}

.prestige-hero::before,
.media-hero-current::before,
.x-funnel-console::before {
  background:
    linear-gradient(90deg, rgba(214, 166, 74, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(225, 29, 29, 0.04) 1px, transparent 1px) !important;
}

.prestige-copy .eyebrow,
.eyebrow,
.system-label,
.brief-top span,
.x-funnel-row span {
  color: #d6a64a !important;
}

.prestige-copy p:not(.eyebrow),
.hero-sub,
.copy-stack p,
.authority-copy p,
.targeting-grid p,
.offer-flow-grid p,
.market-notes-grid span {
  color: #c7b7a3;
}

.system-console,
.operator-console-preview,
.x-funnel-console,
.media-engine-card,
.target-map-panel,
.campaign-brief {
  border-color: rgba(214, 166, 74, 0.34) !important;
  background:
    linear-gradient(135deg, rgba(225, 29, 29, 0.13), transparent 42%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(13, 7, 6, 0.9) !important;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.console-glow {
  background: linear-gradient(
    120deg,
    rgba(225, 29, 29, 0.38),
    rgba(214, 166, 74, 0.12),
    rgba(225, 29, 29, 0.22)
  ) !important;
}

.system-topline b,
.mission-top b,
.target-map-head b,
.engine-card-top b {
  border-color: rgba(214, 166, 74, 0.4) !important;
  color: #d6a64a !important;
  background: rgba(214, 166, 74, 0.08) !important;
}

.signal-rail span,
.proof-logos span,
.media-logo-belt span,
.target-strip span {
  border-color: rgba(214, 166, 74, 0.22) !important;
  color: #fff7ec !important;
  background: rgba(225, 29, 29, 0.08) !important;
}

.reel-track article {
  border-color: rgba(214, 166, 74, 0.26) !important;
  background: #0d0706 !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.reel-track article::before {
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0),
      rgba(214, 166, 74, 0.13),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(225, 29, 29, 0.2),
      transparent 17rem
    ),
    #0d0706 !important;
}

.reel-chain::before {
  background: linear-gradient(90deg, #050202, transparent) !important;
}

.reel-chain::after {
  background: linear-gradient(270deg, #050202, transparent) !important;
}

.trusted-logo-section::before {
  opacity: 0.22;
}

.console-bars i {
  background: linear-gradient(
    90deg,
    rgba(225, 29, 29, 0.26),
    rgba(214, 166, 74, 0.18)
  ) !important;
}

.console-bars b,
.live-feed i {
  color: #e11d1d;
}

.button:hover,
.service-tile:hover,
.package:hover,
.offer-flow-grid article:hover,
.targeting-grid article:hover,
.authority-map-grid article:hover,
.market-notes-grid article:hover {
  border-color: rgba(214, 166, 74, 0.5) !important;
}

.clip-wall-section .reel-track,
.clipping-reels-section .reel-track {
  animation: reel-chain 38s linear infinite !important;
}

.clip-wall-section .reel-chain:hover .reel-track,
.clipping-reels-section .reel-chain:hover .reel-track {
  animation-play-state: paused !important;
}

/* Authority and operator proof additions */
.sf-line {
  margin-top: -16px;
  color: var(--gold) !important;
  font-size: 0.92rem !important;
  font-weight: 760;
  letter-spacing: 0.03em;
}

.target-strip {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  background: rgba(194, 230, 255, 0.018);
}

.target-strip p,
.target-strip div {
  margin: 0;
  padding: 18px clamp(20px, 4vw, 56px);
}

.target-strip p {
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.target-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.target-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.86rem;
  font-weight: 780;
}

.offer-flow-section,
.operator-dashboard-section,
.targeting-section,
.dashboard-proof-section,
.market-notes-section,
.authority-map-section {
  border-top: 1px solid var(--line);
}

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

.market-notes-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 88px);
}

.market-notes-grid {
  display: grid;
  gap: 14px;
}

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

.authority-map-grid article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(105, 215, 255, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 84% 14%,
      rgba(105, 215, 255, 0.12),
      transparent 12rem
    ),
    linear-gradient(
      180deg,
      rgba(194, 230, 255, 0.055),
      rgba(194, 230, 255, 0.018)
    ),
    #061722;
}

.authority-map-grid span,
.clip-authority-map p {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.authority-map-grid strong {
  display: block;
  margin: 26px 0 22px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.08;
}

.authority-map-grid p {
  color: var(--muted);
}

.market-notes-grid article {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(111, 255, 210, 0.08), transparent 40%),
    rgba(255, 255, 255, 0.035);
}

.market-notes-grid p {
  margin-bottom: 18px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.market-notes-grid span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-flow-grid article,
.targeting-grid article {
  min-height: 270px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(194, 230, 255, 0.055),
      rgba(194, 230, 255, 0.018)
    ),
    #061722;
}

.offer-flow-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid rgba(105, 215, 255, 0.42);
  border-radius: 999px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.offer-flow-grid p,
.targeting-grid p,
.operator-dashboard-section p {
  color: var(--muted);
}

.operator-dashboard-section,
.targeting-section,
.dashboard-proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.operator-console-preview,
.dashboard-proof-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(105, 215, 255, 0.35);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(194, 230, 255, 0.08),
      rgba(194, 230, 255, 0.02)
    ),
    #061722;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.console-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.console-preview-head b {
  color: var(--green);
}

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

.console-kpis article {
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.console-kpis strong {
  display: block;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
}

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

.console-bars {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.console-bars div {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.console-bars span,
.console-bars b {
  position: relative;
  z-index: 2;
}

.console-bars span {
  color: var(--ivory);
  font-weight: 780;
}

.console-bars b {
  float: right;
  color: var(--green);
}

.console-bars i {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(
    90deg,
    rgba(105, 215, 255, 0.22),
    rgba(111, 255, 210, 0.14)
  );
}

.clip-table.elevated {
  margin-top: 18px;
}

.clip-authority-map {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(194, 230, 255, 0.018);
}

.clip-authority-map p,
.clip-authority-map div {
  margin: 0;
  padding: 18px clamp(20px, 4vw, 56px);
}

.clip-authority-map p {
  border-right: 1px solid var(--line);
}

.clip-authority-map div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clip-authority-map span {
  padding: 8px 12px;
  border: 1px solid rgba(105, 215, 255, 0.24);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.84rem;
  font-weight: 780;
}

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

.routing-mini-grid article {
  padding: 16px;
  border: 1px solid rgba(194, 230, 255, 0.13);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
}

.routing-mini-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.routing-mini-grid strong {
  color: var(--ivory);
  font-size: 0.94rem;
}

@media (max-width: 1080px) {
  .operator-dashboard-section,
  .targeting-section,
  .dashboard-proof-section,
  .market-notes-section,
  .clip-authority-map,
  .target-strip {
    grid-template-columns: 1fr;
  }

  .target-strip p,
  .clip-authority-map p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 880px) {
  .offer-flow-grid,
  .targeting-grid,
  .authority-map-grid,
  .routing-mini-grid,
  .console-kpis {
    grid-template-columns: 1fr;
  }
}

/* V4 premium operating system layer */
.prestige-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.84fr);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(105, 215, 255, 0.1), transparent 24%),
    radial-gradient(
      circle at 74% 22%,
      rgba(105, 215, 255, 0.2),
      transparent 22rem
    ),
    radial-gradient(
      circle at 20% 82%,
      rgba(111, 255, 210, 0.12),
      transparent 26rem
    );
}

.prestige-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(105, 215, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(105, 215, 255, 0.055) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(
    120deg,
    transparent,
    #000 24%,
    #000 76%,
    transparent
  );
  animation: grid-drift 18s linear infinite;
}

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

.prestige-copy .eyebrow {
  color: #7fe4ff;
}

.prestige-copy h1 {
  max-width: 940px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.prestige-copy p:not(.eyebrow) {
  color: #b7c9d6;
}

.system-console {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: clamp(18px, 2.2vw, 26px);
  border-color: rgba(119, 221, 255, 0.36);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(4, 16, 24, 0.86);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  animation: console-rise 900ms ease both;
}

.console-glow {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(105, 215, 255, 0.36),
    rgba(111, 255, 210, 0.06),
    rgba(105, 215, 255, 0.2)
  );
  opacity: 0.36;
  filter: blur(18px);
}

.system-topline,
.system-title,
.system-metrics,
.signal-rail,
.system-grid,
.live-feed {
  position: relative;
}

.system-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: #9eb6c6;
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-topline b {
  padding: 7px 10px;
  border: 1px solid rgba(105, 215, 255, 0.36);
  border-radius: 999px;
  color: #7fe4ff;
  background: rgba(105, 215, 255, 0.08);
}

.system-title {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 22px;
}

.system-title small,
.system-label,
.system-metrics span,
.live-feed span {
  color: #89a5b7;
  font-size: 0.7rem;
  font-weight: 880;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-title strong {
  color: var(--ivory);
  font-size: clamp(1.65rem, 2.6vw, 2.65rem);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.system-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.system-metrics article {
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(194, 230, 255, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(105, 215, 255, 0.12),
      transparent 7rem
    ),
    rgba(255, 255, 255, 0.04);
}

.system-metrics strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--ivory);
  font-size: clamp(1.9rem, 3.2vw, 2.85rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1;
}

.system-metrics em {
  color: #9eb6c6;
  font-size: 0.82rem;
  font-style: normal;
}

.signal-rail {
  overflow: hidden;
  margin: 4px -26px 18px;
  border-block: 1px solid rgba(194, 230, 255, 0.12);
  background: rgba(105, 215, 255, 0.045);
}

.signal-rail div {
  display: flex;
  width: max-content;
  gap: 8px;
  padding: 10px 26px;
  animation: signal-slide 24s linear infinite;
}

.signal-rail span {
  padding: 7px 11px;
  border: 1px solid rgba(194, 230, 255, 0.14);
  border-radius: 999px;
  color: #cfeeff;
  background: rgba(4, 16, 24, 0.72);
  font-size: 0.76rem;
  font-weight: 760;
}

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

.system-grid section {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(194, 230, 255, 0.13);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.018)
  );
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.system-grid section:hover {
  transform: translateY(-3px);
  border-color: rgba(105, 215, 255, 0.38);
  background: rgba(105, 215, 255, 0.08);
}

.system-grid b {
  display: block;
  margin-top: 14px;
  color: var(--ivory);
  font-size: 0.98rem;
  line-height: 1.28;
}

.live-feed {
  overflow: visible;
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(194, 230, 255, 0.13);
}

.live-feed div {
  display: grid;
  grid-template-columns: 10px 0.55fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px 11px;
  border: 1px solid rgba(194, 230, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.032);
  animation: feed-pulse 5s ease-in-out infinite;
}

.live-feed div:nth-child(2) {
  animation-delay: 400ms;
}

.live-feed div:nth-child(3) {
  animation-delay: 800ms;
}

.live-feed div:nth-child(4) {
  animation-delay: 1200ms;
}

.live-feed i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #6fffd2;
  box-shadow: 0 0 18px rgba(111, 255, 210, 0.7);
}

.live-feed b {
  color: var(--ivory);
  font-size: 0.88rem;
}

.system-console::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 96px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(111, 255, 210, 0.75));
  box-shadow: 0 0 18px rgba(111, 255, 210, 0.45);
  animation: rocket-scan 3.8s ease-in-out infinite;
}

.media-room-card:not(.system-console) {
  animation: none;
}

.room-title,
.room-metrics strong,
.console-kpis strong,
.authority-map-grid strong,
.market-notes-grid p {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: -0.035em;
}

.target-strip div {
  overflow: hidden;
}

.target-strip span {
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.target-strip span:hover {
  transform: translateY(-2px);
  border-color: rgba(105, 215, 255, 0.42);
  background: rgba(105, 215, 255, 0.08);
}

.trusted-logo-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 16% 0%,
      rgba(105, 215, 255, 0.11),
      transparent 28rem
    ),
    #030b12;
}

.trusted-logo-section::before {
  position: absolute;
  inset: -20% auto auto -8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.035), transparent 58%),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      transparent 2px 9px
    );
  opacity: 0.45;
  pointer-events: none;
}

.trusted-logo-section h2 {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 62px);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.trusted-logo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.trusted-logo-grid span {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  text-align: center;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.3));
}

.logo-julius {
  color: #2c6fff !important;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  font-weight: 850;
}

.logo-cluely {
  gap: 10px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 760;
}

.logo-cluely i {
  display: inline-block;
  width: 42px;
  height: 42px;
  border: 5px solid currentColor;
  border-radius: 999px;
}

.logo-hannovae,
.logo-onefloe {
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.logo-yc {
  gap: 12px;
  color: #ff7a1a !important;
  font-size: clamp(1.55rem, 3vw, 3rem);
  font-weight: 400;
}

.logo-yc b {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: white;
  background: #ff6a1a;
  font-weight: 500;
}

.logo-burnouts {
  flex-direction: column;
  font-size: clamp(1.45rem, 2.7vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.2),
    -1px 0 0 rgba(255, 255, 255, 0.15);
}

.logo-burnouts small {
  margin-top: -8px;
  color: rgba(255, 255, 255, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.logo-lucent {
  gap: 12px;
  color: #f3fbff !important;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 420;
}

.logo-lucent i {
  width: 46px;
  height: 46px;
  border: 4px solid #00a98f;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(0, 169, 143, 0.36);
}

.logo-lucent i::after {
  display: block;
  width: 0;
  height: 0;
  margin: 10px 0 0 15px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #00a98f;
  content: "";
}

.trusted-logo-grid .logo-cluely,
.trusted-logo-grid .logo-lucent {
  grid-column: span 2;
}

.trusted-logo-grid .logo-julius,
.trusted-logo-grid .logo-burnouts,
.trusted-logo-grid .logo-hannovae,
.trusted-logo-grid .logo-onefloe,
.trusted-logo-grid .logo-yc {
  grid-column: span 2;
}

.ecosystem-targets {
  position: relative;
  z-index: 1;
  margin-top: clamp(26px, 4vw, 48px);
  padding-top: clamp(18px, 3vw, 30px);
  border-top: 1px solid rgba(214, 166, 74, 0.18);
}

.ecosystem-targets p {
  margin: 0 0 14px;
  color: #d6a64a;
  font-size: 0.75rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecosystem-targets div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ecosystem-targets span {
  padding: 9px 12px;
  border: 1px solid rgba(214, 166, 74, 0.2);
  border-radius: 999px;
  color: rgba(255, 247, 236, 0.82);
  background: rgba(5, 2, 2, 0.58);
  font-size: 0.84rem;
  font-weight: 780;
}

.offer-flow-grid article,
.targeting-grid article,
.authority-map-grid article,
.market-notes-grid article,
.service-tile,
.package {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.offer-flow-grid article:hover,
.targeting-grid article:hover,
.authority-map-grid article:hover,
.market-notes-grid article:hover,
.service-tile:hover,
.package:hover {
  transform: translateY(-4px);
  border-color: rgba(105, 215, 255, 0.36);
}

.x-funnel-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(105, 215, 255, 0.14),
      transparent 28rem
    ),
    rgba(255, 255, 255, 0.018);
}

.x-funnel-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.4vw, 1.18rem);
}

.x-funnel-console {
  position: relative;
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(105, 215, 255, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(105, 215, 255, 0.12), transparent 42%),
    rgba(4, 16, 24, 0.88);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.x-funnel-console::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(105, 215, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(105, 215, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.7;
  pointer-events: none;
}

.x-funnel-row,
.x-funnel-kpis {
  position: relative;
  z-index: 1;
}

.x-funnel-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid rgba(194, 230, 255, 0.13);
  border-radius: 16px;
  background: rgba(3, 16, 24, 0.72);
}

.x-funnel-row.active {
  border-color: rgba(105, 215, 255, 0.4);
  background: rgba(105, 215, 255, 0.09);
}

.x-funnel-row span {
  color: #69d7ff;
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.1em;
}

.x-funnel-row b {
  color: var(--ivory);
}

.x-funnel-row em {
  color: var(--muted);
  font-style: normal;
}

.x-funnel-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.x-funnel-kpis article {
  padding: 16px;
  border: 1px solid rgba(194, 230, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.x-funnel-kpis strong {
  display: block;
  color: var(--ivory);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 0.95;
}

.x-funnel-kpis span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ecosystem-proof-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 108px) clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 18% 50%,
      rgba(105, 215, 255, 0.14),
      transparent 24rem
    ),
    radial-gradient(
      circle at 80% 18%,
      rgba(111, 255, 210, 0.08),
      transparent 28rem
    );
}

.orbit-proof {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(105, 215, 255, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at center,
      rgba(105, 215, 255, 0.13),
      transparent 10rem
    ),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.orbit-proof::before,
.orbit-proof::after {
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(105, 215, 255, 0.16);
  border-radius: 50%;
  content: "";
  animation: orbit-turn 28s linear infinite;
}

.orbit-proof::after {
  inset: 96px;
  border-color: rgba(111, 255, 210, 0.12);
  animation-duration: 19s;
  animation-direction: reverse;
}

.orbit-core {
  position: absolute;
  inset: 50%;
  z-index: 2;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid rgba(105, 215, 255, 0.36);
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(111, 255, 210, 0.26),
      transparent 45%
    ),
    #061722;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 70px rgba(105, 215, 255, 0.22);
}

.orbit-core span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orbit-core strong {
  margin-top: -42px;
  color: var(--ivory);
  font-size: 1rem;
}

.orbit-proof > span {
  position: absolute;
  z-index: 3;
  left: var(--x);
  top: var(--y);
  padding: 8px 11px;
  border: 1px solid rgba(194, 230, 255, 0.18);
  border-radius: 999px;
  color: #d8f3ff;
  background: rgba(4, 16, 24, 0.78);
  font-size: 0.82rem;
  font-weight: 820;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  animation: satellite-float 5.8s ease-in-out infinite;
}

.orbit-proof > span:nth-of-type(2n) {
  animation-delay: 700ms;
}

.orbit-proof > span:nth-of-type(3n) {
  animation-delay: 1300ms;
}

.proof-copy h2 {
  max-width: 880px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.proof-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.proof-logos span,
.media-logo-belt span {
  padding: 9px 12px;
  border: 1px solid rgba(194, 230, 255, 0.15);
  border-radius: 999px;
  color: #d8f3ff;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.84rem;
  font-weight: 780;
}

.media-page {
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(105, 215, 255, 0.18),
      transparent 28rem
    ),
    radial-gradient(
      circle at 86% 10%,
      rgba(111, 255, 210, 0.12),
      transparent 34rem
    ),
    linear-gradient(180deg, #031018 0%, #071824 55%, #030b12 100%);
}

.media-hero-current {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.7fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  min-height: calc(92vh - 76px);
  padding: clamp(70px, 9vw, 128px) clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.media-hero-current::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(
      circle at 76% 42%,
      rgba(105, 215, 255, 0.18),
      transparent 20rem
    ),
    linear-gradient(115deg, rgba(105, 215, 255, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(194, 230, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(194, 230, 255, 0.035) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    72px 72px,
    72px 72px;
  animation: grid-drift 22s linear infinite;
  pointer-events: none;
}

.media-hero-current > div,
.media-mission-control {
  position: relative;
  z-index: 1;
}

.media-hero-current h1 {
  max-width: 1000px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(3.25rem, 7.2vw, 7.4rem);
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.media-mission-control {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(105, 215, 255, 0.3);
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(4, 16, 24, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.mission-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 860;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mission-top b {
  color: var(--gold);
}

.mission-orbit {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(194, 230, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.mission-orbit i {
  position: absolute;
  border: 1px solid rgba(105, 215, 255, 0.14);
  border-radius: 50%;
  animation: orbit-turn 16s linear infinite;
}

.mission-orbit i:nth-of-type(1) {
  width: 230px;
  height: 230px;
}

.mission-orbit i:nth-of-type(2) {
  width: 160px;
  height: 160px;
  animation-direction: reverse;
}

.mission-orbit i:nth-of-type(3) {
  width: 90px;
  height: 90px;
  border-color: rgba(111, 255, 210, 0.18);
}

.mission-orbit strong {
  color: var(--ivory);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
}

.rocket {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 38px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #031018;
  background: linear-gradient(180deg, #6fffd2, #69d7ff);
  font-size: 1.4rem;
  font-weight: 900;
  transform: rotate(42deg);
  box-shadow: 0 0 34px rgba(105, 215, 255, 0.38);
  animation: rocket-bob 3.4s ease-in-out infinite;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.mission-grid article {
  padding: 12px;
  border: 1px solid rgba(194, 230, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.mission-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ivory);
  font-size: 1.7rem;
}

/* Hegemonic Growth conversion layer */
.media-hero-refined {
  min-height: auto;
  padding-block: clamp(82px, 10vw, 132px);
}

.media-hero-refined::before {
  animation: none;
  opacity: 0.7;
}

.media-engine-card,
.target-map-panel {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(105, 215, 255, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(4, 16, 24, 0.88);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.engine-card-top,
.target-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.engine-card-top b,
.target-map-head b {
  color: #69d7ff;
}

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

.engine-output-grid article {
  padding: 18px;
  border: 1px solid rgba(194, 230, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.engine-output-grid strong {
  display: block;
  color: var(--ivory);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.engine-output-grid span,
.engine-routing span,
.target-map-rows span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.engine-routing,
.target-map-rows {
  display: grid;
  gap: 10px;
}

.engine-routing div,
.target-map-rows article {
  padding: 14px 16px;
  border: 1px solid rgba(194, 230, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.engine-routing b,
.target-map-rows strong {
  display: block;
  margin-top: 6px;
  color: var(--ivory);
  font-size: 1rem;
  line-height: 1.25;
}

.target-map-panel {
  min-height: 0;
}

.target-map-rows article {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.target-map-rows span,
.target-map-rows strong {
  margin-top: 0;
}

.reel-chain {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(105, 215, 255, 0.5) transparent;
}

.reel-chain::before,
.reel-chain::after {
  width: clamp(24px, 5vw, 72px);
}

.reel-track {
  animation: none;
  scroll-snap-type: x mandatory;
}

.reel-chain:hover .reel-track {
  animation-play-state: initial;
}

.reel-track article {
  scroll-snap-align: start;
}

.reel-track video:not([data-loaded="true"]) {
  opacity: 0;
}

.ecosystem-proof-section {
  grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1fr);
}

.trusted-logo-section h2 {
  letter-spacing: -0.035em;
}

.media-mission-control p {
  color: var(--muted);
}

.media-logo-belt {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(194, 230, 255, 0.018);
}

.pitch-page {
  overflow: hidden;
}

.pitch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
  min-height: calc(88vh - 76px);
  padding: clamp(70px, 9vw, 128px) clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 86% 14%,
      rgba(105, 215, 255, 0.18),
      transparent 24rem
    ),
    linear-gradient(120deg, rgba(105, 215, 255, 0.08), transparent 35%);
}

.pitch-hero h1 {
  max-width: 1120px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(3.2rem, 7.6vw, 8.4rem);
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.pitch-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.pitch-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(105, 215, 255, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(194, 230, 255, 0.08),
      rgba(194, 230, 255, 0.02)
    ),
    #061722;
  box-shadow: var(--shadow);
}

.pitch-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pitch-card p {
  margin: 22px 0 0;
  color: var(--ivory);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.pitch-narrative-section,
.pitch-thesis-section,
.pitch-pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 88px);
  border-top: 1px solid var(--line);
}

.pitch-narrative-copy p,
.pitch-pricing-section > div > p,
.pitch-close-card p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.pitch-narrative-stack {
  display: grid;
  gap: 14px;
}

.pitch-narrative-stack article,
.pitch-economics-card,
.pitch-price-grid article {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(105, 215, 255, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 88% 14%,
      rgba(105, 215, 255, 0.12),
      transparent 12rem
    ),
    rgba(255, 255, 255, 0.035);
}

.pitch-narrative-stack span,
.pitch-price-grid span,
.pitch-economics-card span {
  display: block;
  margin-bottom: 14px;
  color: #69d7ff;
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pitch-narrative-stack strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ivory);
  font-size: clamp(1.24rem, 2vw, 1.8rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.pitch-narrative-stack p,
.pitch-economics-card p,
.pitch-price-grid p {
  color: var(--muted);
}

.pitch-thesis-card {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(105, 215, 255, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 12%, rgba(105, 215, 255, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(194, 230, 255, 0.07), rgba(194, 230, 255, 0.02)),
    rgba(5, 18, 28, 0.86);
  box-shadow: var(--shadow);
}

.pitch-thesis-card p {
  max-width: 850px;
  color: rgba(194, 230, 255, 0.76);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.pitch-outcome-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pitch-outcome-row span {
  padding: 10px 13px;
  border: 1px solid rgba(105, 215, 255, 0.18);
  border-radius: 999px;
  color: #d9f4ff;
  background: rgba(105, 215, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 780;
}

.pitch-economics-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ivory);
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

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

.pitch-price-grid article.featured {
  border-color: rgba(105, 215, 255, 0.44);
  background:
    linear-gradient(135deg, rgba(105, 215, 255, 0.12), transparent 48%),
    rgba(5, 18, 28, 0.92);
}

.pitch-price-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
}

.pitch-price-grid h3 {
  margin-bottom: 10px;
}

.pitch-close-section {
  border-top: 1px solid var(--line);
}

.pitch-close-card {
  max-width: 1120px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(105, 215, 255, 0.26);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 14%, rgba(105, 215, 255, 0.18), transparent 22rem),
    rgba(5, 18, 28, 0.86);
  box-shadow: var(--shadow);
}

.pitch-close-card h2 {
  max-width: 940px;
}

.pitch-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.pitch-strip article {
  min-height: 180px;
  padding: clamp(24px, 3vw, 34px);
  background: #061722;
}

.pitch-strip span,
.objection-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 880;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pitch-strip strong {
  display: block;
  color: var(--ivory);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.05;
}

.pitch-script-section,
.objection-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 86px);
}

.script-block {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(105, 215, 255, 0.25);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.script-block p {
  color: #c4d3dd;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.script-block p:last-child {
  margin-bottom: 0;
}

.pitch-system-grid,
.objection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pitch-system-grid article,
.objection-grid article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(105, 215, 255, 0.1),
      transparent 10rem
    ),
    rgba(255, 255, 255, 0.035);
}

.pitch-system-grid span {
  color: var(--gold);
  font-weight: 880;
}

.pitch-system-grid p,
.objection-grid p {
  color: var(--muted);
}

@keyframes signal-slide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes feed-pulse {
  0%,
  100% {
    border-color: rgba(194, 230, 255, 0.11);
    background: rgba(255, 255, 255, 0.032);
  }

  50% {
    border-color: rgba(105, 215, 255, 0.3);
    background: rgba(105, 215, 255, 0.075);
  }
}

@keyframes console-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 92px 92px;
  }
}

@keyframes rocket-scan {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-18px);
  }

  50% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes orbit-turn {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes satellite-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes rocket-bob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(42deg);
  }

  50% {
    transform: translate3d(8px, -10px, 0) rotate(42deg);
  }
}

@media (max-width: 1120px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .prestige-hero,
  .ecosystem-proof-section,
  .x-funnel-section,
  .media-hero-current,
  .pitch-hero,
  .pitch-narrative-section,
  .pitch-thesis-section,
  .pitch-pricing-section,
  .pitch-script-section,
  .objection-section,
  .brief-download-card {
    grid-template-columns: 1fr;
  }

  .system-console {
    width: 100%;
  }

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

  .trusted-logo-grid span {
    grid-column: auto !important;
  }
}

@media (max-width: 820px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-inline: 20px;
  }

  .system-title,
  .system-metrics,
  .system-grid,
  .mission-grid,
  .pitch-strip,
  .pitch-system-grid,
  .pitch-price-grid,
  .objection-grid {
    grid-template-columns: 1fr;
  }

  .brief-download-actions {
    min-width: 0;
  }

  .live-feed div {
    grid-template-columns: 10px 1fr;
  }

  .live-feed span {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .prestige-copy h1,
  .pitch-hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11.4vw, 3.45rem);
    letter-spacing: -0.045em;
    line-height: 0.94;
    overflow-wrap: normal;
  }

  .system-console {
    padding: 16px;
  }

  .system-title strong {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .system-metrics article {
    min-height: 104px;
  }

  .system-metrics strong {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .system-grid section {
    min-height: auto;
  }

  .live-feed {
    max-height: none;
  }

  .live-feed div:nth-child(n + 3) {
    display: none;
  }

  .signal-rail {
    margin-inline: -16px;
  }

  .trusted-logo-grid {
    grid-template-columns: 1fr;
  }

  .x-funnel-row,
  .x-funnel-kpis,
  .brief-grid {
    grid-template-columns: 1fr;
  }

  .trusted-logo-section h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .orbit-proof {
    min-height: 360px;
  }

  .orbit-proof > span {
    font-size: 0.72rem;
  }

  .media-hero-current h1 {
    font-size: clamp(2.55rem, 11.4vw, 3.45rem);
    line-height: 0.94;
  }
}

/* Final premium blue/black refinement */
:root {
  --black: #041018;
  --black-2: #071824;
  --panel: #0b2030;
  --panel-2: #102c3d;
  --ivory: #f3fbff;
  --muted: #9eb6c6;
  --muted-2: #6d8798;
  --line: rgba(194, 230, 255, 0.14);
  --line-strong: rgba(194, 230, 255, 0.25);
  --gold: #c79a45;
  --gold-2: #7c5524;
  --green: #6fffd2;
  --red: #d81f1f;
  --white: #f8fcff;
}

body {
  color: var(--ivory);
  background:
    radial-gradient(
      circle at 14% 0%,
      rgba(105, 215, 255, 0.15),
      transparent 30rem
    ),
    radial-gradient(
      circle at 85% 12%,
      rgba(199, 154, 69, 0.1),
      transparent 34rem
    ),
    linear-gradient(180deg, #031018 0%, #071824 52%, #030b12 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(194, 230, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 230, 255, 0.035) 1px, transparent 1px);
}

.site-header {
  background: rgba(3, 10, 14, 0.86);
}

.brand {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 820;
  letter-spacing: 0.01em;
  text-transform: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-color: rgba(143, 232, 255, 0.42);
  background:
    radial-gradient(circle at 25% 34%, #8fe8ff 0 3px, transparent 4px),
    radial-gradient(circle at 58% 22%, #6fffd2 0 2.8px, transparent 3.8px),
    radial-gradient(circle at 72% 62%, #c79a45 0 3px, transparent 4px),
    radial-gradient(circle at 38% 72%, #8fe8ff 0 2.8px, transparent 3.8px),
    #05141f;
  box-shadow:
    0 0 24px rgba(105, 215, 255, 0.14),
    0 0 30px rgba(143, 232, 255, 0.1);
}

.button.primary {
  border-color: #79dfff;
  color: #031018;
  background: linear-gradient(180deg, #8fe8ff, #49b9e8);
  box-shadow: 0 18px 44px rgba(105, 215, 255, 0.2);
}

.button.secondary {
  background: rgba(194, 230, 255, 0.045);
}

.prestige-hero,
.media-page,
.clip-wall-section,
.trusted-logo-section {
  background:
    radial-gradient(
      circle at 78% 16%,
      rgba(105, 215, 255, 0.14),
      transparent 28rem
    ),
    radial-gradient(
      circle at 16% 72%,
      rgba(199, 154, 69, 0.08),
      transparent 30rem
    ),
    linear-gradient(180deg, #031018 0%, #071824 54%, #030b12 100%) !important;
}

.prestige-hero::before,
.media-hero-current::before,
.x-funnel-console::before {
  background:
    linear-gradient(90deg, rgba(105, 215, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(105, 215, 255, 0.04) 1px, transparent 1px) !important;
}

.hero-brand-lockup {
  border-color: rgba(105, 215, 255, 0.24);
  color: #7fe4ff;
  background: rgba(3, 16, 24, 0.7);
}

.hero-brand-lockup img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: contain;
  background: #020406;
  box-shadow: 0 0 28px rgba(105, 215, 255, 0.12);
}

.prestige-copy h1 {
  max-width: 1120px;
  font-size: clamp(3.55rem, 7vw, 7.25rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.prestige-copy .eyebrow,
.eyebrow,
.system-label,
.brief-top span,
.x-funnel-row span {
  color: #7fe4ff !important;
}

.prestige-copy p:not(.eyebrow),
.hero-sub,
.copy-stack p,
.authority-copy p,
.targeting-grid p,
.offer-flow-grid p,
.market-notes-grid span {
  color: #b7c9d6;
}

.system-console,
.operator-console-preview,
.x-funnel-console,
.media-engine-card,
.target-map-panel,
.campaign-brief {
  border-color: rgba(105, 215, 255, 0.3) !important;
  background:
    linear-gradient(135deg, rgba(105, 215, 255, 0.1), transparent 42%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(4, 16, 24, 0.9) !important;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.console-glow {
  background: linear-gradient(
    120deg,
    rgba(105, 215, 255, 0.34),
    rgba(199, 154, 69, 0.1),
    rgba(105, 215, 255, 0.18)
  ) !important;
}

.system-topline b,
.mission-top b,
.target-map-head b,
.engine-card-top b {
  border-color: rgba(105, 215, 255, 0.36) !important;
  color: #7fe4ff !important;
  background: rgba(105, 215, 255, 0.08) !important;
}

.signal-rail span,
.proof-logos span,
.media-logo-belt span,
.target-strip span,
.ecosystem-targets span {
  border-color: rgba(105, 215, 255, 0.2) !important;
  color: #d8f3ff !important;
  background: rgba(105, 215, 255, 0.055) !important;
}

.ecosystem-targets {
  border-top-color: rgba(105, 215, 255, 0.16);
}

.ecosystem-targets p {
  color: #7fe4ff;
}

.reel-track article {
  border-color: rgba(105, 215, 255, 0.22) !important;
  background: #06131d !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.reel-track article::before {
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0),
      rgba(105, 215, 255, 0.12),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(199, 154, 69, 0.11),
      transparent 17rem
    ),
    #06131d !important;
}

.reel-chain::before {
  background: linear-gradient(90deg, #031018, transparent) !important;
}

.reel-chain::after {
  background: linear-gradient(270deg, #031018, transparent) !important;
}

.console-bars i {
  background: linear-gradient(
    90deg,
    rgba(105, 215, 255, 0.22),
    rgba(111, 255, 210, 0.14)
  ) !important;
}

.console-bars b {
  color: #6fffd2;
}

.live-feed i {
  background: #6fffd2;
  box-shadow: 0 0 18px rgba(111, 255, 210, 0.7);
}

.button:hover,
.service-tile:hover,
.package:hover,
.offer-flow-grid article:hover,
.targeting-grid article:hover,
.authority-map-grid article:hover,
.market-notes-grid article:hover {
  border-color: rgba(105, 215, 255, 0.45) !important;
}

@media (max-width: 720px) {
  .prestige-copy h1,
  .media-hero-current h1 {
    font-size: clamp(2.45rem, 9.2vw, 4rem);
    line-height: 0.98;
  }
}

/* Clean premium intake */
.apply-section {
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.9fr);
  align-items: start;
  background:
    radial-gradient(
      circle at 78% 22%,
      rgba(105, 215, 255, 0.1),
      transparent 28rem
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.apply-copy h2 {
  max-width: 760px;
}

.application {
  padding: clamp(20px, 2.6vw, 32px);
  border-color: rgba(105, 215, 255, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(105, 215, 255, 0.075), transparent 42%),
    rgba(4, 16, 24, 0.84);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.application .button.primary {
  border-color: rgba(105, 215, 255, 0.82);
  color: #031018;
  background: linear-gradient(180deg, #92e7ff, #48b9e7);
  box-shadow: 0 18px 42px rgba(105, 215, 255, 0.18);
}

.form-status {
  color: #8fe8ff !important;
}

.campaign-brief {
  padding: 18px;
  border-color: rgba(105, 215, 255, 0.22) !important;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(105, 215, 255, 0.08), transparent 40%),
    rgba(3, 16, 24, 0.72) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.brief-top {
  margin-bottom: 10px;
}

.brief-top span {
  color: #7fe4ff !important;
}

.brief-copy {
  min-height: 34px;
  padding: 7px 11px;
  color: #d8f3ff;
  font-size: 0.84rem;
}

.brief-summary {
  max-width: 920px;
  margin: 0 0 14px;
  color: #c4d6e3;
  font-size: 1rem;
  line-height: 1.5;
}

.brief-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brief-pill-row span {
  padding: 8px 11px;
  border: 1px solid rgba(105, 215, 255, 0.2);
  border-radius: 999px;
  color: #d8f3ff;
  background: rgba(105, 215, 255, 0.055);
  font-size: 0.85rem;
  font-weight: 760;
}

.conversion-next {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(105, 215, 255, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(105, 215, 255, 0.14),
      transparent 18rem
    ),
    rgba(255, 255, 255, 0.035);
}

.conversion-next strong {
  display: block;
  color: #f3fbff;
  font-size: 1.02rem;
  line-height: 1.28;
}

.conversion-next p {
  max-width: 760px;
  margin: 6px 0 0;
  color: #aebdca;
  font-size: 0.92rem;
  line-height: 1.5;
}

.brief-actions {
  margin-top: 14px;
}

.brief-actions .button {
  width: auto;
  min-height: 40px;
  padding: 10px 14px;
}

@media (max-width: 940px) {
  .apply-section {
    grid-template-columns: 1fr;
  }
}

/* Final class pass: globe mark, tighter header, cleaner reel wall */
.site-header {
  min-height: 70px;
  padding: 13px clamp(18px, 4vw, 54px);
  background: rgba(3, 10, 15, 0.88);
  box-shadow: 0 1px 0 rgba(194, 230, 255, 0.12);
}

.brand {
  gap: 11px;
  letter-spacing: 0;
}

.brand > span:last-child {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 850;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-color: rgba(126, 228, 255, 0.38);
  background:
    radial-gradient(circle at 24% 32%, #7fe4ff 0 2px, transparent 3px),
    radial-gradient(circle at 66% 28%, #c79a45 0 2px, transparent 3px),
    radial-gradient(circle at 72% 68%, #7fe4ff 0 2px, transparent 3px),
    radial-gradient(
      circle at 34% 72%,
      rgba(111, 255, 210, 0.9) 0 2px,
      transparent 3px
    ),
    linear-gradient(130deg, rgba(127, 228, 255, 0.24), rgba(3, 16, 24, 0.18)),
    radial-gradient(circle at 50% 46%, #0b2b3d 0 42%, #031018 68%);
  box-shadow:
    0 0 24px rgba(105, 215, 255, 0.16),
    inset 0 0 24px rgba(105, 215, 255, 0.1);
}

.brand-mark::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #f3fbff;
  content: "H";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
  text-shadow:
    0 0 12px rgba(127, 228, 255, 0.35),
    0 2px 0 rgba(0, 0, 0, 0.3);
}

.brand-mark::after {
  position: absolute;
  inset: 7px;
  display: block;
  border: 1px solid rgba(127, 228, 255, 0.2);
  border-right-color: rgba(199, 154, 69, 0.28);
  border-left-color: rgba(111, 255, 210, 0.18);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.nav {
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(194, 230, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.nav a {
  padding: 8px 11px;
  border-radius: 999px;
  line-height: 1;
}

.nav a:hover {
  color: var(--ivory);
  background: rgba(105, 215, 255, 0.08);
}

.nav a:last-child {
  color: #031018;
  background: #7fe4ff;
}

.prestige-hero {
  align-items: center;
  min-height: auto;
  padding-top: clamp(74px, 8vw, 118px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.hero-brand-lockup {
  display: none;
}

.prestige-copy h1 {
  max-width: 980px;
  font-size: clamp(3.3rem, 6.4vw, 6.8rem);
}

.sf-line {
  max-width: 680px;
}

.clip-wall-section,
.clipping-reels-section {
  overflow: hidden;
}

.reel-chain {
  margin-inline: 0;
  overflow: hidden;
}

.reel-track {
  gap: 12px;
  padding-inline: 0;
}

.reel-track article {
  flex-basis: clamp(190px, 18vw, 265px);
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
}

.clip-wall-section .reel-track,
.clipping-reels-section .reel-track {
  animation-duration: 34s !important;
}

@keyframes reel-chain {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 6px), 0, 0);
  }
}

@media (max-width: 940px) {
  .site-header {
    align-items: stretch;
  }

  .nav {
    border-radius: 16px;
  }
}

/* Astral conversion pass */
.site-header {
  min-height: 76px;
  padding-block: 14px;
  background:
    linear-gradient(180deg, rgba(6, 18, 28, 0.92), rgba(3, 10, 15, 0.82)),
    rgba(3, 10, 15, 0.88);
  box-shadow:
    0 1px 0 rgba(194, 230, 255, 0.13),
    0 18px 60px rgba(0, 0, 0, 0.22);
}

.brand {
  gap: 13px;
}

.brand > span:last-child {
  color: #f4fbff;
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(127, 228, 255, 0.42);
  background:
    radial-gradient(circle at 25% 34%, #8fe8ff 0 2px, transparent 2.8px),
    radial-gradient(circle at 58% 22%, #6fffd2 0 1.8px, transparent 2.6px),
    radial-gradient(circle at 72% 62%, #c79a45 0 2px, transparent 2.8px),
    radial-gradient(circle at 38% 72%, #8fe8ff 0 1.8px, transparent 2.6px),
    linear-gradient(
      18deg,
      transparent 0 45%,
      rgba(127, 228, 255, 0.18) 46% 48%,
      transparent 49%
    ),
    linear-gradient(
      105deg,
      transparent 0 38%,
      rgba(111, 255, 210, 0.12) 39% 41%,
      transparent 42%
    ),
    radial-gradient(
      circle at 50% 48%,
      rgba(28, 82, 112, 0.94) 0 38%,
      rgba(5, 20, 31, 0.98) 61%,
      #02070c 100%
    );
  box-shadow:
    0 0 0 6px rgba(127, 228, 255, 0.035),
    0 0 30px rgba(105, 215, 255, 0.22),
    inset 0 0 24px rgba(127, 228, 255, 0.16);
}

.brand-mark::before {
  content: "";
  inset: 10px;
  display: block;
  border: 1px solid rgba(244, 251, 255, 0.38);
  border-top-color: transparent;
  border-bottom-color: rgba(199, 154, 69, 0.42);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.brand-mark::after {
  inset: -3px 6px;
  border: 1px solid rgba(127, 228, 255, 0.22);
  border-top-color: rgba(111, 255, 210, 0.32);
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(63deg);
  animation: orbit-turn 9s linear infinite;
}

.nav {
  gap: 2px;
  padding: 6px;
  border-color: rgba(194, 230, 255, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.052),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav a {
  padding: 9px 13px;
  color: #a9bdca;
  font-size: 0.82rem;
  font-weight: 760;
}

.nav a:last-child {
  color: #06121c;
  background: linear-gradient(180deg, #9becff, #58c7f1);
  box-shadow: 0 10px 28px rgba(105, 215, 255, 0.18);
}

.prestige-hero {
  position: relative;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.78fr);
  gap: clamp(34px, 5vw, 82px);
  overflow: hidden;
}

.prestige-hero::after {
  position: absolute;
  right: -6vw;
  top: 18%;
  width: 42vw;
  height: 42vw;
  min-width: 480px;
  min-height: 480px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(127, 228, 255, 0.13) 0 2px,
      transparent 2.6px
    ),
    radial-gradient(
      circle at 28% 36%,
      rgba(111, 255, 210, 0.95) 0 3px,
      transparent 4px
    ),
    radial-gradient(
      circle at 66% 31%,
      rgba(127, 228, 255, 0.95) 0 2px,
      transparent 3px
    ),
    radial-gradient(
      circle at 74% 67%,
      rgba(199, 154, 69, 0.85) 0 2px,
      transparent 3px
    ),
    repeating-radial-gradient(
      circle at 50% 50%,
      transparent 0 72px,
      rgba(127, 228, 255, 0.075) 73px 74px
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(105, 215, 255, 0.08),
      transparent 60%
    );
  opacity: 0.7;
  transform: rotate(-10deg);
  animation: star-map-drift 18s ease-in-out infinite alternate;
}

.prestige-copy h1 {
  max-width: 1040px;
  color: #f7fcff;
  font-size: clamp(3.6rem, 6.9vw, 7.4rem);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.prestige-copy p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(1.04rem, 1.25vw, 1.22rem);
  line-height: 1.55;
}

.system-console {
  transform: translateZ(0);
}

.ecosystem-targets {
  padding-top: clamp(24px, 3vw, 38px);
}

.ecosystem-targets > p {
  margin-bottom: 18px;
  color: #91e8ff;
  font-size: 0.82rem;
  font-weight: 880;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.target-room-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px !important;
}

.target-room-grid article {
  position: relative;
  min-height: 170px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(127, 228, 255, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(127, 228, 255, 0.13),
      transparent 8rem
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.058),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(5, 22, 34, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.target-room-grid article::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  content: "";
  border: 1px solid rgba(127, 228, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 35%, #8fe8ff 0 2px, transparent 3px),
    radial-gradient(circle at 68% 64%, #c79a45 0 2px, transparent 3px),
    rgba(127, 228, 255, 0.035);
  opacity: 0.78;
}

.target-room-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(127, 228, 255, 0.24) !important;
  border-radius: 999px;
  color: #8fe8ff !important;
  background: rgba(127, 228, 255, 0.06) !important;
  font-size: 0.72rem;
  font-weight: 860;
}

.target-room-grid strong {
  display: block;
  max-width: 220px;
  color: #f4fbff;
  font-size: 1.02rem;
  line-height: 1.1;
}

.target-room-grid p {
  max-width: 230px;
  margin: 10px 0 0;
  color: #9eb6c6;
  font-size: 0.88rem;
  line-height: 1.45;
}

.clip-wall-section .reel-chain {
  padding-block: 10px;
}

.clip-wall-section .reel-track,
.clipping-reels-section .reel-track {
  animation: reel-chain 46s linear infinite !important;
  will-change: transform;
}

.reel-chain:hover .reel-track,
.clip-wall-section .reel-chain:hover .reel-track,
.clipping-reels-section .reel-chain:hover .reel-track {
  animation-play-state: running !important;
}

.reel-track article {
  flex-basis: clamp(180px, 15vw, 238px);
  border-radius: 20px;
}

.market-tape-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  border-top: 1px solid rgba(194, 230, 255, 0.1);
  border-bottom: 1px solid rgba(194, 230, 255, 0.1);
  background:
    radial-gradient(
      circle at 72% 45%,
      rgba(105, 215, 255, 0.13),
      transparent 30rem
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.market-tape-copy h2 {
  max-width: 780px;
}

.market-tape-copy p:not(.eyebrow) {
  max-width: 680px;
  color: #b7c9d6;
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.58;
}

.tape-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tape-metrics span {
  padding: 10px 13px;
  border: 1px solid rgba(127, 228, 255, 0.18);
  border-radius: 999px;
  color: #d8f3ff;
  background: rgba(127, 228, 255, 0.045);
  font-size: 0.82rem;
  font-weight: 780;
}

.landscape-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(127, 228, 255, 0.24);
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent),
    #02070c;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.landscape-video-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 46%, rgba(3, 13, 20, 0.82)),
    radial-gradient(
      circle at 12% 18%,
      rgba(127, 228, 255, 0.16),
      transparent 18rem
    );
  content: "";
}

.landscape-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landscape-video-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.landscape-video-caption span {
  color: #8fe8ff;
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landscape-video-caption strong {
  color: #f4fbff;
  font-size: clamp(1.1rem, 2vw, 1.9rem);
}

.operator-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.operator-proof-tags span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(111, 255, 210, 0.18);
  border-radius: 999px;
  color: #dffff7;
  background: rgba(111, 255, 210, 0.045);
  font-size: 0.82rem;
  font-weight: 780;
}

.operator-proof-tags img {
  width: 24px;
  height: 24px;
  padding: 3px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(247, 252, 255, 0.94);
}

.operator-screenshot-shell {
  overflow: hidden;
  border: 1px solid rgba(127, 228, 255, 0.24);
  border-radius: 28px;
  background: rgba(3, 13, 20, 0.88);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.operator-screenshot-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(194, 230, 255, 0.12);
  color: #a9bdca;
  background: rgba(255, 255, 255, 0.026);
  font-size: 0.84rem;
  font-weight: 780;
}

.operator-screenshot-head b {
  color: #8fe8ff;
}

.operator-screenshot-shell img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: rgba(3, 13, 20, 0.88);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 20% 26%,
      rgba(105, 215, 255, 0.13),
      transparent 28rem
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.about-section h2 {
  max-width: 880px;
}

.about-section p:not(.eyebrow) {
  max-width: 790px;
  color: #b7c9d6;
  font-size: clamp(1rem, 1.1vw, 1.13rem);
}

.about-orbit {
  position: relative;
  display: grid;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin-inline: auto;
  place-items: center;
  border: 1px solid rgba(127, 228, 255, 0.16);
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at 50% 50%,
      transparent 0 46px,
      rgba(127, 228, 255, 0.07) 47px 48px
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(127, 228, 255, 0.1),
      transparent 62%
    );
  box-shadow: inset 0 0 80px rgba(105, 215, 255, 0.05);
}

.about-orbit span {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 32%, #8fe8ff 0 2px, transparent 3px),
    radial-gradient(circle at 70% 30%, #6fffd2 0 2px, transparent 3px),
    radial-gradient(circle at 62% 74%, #c79a45 0 2px, transparent 3px),
    linear-gradient(
      18deg,
      transparent 0 45%,
      rgba(127, 228, 255, 0.22) 46% 48%,
      transparent 49%
    ),
    radial-gradient(circle at 50% 50%, #12374d 0 42%, #071824 70%);
  box-shadow: 0 0 70px rgba(105, 215, 255, 0.22);
}

.about-orbit i {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #8fe8ff;
  box-shadow: 0 0 18px rgba(127, 228, 255, 0.75);
}

.about-orbit i:nth-of-type(1) {
  left: 22%;
  top: 31%;
}

.about-orbit i:nth-of-type(2) {
  right: 19%;
  top: 44%;
  background: #6fffd2;
}

.about-orbit i:nth-of-type(3) {
  left: 46%;
  bottom: 18%;
  background: #c79a45;
}

.about-orbit b {
  position: relative;
  z-index: 1;
  color: #f7fcff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 4rem);
  letter-spacing: -0.08em;
  text-shadow: 0 0 22px rgba(127, 228, 255, 0.28);
}

@keyframes orbit-turn {
  to {
    transform: rotate(423deg);
  }
}

@keyframes star-map-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(-10deg);
  }

  to {
    transform: translate3d(-18px, 14px, 0) rotate(2deg);
  }
}

@media (max-width: 1120px) {
  .prestige-hero,
  .about-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .prestige-hero::after {
    opacity: 0.32;
  }

  .target-room-grid {
    grid-template-columns: 1fr;
  }

  .about-orbit {
    max-width: 300px;
  }
}

/* Moving market logo wall */
.market-logo-wall {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0;
  border-top: 1px solid rgba(194, 230, 255, 0.12);
  border-bottom: 1px solid rgba(194, 230, 255, 0.12);
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(105, 215, 255, 0.12),
      transparent 30rem
    ),
    linear-gradient(90deg, rgba(194, 230, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(194, 230, 255, 0.035) 1px, transparent 1px), #030b12;
  background-size:
    auto,
    76px 76px,
    76px 76px,
    auto;
}

.market-logo-wall::before,
.market-logo-wall::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(18vw, 260px);
  content: "";
  pointer-events: none;
}

.market-logo-wall::before {
  left: 0;
  background: linear-gradient(90deg, #030b12, rgba(3, 11, 18, 0));
}

.market-logo-wall::after {
  right: 0;
  background: linear-gradient(270deg, #030b12, rgba(3, 11, 18, 0));
}

.logo-wall-head {
  position: relative;
  z-index: 4;
  max-width: 880px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  padding-inline: clamp(20px, 4vw, 56px);
  text-align: center;
}

.logo-wall-head h2 {
  margin: 0;
  color: #f4fbff;
  font-size: clamp(2rem, 4vw, 4.4rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.logo-marquee {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  overflow: hidden;
  padding-block: 12px;
}

.logo-marquee + .logo-marquee {
  margin-top: 14px;
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  gap: 18px;
  animation: logo-drift 42s linear infinite;
}

.logo-marquee.reverse .logo-marquee-track {
  animation-direction: reverse;
  animation-duration: 48s;
}

.brand-chip,
.media-chip {
  position: relative;
  display: inline-flex;
  min-width: clamp(190px, 16vw, 275px);
  height: clamp(92px, 9vw, 132px);
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 auto;
  border: 1px solid rgba(194, 230, 255, 0.14);
  border-radius: 22px;
  color: #f7fcff;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(5, 18, 28, 0.82);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  font-size: clamp(1.55rem, 2.5vw, 2.75rem);
  font-weight: 820;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.brand-chip i {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.figma i {
  width: 38px;
  height: 52px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 18%, #ff7262 0 10px, transparent 11px),
    radial-gradient(circle at 70% 18%, #f24e1e 0 10px, transparent 11px),
    radial-gradient(circle at 30% 50%, #a259ff 0 10px, transparent 11px),
    radial-gradient(circle at 70% 50%, #1abcfe 0 10px, transparent 11px),
    radial-gradient(circle at 30% 82%, #0acf83 0 10px, transparent 11px);
}

.brex i {
  width: 54px;
  height: 34px;
  border-radius: 7px;
  background: #f7fcff;
  clip-path: polygon(0 0, 100% 0, 100% 52%, 58% 52%, 58% 78%, 0 78%);
}

.synthesia i {
  width: 54px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #5875ff 0 55%, #f7fcff 56% 100%);
  transform: skewX(-12deg);
}

.affirm {
  color: #f7fcff;
}

.affirm::after {
  position: absolute;
  right: 34px;
  top: 28px;
  width: 64px;
  height: 42px;
  content: "";
  border-top: 8px solid #35a7ff;
  border-radius: 50%;
  transform: rotate(8deg);
}

.airwallex {
  color: #f7fcff;
  letter-spacing: -0.07em;
}

.airwallex::before {
  width: 32px;
  height: 22px;
  content: "";
  border: 6px solid #ff6b4a;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  transform: rotate(-25deg);
}

.slash {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.mercury,
.ramp,
.deel,
.vercel,
.cursor,
.replit {
  font-size: clamp(1.7rem, 2.6vw, 2.95rem);
}

.mercury {
  color: #d8f3ff;
}

.ramp {
  color: #57e2a2;
}

.deel {
  color: #f4fbff;
}

.vercel::before {
  width: 0;
  height: 0;
  content: "";
  border-right: 18px solid transparent;
  border-bottom: 32px solid #f7fcff;
  border-left: 18px solid transparent;
}

.cursor::before {
  width: 30px;
  height: 30px;
  content: "";
  background: #f7fcff;
  clip-path: polygon(0 0, 100% 45%, 58% 58%, 45% 100%);
}

.replit::before {
  width: 34px;
  height: 34px;
  content: "";
  border-radius: 9px;
  background:
    linear-gradient(90deg, transparent 0 34%, #f26f22 35% 64%, transparent 65%),
    linear-gradient(#f26f22 0 34%, transparent 35% 64%, #f26f22 65%);
}

.media-chip {
  min-width: clamp(168px, 14vw, 235px);
  height: clamp(104px, 10vw, 148px);
  flex-direction: column;
  gap: 10px;
  border-radius: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.media-chip::before {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 18px;
  color: #f7fcff;
  background: rgba(255, 255, 255, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 880;
  letter-spacing: -0.06em;
}

.mfm::before {
  content: "MFM";
  color: #d6a64a;
  background: #050505;
}

.hd::before {
  content: "HD";
  background: #f05b2a;
}

.darknet::before {
  content: "DD";
  background: #050505;
}

.kp::before {
  content: "";
  background:
    linear-gradient(135deg, #fff 0 45%, transparent 46%),
    linear-gradient(315deg, #fff 0 45%, transparent 46%), #050505;
}

.spc::before {
  content: "SPC";
  color: #233530;
  background: #f7fcff;
}

.acquired::before {
  content: "ACQ";
  color: #62c7a5;
  background: #061c1a;
}

.wandb::before {
  content: "W&B";
  color: #f2c23b;
  background: #050505;
}

.media-chip.primary::before {
  content: "P";
  background: #242b2d;
}

.greylock::before {
  content: "g";
  background: #132438;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 400;
}

.nopriors::before {
  content: "NP";
  background: linear-gradient(135deg, #6a4cff, #bb69ff);
}

.tessl::before {
  content: "T";
  background: linear-gradient(135deg, #39c5f5, #544cff);
}

.lenny::before {
  content: "L";
  color: #06121c;
  background: #f7fcff;
}

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

  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

@media (max-width: 760px) {
  .market-logo-wall {
    padding-block: 42px;
  }

  .brand-chip,
  .media-chip {
    min-width: 180px;
  }
}

/* Prospect-first proof hierarchy */
.market-logo-wall {
  padding-block: clamp(34px, 5vw, 64px);
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(105, 215, 255, 0.08),
      transparent 28rem
    ),
    linear-gradient(90deg, rgba(194, 230, 255, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(194, 230, 255, 0.028) 1px, transparent 1px), #030b12;
}

.logo-wall-head {
  max-width: 760px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.logo-wall-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
}

.fund-chip {
  display: inline-flex;
  min-width: clamp(185px, 15vw, 250px);
  height: 76px;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 1px solid rgba(127, 228, 255, 0.15);
  border-radius: 999px;
  color: #d8f3ff;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(5, 18, 28, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  font-weight: 780;
  white-space: nowrap;
}

.fund-chip::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(127, 228, 255, 0.18);
  border-radius: 50%;
  color: #8fe8ff;
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(111, 255, 210, 0.24),
      transparent 46%
    ),
    rgba(127, 228, 255, 0.06);
  content: attr(data-mark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.fund-chip:has(img)::before {
  display: none;
}

.fund-chip img {
  width: 52px;
  height: 52px;
  padding: 7px;
  border: 1px solid rgba(127, 228, 255, 0.2);
  border-radius: 50%;
  object-fit: contain;
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(111, 255, 210, 0.18),
      transparent 46%
    ),
    rgba(247, 252, 255, 0.96);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.trusted-logo-section {
  padding-top: clamp(64px, 8vw, 118px);
}

.trusted-logo-section h2 {
  max-width: 1050px;
  margin-bottom: 14px;
}

.trusted-subcopy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 0 clamp(28px, 5vw, 54px);
  color: #a9bdca;
  font-size: clamp(1rem, 1.12vw, 1.16rem);
}

.proof-logo-belt {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin: 0 0 clamp(34px, 5vw, 64px);
  overflow: hidden;
  border-block: 1px solid rgba(194, 230, 255, 0.12);
  padding-block: 18px;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.proof-logo-row {
  display: flex;
  width: max-content;
  min-width: max-content;
  gap: 14px;
  animation: logo-drift 36s linear infinite;
}

.proof-logo-row.reverse {
  animation-direction: reverse;
  animation-duration: 42s;
}

.proof-logo-row span {
  display: inline-flex;
  width: clamp(176px, 16vw, 250px);
  height: 92px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(194, 230, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(5, 18, 28, 0.82);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.proof-logo-row img {
  display: block;
  max-width: 72%;
  max-height: 42px;
  object-fit: contain;
  filter: saturate(1.04) brightness(1.1);
}

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

.trusted-company-grid .brand-chip {
  min-width: 0;
  width: 100%;
  height: clamp(106px, 10vw, 142px);
  border-color: rgba(127, 228, 255, 0.17);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(5, 18, 28, 0.9);
  font-size: clamp(1.45rem, 2.15vw, 2.6rem);
  filter: none;
}

.trusted-company-grid .brand-chip::before,
.trusted-company-grid .brand-chip::after {
  display: initial;
}

.trusted-company-grid .affirm::after {
  display: block;
}

.trusted-secondary-grid {
  margin-top: clamp(24px, 4vw, 44px);
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  opacity: 0.82;
}

.trusted-secondary-grid span {
  min-height: 64px;
  padding: 10px;
  border: 1px solid rgba(194, 230, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.022);
}

.trusted-secondary-grid .logo-cluely,
.trusted-secondary-grid .logo-lucent,
.trusted-secondary-grid .logo-julius,
.trusted-secondary-grid .logo-burnouts,
.trusted-secondary-grid .logo-hannovae,
.trusted-secondary-grid .logo-onefloe,
.trusted-secondary-grid .logo-yc {
  grid-column: span 1;
  font-size: clamp(0.98rem, 1.3vw, 1.55rem);
}

.trusted-secondary-grid .logo-cluely i,
.trusted-secondary-grid .logo-lucent i {
  width: 22px;
  height: 22px;
  border-width: 3px;
}

.trusted-secondary-grid .logo-yc b {
  width: 28px;
  height: 28px;
}

.trusted-secondary-grid .logo-burnouts small {
  display: none;
}

@media (max-width: 1060px) {
  .trusted-company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .trusted-company-grid,
  .trusted-secondary-grid {
    grid-template-columns: 1fr;
  }
}

/* Conversion finish: booking path + orbit proof wall */
.nav-cta {
  padding: 9px 13px;
  border: 1px solid rgba(143, 232, 255, 0.28);
  border-radius: 999px;
  color: #8fe8ff !important;
  background: rgba(143, 232, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.book-call-button {
  border-color: rgba(111, 255, 210, 0.35) !important;
  color: #dffff7 !important;
}

.trusted-logo-section {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(72px, 8vw, 130px);
}

.trusted-logo-section::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 52% 52%,
      rgba(143, 232, 255, 0.12),
      transparent 18rem
    ),
    radial-gradient(
      circle at 50% 56%,
      rgba(111, 255, 210, 0.055),
      transparent 31rem
    );
  content: "";
}

.trust-orbit {
  position: relative;
  z-index: 1;
  height: clamp(520px, 58vw, 760px);
  margin-top: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(194, 230, 255, 0.12);
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(rgba(194, 230, 255, 0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 230, 255, 0.032) 1px, transparent 1px),
    radial-gradient(
      circle at 50% 52%,
      rgba(143, 232, 255, 0.12),
      transparent 19rem
    ),
    rgba(4, 16, 24, 0.64);
  background-size: auto, 44px 44px, auto, auto;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.trust-orbit::before,
.trust-orbit::after {
  position: absolute;
  inset: 50%;
  width: min(82%, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(143, 232, 255, 0.16);
  border-radius: 50%;
  content: "";
  translate: -50% -50%;
}

.trust-orbit::after {
  width: min(58%, 520px);
  border-color: rgba(199, 154, 69, 0.18);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  width: clamp(190px, 22vw, 290px);
  min-height: clamp(116px, 12vw, 160px);
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(143, 232, 255, 0.24);
  border-radius: 30px;
  text-align: center;
  translate: -50% -50%;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(143, 232, 255, 0.18),
      transparent 62%
    ),
    rgba(3, 13, 20, 0.9);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.orbit-core span {
  color: #a9bdca;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.5vw, 1.45rem);
  font-style: italic;
}

.orbit-core strong {
  color: #f4fbff;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

@property --orbit-angle {
  inherits: false;
  initial-value: 0deg;
  syntax: "<angle>";
}

.orbit-ring {
  --radius: min(31vw, 325px);
  --orbit-angle: 0deg;
  position: absolute;
  inset: 0;
  z-index: 2;
  animation: orbit-angle 40s linear infinite;
}

.orbit-ring-two {
  --radius: min(23vw, 238px);
  z-index: 4;
  animation-duration: 32s;
  animation-direction: reverse;
}

.orbit-ring-three {
  --radius: min(38vw, 390px);
  z-index: 1;
  animation-duration: 58s;
}

.orbit-ring > span {
  --angle: calc((var(--i) * 45deg) + var(--orbit-angle));
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  width: clamp(122px, 13vw, 194px);
  min-width: 0;
  height: clamp(56px, 6vw, 82px);
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(194, 230, 255, 0.16);
  border-radius: 20px;
  color: #f7fcff;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(5, 18, 28, 0.88);
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  filter: none;
  font-size: clamp(0.88rem, 1.16vw, 1.32rem);
  font-weight: 840;
  letter-spacing: -0.055em;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(var(--angle))
    translateX(var(--radius)) rotate(calc(var(--angle) * -1));
}

.orbit-ring > span.logo-img-chip {
  gap: 12px;
  justify-content: flex-start;
  padding-left: 18px;
  text-align: left;
}

.logo-img-chip::before,
.logo-img-chip::after {
  display: none !important;
}

.logo-img-chip img {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  padding: 5px;
  border: 1px solid rgba(194, 230, 255, 0.16);
  border-radius: 12px;
  object-fit: contain;
  background: rgba(247, 252, 255, 0.94);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.orbit-ring-one .brand-chip {
  width: clamp(150px, 15vw, 218px);
  height: clamp(68px, 7vw, 94px);
  font-size: clamp(1rem, 1.42vw, 1.58rem);
}

.orbit-ring-two > span {
  width: clamp(118px, 11vw, 164px);
  height: clamp(54px, 5.7vw, 74px);
  border-color: rgba(111, 255, 210, 0.16);
}

.orbit-ring-three > span {
  width: clamp(130px, 12vw, 190px);
  height: 48px;
  border-color: rgba(199, 154, 69, 0.18);
  color: #d6e6ef;
  background: rgba(3, 13, 20, 0.72);
  font-size: clamp(0.76rem, 0.92vw, 0.98rem);
  letter-spacing: -0.025em;
}

.trust-orbit .brand-chip i {
  transform: scale(0.65);
}

.trust-orbit .affirm::after {
  right: 18px;
  top: 12px;
  width: 38px;
  height: 28px;
  border-top-width: 5px;
}

.trust-orbit .airwallex::before {
  width: 22px;
  height: 16px;
  border-width: 4px;
  border-right: 0;
}

.trust-orbit .vercel::before {
  border-right-width: 12px;
  border-bottom-width: 22px;
  border-left-width: 12px;
}

.trust-orbit .cursor::before {
  width: 20px;
  height: 20px;
}

.trust-orbit .replit::before {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.trust-orbit .logo-cluely i,
.trust-orbit .logo-lucent i {
  width: 20px;
  height: 20px;
  border-width: 3px;
}

.trust-orbit .logo-yc b {
  width: 25px;
  height: 25px;
}

@keyframes orbit-angle {
  to {
    --orbit-angle: 360deg;
  }
}

.calendly-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(340px, 0.9fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 75% 18%,
      rgba(143, 232, 255, 0.12),
      transparent 28rem
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.calendly-copy {
  position: sticky;
  top: 104px;
}

.calendly-copy h2 {
  max-width: 760px;
}

.call-proof-row {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.call-proof-row span {
  padding: 15px 16px;
  border: 1px solid rgba(143, 232, 255, 0.17);
  border-radius: 16px;
  color: #d8f3ff;
  background: rgba(143, 232, 255, 0.045);
  font-weight: 780;
}

.calendly-shell {
  overflow: hidden;
  border: 1px solid rgba(143, 232, 255, 0.24);
  border-radius: 28px;
  background: rgba(3, 13, 20, 0.86);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
}

.calendly-frame-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(194, 230, 255, 0.12);
  color: #a9bdca;
  background:
    linear-gradient(90deg, rgba(143, 232, 255, 0.1), transparent),
    rgba(255, 255, 255, 0.025);
  font-size: 0.9rem;
  font-weight: 760;
}

.calendly-frame-head b {
  color: #8fe8ff;
}

.calendly-inline-widget {
  min-height: 700px;
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(3, 82, 207, 0.12),
      transparent 18rem
    ),
    linear-gradient(180deg, #f8fcff, #edf7ff);
}

.calendly-shell {
  border-color: rgba(3, 82, 207, 0.28);
  background:
    linear-gradient(180deg, rgba(143, 232, 255, 0.08), transparent),
    rgba(3, 13, 20, 0.9);
}

@media (max-width: 960px) {
  .trust-orbit {
    height: auto;
    min-height: 0;
    padding: 26px;
  }

  .trust-orbit::before,
  .trust-orbit::after,
  .orbit-core {
    display: none;
  }

  .orbit-ring,
  .orbit-ring-two,
  .orbit-ring-three {
    position: relative;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    animation: none;
  }

  .orbit-ring + .orbit-ring {
    margin-top: 10px;
  }

  .orbit-ring > span {
    position: static;
    width: auto;
    min-width: 132px;
    transform: none;
  }

  .calendly-section {
    grid-template-columns: 1fr;
  }

  .calendly-copy {
    position: relative;
    top: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  .orbit-ring {
    animation: none;
  }
}

/* Cleaner Atomik-style moving proof wheel */
.trusted-logo-section,
.calendly-section,
#apply {
  scroll-margin-top: 98px;
}

.trust-orbit {
  display: grid;
  height: auto;
  min-height: clamp(340px, 32vw, 450px);
  align-content: center;
  gap: 18px;
  padding: clamp(34px, 5vw, 58px) 0;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 9%,
    #000 91%,
    transparent 100%
  );
}

.trust-orbit::before {
  width: min(54vw, 620px);
  border-color: rgba(143, 232, 255, 0.13);
}

.trust-orbit::after {
  width: min(34vw, 410px);
  border-color: rgba(199, 154, 69, 0.16);
}

.orbit-core {
  display: none;
}

.orbit-ring,
.orbit-ring-two,
.orbit-ring-three {
  position: relative;
  inset: auto;
  z-index: 4;
  display: flex;
  width: max-content;
  min-width: 130%;
  gap: 14px;
  padding: 0 0 0 5%;
  animation: trust-wheel-drift 34s linear infinite;
}

.orbit-ring-two {
  z-index: 5;
  animation-name: trust-wheel-drift-reverse;
  animation-duration: 40s;
  transform: translateX(-12%);
}

.orbit-ring-three {
  z-index: 3;
  opacity: 0.82;
  animation-duration: 46s;
}

.orbit-ring > span,
.orbit-ring-one .brand-chip,
.orbit-ring-two > span,
.orbit-ring-three > span {
  position: relative;
  left: auto;
  top: auto;
  width: clamp(168px, 14vw, 236px);
  min-width: clamp(168px, 14vw, 236px);
  height: clamp(74px, 7vw, 104px);
  transform: none;
}

.orbit-ring-two > span {
  width: clamp(142px, 12vw, 198px);
  min-width: clamp(142px, 12vw, 198px);
  height: clamp(62px, 6vw, 86px);
}

.orbit-ring-three > span {
  width: clamp(158px, 13vw, 220px);
  min-width: clamp(158px, 13vw, 220px);
  height: 54px;
}

.orbit-ring-one {
  margin-top: 4px;
}

.orbit-ring-three {
  margin-bottom: 4px;
}

@keyframes trust-wheel-drift {
  from {
    transform: translate3d(-4%, 0, 0);
  }

  to {
    transform: translate3d(-28%, 0, 0);
  }
}

@keyframes trust-wheel-drift-reverse {
  from {
    transform: translate3d(-24%, 0, 0);
  }

  to {
    transform: translate3d(-2%, 0, 0);
  }
}

@media (max-width: 960px) {
  .trust-orbit {
    padding: 26px;
  }

  .orbit-ring,
  .orbit-ring-two,
  .orbit-ring-three {
    min-width: 0;
    padding: 0;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring,
  .orbit-ring-two,
  .orbit-ring-three {
    animation: none;
  }
}

/* Final authority tightening */
.brand-mark {
  width: 58px;
  height: 58px;
  border-width: 1px;
  background:
    radial-gradient(circle at 25% 34%, #8fe8ff 0 3px, transparent 4px),
    radial-gradient(circle at 58% 22%, #6fffd2 0 2.8px, transparent 3.8px),
    radial-gradient(circle at 72% 62%, #c79a45 0 3px, transparent 4px),
    radial-gradient(circle at 38% 72%, #8fe8ff 0 2.8px, transparent 3.8px),
    linear-gradient(
      18deg,
      transparent 0 45%,
      rgba(127, 228, 255, 0.3) 46% 48%,
      transparent 49%
    ),
    linear-gradient(
      105deg,
      transparent 0 38%,
      rgba(111, 255, 210, 0.22) 39% 41%,
      transparent 42%
    ),
    radial-gradient(
      circle at 50% 48%,
      rgba(33, 107, 146, 0.98) 0 42%,
      rgba(5, 20, 31, 1) 62%,
      #02070c 100%
    );
  box-shadow:
    0 0 0 7px rgba(127, 228, 255, 0.04),
    0 0 36px rgba(105, 215, 255, 0.28),
    inset 0 0 30px rgba(127, 228, 255, 0.2);
}

.brand-mark::before {
  inset: 11px;
  border-width: 1.5px;
}

.brand-mark::after {
  inset: -4px 7px;
  border-width: 1.5px;
}

.trusted-logo-section h2 {
  max-width: 900px;
}

.orbit-ring-three {
  display: none !important;
}

.orbit-ring,
.orbit-ring-two {
  min-width: 118%;
}

.orbit-ring > span,
.orbit-ring-one .brand-chip,
.orbit-ring-two > span {
  height: clamp(82px, 7.4vw, 112px);
}

.reel-track video {
  content-visibility: auto;
}

/* Premium launch page rebuild */
.launch-hero-premium {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  min-height: auto;
  padding: clamp(70px, 7vw, 104px) clamp(22px, 4vw, 56px)
    clamp(58px, 7vw, 96px);
  overflow: hidden;
  border-bottom: 1px solid rgba(194, 230, 255, 0.12);
  background:
    radial-gradient(
      circle at 74% 38%,
      rgba(143, 232, 255, 0.12),
      transparent 28rem
    ),
    radial-gradient(
      circle at 12% 80%,
      rgba(111, 255, 210, 0.055),
      transparent 26rem
    ),
    linear-gradient(180deg, #031018 0%, #071824 54%, #030b12 100%);
}

.launch-hero-premium::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(194, 230, 255, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(194, 230, 255, 0.028) 1px, transparent 1px);
  background-size: 74px 74px;
  content: "";
}

.launch-copy,
.launch-command-card {
  position: relative;
  z-index: 1;
}

.launch-copy h1 {
  max-width: 1000px;
  margin: 0 0 22px;
  color: #f4fbff;
  font-size: clamp(3.6rem, 7vw, 7.8rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.launch-copy .hero-sub {
  max-width: 760px;
  color: #b7c9d6;
  font-size: clamp(1.05rem, 1.4vw, 1.34rem);
  line-height: 1.5;
}

.launch-command-card {
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(143, 232, 255, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 70% 0%,
      rgba(143, 232, 255, 0.16),
      transparent 52%
    ),
    rgba(8, 29, 43, 0.88);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.command-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a9bdca;
  font-size: 0.84rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.command-top b {
  color: #8fe8ff;
}

.launch-meter {
  margin: clamp(34px, 5vw, 58px) 0 28px;
}

.launch-meter strong {
  display: block;
  color: #f4fbff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.launch-meter span {
  color: #8fe8ff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.launch-signal-grid div,
.launch-system-grid article,
.launch-tier-grid article {
  border: 1px solid rgba(194, 230, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(5, 18, 28, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.launch-signal-grid div {
  min-height: 120px;
  padding: 18px;
}

.launch-signal-grid span,
.launch-system-grid span,
.launch-tier-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(143, 232, 255, 0.24);
  border-radius: 50%;
  color: #8fe8ff;
  font-size: 0.72rem;
  font-weight: 900;
}

.launch-signal-grid b {
  display: block;
  margin-top: 16px;
  color: #f4fbff;
  font-size: clamp(1rem, 1.2vw, 1.24rem);
  line-height: 1.1;
}

.launch-thesis {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
  border-bottom: 1px solid rgba(194, 230, 255, 0.1);
}

.launch-thesis h2,
.launch-tiers h2,
.launch-final-cta h2 {
  max-width: 850px;
}

.launch-thesis-copy {
  display: grid;
  gap: 16px;
  color: #b7c9d6;
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  line-height: 1.58;
}

.launch-example-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  border-top: 1px solid rgba(194, 230, 255, 0.1);
  border-bottom: 1px solid rgba(194, 230, 255, 0.1);
  background:
    radial-gradient(circle at 74% 48%, rgba(143, 232, 255, 0.11), transparent 24rem),
    rgba(255, 255, 255, 0.012);
}

.launch-example-copy h2 {
  max-width: 850px;
}

.launch-example-copy p:not(.eyebrow) {
  max-width: 760px;
  color: #b7c9d6;
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  line-height: 1.58;
}

.launch-video-proof {
  position: relative;
  overflow: hidden;
  width: min(100%, 520px);
  margin: 0;
  justify-self: end;
  border: 1px solid rgba(143, 232, 255, 0.24);
  border-radius: 26px;
  background: #02070c;
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.34),
    0 0 60px rgba(105, 215, 255, 0.11);
}

.launch-video-proof video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #02070c;
}

.launch-video-proof figcaption {
  display: grid;
  gap: 5px;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(194, 230, 255, 0.11);
  background: rgba(3, 11, 18, 0.9);
}

.launch-video-proof span {
  color: #8fe8ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-video-proof strong {
  color: #f4fbff;
  font-size: 1rem;
  line-height: 1.35;
}

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

.launch-system-grid article,
.launch-tier-grid article {
  min-height: 250px;
  padding: clamp(18px, 2.2vw, 26px);
}

.launch-system-grid h3,
.launch-tier-grid h3 {
  margin: 24px 0 10px;
  color: #f4fbff;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  letter-spacing: -0.04em;
}

.launch-system-grid p,
.launch-tier-grid p {
  color: #a9bdca;
  line-height: 1.48;
}

.launch-tiers {
  border-top: 1px solid rgba(194, 230, 255, 0.1);
  border-bottom: 1px solid rgba(194, 230, 255, 0.1);
}

.launch-tier-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.launch-tier-grid strong {
  display: block;
  margin-bottom: 14px;
  color: #8fe8ff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(
      circle at 78% 30%,
      rgba(143, 232, 255, 0.12),
      transparent 24rem
    ),
    rgba(255, 255, 255, 0.012);
}

@media (max-width: 1040px) {
  .launch-hero-premium,
  .launch-thesis,
  .launch-example-section,
  .launch-final-cta {
    grid-template-columns: 1fr;
  }

  .launch-video-proof {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .launch-system-grid,
  .launch-tier-grid,
  .launch-signal-grid {
    grid-template-columns: 1fr;
  }
}

/* Detail audit pass: remove stale visual noise and normalize the premium system */
:root {
  --black: #030b12;
  --black-2: #071824;
  --panel: #061722;
  --panel-2: #0a2132;
  --ivory: #f4fbff;
  --muted: #a9bdca;
  --muted-2: #748b9a;
  --line: rgba(194, 230, 255, 0.12);
  --line-strong: rgba(143, 232, 255, 0.28);
  --gold: #c79a45;
  --green: #6fffd2;
  --red: #ff5d5d;
}

body {
  background:
    radial-gradient(circle at 74% 10%, rgba(105, 215, 255, 0.1), transparent 34rem),
    radial-gradient(circle at 18% 72%, rgba(111, 255, 210, 0.055), transparent 28rem),
    linear-gradient(180deg, #030b12 0%, #071824 48%, #030b12 100%);
}

.section {
  padding-block: clamp(64px, 8vw, 112px);
}

.site-header {
  gap: 18px;
  backdrop-filter: blur(18px);
}

.nav {
  max-width: 100%;
}

.nav a:last-child {
  color: #a9bdca;
  background: transparent;
  box-shadow: none;
}

.nav .nav-cta,
.nav .nav-cta:last-child {
  color: #06121c !important;
  background: linear-gradient(180deg, #9becff, #58c7f1);
  box-shadow: 0 10px 28px rgba(105, 215, 255, 0.18);
}

.button,
.application .button,
.pricing-card .button,
.brief-actions .button {
  min-height: 48px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.button.primary,
.application .button.primary {
  border-color: rgba(143, 232, 255, 0.78);
  color: #031018;
  background: linear-gradient(180deg, #a4eeff, #56c4ee);
}

.button.secondary {
  border-color: rgba(194, 230, 255, 0.18);
  color: #e7f7ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.018);
}

.hero-actions {
  align-items: center;
  gap: 12px;
}

.prestige-hero {
  min-height: clamp(680px, 82vh, 900px);
}

.prestige-copy h1,
.pitch-hero h1,
.launch-copy h1 {
  text-wrap: balance;
}

.prestige-copy p:not(.eyebrow),
.pitch-hero p,
.launch-copy .hero-sub,
.trusted-subcopy,
.section-heading p,
.apply-copy p {
  text-wrap: pretty;
}

.market-logo-wall {
  padding-block: clamp(42px, 6vw, 78px);
}

.fund-chip {
  justify-content: center;
  border-radius: 999px;
  letter-spacing: -0.02em;
}

.fund-chip::before {
  display: none;
}

.fund-chip img {
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: 14px;
}

.proof-logo-belt {
  margin-bottom: clamp(24px, 4vw, 44px);
}

.proof-logo-row span {
  border-radius: 18px;
}

.proof-logo-row img {
  max-width: 76%;
  max-height: 46px;
}

.trust-orbit {
  min-height: clamp(300px, 29vw, 390px);
  margin-top: clamp(18px, 3vw, 32px);
  border-color: rgba(194, 230, 255, 0.09);
  border-radius: 30px;
}

.orbit-ring,
.orbit-ring-two {
  min-width: 126%;
}

.orbit-ring > span,
.orbit-ring-one .brand-chip,
.orbit-ring-two > span {
  min-width: clamp(176px, 14vw, 238px);
  height: clamp(76px, 6.6vw, 98px);
  border-radius: 18px;
}

.logo-img-chip {
  gap: 10px;
  justify-content: center !important;
  padding-inline: 16px !important;
  color: #f7fcff;
  letter-spacing: -0.035em;
}

.logo-img-chip img {
  width: 36px;
  height: 36px;
  padding: 5px;
  border-radius: 12px;
}

.target-room-grid article,
.offer-flow-grid article,
.targeting-grid article,
.market-notes-grid article,
.pricing-card,
.brief-download-card,
.application,
.operator-screenshot-shell,
.calendly-shell {
  border-color: rgba(194, 230, 255, 0.16);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.target-room-grid article {
  min-height: 150px;
  padding: 20px;
}

.target-room-grid span {
  margin-bottom: 20px;
}

.operator-dashboard-section,
.x-funnel-section,
.market-notes-section {
  gap: clamp(30px, 5vw, 72px);
}

.operator-proof-tags span {
  border-color: rgba(143, 232, 255, 0.18);
  color: #d8f3ff;
  background: rgba(143, 232, 255, 0.045);
}

.operator-proof-tags img {
  background: rgba(247, 252, 255, 0.98);
}

.operator-screenshot-shell img {
  min-height: 360px;
  object-fit: contain;
}

.market-notes-grid p {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 780;
  letter-spacing: -0.04em;
}

.system-steps,
.x-funnel-console,
.launch-command-card {
  border-radius: 28px;
}

.system-steps article,
.x-funnel-row,
.launch-signal-grid div,
.launch-system-grid article,
.launch-tier-grid article {
  border-radius: 18px;
}

.brief-download-card {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.brief-download-actions {
  grid-column: 1 / -1;
  justify-content: flex-start;
  min-width: 0;
}

input,
select,
textarea {
  border-radius: 12px;
  background: rgba(3, 13, 20, 0.76);
}

.reel-track {
  animation-timing-function: linear !important;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.reel-track video {
  background: #02070c;
  transform: translateZ(0);
}

.clip-wall-section .reel-track,
.clipping-reels-section .reel-track {
  animation-duration: 34s !important;
}

.reel-chain.compact .reel-track {
  animation-duration: 28s !important;
}

.reel-track article > span {
  display: none !important;
}

.site-footer {
  border-top-color: rgba(194, 230, 255, 0.14);
}

@media (max-width: 960px) {
  .prestige-hero {
    min-height: auto;
  }

  .trust-orbit {
    mask-image: none;
  }

  .orbit-ring,
  .orbit-ring-two {
    width: 100%;
    min-width: 0;
    animation: none;
  }

  .orbit-ring > span,
  .orbit-ring-one .brand-chip,
  .orbit-ring-two > span {
    min-width: min(100%, 210px);
  }
}

@media (max-width: 640px) {
  .hero-actions .button,
  .brief-download-actions .button {
    width: 100%;
  }

  .fund-chip {
    min-width: 170px;
    height: 64px;
  }
}
