:root {
  --ink: #0f172a;
  --ink-soft: #1c2940;
  --dark: #0d1017;
  --dark-panel: #151c2c;
  --dark-border: #2a3650;
  --paper: #ffffff;
  --canvas: #f8fafc;
  --soft: #edf2f6;
  --border: #dce5ee;
  --body: #425069;
  --muted: #69778c;
  --accent: #00CCB9;
  --accent-dark: #00CCB9;
  --accent-ink: #07110f;
  --blue: #4f7cff;
  --amber: #f0b84b;
  --green: #2ecf8e;
  --content: 1180px;
  --nav-height: 72px;
  --font-display: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "DM Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a,
summary,
input,
select {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--accent-dark);
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--content), calc(100% - 96px));
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 48px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

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

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-actions,
.nav-links,
.button-row {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 28px;
}

.nav-links {
  gap: 26px;
}

.nav-menu-toggle {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.nav-menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.button-small {
  min-height: 40px;
  padding: 10px 20px;
  font-size: 13px;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: var(--ink-soft);
}

.button-teal {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-teal:hover {
  background: #00CCB9;
}

.button-text {
  padding-inline: 14px;
  background: transparent;
  color: var(--ink);
  clip-path: none;
}

.button-text:hover {
  color: var(--accent-dark);
}

.hero {
  padding: 132px 0 78px;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 72px;
}

.hero-message {
  min-width: 0;
}

.hero-journey {
  width: calc(100% + 56px);
  margin: 0 -56px 0 0;
}

.hero-journey-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 28px 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-journey-heading strong {
  color: var(--ink);
}

.hero-journey img {
  display: block;
  width: 100%;
  height: auto;
}

.journey-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(180px, 1.35fr);
  margin: -8px 28px 0;
  border-top: 1px solid var(--border);
}

.journey-proof > div {
  min-width: 0;
  padding: 13px 14px;
  border-right: 1px solid var(--border);
}

.journey-proof > div:first-child {
  padding-left: 0;
}

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

.journey-proof strong,
.journey-proof span {
  display: block;
}

.journey-proof strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.journey-proof span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.journey-proof-feature {
  background: rgba(0, 204, 185, 0.12);
}

.journey-proof .journey-proof-feature strong {
  font-size: 13px;
  line-height: 1.15;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  margin-right: 10px;
  background: var(--accent);
  vertical-align: middle;
}

.hero h1,
h2,
.managed-band h2,
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 82px;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
}

.accent-text,
h2 span {
  color: var(--accent-dark);
}

.hero-description {
  max-width: 570px;
  margin-top: 28px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.7;
}

.hero-promise {
  margin-top: 16px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.button-row {
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  list-style: none;
}

.hero-signals li {
  min-width: 0;
  padding-right: 14px;
}

.hero-signals li + li {
  padding-left: 14px;
  border-left: 1px solid var(--border);
}

.hero-signals strong,
.hero-signals span {
  display: block;
}

.hero-signals strong {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-signals span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.product-stage {
  min-width: 0;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: 6px;
}

.product-stage-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ced9e4;
}

.product-stage-heading span,
.product-stage-heading strong {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-stage-heading span {
  color: var(--muted);
}

.product-stage-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 170px;
  align-items: center;
  gap: 22px;
}

.phone-device {
  width: min(370px, 100%);
  margin-inline: auto;
  padding: 12px;
  border: 1px solid #27344c;
  border-radius: 30px;
  background: var(--dark);
  box-shadow: 0 26px 48px rgba(15, 23, 42, 0.18);
}

.phone-speaker {
  width: 54px;
  height: 5px;
  margin: 1px auto 9px;
  border-radius: 99px;
  background: #3a465a;
}

.phone-screen {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: var(--canvas);
}

.inventory-header {
  padding: 17px;
  background: var(--dark);
  color: #f8fafc;
}

.inventory-brand {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.inventory-header h2 {
  margin-top: 5px;
  color: #f8fafc;
  font-size: 23px;
  line-height: 1.02;
}

.inventory-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.inventory-contact span {
  padding: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.inventory-list {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.inventory-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}

.inventory-card img {
  width: 82px;
  height: 68px;
  border-radius: 4px;
  background: #dce5ee;
  object-fit: cover;
}

.inventory-meta {
  min-width: 0;
}

.inventory-meta h3 {
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.inventory-meta > strong {
  display: block;
  margin: 3px 0 7px;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1;
}

.inventory-buttons {
  display: flex;
  gap: 5px;
}

.inventory-buttons span {
  min-width: 0;
  flex: 1;
  padding: 5px 3px;
  border: 1px solid var(--border);
  color: #4f5e72;
  font-size: 8px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.product-proof {
  display: grid;
  align-content: center;
  gap: 0;
}

.product-proof > div {
  padding: 16px 0;
  border-bottom: 1px solid #cbd6e1;
}

.product-proof strong,
.product-proof span {
  display: block;
}

.product-proof strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.product-proof span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-proof .product-proof-feature {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(0, 204, 185, 0.28);
  background: rgba(0, 204, 185, 0.12);
}

.product-proof-feature strong {
  font-size: 15px;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-proof-feature span {
  color: #334155;
  font-size: 11px;
  line-height: 1.4;
  text-transform: none;
}

.section {
  padding: 108px 0;
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

.section-system,
.section-process,
.section-industries,
.section-faq {
  background: var(--paper);
}

.section-system {
  padding-block: 84px;
}

.section-soft,
.section-contact {
  background: var(--soft);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: end;
  gap: 72px;
}

.section-system .split-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 56px;
}

.section-system .split-heading h2 {
  max-width: 720px;
  font-size: 46px;
}

.section-system .split-heading > p {
  max-width: 440px;
}

h2 {
  font-size: 52px;
  line-height: 1.02;
}

.split-heading > p,
.ownership-intro,
.managed-intro > p:last-child,
.conversion-copy > p,
.faq-heading > p:last-child {
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
}

.system-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1.05fr) 52px minmax(0, 0.86fr);
  align-items: center;
  gap: 0;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.system-stage {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto;
  align-self: center;
}

.stage-number {
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.stage-label {
  margin: 5px 0 18px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

.system-connector {
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
}

.social-ad,
.inventory-window {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}

.social-network-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
}

.social-network-bar strong {
  color: #0866ff;
  font-family: Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

.social-network-bar span,
.social-post-menu {
  color: var(--muted);
  font-size: 16px;
  font-weight: 900;
}

.listing-page-preview {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.listing-page-preview > img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}

.social-ad-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.social-ad-header > div {
  min-width: 0;
  flex: 1;
}

.social-post-menu {
  margin-left: auto;
}

.social-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
}

.social-ad-header strong,
.social-ad-header span {
  display: block;
}

.social-ad-header strong {
  font-size: 13px;
}

.social-ad-header span {
  color: var(--muted);
  font-size: 10px;
}

.social-ad img {
  width: 100%;
  height: 420px;
  background: var(--dark);
  object-fit: contain;
}

.social-ad .social-post-copy {
  padding: 0 12px 12px;
  color: var(--body);
  font-size: 11px;
  line-height: 1.45;
}

.social-ad-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #e4e6eb;
  color: #1c1e21;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.social-link-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #f0f2f5;
}

.social-link-preview small,
.social-link-preview strong,
.social-link-preview div > span {
  display: block;
}

.social-link-preview small {
  color: #65676b;
  font-size: 8px;
}

.social-link-preview strong {
  margin-top: 2px;
  font-size: 12px;
}

.social-link-preview div > span {
  margin-top: 2px;
  color: #65676b;
  font-size: 9px;
}

.social-engagement,
.social-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #65676b;
  font-size: 9px;
}

.social-engagement {
  padding: 8px 12px;
}

.social-actions {
  margin-inline: 12px;
  padding: 7px 4px;
  border-top: 1px solid #ced0d4;
}

.social-actions span {
  flex: 1;
  font-weight: 700;
  text-align: center;
}

.inventory-window-header {
  padding: 15px;
  background: var(--dark);
  color: #fff;
}

.inventory-window-header span,
.inventory-window-header strong {
  display: block;
}

.inventory-window-header span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.inventory-window-header strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
}

.inventory-list.compact {
  gap: 7px;
  padding: 9px;
}

.compact .inventory-card {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 8px;
  padding: 7px;
}

.compact .inventory-card img {
  width: 64px;
  height: 55px;
}

.compact .inventory-meta h3 {
  font-size: 10px;
}

.compact .inventory-meta > strong {
  margin-bottom: 0;
  font-size: 14px;
}

.compact .inventory-buttons {
  display: none;
}

.buyer-actions {
  display: grid;
  grid-template-rows: repeat(3, 168px);
  gap: 9px;
}

.buyer-actions span {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 40px 15px 15px;
  border: 1px solid rgba(0, 204, 185, 0.28);
  background: rgba(0, 204, 185, 0.09);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.buyer-actions span::after {
  content: ">";
  position: absolute;
  right: 15px;
  color: var(--accent-dark);
}

.system-summary {
  max-width: 800px;
  margin: 44px auto 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: start;
  gap: 72px;
}

.path-comparison {
  padding: 36px;
  border-radius: 6px;
  background: var(--dark);
  color: #f8fafc;
}

.path-comparison .eyebrow,
.section-results .eyebrow,
.section-offer .eyebrow,
.managed-band .eyebrow {
  color: var(--accent);
}

.path-comparison h2 {
  max-width: 590px;
  font-size: 42px;
}

.route {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #2b374d;
}

.route-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.route-heading strong {
  font-size: 13px;
  text-transform: uppercase;
}

.route-heading span {
  color: #8f9bad;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.route-typical .route-heading strong {
  color: #c4cdda;
}

.route-weekly .route-heading strong,
.route-weekly .route-heading span {
  color: var(--accent);
}

.route ol {
  display: flex;
  align-items: stretch;
  gap: 18px;
  list-style: none;
}

.route li {
  position: relative;
  min-width: 0;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 11px 8px;
  border: 1px solid #344056;
  color: #cbd5e1;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.route li:not(:last-child)::after {
  content: ">";
  position: absolute;
  left: calc(100% + 6px);
  color: #758198;
}

.route-weekly li {
  border-color: rgba(0, 204, 185, 0.42);
  background: rgba(0, 204, 185, 0.09);
  color: #effffc;
  font-size: 12px;
}

.route-weekly li:not(:last-child)::after {
  color: var(--accent);
}

.route-takeaway {
  margin-top: 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ownership {
  padding-top: 8px;
}

.ownership h2 {
  font-size: 46px;
}

.ownership-intro {
  margin-top: 18px;
}

.ownership-feature {
  margin-top: 30px;
  padding: 20px;
  border-left: 5px solid var(--accent-dark);
  background: #fff;
}

.ownership-feature strong,
.ownership-feature span {
  display: block;
}

.ownership-feature strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.ownership-feature span {
  margin-top: 4px;
  color: var(--body);
  font-size: 13px;
}

.ownership-list {
  margin-top: 16px;
}

.ownership-list > div {
  padding: 17px 0;
  border-bottom: 1px solid #cfd9e3;
}

.ownership-list dt {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ownership-list dd {
  margin-top: 4px;
  color: var(--body);
  font-size: 13px;
  line-height: 1.55;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 62px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.process-steps li {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 34px 28px;
}

.process-steps li + li {
  border-left: 1px solid var(--border);
}

.process-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
}

.process-steps h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-steps p {
  margin-top: 8px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.65;
}

.managed-band {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 64px;
  margin-top: 64px;
  padding: 44px;
  background: var(--dark);
  color: #f8fafc;
}

.managed-band h2 {
  font-size: 38px;
  line-height: 1.05;
}

.managed-intro > p:last-child {
  margin-top: 14px;
  color: #b9c3d1;
  font-size: 14px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--dark-border);
  list-style: none;
}

.capability-list li {
  position: relative;
  padding: 14px 10px 14px 24px;
  border-bottom: 1px solid var(--dark-border);
  color: #dce4ee;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 20px;
  width: 8px;
  height: 3px;
  background: var(--accent);
}

.section-results {
  background: var(--dark);
  color: #f8fafc;
}

.split-heading-dark > p {
  color: #bac5d3;
}

.split-heading-dark h2 span {
  color: var(--accent);
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(300px, 4fr);
  align-items: stretch;
  gap: 28px;
  margin-top: 62px;
}

.dashboard {
  padding: 26px;
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  background: var(--dark-panel);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--dark-border);
}

.dashboard-header span,
.dashboard-header strong {
  display: block;
}

.dashboard-header span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-header strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 21px;
  text-transform: uppercase;
}

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

.metric {
  min-width: 0;
  padding: 18px;
  border: 1px solid #2b3851;
  border-radius: 5px;
  background: #101624;
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.metric span {
  margin-top: 7px;
  color: #aeb9c8;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.metric i {
  display: block;
  width: 58%;
  height: 3px;
  margin-top: 16px;
  background: var(--accent);
}

.metric:nth-child(2) i,
.metric:nth-child(5) i {
  width: 44%;
  background: var(--blue);
}

.metric:nth-child(3) i,
.metric:nth-child(6) i {
  width: 72%;
  background: var(--green);
}

.metric:nth-child(4) i {
  width: 36%;
  background: var(--amber);
}

.dashboard-note {
  margin-top: 20px;
  color: #aeb9c8;
  font-size: 12px;
  line-height: 1.55;
}

.refresh-panel {
  padding: 28px;
  border-top: 4px solid var(--accent);
  background: #111827;
}

.refresh-panel h3 {
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.refresh-panel > p:not(.eyebrow) {
  margin-top: 12px;
  color: #aeb9c8;
  font-size: 13px;
  line-height: 1.65;
}

.refresh-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 25px;
  padding-left: 21px;
  list-style: none;
}

.refresh-timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  bottom: 12px;
  width: 2px;
  background: var(--dark-border);
}

.refresh-timeline li {
  position: relative;
  padding: 0 0 21px;
}

.refresh-timeline li::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 5px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #111827;
}

.refresh-timeline span,
.refresh-timeline strong {
  display: block;
}

.refresh-timeline span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.refresh-timeline strong {
  margin-top: 3px;
  font-size: 12px;
}

.refresh-promise {
  padding: 16px;
  border: 1px solid rgba(0, 204, 185, 0.38);
  background: rgba(0, 204, 185, 0.09);
}

.refresh-promise strong,
.refresh-promise span {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.refresh-promise span {
  color: var(--accent);
}

.speed-strip {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--dark-border);
}

.speed-strip strong {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
}

.speed-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(0, 204, 185, 0.4);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.speed-strip p {
  color: #9ca8b8;
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.industry-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}

.industry-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.industry-card h3 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.industry-active {
  border-color: rgba(0, 204, 185, 0.45);
  border-top: 5px solid var(--accent);
}

.industry-active span {
  color: var(--accent-dark);
}

.section-offer {
  padding: 88px 0;
  background: var(--ink-soft);
  color: #f8fafc;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: 86px;
}

.offer-grid h2 {
  max-width: 720px;
}

.offer-grid > div:first-child > p:last-child {
  max-width: 680px;
  margin-top: 20px;
  color: #bac5d3;
  font-size: 16px;
  line-height: 1.72;
}

.offer-details {
  padding-left: 38px;
  border-left: 1px solid #3a4760;
}

.offer-details h3 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-details > p {
  margin-top: 9px;
  color: #bac5d3;
  font-size: 14px;
  line-height: 1.6;
}

.offer-details ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 26px;
  border-top: 1px solid #3a4760;
  list-style: none;
}

.offer-details li {
  position: relative;
  padding: 12px 8px 12px 20px;
  border-bottom: 1px solid #3a4760;
  color: #dce4ee;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-details li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 17px;
  width: 8px;
  height: 3px;
  background: var(--accent);
}

.conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: start;
  gap: 80px;
}

.conversion-copy {
  padding-top: 12px;
}

.conversion-copy h2 {
  font-size: 48px;
}

.conversion-copy > p:not(.eyebrow) {
  margin-top: 20px;
}

.next-steps {
  margin-top: 34px;
  border-top: 1px solid #ccd7e2;
  list-style: none;
}

.next-steps li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #ccd7e2;
}

.next-steps span {
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
}

.next-steps strong {
  font-size: 12px;
  text-transform: uppercase;
}

.form-panel {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.form-heading {
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.form-heading span,
.success-state > span {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-heading h3,
.success-state h3 {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbd6e2;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
}

.field input:focus,
.field select:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(0, 204, 185, 0.12);
  outline: none;
}

.form-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border: 0;
  background: var(--ink);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-submit:hover {
  background: var(--ink-soft);
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.success-state {
  display: none;
  padding: 42px 10px;
  text-align: center;
}

.success-state.active {
  display: block;
}

.success-state p {
  max-width: 420px;
  margin: 9px auto 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.6;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  align-items: start;
  gap: 80px;
}

.faq-heading {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
}

.faq-heading h2 {
  font-size: 45px;
}

.faq-heading > p:last-child {
  margin-top: 17px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 21px 46px 21px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 690px;
  padding: 0 46px 22px 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  padding: 66px 0;
  background: var(--accent);
  color: var(--accent-ink);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.final-cta h2 {
  max-width: 820px;
  font-size: 45px;
  line-height: 1.03;
}

.final-cta p {
  margin-top: 9px;
  color: rgba(7, 17, 15, 0.72);
  font-size: 15px;
}

.site-footer {
  padding: 42px 0 28px;
  background: var(--dark);
  color: #f8fafc;
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  display: inline-flex;
  width: 132px;
  flex: 0 0 132px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #9ba7b8;
  font-size: 12px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-border);
}

.footer-bottom span {
  color: #7f8a9c;
  font-size: 11px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-contact a {
  color: #9ba7b8;
  font-size: 11px;
}

.footer-contact a:hover {
  color: #fff;
}

.js .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .hero-grid {
    gap: 48px;
  }

  .hero h1 {
    font-size: 70px;
  }

  .product-stage-grid {
    grid-template-columns: minmax(270px, 1fr) 145px;
    gap: 16px;
  }

  .why-grid,
  .split-heading,
  .offer-grid {
    gap: 52px;
  }

  .route ol {
    gap: 15px;
  }

  .route li:not(:last-child)::after {
    left: calc(100% + 4px);
  }
}

@media (max-width: 1020px) {
  .container {
    width: min(820px, calc(100% - 64px));
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding-inline: 32px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 16px 10px;
    text-align: center;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-grid,
  .why-grid,
  .conversion-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-system .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .section-system .split-heading > p {
    max-width: 680px;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-message {
    max-width: 680px;
  }

  .hero-journey {
    width: 100%;
    margin: 0;
  }

  .journey-proof {
    margin-inline: 18px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .product-stage {
    width: 100%;
  }

  .product-stage-grid {
    grid-template-columns: minmax(290px, 1fr) 200px;
  }

  .system-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .system-stage {
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .buyer-actions {
    grid-template-rows: repeat(3, 92px);
  }

  .system-connector {
    min-height: 54px;
  }

  .system-connector span {
    transform: rotate(90deg);
  }

  .social-ad img {
    height: 540px;
  }

  .path-comparison,
  .ownership {
    width: 100%;
  }

  .ownership {
    max-width: 680px;
  }

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

  .process-steps li + li {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .managed-band {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .refresh-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr);
    gap: 10px 44px;
  }

  .refresh-panel .eyebrow,
  .refresh-panel h3,
  .refresh-panel > p {
    grid-column: 1;
  }

  .refresh-timeline {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin-top: 0;
  }

  .refresh-promise {
    grid-column: 1;
  }

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

  .conversion-copy {
    max-width: 680px;
  }

  .faq-heading {
    position: static;
    max-width: 680px;
  }

  .site-footer {
    padding-top: 36px;
  }

  .footer-main {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo {
    width: 110px;
    flex-basis: 110px;
  }

  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 24px;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 66px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .site-nav {
    min-height: var(--nav-height);
    gap: 8px;
    padding: 10px 20px;
  }

  .brand {
    width: 130px;
    flex-basis: 130px;
  }

  .button-small {
    min-height: 38px;
    max-width: 110px;
    padding: 9px 10px;
    font-size: 12px;
  }

  .nav-links {
    grid-template-columns: 1fr;
    padding: 8px 20px 14px;
  }

  .nav-links a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }

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

  .hero {
    padding: 105px 0 58px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-promise {
    font-size: 17px;
  }

  .button-row .button {
    flex: 1 1 100%;
  }

  .hero-signals {
    margin-top: 28px;
  }

  .hero-signals strong {
    font-size: 10px;
  }

  .hero-signals span {
    font-size: 10px;
  }

  .hero-journey-heading {
    padding-inline: 10px;
  }

  .journey-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 10px;
  }

  .journey-proof > div,
  .journey-proof > div:first-child {
    padding: 12px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .journey-proof > div:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .journey-proof > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .product-stage {
    padding: 16px;
  }

  .product-stage-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .product-stage-grid {
    grid-template-columns: 1fr;
  }

  .phone-device {
    width: min(350px, 100%);
  }

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

  .product-proof > div {
    padding: 13px 10px;
    border-right: 1px solid #cbd6e1;
    border-bottom: 0;
  }

  .product-proof > div:nth-child(3) {
    border-right: 0;
  }

  .product-proof strong {
    font-size: 19px;
  }

  .product-proof span {
    font-size: 9px;
  }

  .product-proof .product-proof-feature {
    grid-column: 1 / -1;
    margin-top: 12px;
    border-right: 1px solid rgba(0, 204, 185, 0.28);
  }

  .section {
    padding: 76px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  h2 {
    font-size: 38px;
  }

  .section-system .split-heading h2 {
    font-size: 38px;
  }

  .system-flow,
  .process-steps {
    margin-top: 42px;
  }

  .social-ad img {
    height: 440px;
  }

  .system-summary {
    margin-top: 34px;
    text-align: left;
  }

  .path-comparison {
    padding: 26px 20px;
  }

  .path-comparison h2,
  .ownership h2,
  .conversion-copy h2,
  .faq-heading h2 {
    font-size: 36px;
  }

  .route ol {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .route li {
    min-height: 42px;
    font-size: 11px;
  }

  .route li:not(:last-child)::after {
    content: "\2193";
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%);
  }

  .process-steps li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 26px 0;
  }

  .process-number {
    width: 42px;
    height: 42px;
  }

  .managed-band {
    margin-top: 48px;
    padding: 28px 22px;
  }

  .managed-band h2 {
    font-size: 32px;
  }

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

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

  .metric strong {
    font-size: 29px;
  }

  .refresh-panel {
    display: block;
    padding: 24px;
  }

  .refresh-timeline {
    margin-top: 24px;
  }

  .speed-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .speed-strip span {
    width: fit-content;
  }

  .speed-strip p {
    text-align: left;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .offer-details {
    padding-top: 32px;
    padding-left: 0;
    border-top: 1px solid #3a4760;
    border-left: 0;
  }

  .form-panel {
    padding: 26px 20px;
  }

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

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

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

  .final-cta h2 {
    font-size: 36px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    padding: 32px 0 24px;
  }

  .footer-main {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 28px;
  }

  .footer-logo {
    width: 104px;
    flex-basis: auto;
  }

  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--dark-border);
  }

  .footer-links a {
    min-width: 0;
    padding: 13px 10px 13px 0;
    border-bottom: 1px solid var(--dark-border);
    font-size: 12px;
  }

  .footer-links a:nth-child(even) {
    padding-left: 14px;
    border-left: 1px solid var(--dark-border);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-signals {
    grid-template-columns: 1fr;
  }

  .hero-signals li,
  .hero-signals li + li {
    padding: 10px 0;
    border-left: 0;
    border-bottom: 1px solid var(--border);
  }

  .inventory-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .inventory-card img {
    width: 76px;
  }

  .inventory-header h2 {
    font-size: 20px;
  }

  .product-proof {
    grid-template-columns: 1fr 1fr;
  }

  .product-proof > div:nth-child(2) {
    border-right: 0;
  }

  .product-proof > div:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid #cbd6e1;
  }

  h2,
  .path-comparison h2,
  .ownership h2,
  .conversion-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .dashboard {
    padding: 20px 14px;
  }

  .dashboard-header {
    flex-direction: column;
  }

  .metric {
    padding: 14px 10px;
  }

  .metric strong {
    font-size: 25px;
  }

  .industry-grid,
  .offer-details ul {
    grid-template-columns: 1fr;
  }
}

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

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

  .js .fade-in {
    opacity: 1;
    transform: none;
  }
}
