:root {
  --bg: #071011;
  --bg-elevated: rgba(17, 24, 24, 0.78);
  --bg-panel: #0f1718;
  --bg-soft: #121d1e;
  --text: #edf1e7;
  --muted: #aeb6aa;
  --line: rgba(237, 241, 231, 0.1);
  --graphite: #2f3031;
  --ink: #232426;
  --olive: #91ab3c;
  --teal: #255452;
  --teal-deep: #234a49;
  --stone: #c8c7b4;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(145, 171, 60, 0.16), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(37, 84, 82, 0.2), transparent 18%),
    linear-gradient(180deg, #040707 0%, #081112 48%, #060a0b 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.site-header,
.hero,
.value-strip,
.waitlist-section,
.site-footer {
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  padding: 4px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
}

.brand-mark .graphite {
  fill: var(--graphite);
}

.brand-mark .ink {
  fill: var(--ink);
}

.brand-mark .olive {
  fill: var(--olive);
}

.brand-mark .teal {
  fill: var(--teal);
}

.brand-mark .teal-deep {
  fill: var(--teal-deep);
}

.brand-mark .stone {
  fill: var(--stone);
}

.brand-text {
  font-size: 1.15rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

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

.section {
  padding: 42px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding-top: 52px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 12px;
  border: 1px solid rgba(145, 171, 60, 0.28);
  border-radius: 999px;
  background: rgba(145, 171, 60, 0.1);
  color: #d6e6a2;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.waitlist-copy h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  max-width: 12ch;
}

.hero-text,
.section-copy,
.feature-card p,
.waitlist-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--olive), #a6c348);
  color: #122012;
  box-shadow: 0 14px 32px rgba(145, 171, 60, 0.25);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-full {
  width: 100%;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--stone);
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 4px rgba(145, 171, 60, 0.14);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel-card,
.feature-card,
.showcase-frame,
.waitlist-form,
.value-strip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.panel-card-main {
  overflow: hidden;
}

.panel-topline,
.metric-row,
.panel-grid,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-topline,
.metric-label,
.mini-stat span,
.panel-heading,
.channel-list span,
.form-note,
.form-message {
  color: var(--muted);
}

.status-pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(37, 84, 82, 0.28);
  color: #cde2df;
  font-size: 0.82rem;
}

.metric-label {
  margin: 0 0 8px;
  font-size: 0.94rem;
}

.metric-value {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.metric-trend {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}

.metric-trend.positive {
  background: rgba(145, 171, 60, 0.12);
  color: #d8ea96;
}

.chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 12px;
  height: 240px;
  margin: 24px 0;
}

.chart span {
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(180deg, rgba(145, 171, 60, 0.98), rgba(37, 84, 82, 0.72));
  height: var(--bar-height);
  min-height: 28px;
}

.chart span:nth-child(2n) {
  background: linear-gradient(180deg, rgba(200, 199, 180, 0.95), rgba(47, 48, 49, 0.9));
}

.panel-grid {
  align-items: stretch;
}

.mini-stat {
  flex: 1;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-stat strong,
.channel-list strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
}

.panel-card-side {
  background:
    radial-gradient(circle at top right, rgba(145, 171, 60, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(37, 84, 82, 0.08), rgba(255, 255, 255, 0.02));
}

.channel-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.channel-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.channel-list li:last-child {
  border-bottom: 0;
}

.value-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 32px;
  border-radius: var(--radius-lg);
}

.section-heading h2,
.waitlist-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 14ch;
}

.features .section-heading,
.product-showcase .section-heading {
  margin-bottom: 24px;
}

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

.feature-card {
  border-radius: 24px;
  padding: 24px;
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 1.22rem;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}

.feature-icon-olive {
  background:
    linear-gradient(180deg, rgba(145, 171, 60, 0.24), rgba(145, 171, 60, 0.04)),
    var(--bg-soft);
  border: 1px solid rgba(145, 171, 60, 0.32);
}

.feature-icon-teal {
  background:
    linear-gradient(180deg, rgba(37, 84, 82, 0.4), rgba(37, 84, 82, 0.06)),
    var(--bg-soft);
  border: 1px solid rgba(37, 84, 82, 0.5);
}

.feature-icon-stone {
  background:
    linear-gradient(180deg, rgba(200, 199, 180, 0.24), rgba(200, 199, 180, 0.05)),
    var(--bg-soft);
  border: 1px solid rgba(200, 199, 180, 0.28);
}

.showcase-frame {
  overflow: hidden;
  border-radius: 32px;
}

.dashboard-shot {
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(145, 171, 60, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(7, 12, 10, 0.95), rgba(7, 8, 10, 0.92));
}

.dashboard-head {
  display: grid;
  gap: 16px;
}

.dashboard-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.dashboard-period {
  margin: 10px 0 0;
  color: var(--stone);
}

.dashboard-chips,
.dashboard-filters,
.stat-card-grid,
.dashboard-chart-grid,
.chart-panel-head,
.chart-panel-actions,
.chart-labels {
  display: flex;
  gap: 10px;
}

.dashboard-chips,
.dashboard-filters,
.stat-card-grid,
.dashboard-chart-grid {
  flex-wrap: wrap;
}

.dashboard-chips {
  margin-top: 8px;
}

.dashboard-chips span,
.filter-action,
.chart-panel-actions span {
  padding: 10px 14px;
  border: 1px solid rgba(200, 199, 180, 0.18);
  border-radius: 8px;
  color: var(--stone);
  background: rgba(255, 255, 255, 0.02);
}

.dashboard-chips .active,
.filter-action-primary {
  background: #a0c100;
  color: #1d2308;
  border-color: #a0c100;
}

.dashboard-filters {
  align-items: end;
  margin-top: 18px;
}

.filter-field {
  min-width: 220px;
}

.filter-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--stone);
}

.filter-field span {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(55, 58, 60, 0.94), rgba(39, 41, 43, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.stat-card-grid {
  margin-top: 18px;
}

.dash-stat,
.chart-panel {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(50, 52, 54, 0.96), rgba(43, 45, 46, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-stat p,
.dash-stat small,
.chart-panel h3 {
  margin: 0;
}

.dash-stat p,
.dash-stat small {
  color: var(--stone);
}

.dash-stat strong {
  display: block;
  margin-top: 10px;
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
}

.dashboard-chart-grid {
  margin-top: 22px;
}

.chart-panel {
  display: grid;
  gap: 14px;
}

.chart-panel-wide {
  flex-basis: calc(50% - 5px);
}

.chart-panel-head {
  align-items: start;
  justify-content: space-between;
}

.chart-panel h3 {
  font-size: 1.18rem;
  line-height: 1.15;
}

.chart-panel-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.category-chart,
.paired-chart,
.title-chart {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 190px;
  padding: 12px;
  gap: 12px;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 100% / 100% 25%,
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 20% 100%;
}

.category-chart {
  grid-template-columns: repeat(5, 1fr);
}

.category-chart span {
  height: var(--h);
  background: rgba(160, 193, 0, 0.68);
  border: 1px solid rgba(160, 193, 0, 0.48);
}

.paired-chart {
  grid-template-columns: repeat(6, 1fr);
}

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

.paired-chart > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  align-items: end;
  height: 100%;
}

.paired-chart span,
.title-chart span {
  height: var(--h);
}

.paired-chart .gross,
.title-chart .gross {
  background: rgba(200, 199, 180, 0.62);
  border: 1px solid rgba(200, 199, 180, 0.4);
}

.paired-chart .net,
.title-chart .net {
  background: rgba(37, 84, 82, 0.52);
  border: 1px solid rgba(37, 84, 82, 0.45);
}

.title-chart {
  grid-template-columns: 1fr;
  justify-items: center;
}

.title-chart-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(56px, 72px));
  gap: 8px;
  align-items: end;
  width: min(100%, 240px);
  height: 100%;
}

.title-chart .expense {
  background: rgba(160, 193, 0, 0.68);
  border: 1px solid rgba(160, 193, 0, 0.48);
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #b7b5a1;
  font-size: 0.9rem;
}

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

.legend-swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.legend-gross {
  background: rgba(200, 199, 180, 0.62);
  border: 1px solid rgba(200, 199, 180, 0.4);
}

.legend-net {
  background: rgba(37, 84, 82, 0.52);
  border: 1px solid rgba(37, 84, 82, 0.45);
}

.legend-expense {
  background: rgba(160, 193, 0, 0.68);
  border: 1px solid rgba(160, 193, 0, 0.48);
}

.chart-labels {
  color: #9d9b8f;
  font-size: 0.86rem;
  justify-content: space-between;
}

.chart-labels span {
  flex: 1;
  text-align: center;
}

.single-label {
  justify-content: center;
}

.single-label span {
  flex: 0 1 auto;
}

.waitlist-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 24px;
  align-items: start;
}

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

.waitlist-form {
  border-radius: 28px;
  padding: 28px;
}

.waitlist-form label,
.ml-field-group label {
  display: block;
  margin: 0 0 10px;
  font-weight: 700;
}

.waitlist-form input,
.ml-field-group input,
.waitlist-form select {
  width: 100%;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.waitlist-form input::placeholder,
.ml-field-group input::placeholder {
  color: #91a09a;
}

.waitlist-form input:focus,
.ml-field-group input:focus,
.waitlist-form select:focus,
.button:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid rgba(145, 171, 60, 0.7);
  outline-offset: 2px;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0;
}

.access-card {
  height: 100%;
}

.access-card h3,
.ml-form-embedContent h3,
.ml-form-successContent h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}

.access-card p,
.ml-form-embedContent p,
.ml-form-successContent p {
  color: var(--muted);
}

.access-label {
  margin: 0 0 14px;
  color: #d6e6a2;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.access-card-discord {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at top right, rgba(88, 101, 242, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.access-list {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--stone);
}

.access-list li {
  position: relative;
  padding-left: 18px;
}

.access-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
}

.mailer-card .ml-form-align-center,
.mailer-card .ml-form-embedWrapper,
.mailer-card .ml-form-embedBody,
.mailer-card .ml-form-successBody {
  width: 100%;
}

.mailer-card .ml-form-embedWrapper {
  background: transparent;
  border: 0;
  display: block;
}

.mailer-card .ml-form-embedBody,
.mailer-card .ml-form-successBody {
  padding: 0;
}

.mailer-card .ml-form-embedContent,
.mailer-card .ml-form-successContent,
.mailer-card .ml-form-formContent,
.mailer-card .ml-form-embedSubmit {
  margin: 0;
}

.mailer-card .ml-form-embedContent {
  margin-bottom: 20px;
}

.mailer-card .ml-form-fieldRow {
  margin: 0;
}

.mailer-card .ml-form-embedSubmit {
  margin-top: 6px;
}

.mailer-card .ml-form-embedSubmit .primary {
  width: 100%;
  min-height: 52px;
  padding: 0 20px !important;
  border-radius: 14px !important;
  border: 1px solid transparent !important;
  background: linear-gradient(135deg, var(--olive), #a6c348) !important;
  box-shadow: 0 14px 32px rgba(145, 171, 60, 0.25);
  color: #122012 !important;
  font-weight: 700 !important;
}

.mailer-card .loading {
  width: 100%;
  min-height: 52px;
  border-radius: 14px !important;
}

.mailer-card .ml-form-embedSubmitLoad:after {
  border-color: #122012 #122012 #122012 transparent;
}

.site-footer {
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .value-strip,
  .waitlist-section,
  .access-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 18px 16px 36px;
  }

  .site-header,
  .site-footer,
  .panel-topline,
  .metric-row,
  .panel-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 12px;
  }

  .hero {
    padding-top: 28px;
  }

  .panel-card,
  .feature-card,
  .waitlist-form,
  .value-strip,
  .dashboard-shot {
    padding: 20px;
  }

  .chart {
    gap: 8px;
    height: 180px;
  }

  .section {
    padding: 34px 0;
  }

  .filter-field,
  .dash-stat,
  .chart-panel,
  .chart-panel-wide {
    flex-basis: 100%;
  }
}

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

  .button {
    transition: none;
  }
}
