:root {
  --clay: #c8450c;
  --clay-hot: #ff6426;
  --green: #51d39a;
  --blue: #5865f2;
  --black: #050505;
  --panel: #111214;
  --panel-2: #1a1b1f;
  --discord: #33343b;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --soft: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.5;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 108px 0;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 50;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(15, 15, 15, 0.55);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.nav-shell {
  width: 100%;
  min-height: 64px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(200, 69, 12, 0.2));
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a,
.footer-links a {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 850;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 100, 38, 0.45);
  background: rgba(255, 100, 38, 0.12);
  box-shadow: 0 10px 28px rgba(200, 69, 12, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 168px 0 72px;
}

.contact-page {
  min-height: 100vh;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
}

#performances {
  padding: 82px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 100, 38, 0.24), transparent 25rem),
    radial-gradient(circle at 16% 72%, rgba(88, 101, 242, 0.14), transparent 20rem),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    64px 64px,
    64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 480px);
  align-items: center;
  gap: 54px;
}

.contact-copy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 9vw, 7rem);
}

.contact-copy p:not(.hero-label) {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.contact-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 100, 38, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 850;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  font: inherit;
  outline: none;
  padding: 13px 14px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(255, 100, 38, 0.52);
  background: rgba(0, 0, 0, 0.34);
  box-shadow: 0 0 0 3px rgba(255, 100, 38, 0.12);
}

.form-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
  text-align: center;
}

.partner-chip {
  display: grid;
  gap: 4px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-chip strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--clay-hot);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-label p {
  margin: 0;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(3.7rem, 10vw, 8.9rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--clay-hot);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.2rem;
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--clay-hot), var(--clay));
  color: #fff;
  box-shadow: 0 18px 46px rgba(200, 69, 12, 0.35);
}

.button-discord {
  gap: 10px;
  padding-inline: 24px;
}

.button-discord img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.full-width {
  width: 100%;
}

.metrics-marquee {
  width: min(940px, 100%);
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 16px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.metrics-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  animation: marquee 26s linear infinite;
}

.metrics-track span {
  color: var(--muted);
  white-space: nowrap;
}

.metrics-track strong {
  color: #fff;
  margin-right: 6px;
}

.performance-card span,
.eyebrow {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading,
.performance-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.performance-heading p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.02rem;
}

.performance-heading small {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.9rem;
  font-weight: 650;
}

.performance-heading {
  margin-inline: auto;
  text-align: center;
}

.performance-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
}

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

.performance-card,
.tech-card,
.pricing-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.performance-card {
  min-height: 152px;
  position: relative;
  overflow: hidden;
  padding: 20px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.performance-card::after {
  content: "";
  position: absolute;
  inset: auto -42px -72px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 100, 38, 0.1);
  filter: blur(12px);
}

.performance-card.highlight {
  border-color: rgba(255, 100, 38, 0.34);
  background: linear-gradient(135deg, rgba(255, 100, 38, 0.62), rgba(255, 255, 255, 0.04));
}

.performance-card:hover,
.profit-dashboard:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 100, 38, 0.38);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 100, 38, 0.08);
}

.performance-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 14px 0 8px;
  color: #fff;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 1;
}

.performance-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.profit-dashboard {
  padding: 18px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 100, 38, 0.12), transparent 20rem),
    #0d0e10;
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.profit-dashboard h3 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.profit-chart {
  width: 100%;
  height: 275px;
  display: block;
}

.profit-grid line {
  stroke: rgba(255, 255, 255, 0.065);
  stroke-width: 1;
}

.profit-area {
  fill: rgba(255, 100, 38, 0.12);
}

.profit-line {
  fill: none;
  stroke: var(--clay-hot);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profit-points circle {
  fill: var(--clay-hot);
  stroke: #0d0e10;
  stroke-width: 2.5;
}

.profit-axis-labels text {
  fill: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 650;
}

.stats-page {
  min-height: 100vh;
  background: var(--black);
}

.stats-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 72px;
}

.stats-hero-inner {
  position: relative;
  max-width: 1160px;
  margin-inline: auto;
  text-align: center;
}

.stats-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  margin-inline: auto;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.stats-hero p:not(.hero-label) {
  max-width: 720px;
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.stats-hero small {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 100, 38, 0.2);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 100, 38, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

.stats-section {
  padding: 34px 0;
}

.stats-overview-grid {
  margin-top: 34px;
  margin-bottom: 0;
  text-align: left;
}

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

.stats-kpi-card,
.stats-chart-panel,
.stats-detail-block,
.stats-table-card,
.transparency-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.stats-kpi-card {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  padding: 20px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.stats-kpi-card::after {
  content: "";
  position: absolute;
  inset: auto -46px -78px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 100, 38, 0.08);
  filter: blur(14px);
}

.stats-kpi-card.highlight {
  border-color: rgba(255, 100, 38, 0.36);
  background:
    radial-gradient(circle at 78% 0%, rgba(255, 100, 38, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 100, 38, 0.15), rgba(255, 255, 255, 0.03));
}

.stats-kpi-card:hover,
.stats-chart-panel:hover,
.stats-segment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 100, 38, 0.34);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 100, 38, 0.06);
}

.stats-kpi-card span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-kpi-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 14px 0 8px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.stats-kpi-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.stats-chart-panel h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.stats-chart-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
}

.stats-chart-header h2,
.stats-section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
}

.stats-chart-header p,
.stats-section-heading p,
.stats-detail-title p {
  margin: 0;
  color: var(--muted);
}

.stats-chart-summary {
  min-width: 210px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  text-align: right;
}

.stats-chart-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-chart-summary strong {
  display: block;
  margin: 7px 0 4px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.stats-chart-summary p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.stats-bankroll-chart {
  height: 360px;
}

.stats-section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

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

.stats-detail-block,
.stats-table-card {
  padding: 22px;
}

.stats-detail-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.stats-detail-title h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

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

.stats-segment-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.stats-row-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-detail-row {
  padding-block: 4px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.stats-detail-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stats-segment-card {
  position: relative;
  min-height: 122px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 100, 38, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024));
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.stats-segment-card:hover {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 100, 38, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.stats-segment-card.unavailable {
  display: grid;
  align-content: center;
}

.stats-segment-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.stats-segment-card h4 {
  margin: 0;
  color: var(--clay-hot);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.stats-segment-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 100, 38, 0.24);
  border-radius: 8px;
  background: rgba(255, 100, 38, 0.1);
  color: var(--clay-hot);
  flex: 0 0 auto;
}

.stats-segment-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats-segment-card strong {
  display: block;
  margin: 12px 0 3px;
  color: #fff;
  font-family: inherit;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.stats-segment-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  font-weight: 450;
}

.stats-table-wrap {
  overflow-x: auto;
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.stats-table th,
.stats-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 10px;
  text-align: left;
}

.stats-table th {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-table td {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.stats-table td.profit-positive {
  color: var(--green);
  font-weight: 900;
}

.stats-table td.profit-negative {
  color: #ff5f57;
  font-weight: 900;
}

.stats-transparency {
  padding-bottom: 78px;
}

.transparency-card {
  padding: 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 100, 38, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.035);
}

.transparency-card p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
}

.tech-section,
.trust-section {
  background: rgba(255, 255, 255, 0.025);
}

.trust-section {
  padding: 76px 0;
}

.trust-section .section-heading {
  margin-bottom: 22px;
}

.trust-section h2 {
  margin-bottom: 10px;
  font-size: clamp(1.85rem, 4vw, 3.35rem);
}

.trust-section .section-heading p:not(.eyebrow) {
  margin-bottom: 0;
}

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

.tech-card {
  min-height: 162px;
  padding: 20px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.tech-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 100, 38, 0.36);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 100, 38, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 100, 38, 0.07);
}

.tech-section .section-heading {
  margin-bottom: 22px;
}

.tech-section h2 {
  font-size: clamp(1.95rem, 4.5vw, 3.6rem);
}

.tech-workflow {
  max-width: 980px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.tech-workflow-step {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 100, 38, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--clay-hot), var(--clay));
  color: #fff;
  box-shadow:
    0 18px 46px rgba(200, 69, 12, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.tech-workflow-step:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #ff7842, var(--clay));
  box-shadow:
    0 22px 58px rgba(200, 69, 12, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.workflow-icon,
.tech-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 100, 38, 0.24);
  border-radius: 8px;
  background: rgba(255, 100, 38, 0.1);
  color: var(--clay-hot);
  flex: 0 0 auto;
}

.tech-icon {
  margin-bottom: 16px;
}

.workflow-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.tech-icon svg,
.workflow-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-icon svg {
  width: 15px;
  height: 15px;
}

.tech-workflow-step strong {
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.15;
}

.workflow-arrow {
  color: rgba(255, 100, 38, 0.56);
  font-size: 1.05rem;
  font-weight: 900;
}

.tech-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.tech-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.tech-card p,
.pricing-card p,
.pricing-card small,
.faq-list p,
.final-cta p,
.disclaimer p,
.footer-brand p {
  color: var(--muted);
}

.trust-editorial {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.trust-copy {
  width: 100%;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.68;
}

.trust-copy p {
  margin: 0 0 12px;
}

.trust-copy p:last-child {
  margin-bottom: 0;
}

.trust-copy p:first-child {
  color: rgba(255, 255, 255, 0.86);
}

.trust-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 100, 38, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.trust-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 100, 38, 0.28);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 100, 38, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 100, 38, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.trust-panel h3 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
}

.trust-list li {
  position: relative;
  min-height: 26px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
  line-height: 1.38;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 100, 38, 0.14);
  color: var(--clay-hot);
  font-size: 0.78rem;
  font-weight: 950;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
  gap: 18px;
}

#vip {
  padding: 86px 0;
}

#vip .section-heading {
  margin-bottom: 24px;
}

#vip h2 {
  font-size: clamp(1.95rem, 4.5vw, 3.55rem);
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.pricing-card.featured {
  border-color: rgba(255, 100, 38, 0.38);
  background:
    radial-gradient(circle at 72% 0%, rgba(255, 100, 38, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 100, 38, 0.14), rgba(255, 255, 255, 0.034));
  box-shadow:
    0 20px 64px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(200, 69, 12, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 100, 38, 0.28);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 100, 38, 0.05);
}

.pricing-card.featured:hover {
  border-color: rgba(255, 100, 38, 0.48);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(200, 69, 12, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.popular {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--clay-hot);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 12px 0 2px;
  color: #fff;
  font-size: clamp(2.65rem, 5vw, 3.25rem);
  font-weight: 950;
  line-height: 1;
}

.price span {
  margin-left: 6px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  flex: 1;
  align-content: start;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.45;
}

.pricing-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
  font-weight: 900;
}

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

.pricing-card li.muted::before {
  content: "×";
  color: var(--muted);
}

.pricing-card small {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 0.84rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1fr);
  gap: 70px;
}

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

.faq-list details {
  padding: 20px;
}

.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

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

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 100, 38, 0.22), transparent 25rem),
    #080808;
}

.final-cta h2 {
  max-width: 900px;
  margin-inline: auto;
}

.final-cta p {
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.disclaimer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.disclaimer p {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.92rem;
}

.site-footer {
  padding: 34px 0;
  background: #050505;
}

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

.footer-brand p {
  max-width: 330px;
  margin: 12px 0 0;
  font-size: 0.94rem;
}

.reveal-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal-enabled .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 920px) {
  .section-pad {
    padding: 78px 0;
  }

  .trust-section {
    padding: 62px 0;
  }

  #performances {
    padding: 68px 0;
  }

  .nav-links {
    display: none;
  }

  .performance-grid,
  .stats-kpi-grid,
  .stats-segment-grid,
  .stats-segment-grid.compact,
  .stats-row-two,
  .stats-row-three,
  .tech-grid,
  .pricing-grid,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .stats-hero {
    min-height: 100vh;
    padding: 126px 0 58px;
  }

  .stats-chart-header,
  .stats-detail-title {
    align-items: start;
    flex-direction: column;
  }

  .stats-chart-summary {
    width: 100%;
    text-align: left;
  }

  .contact-layout {
    gap: 34px;
  }

  .tech-workflow {
    max-width: 520px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tech-workflow-step {
    justify-content: flex-start;
    border-radius: 18px;
  }

  .workflow-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

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

  .faq-layout {
    gap: 34px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding-top: 146px;
  }

  .contact-hero {
    padding: 132px 0 64px;
  }

  .contact-card {
    padding: 20px;
  }

  .site-header {
    top: 14px;
    width: min(100% - 24px, 1120px);
    border-radius: 22px;
  }

  .nav-shell {
    min-height: 60px;
    padding: 0 14px;
  }

  .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .hero-actions,
  .footer-grid,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .profit-chart {
    height: 260px;
  }

  .stats-bankroll-chart {
    height: 310px;
  }

  .stats-chart-panel,
  .stats-detail-block,
  .stats-table-card {
    padding: 18px;
  }

}

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

  .reveal-enabled .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
