:root {
  --bg: #050806;
  --bg-soft: #09140d;
  --surface: rgba(11, 21, 15, 0.86);
  --surface-2: rgba(10, 18, 14, 0.68);
  --surface-light: rgba(255, 255, 255, 0.04);
  --line: rgba(104, 255, 160, 0.14);
  --text: #f5f7f4;
  --muted: #93a093;
  --green: #23cf62;
  --green-bright: #3eff87;
  --gold: #f3b73d;
  --teal: #18e2df;
  --violet: #ab72ff;
  --pink: #f65cd1;
  --shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(38, 149, 67, 0.05) 0%, transparent 16%),
    radial-gradient(circle at 12% 8%, rgba(35, 207, 98, 0.12), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(35, 207, 98, 0.05), transparent 18%),
    linear-gradient(180deg, #020402 0%, #040805 36%, #060b08 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 86%);
}

.page-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.page-shell::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #d88c14 0%, #ffb01e 100%);
  z-index: 20;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(4, 10, 6, 0.72), rgba(4, 10, 6, 0.34));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: var(--text);
  text-decoration: none;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-word {
  display: inline-block;
  font-size: 1.22rem;
  letter-spacing: 0.2em;
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  text-transform: uppercase;
  color: #f4f8f4;
}

.brand-sub {
  color: rgba(245, 247, 244, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 22px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(10, 24, 14, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 8px 20px rgba(0, 0, 0, 0.14);
}

.site-nav a,
.header-cta,
.primary-btn,
.secondary-btn {
  text-decoration: none;
}

.site-nav a {
  color: rgba(245, 247, 244, 0.78);
  font-size: 1rem;
  font-weight: 500;
}

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

.header-cta,
.primary-btn,
.secondary-btn,
.contact-form button {
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta,
.primary-btn,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #05110a;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  box-shadow: 0 10px 24px rgba(35, 207, 98, 0.18);
  font-weight: 700;
  font-size: 1rem;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  font-size: 1rem;
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
.contact-form button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

.section {
  padding: 64px 0;
}

.section-dark {
  position: relative;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 16px -14px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 14% 22%, rgba(35, 207, 98, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(7, 16, 10, 0.86), rgba(4, 10, 7, 0.92));
  border: 1px solid rgba(87, 255, 144, 0.06);
  z-index: -1;
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: 40px;
  padding-top: 22px;
  padding-bottom: 16px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-bright);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 680;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(1.92rem, 3.3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-heading h2,
.split-copy h2,
.cta-box h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
}

.hero-text,
.section-heading p,
.feature-panel p,
.product-card p,
.tool-card p,
.capability-item p,
.step-card p,
.plan-card li,
.cta-box p,
.form-note {
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.98rem;
}

.hero-text {
  max-width: 34rem;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.72;
}

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

.compare-item,
.cta-mini-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  padding: 14px 16px;
}

.cta-mini-metrics strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
}

.compare-item span,
.compare-item p,
.cta-mini-metrics span,
.price-note {
  color: var(--muted);
}

.hero-tags {
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  margin: 14px 0 0;
}

.hero-tags li,
.plan-tag,
.live-pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.hero-tags li {
  padding: 10px 14px;
  color: #e2e9e1;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  isolation: isolate;
  padding-top: 6px;
}

.hero-visual-stack {
  position: relative;
  width: min(540px, 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 207, 98, 0.12), rgba(35, 207, 98, 0.02) 64%, transparent 70%);
}

.orb-left {
  width: 520px;
  height: 520px;
  left: -12%;
  top: -4%;
}

.orb-right {
  width: 360px;
  height: 360px;
  right: -6%;
  bottom: 2%;
}

.hero-card,
.feature-panel,
.product-card,
.tool-card,
.advantage-card,
.step-card,
.plan-card,
.cta-box {
  box-shadow: var(--shadow);
}

.hero-card {
  width: 100%;
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(87, 255, 144, 0.14);
  background:
    linear-gradient(180deg, rgba(13, 26, 18, 0.95), rgba(8, 17, 11, 0.88)),
    rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 207, 98, 0.22), transparent 70%);
}

.hero-card-top,
.trust-bar,
.split-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.card-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.live-pill,
.plan-tag {
  padding: 8px 12px;
  color: var(--green-bright);
  font-size: 0.74rem;
  font-weight: 700;
}

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

.stat-grid div,
.trust-bar,
.compare-item,
.feature-panel,
.product-card,
.tool-card,
.step-card,
.plan-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.stat-grid div {
  padding: 14px;
  border-radius: var(--radius-md);
}

.stat-grid strong {
  display: block;
  font-size: 1.42rem;
  color: var(--green-bright);
}

.stat-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.hero-card-caption p {
  max-width: 17rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-card-price {
  flex: 0 0 auto;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(243, 183, 61, 0.16);
  background: rgba(243, 183, 61, 0.06);
}

.hero-card-price span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card-price strong {
  color: var(--gold);
  font-size: 1.08rem;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 84px;
  margin-bottom: 12px;
}

.mini-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, rgba(62, 255, 135, 0.95), rgba(24, 226, 223, 0.72));
  animation: rise 900ms ease both;
}

.trust-bar {
  margin: 10px 0 8px;
  padding: 18px 22px;
  border-radius: 22px;
}

.trust-bar p {
  margin: 0;
  color: #7e8790;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.compliance-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.compliance-badges span {
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
}

.compliance-badges span:nth-child(1) {
  color: var(--teal);
  border: 1px solid rgba(24, 226, 223, 0.24);
  background: rgba(24, 226, 223, 0.08);
}

.compliance-badges span:nth-child(2) {
  color: var(--gold);
  border: 1px solid rgba(243, 183, 61, 0.24);
  background: rgba(243, 183, 61, 0.08);
}

.compliance-badges span:nth-child(3) {
  color: #2de8ff;
  border: 1px solid rgba(45, 232, 255, 0.24);
  background: rgba(45, 232, 255, 0.08);
}

.compliance-badges span:nth-child(4) {
  color: var(--violet);
  border: 1px solid rgba(171, 114, 255, 0.24);
  background: rgba(171, 114, 255, 0.08);
}

.compliance-badges span:nth-child(5) {
  color: var(--pink);
  border: 1px solid rgba(246, 92, 209, 0.24);
  background: rgba(246, 92, 209, 0.08);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 30px;
}

.product-heading {
  max-width: none;
  text-align: center;
  margin-bottom: 44px;
}

.product-heading h2 {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  font-weight: 740;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.product-heading-sub {
  margin-top: 10px;
  color: rgba(62, 255, 135, 0.88);
  font-style: normal;
  font-size: clamp(0.9rem, 1.05vw, 1.02rem);
  letter-spacing: 0.01em;
}

.who-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 148px minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
}

.who-left,
.who-right {
  min-width: 0;
}

.who-left {
  display: grid;
  gap: 14px;
}

.who-left h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.75rem, 2.5vw, 2.3rem);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.who-lead {
  margin: 0;
  color: rgba(245, 247, 244, 0.9);
  font-size: 1rem;
  line-height: 1.62;
  font-weight: 620;
  max-width: none;
}

.who-highlight {
  color: rgba(62, 255, 135, 0.92);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.68;
  font-weight: 560;
  max-width: none;
}

.who-metrics {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

.who-metrics::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  width: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  z-index: 0;
}

.metric-orb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #29d45f 0%, #21c95c 100%);
  box-shadow: 0 18px 40px rgba(35, 207, 98, 0.2);
}

.metric-sm {
  width: 136px;
  height: 136px;
}

.metric-md {
  width: 136px;
  height: 136px;
}

.metric-lg {
  width: 136px;
  height: 136px;
}

.metric-orb strong {
  font-size: 1.3rem;
  line-height: 1;
}

.metric-orb span {
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 580;
}

.who-right p {
  margin: 0 0 14px;
  color: #a3adb3;
  line-height: 1.66;
  font-size: 0.97rem;
  max-width: none;
}

.who-copy-strong {
  color: #d5ded9;
  font-size: 1.04rem;
  line-height: 1.58;
  font-weight: 560;
}

.who-points {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.who-points div {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.who-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.98rem;
}

.who-points span {
  color: var(--muted);
}

.about-grid,
.product-grid,
.tools-grid,
.steps-grid,
.plans-grid,
.pricing-header {
  display: grid;
  gap: 20px;
}

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

.feature-panel,
.product-card,
.tool-card,
.step-card,
.plan-card,
.advantage-card,
.cta-box {
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(12px);
}

.feature-panel h3,
.product-card h3,
.tool-card h3,
.capability-item h3,
.step-card h3,
.plan-card h3,
.advantage-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.product-card ul,
.check-list,
.plan-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: #dbe2da;
}

.product-card li,
.check-list li,
.plan-card li {
  margin-top: 10px;
}

.product-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(74, 145, 101, 0.52);
  background: linear-gradient(180deg, rgba(12, 52, 29, 0.82), rgba(8, 34, 19, 0.94));
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.product-card-sports {
  --product-accent: #22b44c;
  --product-accent-soft: #1d7f39;
}

.product-card-casino {
  --product-accent: #e78900;
  --product-accent-soft: #936b20;
}

.product-card-live {
  --product-accent: #4983ea;
  --product-accent-soft: #346b9f;
}

.product-card-lottery {
  --product-accent: #8f45ff;
  --product-accent-soft: #5d4698;
}

.product-icon-disc {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 92px;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--product-accent);
  transform: translateY(16px);
}

.product-icon svg {
  width: 44px;
  height: 44px;
  stroke: #fff;
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-title-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 14px;
  background: var(--product-accent);
}

.product-title-bar h3 {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.15;
  text-align: center;
}

.product-subtitle-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 12px 14px;
  text-align: center;
  background: var(--product-accent-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.product-subtitle {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
}

.product-body {
  flex: 0 0 auto;
  padding: 18px 16px 20px;
  background: rgba(8, 26, 14, 0.38);
}

.product-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.product-checks li {
  position: relative;
  padding-left: 40px;
  color: #d5efe0;
  font-size: 0.89rem;
  line-height: 1.42;
}

.product-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #24d45f;
  color: #063213;
  font-weight: 900;
  font-size: 0.92rem;
}

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

.tool-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tool-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tool-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(62, 255, 135, 0.2), rgba(35, 207, 98, 0.08));
  border: 1px solid rgba(98, 255, 160, 0.3);
  box-shadow: 0 0 0 1px rgba(62, 255, 135, 0.08) inset;
}

.tool-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-bright);
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tool-card h3 {
  margin: 0;
  font-size: 1.04rem;
}

.tool-card p {
  margin: 0;
}

.split-layout {
  align-items: stretch;
  gap: 26px;
}

.integration-section .split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
  gap: 28px;
}

.integration-section {
  padding-top: 34px;
  padding-bottom: 52px;
}

.integration-section .split-copy {
  padding-right: 4px;
}

.integration-section .split-copy h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.integration-section .split-copy .eyebrow {
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.integration-section .capability-list {
  gap: 12px;
  margin-top: 24px;
}

.integration-section .capability-item {
  padding: 15px 18px 16px 18px;
  border-left: 2px solid rgba(62, 255, 135, 0.66);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(120, 255, 170, 0.1);
}

.integration-section .capability-item h3 {
  margin: 0 0 6px;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}

.integration-section .capability-item p {
  margin: 0;
  font-size: 1.01rem;
  line-height: 1.58;
  color: rgba(207, 218, 210, 0.84);
}

.split-copy,
.advantage-card {
  flex: 1;
}

.capability-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.capability-item {
  padding-left: 18px;
  border-left: 2px solid rgba(62, 255, 135, 0.42);
}

.advantage-card {
  border: 1px solid rgba(87, 255, 144, 0.12);
  background:
    radial-gradient(circle at 88% 6%, rgba(35, 207, 98, 0.19), transparent 34%),
    linear-gradient(180deg, rgba(12, 24, 16, 0.96), rgba(7, 14, 10, 0.96));
  padding: 26px 26px 24px;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.integration-section .advantage-card h3 {
  margin-top: 2px;
  margin-bottom: 14px;
  font-size: clamp(1.76rem, 2.15vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.017em;
  max-width: 13ch;
}

.integration-section .check-list {
  margin-top: 8px;
  margin-bottom: 0;
}

.integration-section .check-list li {
  margin-top: 11px;
  padding-left: 30px;
  font-size: 1.06rem;
  line-height: 1.43;
  color: rgba(236, 241, 237, 0.92);
}

.production-section .section-heading,
.win-section .section-heading {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.production-section .section-heading h2,
.win-section .section-heading h2 {
  font-size: clamp(1.9rem, 2.9vw, 3rem);
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.production-section .section-heading p,
.win-section .section-heading p {
  max-width: none;
}

.production-subline {
  margin-top: 8px;
  color: rgba(62, 255, 135, 0.86);
  font-size: 1.02rem;
}

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

.production-card {
  --production-accent: #22b44c;
  padding: 70px 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(9, 24, 14, 0.96), rgba(7, 16, 11, 0.98));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}

.production-card h3 {
  margin: 0 0 9px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.production-card p {
  margin: 0;
  color: rgba(220, 232, 223, 0.84);
  font-size: 0.96rem;
  line-height: 1.6;
}

.production-icon-wrap {
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
}

.production-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--production-accent);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.26);
}

.production-icon svg {
  width: 34px;
  height: 34px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.production-card-green {
  --production-accent: #22b44c;
}

.production-card-blue {
  --production-accent: #3b82f6;
}

.production-card-purple {
  --production-accent: #8b5cf6;
}

.win-section {
  padding-top: 22px;
}

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

.win-item {
  position: relative;
  --win-accent: #22b44c;
  padding: 24px 22px 18px;
  border-radius: 16px;
  border: 1px solid rgba(96, 255, 159, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(9, 18, 12, 0.94), rgba(8, 14, 10, 0.96));
}

.win-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  background: var(--win-accent);
}

.win-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--win-accent);
  box-shadow: 0 0 14px color-mix(in srgb, var(--win-accent) 70%, transparent);
}

.win-item h3 {
  margin: 0 0 8px;
  padding-left: 26px;
  font-size: 1.08rem;
  line-height: 1.28;
}

.win-item p {
  margin: 0;
  color: #a8b3ab;
  font-size: 0.95rem;
  line-height: 1.55;
}

.win-item:nth-child(2),
.win-item:nth-child(5) {
  --win-accent: #3b82f6;
  border-color: rgba(112, 180, 255, 0.24);
}

.win-item:nth-child(3),
.win-item:nth-child(6) {
  --win-accent: #8b5cf6;
  border-color: rgba(170, 131, 255, 0.24);
}

.win-section .section-heading h2 {
  font-size: clamp(1.78rem, 2.2vw, 2.45rem);
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.win-section .section-heading .eyebrow {
  margin-bottom: 8px;
}

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

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 18px rgba(62, 255, 135, 0.7);
}

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

.process-section {
  padding-top: 40px;
  padding-bottom: 56px;
}

.process-section .section-heading {
  max-width: 980px;
  margin: 0 auto 20px;
  text-align: center;
}

.process-section .section-heading .eyebrow {
  margin-bottom: 10px;
}

.process-section .section-heading h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-transform: none;
}

.step-card {
  position: relative;
  min-height: 280px;
  padding: 72px 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(98, 255, 160, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(9, 18, 12, 0.95), rgba(7, 15, 10, 0.97));
}

.step-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 34px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(62, 255, 135, 0.22);
  transform: translateX(-50%);
}

.step-badge {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  color: #08140b;
  font-size: 0.96rem;
  font-weight: 800;
  background: linear-gradient(180deg, #42f48a, #22cf62);
  box-shadow: 0 0 14px rgba(62, 255, 135, 0.52);
}

.step-card h3 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 1.22rem;
}

.step-card p {
  margin: 0;
  color: #acb8af;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.6;
}

.plan-card {
  position: relative;
}

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

.pricing-header {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.pricing-header div {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 22, 15, 0.72), rgba(8, 15, 10, 0.82));
}

.pricing-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--green-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.pricing-header strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.pricing-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.plan-subtitle {
  margin: -2px 0 12px;
  color: var(--green-bright);
  font-weight: 600;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 8px;
}

.price-block strong {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--text);
}

.price-block span {
  color: var(--green-bright);
  font-weight: 600;
}

.price-note {
  margin: 0 0 18px;
  line-height: 1.7;
}

.plan-action {
  margin-top: 22px;
  width: 100%;
}

.plan-card.featured {
  border-color: rgba(62, 255, 135, 0.32);
  background:
    radial-gradient(circle at top, rgba(62, 255, 135, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

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

.pricing-section {
  padding-top: 44px;
}

.pricing-heading {
  max-width: 980px;
  margin: 0 auto 24px;
  text-align: center;
}

.pricing-heading h2 {
  font-size: clamp(1.82rem, 2.45vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.016em;
}

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

.solution-card {
  --solution-accent: #22b44c;
  position: relative;
  padding: 20px 20px 18px;
  border-radius: 18px;
  border: 1px solid rgba(95, 255, 158, 0.2);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 207, 98, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(9, 18, 12, 0.95), rgba(8, 15, 10, 0.98));
}

.solution-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
  background: var(--solution-accent);
}

.solution-tag {
  margin: 0 0 8px;
  color: color-mix(in srgb, var(--solution-accent) 75%, #fff 25%);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.solution-card h3 {
  margin: 0 0 2px;
  font-size: 1.34rem;
  line-height: 1.2;
}

.solution-subtitle {
  margin: 0 0 14px;
  color: rgba(220, 230, 223, 0.86);
  font-weight: 600;
  font-size: 0.96rem;
}

.solution-meta {
  margin: 0 0 14px;
  display: grid;
  gap: 10px;
}

.solution-meta div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-meta dt {
  margin: 0;
  color: #95a596;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.solution-meta dd {
  margin: 0;
  color: #eef3ef;
  font-size: 0.89rem;
  font-weight: 600;
  text-align: right;
}

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

.solution-list li {
  position: relative;
  padding-left: 22px;
  color: #d2ddd4;
  font-size: 0.94rem;
  line-height: 1.42;
}

.solution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--solution-accent);
  box-shadow: 0 0 10px color-mix(in srgb, var(--solution-accent) 65%, transparent);
}

.solution-card .plan-action {
  margin-top: 16px;
}

.solution-card-enterprise {
  --solution-accent: #3b82f6;
  border-color: rgba(117, 182, 255, 0.22);
}

.solution-card-crypto {
  --solution-accent: #8b5cf6;
  border-color: rgba(164, 131, 255, 0.22);
}

.compare-item {
  padding: 20px 22px;
}

.compare-item span {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.compare-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.cta-section {
  padding-bottom: 96px;
}

.cta-box {
  text-align: center;
  border: 1px solid rgba(87, 255, 144, 0.14);
  background:
    radial-gradient(circle at top, rgba(35, 207, 98, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(8, 17, 11, 0.96), rgba(6, 12, 8, 0.92));
}

.cta-box p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-mini-metrics div {
  padding: 18px;
}

.cta-mini-metrics strong {
  font-size: 1.35rem;
  color: var(--green-bright);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.contact-form input::placeholder {
  color: #758177;
}

.contact-form input:focus {
  outline: 2px solid rgba(62, 255, 135, 0.2);
  border-color: rgba(62, 255, 135, 0.42);
}

.form-note {
  margin: 16px 0 0;
}

.form-note.success {
  color: var(--green-bright);
}

.site-footer {
  display: grid;
  gap: 28px;
  margin-top: 10px;
  padding: 38px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 440px;
}

.footer-brand-link {
  margin-bottom: 14px;
}

.footer-brand p,
.footer-links p,
.footer-links a,
.footer-meta p,
.footer-meta span {
  color: var(--muted);
}

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

.footer-links h3 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 10px;
  text-decoration: none;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-meta div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: scaleY(0.2);
    transform-origin: bottom;
  }

  to {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@media (max-width: 1080px) {
  .hero,
  .split-layout,
  .who-layout,
  .plans-grid,
  .solution-grid,
  .steps-grid,
  .about-grid,
  .pricing-compare,
  .pricing-header {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    justify-content: initial;
  }

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

  .production-grid,
  .win-grid {
    grid-template-columns: 1fr;
  }

  .who-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .who-left h2,
  .who-highlight,
  .who-lead,
  .who-right p {
    max-width: none;
  }

  .who-metrics {
    order: 2;
  }

  .who-right {
    order: 3;
  }

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

  .split-layout {
    display: grid;
  }

  .integration-section .split-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .integration-section .split-copy h2,
  .integration-section .advantage-card h3 {
    max-width: none;
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-visual-stack {
    width: min(560px, 100%);
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 100%);
  }

  .site-header {
    flex-wrap: wrap;
    padding-top: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 14px 0 6px;
    border-radius: 18px;
  }

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

  .header-cta {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .trust-bar,
  .hero-card-top,
  .hero-card-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .stat-grid,
  .tools-grid,
  .contact-form,
  .cta-mini-metrics,
  .footer-links {
    grid-template-columns: 1fr;
  }

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

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1,
  .section-heading h2,
  .split-copy h2,
  .cta-box h2 {
    font-size: 1.9rem;
  }

  .section-dark::before {
    inset: 12px -8px;
    border-radius: 28px;
  }

  .feature-panel,
  .product-card,
  .tool-card,
  .advantage-card,
  .step-card,
  .plan-card,
  .cta-box,
  .hero-card {
    padding: 22px;
    border-radius: 22px;
  }
}
