:root {
  --bg: #080d11;
  --bg-soft: #0b1118;
  --surface: #111827;
  --surface-2: #1f2937;
  --surface-3: #121a24;
  --text: #ffffff;
  --muted: #9aa5b5;
  --muted-2: #6f7b8d;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(168, 224, 0, 0.38);
  --green: #a8e000;
  --green-bright: #c3ff12;
  --green-deep: #6fb800;
  --green-2: #7ac400;
  --blue: #6ea8ff;
  --amber: #f7c948;
  --red: #ff5a66;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family:
    Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px 14px;
  color: var(--text);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 5, 6, 0.88);
  padding: 0 54px;
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 850;
}

.site-header .brand {
  min-width: 240px;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(168, 224, 0, 0.22);
}

.site-header .brand-logo {
  width: 240px;
  height: 62px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  box-shadow: none;
}

.brand span span {
  color: var(--green);
}

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 2.35rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 22px rgba(168, 224, 0, 0.35);
}

.brand-lockup {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-word {
  display: block;
  color: var(--text);
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 900;
}

.brand-lockup small {
  color: var(--green);
  font-size: 0.54rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.site-nav a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: var(--radius);
  padding: 10px 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: transparent;
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.header-login,
.header-register {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
  font-weight: 850;
}

.header-login {
  min-width: 88px;
  border-color: rgba(168, 224, 0, 0.48);
  background: rgba(12, 17, 28, 0.9);
  color: var(--text);
}

.header-register {
  min-width: 136px;
  color: #061006;
}

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

.button:active {
  transform: translateY(0);
}

.button svg,
.menu-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  background: linear-gradient(180deg, var(--green-bright), var(--green) 58%, #8fd000);
  color: #071008;
  box-shadow: 0 10px 30px rgba(168, 224, 0, 0.13);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, #d2ff2d, #b1ed00 58%, #98dc00);
  box-shadow: 0 12px 34px rgba(168, 224, 0, 0.24);
}

.button-dark,
.button-outline {
  border-color: var(--line-strong);
  background: rgba(17, 24, 39, 0.72);
  color: var(--text);
}

.button-dark:hover,
.button-dark:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(168, 224, 0, 0.12);
  color: var(--green);
}

.button.header-login {
  border-color: rgba(168, 224, 0, 0.48);
  background: rgba(12, 17, 28, 0.9);
  color: var(--text);
}

.button.header-login:hover,
.button.header-login:focus-visible {
  background: rgba(15, 22, 34, 0.96);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.72);
  color: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #010303;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(168, 224, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 224, 0, 0.034) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 82%);
  content: "";
}

.hero-content {
  display: grid;
  width: min(100% - 140px, 1396px);
  min-height: 600px;
  margin: 0 auto;
  grid-template-columns: minmax(440px, 0.84fr) minmax(560px, 1.16fr);
  gap: 14px;
  align-items: center;
  padding: 24px 0 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 4.65rem;
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
  width: max-content;
  max-width: none;
  transform: scaleX(0.67);
  transform-origin: left center;
  white-space: nowrap;
}

.hero-title-green {
  background: linear-gradient(180deg, var(--green-bright) 0%, var(--green) 52%, var(--green-deep) 100%);
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(168, 224, 0, 0.18));
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 620px;
  margin: 26px 0 0;
  color: #c6ccd6;
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-actions .button {
  min-height: 52px;
  padding: 0 19px;
  font-size: 0.96rem;
}

.hero-actions .button-primary {
  min-width: 230px;
}

.hero-actions .button-dark {
  min-width: 190px;
  border-color: rgba(168, 224, 0, 0.48);
  background: rgba(12, 17, 28, 0.9);
}

.hero-actions .button svg {
  width: 18px;
  height: 18px;
  margin-left: 6px;
  stroke-width: 2;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px 0 0;
}

.hero-stats div {
  min-height: 96px;
  border-right: 1px solid var(--line);
  padding-right: 18px;
}

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

.hero-stats dt {
  color: #fff;
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: #c0c7d2;
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: block;
  margin-left: -66px;
  pointer-events: none;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #010303 0%, rgba(1, 3, 3, 0.34) 22%, rgba(1, 3, 3, 0) 48%);
  pointer-events: none;
  content: "";
}

.hero-visual img {
  width: 100%;
  min-height: 520px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center right;
}

.platform-strip {
  display: grid;
  width: min(100% - 140px, 1396px);
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: center;
  margin: 0 auto 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.085);
  padding: 14px 0 0;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 42px;
  align-items: center;
}

.platform-logo {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 1.14rem;
  font-weight: 850;
  line-height: 1;
  opacity: 0.82;
}

.platform-logo svg {
  width: 29px;
  height: 29px;
  color: currentColor;
  fill: currentColor;
  flex: 0 0 auto;
}

.platform-youtube svg {
  width: 32px;
  height: 23px;
}

.platform-instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.platform-vk svg {
  width: 31px;
  height: 25px;
}

.platform-logo .cutout {
  fill: #050808;
}

.platform-rutube {
  font-size: 1.24rem;
  font-weight: 900;
}

.ai-proof {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: center;
  justify-self: end;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.26);
  font-size: 0.86rem;
  line-height: 1.25;
}

.ai-proof svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: rgba(168, 224, 0, 0.45);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ai-proof-text span {
  display: block;
}

.hero-dashboard {
  position: relative;
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(31, 41, 55, 0.92), rgba(8, 13, 17, 0.96)),
    var(--surface);
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-dashboard::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(168, 224, 0, 0.2), transparent 34%);
  opacity: 0.45;
  pointer-events: none;
  content: "";
}

.hero-dashboard > * {
  position: relative;
}

.dashboard-top,
.kpi-grid div,
.chart-card,
.task-list article,
.campaign-card,
.my-tasks,
.role-card,
.calc-form,
.calc-results,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.72);
}

.dashboard-top {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.dashboard-top span,
.kpi-grid span,
.chart-head small,
.task-list span,
.campaign-card p,
.tabs span,
.my-tasks span,
.section-head p,
.brand-proof-text p,
.site-footer p {
  color: var(--muted);
}

.dashboard-top strong {
  display: block;
  margin-top: 5px;
  font-size: 1.6rem;
}

.dashboard-top button,
.campaign-card button {
  min-height: 38px;
  border: 1px solid rgba(168, 224, 0, 0.38);
  border-radius: 7px;
  background: var(--green);
  padding: 8px 14px;
  color: #071008;
  font-size: 0.8rem;
  font-weight: 850;
}

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

.kpi-grid div {
  min-height: 86px;
  padding: 14px;
}

.kpi-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
}

.chart-card {
  padding: 18px;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-weight: 800;
}

.chart-card svg {
  width: 100%;
  height: auto;
  margin-top: 14px;
}

.grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.chart-fill {
  fill: rgba(168, 224, 0, 0.12);
}

.chart-line {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.chart-points circle {
  fill: var(--green);
  stroke: #071008;
  stroke-width: 2;
}

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

.task-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.task-list img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  object-fit: cover;
}

.task-list strong {
  display: block;
  margin-top: 3px;
}

.band {
  padding: 78px 0;
}

.section-head {
  width: min(100% - 48px, 1080px);
  margin: 0 auto 34px;
}

.section-head h2,
.brand-proof-text h2 {
  max-width: 820px;
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.08;
}

.section-head p:not(.eyebrow),
.brand-proof-text p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 1.05rem;
}

.value-grid {
  display: grid;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(31, 41, 55, 0.74), rgba(8, 13, 17, 0.94)),
    var(--surface);
  padding: 24px;
}

.value-grid svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.value-grid h3,
.campaign-card h3,
.role-card h3 {
  margin: 20px 0 10px;
  font-size: 1.35rem;
}

.value-grid p,
.campaign-card p,
.role-card p,
.feature-list li {
  margin: 0;
  color: #c9d0dc;
}

.campaigns,
.economy {
  background: rgba(17, 24, 39, 0.26);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq {
  border-top: 1px solid var(--line);
  background: rgba(8, 13, 17, 0.66);
}

.faq-grid {
  display: grid;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.faq-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(31, 41, 55, 0.72), rgba(8, 13, 17, 0.94));
  padding: 22px;
}

.faq-grid h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.faq-grid p {
  margin: 0;
  color: #c9d0dc;
}

.campaign-layout {
  display: grid;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 14px;
}

.campaign-card {
  display: grid;
  min-height: 290px;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 18px;
}

.campaign-card.is-featured {
  border-color: rgba(168, 224, 0, 0.24);
}

.product-shot {
  height: 126px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(168, 224, 0, 0.12);
}

.product-shot.dark {
  background: rgba(255, 255, 255, 0.06);
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.campaign-card h3 {
  margin: 6px 0 0;
  color: var(--green);
  font-size: 2.25rem;
}

.my-tasks {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 6px;
}

.tabs span {
  font-size: 0.85rem;
  font-weight: 750;
}

.tabs .is-active {
  color: var(--green);
}

.my-tasks article {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  border-radius: var(--radius);
  background: rgba(8, 13, 17, 0.58);
  padding: 12px;
}

.my-tasks img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  object-fit: cover;
}

.my-tasks strong {
  display: block;
}

.my-tasks small {
  border-radius: 999px;
  background: rgba(110, 168, 255, 0.12);
  padding: 6px 10px;
  color: #b9d5ff;
  font-weight: 800;
  white-space: nowrap;
}

.role-layout,
.calculator {
  display: grid;
  width: min(100% - 48px, 1080px);
  margin: 0 auto;
  gap: 18px;
}

.role-layout {
  grid-template-columns: 310px 1fr;
}

.segmented {
  display: grid;
  align-self: start;
  gap: 10px;
}

.segment {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.72);
  padding: 0 18px;
  color: var(--muted);
  font-weight: 850;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.segment:hover,
.segment:focus-visible,
.segment.is-active {
  border-color: var(--line-strong);
  background: rgba(168, 224, 0, 0.11);
  color: var(--green);
}

.role-card {
  display: grid;
  min-height: 330px;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  padding: 32px;
}

.role-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
}

.feature-list {
  display: grid;
  align-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 14px 14px 14px 42px;
}

.feature-list li::before {
  position: absolute;
  left: 16px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.calculator {
  grid-template-columns: 0.9fr 1.1fr;
}

.calc-form,
.calc-results,
.lead-form {
  padding: 24px;
}

.calc-form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 13, 17, 0.7);
  padding: 12px 13px;
  color: var(--text);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}

select option {
  color: #111827;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.menu-toggle:focus-visible,
.segment:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgba(168, 224, 0, 0.22);
  outline-offset: 2px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(168, 224, 0, 0.54);
  background: rgba(8, 13, 17, 0.92);
  box-shadow: 0 0 0 4px rgba(168, 224, 0, 0.09);
}

.calc-results {
  display: grid;
  gap: 12px;
}

.calc-results article {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: var(--radius);
  background: rgba(8, 13, 17, 0.58);
  padding: 18px;
}

.calc-results article:nth-child(2) strong {
  color: var(--blue);
}

.calc-results article:nth-child(3) strong {
  color: var(--green);
}

.calc-results span {
  color: var(--muted);
  font-weight: 800;
}

.calc-results strong {
  color: var(--green);
  font-size: 2rem;
  text-align: right;
  white-space: nowrap;
}

.brand-proof {
  display: grid;
  width: min(100% - 48px, 1180px);
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
}

.brand-proof.band {
  padding-left: 0;
  padding-right: 0;
}

.brand-board {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.brand-board img {
  width: 100%;
  height: auto;
}

.lead-form {
  display: grid;
  width: min(100% - 48px, 920px);
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto;
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  background: #070a0d;
  padding: 24px 34px;
}

.site-footer p {
  margin: 0;
}

/* Premium lower page */
.values,
.campaigns,
.roles,
.economy,
.brand-proof,
.faq,
.launch {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(1, 3, 3, 0.96), rgba(7, 10, 13, 0.98)),
    #010303;
}

.values::before,
.campaigns::before,
.roles::before,
.economy::before,
.faq::before,
.launch::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(168, 224, 0, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 92%);
  pointer-events: none;
  content: "";
}

.premium-band {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 13, 17, 0.98), rgba(1, 3, 3, 0.98)),
    #030607;
}

.section-head {
  width: min(100% - 80px, 1180px);
}

.section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 44px;
  align-items: end;
}

.section-head h2,
.brand-proof-text h2 {
  max-width: 940px;
  color: #f8fafc;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  letter-spacing: 0;
}

.section-head-split > p,
.section-head p:not(.eyebrow),
.brand-proof-text p:not(.eyebrow) {
  color: #aeb8c7;
}

.section-action {
  justify-self: end;
}

.value-grid {
  width: min(100% - 80px, 1180px);
  gap: 18px;
}

.value-grid article,
.market-panel,
.creator-panel,
.role-card,
.calc-form,
.calc-results,
.brand-board,
.faq-grid article,
.lead-form,
.launch-shell {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(20, 29, 40, 0.9), rgba(7, 10, 13, 0.94)),
    rgba(17, 24, 39, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 28px 80px rgba(0, 0, 0, 0.32);
}

.value-grid article {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 30px;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.value-grid article::before,
.market-panel::before,
.creator-panel::before,
.role-card::before,
.launch-shell::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 224, 0, 0.16), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  content: "";
}

.value-grid article:hover::before,
.market-panel:hover::before,
.creator-panel:hover::before,
.role-card:hover::before,
.launch-shell:hover::before {
  opacity: 1;
}

.value-grid article:hover {
  border-color: rgba(168, 224, 0, 0.34);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 32px 90px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(168, 224, 0, 0.08);
}

.card-index {
  position: absolute;
  right: 24px;
  top: 22px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.88rem;
  font-weight: 850;
}

.value-grid svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 20px rgba(168, 224, 0, 0.3));
}

.value-grid h3 {
  margin-top: 48px;
  color: #fff;
  font-size: 1.4rem;
}

.value-grid p {
  color: #d0d7e3;
}

.value-rail {
  display: grid;
  width: min(100% - 80px, 1180px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px auto 0;
}

.value-rail span {
  display: grid;
  min-height: 72px;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(168, 224, 0, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(3, 6, 8, 0.72);
  padding: 14px 16px;
  color: #c8d2df;
  font-size: 0.84rem;
  font-weight: 800;
}

.value-rail strong {
  color: var(--green);
  font-size: 0.76rem;
}

.campaign-layout {
  width: min(100% - 80px, 1180px);
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 18px;
}

.market-panel,
.creator-panel,
.role-card,
.launch-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.market-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.panel-head,
.role-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-head span,
.role-preview-top span,
.campaign-row span,
.campaign-rate span,
.phone-stats span,
.creator-metrics span,
.calc-results span,
.calc-results small,
.faq-grid article span {
  color: var(--muted);
}

.panel-head strong,
.role-preview-top strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 1.35rem;
}

.panel-head small,
.calc-badge {
  border: 1px solid rgba(168, 224, 0, 0.34);
  border-radius: 999px;
  background: rgba(168, 224, 0, 0.1);
  padding: 7px 11px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
}

.market-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-filters span,
.proof-pills span {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 8px 12px;
  color: #c7d0dd;
  font-size: 0.82rem;
  font-weight: 800;
}

.market-filters .is-active,
.proof-pills span:first-child {
  border-color: rgba(168, 224, 0, 0.45);
  background: rgba(168, 224, 0, 0.12);
  color: var(--green);
}

.campaign-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(4, 7, 10, 0.7);
  padding: 14px;
}

.campaign-row.is-hot {
  border-color: rgba(168, 224, 0, 0.32);
}

.campaign-row img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius);
  object-fit: cover;
}

.campaign-row strong {
  display: block;
  color: #fff;
}

.campaign-row span {
  display: block;
  margin-top: 5px;
  font-size: 0.88rem;
}

.campaign-rate {
  min-width: 94px;
  text-align: right;
}

.campaign-rate strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.creator-panel {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.phone-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: #070a0d;
  padding: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.4);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  padding: 4px 10px 10px;
}

.phone-top span {
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.phone-video {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: #020403;
}

.phone-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(1.1) contrast(1.1);
}

.phone-video svg {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(168, 224, 0, 0.16);
  padding: 16px;
  color: var(--green);
  fill: currentColor;
  filter: drop-shadow(0 0 18px rgba(168, 224, 0, 0.48));
}

.phone-stats {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  border: 1px solid rgba(168, 224, 0, 0.28);
  border-radius: 16px;
  background: rgba(168, 224, 0, 0.075);
  padding: 14px;
}

.phone-stats strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}

.phone-stats small {
  color: var(--green);
  font-weight: 850;
}

.creator-metrics {
  display: grid;
  gap: 12px;
}

.creator-metrics article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 18px;
}

.creator-metrics strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.75rem;
}

.role-layout {
  width: min(100% - 80px, 1180px);
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 18px;
}

.segmented {
  gap: 12px;
}

.segment {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(17, 24, 39, 0.54);
  color: #c6ceda;
}

.segment span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.segment.is-active span {
  background: rgba(168, 224, 0, 0.18);
  color: var(--green);
}

.role-card {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  min-height: 430px;
  padding: 26px;
}

.role-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
}

.role-card h3 {
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.feature-list {
  align-content: start;
  margin-top: 24px;
}

.feature-list li {
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.045);
}

.role-preview {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(2, 4, 6, 0.72);
  padding: 18px;
}

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

.role-kpis span {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.052);
  padding: 14px 10px;
  color: #cbd4e1;
  font-size: 0.84rem;
  font-weight: 800;
}

.role-chart {
  width: 100%;
  min-height: 190px;
}

.calculator {
  width: min(100% - 80px, 1180px);
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
}

.calc-form,
.calc-results {
  padding: 24px;
}

.calc-badge {
  width: fit-content;
}

.calc-form label span,
.lead-form label span {
  color: #f2f5f8;
}

input,
select,
textarea {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(3, 6, 8, 0.82);
}

.calc-results {
  grid-template-columns: repeat(3, 1fr);
  align-content: stretch;
}

.calc-results article {
  display: grid;
  min-height: 220px;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(2, 4, 6, 0.7);
}

.calc-results article.is-primary {
  border-color: rgba(168, 224, 0, 0.34);
  background:
    linear-gradient(180deg, rgba(168, 224, 0, 0.14), rgba(255, 255, 255, 0.025)),
    rgba(2, 4, 6, 0.78);
}

.calc-results strong {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.brand-proof {
  width: min(100% - 80px, 1180px);
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.brand-board {
  height: 440px;
  transform: perspective(1100px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
}

.brand-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.faq-grid {
  width: min(100% - 80px, 1180px);
  gap: 18px;
}

.faq-grid article {
  min-height: 250px;
  padding: 26px;
}

.faq-grid article span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 850;
}

.faq-grid h3 {
  color: #fff;
  font-size: 1.18rem;
}

.faq-grid p {
  color: #cbd4e1;
}

.launch {
  padding-bottom: 90px;
}

.launch-shell {
  display: grid;
  width: min(100% - 80px, 1180px);
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
  margin: 0 auto;
  padding: 28px;
}

.launch-shell .section-head {
  width: auto;
  margin: 0;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lead-form {
  width: auto;
  margin: 0;
  background: rgba(2, 4, 6, 0.58);
}

.lead-form .button {
  min-height: 54px;
}

.campaign-showcase {
  display: grid;
  width: min(100% - 80px, 1180px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr) minmax(310px, 0.76fr);
  gap: 18px;
}

.campaign-stack {
  display: grid;
  gap: 18px;
}

.campaign-visual-card,
.campaign-command-panel,
.finance-principle,
.finance-flow article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(20, 29, 40, 0.9), rgba(5, 8, 10, 0.96)),
    rgba(17, 24, 39, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 80px rgba(0, 0, 0, 0.34);
}

.campaign-visual-card {
  min-height: 300px;
  isolation: isolate;
}

.campaign-visual-card-large {
  min-height: 618px;
}

.campaign-visual-card picture,
.campaign-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.campaign-visual-card img {
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.015);
}

.campaign-visual-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 22%, rgba(168, 224, 0, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(1, 3, 3, 0.05), rgba(1, 3, 3, 0.88) 72%, #010303);
  content: "";
}

.campaign-visual-card::after {
  position: absolute;
  inset: 1px;
  z-index: 2;
  border: 1px solid rgba(168, 224, 0, 0.14);
  border-radius: calc(var(--radius) - 1px);
  pointer-events: none;
  content: "";
}

.campaign-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  gap: 12px;
  padding: 28px;
}

.campaign-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.8vw, 3.1rem);
  line-height: 0.98;
}

.campaign-overlay p {
  max-width: 620px;
  margin: 0;
  color: #d6deeb;
  font-size: 0.98rem;
}

.campaign-badge,
.campaign-meta span {
  width: fit-content;
  min-height: 32px;
  border: 1px solid rgba(168, 224, 0, 0.32);
  border-radius: 999px;
  background: rgba(168, 224, 0, 0.1);
  padding: 7px 11px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.campaign-meta span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: #dbe5f1;
  text-transform: none;
}

.campaign-command-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 224, 0, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(20, 29, 40, 0.92), rgba(5, 8, 10, 0.97));
}

.command-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.command-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(2, 4, 6, 0.56);
  padding: 16px;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.command-list li:hover {
  border-color: rgba(168, 224, 0, 0.26);
  background: rgba(168, 224, 0, 0.055);
}

.command-list li > span,
.finance-flow article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(168, 224, 0, 0.28);
  border-radius: 999px;
  background: rgba(168, 224, 0, 0.1);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
}

.command-list strong,
.finance-principle h3,
.finance-flow h3 {
  color: #fff;
}

.command-list p,
.finance-principle p,
.finance-flow p {
  margin: 6px 0 0;
  color: #b8c4d6;
}

.grafana-panel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.72), rgba(3, 5, 8, 0.94)),
    #05070a;
  padding: 18px;
}

.grafana-topline,
.grafana-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.grafana-topline span,
.grafana-kpis span,
.grafana-legend,
.axis,
.finance-note span {
  color: #9fb0c8;
}

.grafana-topline strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.grafana-topline small {
  border: 1px solid rgba(168, 224, 0, 0.34);
  border-radius: 999px;
  background: rgba(168, 224, 0, 0.1);
  padding: 7px 11px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.grafana-kpis article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 12px;
}

.grafana-kpis strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 1.2rem;
}

.grafana-chart {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    rgba(2, 4, 6, 0.74);
  background-size: 52px 52px;
}

.grafana-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.grafana-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.grafana-fill {
  fill: rgba(168, 224, 0, 0.13);
}

.grafana-line {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  filter: drop-shadow(0 0 12px rgba(168, 224, 0, 0.34));
}

.grafana-line.is-secondary {
  stroke: rgba(110, 168, 255, 0.62);
  stroke-width: 3;
  filter: none;
}

.grafana-points circle {
  fill: var(--green);
  stroke: #061006;
  stroke-width: 3;
}

.axis {
  position: absolute;
  left: 12px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 800;
}

.axis-top {
  top: 34px;
}

.axis-mid {
  top: 50%;
  transform: translateY(-50%);
}

.axis-low {
  bottom: 24px;
}

.grafana-tooltip {
  position: absolute;
  right: 18%;
  top: 24%;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(13, 18, 24, 0.92);
  padding: 12px 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
}

.grafana-tooltip strong {
  display: block;
  color: #fff;
}

.grafana-tooltip span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.grafana-legend {
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 800;
}

.grafana-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.grafana-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.grafana-legend span:last-child i {
  background: rgba(110, 168, 255, 0.75);
}

.finance-model {
  display: grid;
  width: min(100% - 80px, 1180px);
  margin: 0 auto;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
}

.finance-principle {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 430px;
  padding: 28px;
}

.finance-principle::before,
.finance-flow article::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 14%, rgba(168, 224, 0, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(168, 224, 0, 0.09), transparent 38%);
  opacity: 0.72;
  pointer-events: none;
  content: "";
}

.finance-principle > *,
.finance-flow article > * {
  position: relative;
  z-index: 1;
}

.finance-principle h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.finance-note {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(168, 224, 0, 0.24);
  border-radius: var(--radius);
  background: rgba(168, 224, 0, 0.075);
  padding: 16px;
}

.finance-note strong {
  color: #fff;
}

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

.finance-flow article {
  min-height: 206px;
  padding: 22px;
}

.finance-flow article.is-primary {
  border-color: rgba(168, 224, 0, 0.36);
  background:
    linear-gradient(145deg, rgba(29, 46, 8, 0.82), rgba(5, 8, 10, 0.96)),
    rgba(17, 24, 39, 0.7);
}

.finance-flow h3 {
  margin: 28px 0 0;
  font-size: 1.18rem;
}

.finance-ledger {
  display: grid;
  width: min(100% - 80px, 1180px);
  gap: 10px;
  margin: 18px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 12%, rgba(168, 224, 0, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(20, 29, 40, 0.86), rgba(4, 7, 10, 0.95));
  padding: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 26px 70px rgba(0, 0, 0, 0.32);
}

.ledger-head,
.ledger-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto) minmax(230px, auto);
  gap: 18px;
  align-items: center;
}

.ledger-head {
  padding: 0 4px 8px;
}

.ledger-head span,
.ledger-row span,
.ledger-row em {
  color: #9fb0c8;
}

.ledger-head strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 1.28rem;
}

.ledger-head small {
  justify-self: end;
  grid-column: 2 / 4;
  border: 1px solid rgba(168, 224, 0, 0.28);
  border-radius: 999px;
  background: rgba(168, 224, 0, 0.08);
  padding: 7px 11px;
  color: var(--green);
  font-weight: 850;
}

.ledger-row {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--radius);
  background: rgba(2, 4, 6, 0.56);
  padding: 12px 14px;
}

.ledger-row strong {
  color: #fff;
  font-size: 1.05rem;
  text-align: right;
  white-space: nowrap;
}

.ledger-row em {
  font-style: normal;
  text-align: right;
}

.ledger-row.is-accent {
  border-color: rgba(168, 224, 0, 0.3);
  background: rgba(168, 224, 0, 0.075);
}

.ledger-row.is-accent strong {
  color: var(--green);
}

@media (max-width: 1080px) {
  .site-header {
    gap: 18px;
    padding: 0 24px;
  }

  .site-header .brand {
    min-width: 204px;
  }

  .site-header .brand-logo {
    width: 204px;
    height: 52px;
  }

  .brand-mark {
    width: 36px;
    height: 34px;
    font-size: 2rem;
  }

  .brand-word {
    font-size: 1.08rem;
  }

  .brand-lockup small {
    font-size: 0.48rem;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.84rem;
  }

  .header-login,
  .header-register {
    min-width: auto;
    padding: 11px 17px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
  }

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

  .hero h1 {
    font-size: 3.6rem;
  }

  .hero-visual {
    margin-left: 0;
  }

  .hero-visual img {
    min-height: 460px;
  }

  .campaign-layout,
  .value-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .my-tasks {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 76px;
    padding: 0 18px;
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 84px;
    display: none;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 13, 17, 0.98);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .site-nav a {
    min-height: 48px;
    padding: 12px 14px;
  }

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

  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .role-layout,
  .calculator,
  .brand-proof {
    grid-template-columns: 1fr;
  }

  .segmented {
    grid-template-columns: repeat(3, 1fr);
  }

  .role-card {
    grid-template-columns: 1fr;
  }

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

  .platform-strip {
    grid-template-columns: 1fr;
  }

  .ai-proof {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .hero-content,
  .section-head,
  .value-grid,
  .value-rail,
  .campaign-layout,
  .role-layout,
  .calculator,
  .finance-ledger,
  .brand-proof,
  .lead-form {
    width: min(100% - 28px, 1180px);
  }

  .hero-content {
    gap: 28px;
    padding: 42px 0 20px;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-title-line {
    width: auto;
    transform: none;
    white-space: normal;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .hero-stats div {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 14px 0 0;
  }

  .hero-visual img {
    min-height: 360px;
    object-position: 68% center;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, #010303 0%, rgba(1, 3, 3, 0) 22%, rgba(1, 3, 3, 0) 72%, #010303 100%);
  }

  .platform-strip {
    width: min(100% - 28px, 1180px);
    margin-bottom: 14px;
    padding-top: 18px;
  }

  .platforms {
    gap: 10px 18px;
  }

  .platform-logo {
    font-size: 0.88rem;
  }

  .platform-logo svg {
    width: 21px;
    height: 21px;
  }

  .platform-youtube svg {
    width: 24px;
    height: 17px;
  }

  .hero-dashboard {
    padding: 14px;
  }

  .dashboard-top,
  .task-list,
  .my-tasks article,
  .calc-results article {
    grid-template-columns: 1fr;
  }

  .dashboard-top {
    display: grid;
  }

  .task-list {
    display: grid;
  }

  .task-list article {
    grid-template-columns: 54px 1fr;
  }

  .band {
    padding: 56px 0;
  }

  .section-head h2,
  .brand-proof-text h2 {
    font-size: 2rem;
  }

  .value-grid,
  .value-rail,
  .campaign-layout,
  .lead-form,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .brand-lockup small {
    display: none;
  }

  .site-header .brand {
    gap: 6px;
  }

  .site-header .brand-logo {
    width: 176px;
    height: 46px;
  }

  .value-grid article,
  .campaign-card,
  .faq-grid article {
    min-height: auto;
  }

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

  .role-card,
  .calc-form,
  .calc-results,
  .lead-form {
    padding: 18px;
  }

  .calc-results strong {
    text-align: left;
  }

  .my-tasks small {
    width: fit-content;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px;
  }
}

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

@media (max-width: 1080px) {
  .section-head,
  .value-grid,
  .value-rail,
  .campaign-layout,
  .campaign-showcase,
  .role-layout,
  .calculator,
  .finance-model,
  .finance-ledger,
  .brand-proof,
  .faq-grid,
  .launch-shell {
    width: min(100% - 48px, 1180px);
  }

  .section-head-split,
  .campaign-layout,
  .campaign-showcase,
  .role-card,
  .calculator,
  .finance-model,
  .brand-proof,
  .launch-shell {
    grid-template-columns: 1fr;
  }

  .campaign-visual-card-large {
    min-height: 500px;
  }

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

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

  .section-action {
    justify-self: start;
  }

  .creator-panel {
    grid-template-columns: minmax(260px, 0.78fr) 1fr;
  }

  .role-preview {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .section-head,
  .value-grid,
  .value-rail,
  .campaign-layout,
  .campaign-showcase,
  .role-layout,
  .calculator,
  .finance-model,
  .finance-ledger,
  .brand-proof,
  .faq-grid,
  .launch-shell {
    width: min(100% - 28px, 1180px);
  }

  .section-head h2,
  .brand-proof-text h2 {
    font-size: 2.25rem;
  }

  .value-grid,
  .value-rail,
  .faq-grid,
  .campaign-stack,
  .creator-panel,
  .role-kpis,
  .calc-results,
  .grafana-kpis,
  .finance-flow {
    grid-template-columns: 1fr;
  }

  .campaign-visual-card,
  .campaign-visual-card-large {
    min-height: 360px;
  }

  .campaign-overlay {
    padding: 20px;
  }

  .campaign-command-panel,
  .finance-principle,
  .finance-flow article {
    padding: 18px;
  }

  .grafana-chart {
    min-height: 230px;
  }

  .ledger-head,
  .ledger-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ledger-head small,
  .ledger-row strong,
  .ledger-row em {
    justify-self: start;
    grid-column: auto;
    text-align: left;
  }

  .campaign-row {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .campaign-row img {
    width: 56px;
    height: 56px;
  }

  .campaign-rate {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    min-width: 0;
    text-align: left;
  }

  .role-card,
  .launch-shell {
    padding: 18px;
  }

  .brand-board {
    height: 260px;
    transform: none;
  }

  .launch-actions,
  .launch-actions .button {
    width: 100%;
  }

  .launch-actions .button {
    justify-content: center;
  }
}
