@charset "UTF-8";
:root {
  --bg: #07110e;
  --bg2: #0b1a15;
  --bg3: #0e2018;
  --bg4: #0a1d15;
  --surface: #162620;
  --surface2: #1c2f28;
  --green: #22c97a;
  --green-dim: #19a362;
  --green-light: #22c97a14;
  --green-lighter: #22c97a47;
  --orange: #e8621f;
  --orange-dim: #c4511a;
  --orange-light: #fdba74;
  --purple: #9d7ff5;
  --purple-dim: #7d63cc;
  --coral: #e8422a;
  --coral-dim: #c4351f;
  --text: #edf5f1;
  --text2: #7da898;
  --text3: #58776d;
  --text4: #3d6055;
  --border: rgba(34, 201, 122, 0.1);
  --border-m: rgba(34, 201, 122, 0.18);
  --border2: rgba(34, 201, 122, 0.05);
  --border-purple-dark: rgba(157, 127, 245, 0.45);
  --border-purple-medium: rgba(157, 127, 245, 0.2);
  --border-purple-light: rgba(157, 127, 245, 0.14);
  --border-purple-lighter: rgba(157, 127, 245, 0.03);
  --mono: "JetBrains Mono", monospace;
  --sans: "Manrope", sans-serif;
}

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

html,
body {
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.32s;
}

.reveal-delay-4 {
  transition-delay: 0.42s;
}

.section {
  position: relative;
  z-index: 1;
}

.section-spacing {
  padding: 7rem 0;
}

.section-spacing--short {
  padding: 7rem 0 5rem;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.section-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-dual-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.section-triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.12;
}

.section-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 3.5rem;
  font-weight: 400;
}

.section-sub--no-bottom-margin {
  margin-bottom: 0;
}

.section-tag,
.section-tag-purple {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}

.section-tag {
  color: var(--green);
}

.section-tag-purple {
  color: var(--purple);
}

.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.logo-mark {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  color: #07110E;
}

@keyframes estela-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.section-bg2-base {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.section-bg3-base {
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}

.section-bg-base {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-orange {
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  transition: all 0.2s;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  color: #fff;
  background: var(--orange);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(232, 98, 31, 0.3);
}
.cta-orange:hover {
  background: var(--orange-dim);
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(232, 98, 31, 0.45);
}

.cta-orange-compact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--sans);
  box-shadow: 0 0 16px rgba(232, 98, 31, 0.28);
}
.cta-orange-compact:hover {
  background: var(--orange-dim);
  transform: translateY(-1px);
}

.cta-ghost-orange-compact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--orange);
  background: transparent;
  border: 1px solid rgba(232, 98, 31, 0.35);
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--sans);
}
.cta-ghost-orange-compact:hover {
  background: rgba(232, 98, 31, 0.07);
  border-color: rgba(232, 98, 31, 0.55);
}

.cta-purple-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--purple);
  background: rgba(157, 127, 245, 0.09);
  border: 1px solid rgba(157, 127, 245, 0.35);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
  transition: all 0.2s;
}
.cta-purple-ghost:hover {
  background: rgba(157, 127, 245, 0.15);
  box-shadow: 0 0 24px rgba(157, 127, 245, 0.2);
}

.cta-purple-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  background: rgba(157, 127, 245, 0.08);
  border: 0.5px solid rgba(157, 127, 245, 0.3);
  border-radius: 7px;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
  transition: all 0.2s;
}
.cta-purple-sm:hover {
  background: rgba(157, 127, 245, 0.14);
  box-shadow: 0 0 20px rgba(157, 127, 245, 0.15);
}

.cta-github-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.cta-github-mini:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.cta-enterprise {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--purple);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 28px rgba(157, 127, 245, 0.4);
}
.cta-enterprise:hover {
  background: var(--purple-dim);
  box-shadow: 0 0 44px rgba(157, 127, 245, 0.55);
  transform: translateY(-1px);
}

.cta-green-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #07110e;
  background: var(--green);
  border: none;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.cta-green-sm:hover {
  background: var(--green-dim);
}

.cta-ghost-green {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green);
  background: transparent;
  border: 1px solid rgba(34, 201, 122, 0.28);
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--sans);
}
.cta-ghost-green:hover {
  background: rgba(34, 201, 122, 0.06);
  border-color: rgba(34, 201, 122, 0.45);
}

.btn-ghost {
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  background: transparent;
  border: 1px solid rgba(232, 98, 31, 0.35);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--sans);
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: rgba(232, 98, 31, 0.07);
  border-color: rgba(232, 98, 31, 0.55);
}

.btn-signup {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--sans);
  box-shadow: 0 0 18px rgba(232, 98, 31, 0.3);
}

.cta-coral {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--coral);
  border: none;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--sans);
  box-shadow: 0 0 20px rgba(232, 66, 42, 0.28);
}
.cta-coral:hover {
  background: var(--coral-dim);
  transform: translateY(-1px);
}

.cta-ghost-purple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--purple);
  background: rgba(157, 127, 245, 0.06);
  border: 1px solid rgba(157, 127, 245, 0.25);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.cta-ghost-purple:hover {
  border-color: rgba(157, 127, 245, 0.42);
  background: rgba(157, 127, 245, 0.1);
}

.cta-ghost-compact {
  gap: 6px;
  padding: 8px 16px;
  font-size: 12.5px;
  border-radius: 7px;
  white-space: nowrap;
}

.cta-purple-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  background: var(--purple);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(157, 127, 245, 0.3);
  transition: box-shadow 0.2s;
}
.cta-purple-solid:hover {
  box-shadow: 0 0 32px rgba(157, 127, 245, 0.5);
}

.oss-cta-purple-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--purple);
  border: 1px solid rgba(157, 127, 245, 0.5);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
  box-shadow: 0 0 24px rgba(157, 127, 245, 0.35);
  transition: box-shadow 0.2s;
}
.oss-cta-purple-hero:hover {
  box-shadow: 0 0 36px rgba(157, 127, 245, 0.55);
}

.oss-cta-github-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #d0d8dc;
  background: rgba(208, 216, 220, 0.09);
  border: 1px solid rgba(208, 216, 220, 0.28);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.oss-cta-github-hero:hover {
  border-color: rgba(208, 216, 220, 0.45);
  color: #edf5f1;
  background: rgba(208, 216, 220, 0.14);
}
.oss-cta-github-hero svg {
  flex-shrink: 0;
}

.oss-cta-docs-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  background: rgba(34, 201, 122, 0.07);
  border: 1px solid rgba(34, 201, 122, 0.28);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.oss-cta-docs-hero:hover {
  border-color: rgba(34, 201, 122, 0.45);
  background: rgba(34, 201, 122, 0.12);
}

.is-soon {
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}

.is-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  border-radius: inherit;
}

.code-block {
  border-radius: 14px;
  overflow: hidden;
}

.code-block--terminal {
  background: #030a08;
  border: 0.5px solid var(--border-m);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.code-block--docs {
  background: #040d0a;
  border: 1px solid var(--border);
}

.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 1.5rem;
}

.code-header--terminal {
  border-bottom: 0.5px solid var(--border-m);
}

.code-header--docs {
  border-bottom: 1px solid var(--border);
}

.code-dots {
  display: flex;
  gap: 6px;
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-dot--red {
  background: #ff5f57;
}

.code-dot--yellow {
  background: #febc2e;
}

.code-dot--green {
  background: #28c840;
}

.code-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
}

.code-body {
  padding: 1.5rem 1.75rem;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 2.1;
}

.c-comment {
  color: var(--text3);
}

.c-cmd {
  color: var(--green);
}

.c-arg {
  color: var(--purple);
}

.c-string {
  color: var(--orange-light);
}

.c-muted {
  color: var(--text2);
}

.c-ok {
  color: #28c840;
}

.product-card {
  border-radius: 18px;
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.product-card--orange {
  background: linear-gradient(145deg, #1c1008 0%, #100905 100%);
  border: 1px solid rgba(232, 98, 31, 0.28);
}
.product-card--orange::after {
  background: linear-gradient(90deg, transparent, rgba(232, 98, 31, 0.5), transparent);
}

.product-card--purple {
  background: linear-gradient(145deg, #16112e 0%, #0d0a1c 100%);
  border: 1px solid rgba(157, 127, 245, 0.28);
}
.product-card--purple::after {
  background: linear-gradient(90deg, transparent, rgba(157, 127, 245, 0.5), transparent);
}

.product-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.product-tag--orange {
  background: rgba(232, 98, 31, 0.1);
  color: var(--orange);
  border: 0.5px solid rgba(232, 98, 31, 0.35);
}

.product-tag--purple {
  background: rgba(157, 127, 245, 0.1);
  color: var(--purple);
  border: 0.5px solid rgba(157, 127, 245, 0.35);
}

.product-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.product-title--mini {
  font-size: 22px;
  letter-spacing: -0.4px;
}

.product-tagline {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 2rem;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2.25rem;
  padding: 0;
}

.product-feature {
  font-size: 13px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.product-feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.product-feature-dot--orange {
  background: var(--orange);
}

.product-feature-dot--purple {
  background: var(--purple);
}

.banner-card {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.banner-card--compact {
  padding: 1.4rem 2rem;
}

.banner-card--large {
  padding: 1.75rem 2rem;
}

.banner-card--purple {
  background: rgba(11, 26, 21, 0.8);
  border: 0.5px solid rgba(157, 127, 245, 0.18);
}

.banner-card--green {
  background: linear-gradient(135deg, #0a1e14 0%, #07110e 100%);
  border: 0.5px solid rgba(34, 201, 122, 0.2);
}

.banner-card--glow {
  position: relative;
  overflow: hidden;
}
.banner-card--glow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 300px;
  height: 200px;
  pointer-events: none;
}
.banner-card--glow > * {
  position: relative;
  z-index: 1;
}

.banner-card--green.banner-card--glow::before {
  background: radial-gradient(ellipse, rgba(34, 201, 122, 0.07) 0%, transparent 65%);
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.banner-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.banner-tag--green {
  background: rgba(34, 201, 122, 0.08);
  color: var(--green);
  border: 0.5px solid rgba(34, 201, 122, 0.22);
}

.banner-tag--purple {
  background: rgba(157, 127, 245, 0.08);
  color: var(--purple);
  border: 0.5px solid rgba(157, 127, 245, 0.22);
}

.banner-body {
  flex: 1;
}

.banner-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.banner-description {
  color: var(--text2);
}

.banner-description--primary {
  font-size: 14px;
  font-weight: 500;
}

.banner-description--secondary {
  font-size: 13px;
  font-weight: 400;
}

.step-card {
  background: var(--bg2);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0;
  transition: opacity 0.25s;
}
.step-card:hover {
  transform: translateY(-2px);
}
.step-card:hover::before {
  opacity: 1;
}

.step-card--side {
  display: flex;
  gap: 1.25rem;
}

.step-card--green {
  border: 0.5px solid var(--border);
}
.step-card--green::before {
  background: linear-gradient(90deg, transparent, rgba(34, 201, 122, 0.3), transparent);
}
.step-card--green:hover {
  border-color: rgba(34, 201, 122, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.step-card--orange {
  border: 1px solid rgba(232, 98, 31, 0.15);
}
.step-card--orange::before {
  background: linear-gradient(90deg, transparent, rgba(232, 98, 31, 0.45), transparent);
}
.step-card--orange:hover {
  border-color: rgba(232, 98, 31, 0.32);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(232, 98, 31, 0.06);
}

.step-num {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
}

.step-num--sidebar {
  width: 24px;
  flex-shrink: 0;
  padding-top: 3px;
}

.step-num--header {
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.step-num--green {
  color: var(--green);
}

.step-num--orange {
  color: var(--orange);
}

.step-body {
  flex: 1;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.step-screenshot {
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.step-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.step-screenshot--green {
  border: 0.5px solid rgba(34, 201, 122, 0.18);
}

.step-screenshot--orange {
  border: 0.5px solid rgba(232, 98, 31, 0.18);
}

.step-code {
  font-family: var(--mono);
  font-size: 11.5px;
  background: rgba(34, 201, 122, 0.07);
  color: var(--green);
  padding: 1px 6px;
  border-radius: 3px;
  border: 0.5px solid rgba(34, 201, 122, 0.15);
}

button.step-screenshot {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.step-screenshot {
  position: relative;
  isolation: isolate;
}
.step-screenshot img {
  transition: transform 0.35s ease;
  will-change: transform;
}
.step-screenshot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s ease;
  pointer-events: none;
}
.step-screenshot:hover img, .step-screenshot:focus-visible img {
  transform: scale(1.035);
}
.step-screenshot:hover::after, .step-screenshot:focus-visible::after {
  background: rgba(0, 0, 0, 0.14);
}
.step-screenshot:focus-visible {
  outline: 2px solid rgba(157, 127, 245, 0.65);
  outline-offset: 3px;
}

.step-screenshot__zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(7, 17, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.step-screenshot__zoom svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-screenshot:hover .step-screenshot__zoom,
.step-screenshot:focus-visible .step-screenshot__zoom {
  opacity: 1;
  transform: translateY(0);
}

.screenshot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1.5rem, env(safe-area-inset-top)) max(1.5rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) max(1.5rem, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.screenshot-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.screenshot-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 8, 0.9);
  backdrop-filter: blur(8px);
}

.screenshot-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100dvh - 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.screenshot-lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 17, 14, 0.92);
  color: #fff;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.screenshot-lightbox__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.screenshot-lightbox__close:hover {
  background: rgba(20, 32, 28, 0.96);
  border-color: rgba(255, 255, 255, 0.24);
}
.screenshot-lightbox__close:active {
  transform: scale(0.96);
}
.screenshot-lightbox__close:focus-visible {
  outline: 2px solid rgba(157, 127, 245, 0.75);
  outline-offset: 2px;
}

.screenshot-lightbox__figure {
  width: 100%;
  margin: 3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 0;
}

.screenshot-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(100dvh - 9rem);
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
  background: var(--surface);
  touch-action: pan-x pan-y pinch-zoom;
}

.screenshot-lightbox__caption {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  padding: 0 0.5rem;
}

body.screenshot-lightbox-open {
  overflow: hidden;
}

@media (hover: none) and (pointer: coarse) {
  .step-screenshot__zoom {
    opacity: 1;
    transform: none;
  }
  .step-screenshot:active img {
    transform: scale(1.02);
  }
  .step-screenshot:active::after {
    background: rgba(0, 0, 0, 0.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .step-screenshot img,
  .step-screenshot::after,
  .step-screenshot__zoom,
  .screenshot-lightbox {
    transition: none;
  }
  .step-screenshot:hover img,
  .step-screenshot:focus-visible img,
  .step-screenshot:active img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .step-screenshot__zoom {
    width: 38px;
    height: 38px;
    right: 8px;
    bottom: 8px;
  }
  .screenshot-lightbox {
    padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  }
  .screenshot-lightbox__dialog {
    width: 100%;
    max-height: 100dvh;
    height: 100%;
    justify-content: center;
  }
  .screenshot-lightbox__close {
    position: fixed;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
  }
  .screenshot-lightbox__figure {
    margin-top: 0;
    flex: 1;
    justify-content: center;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .screenshot-lightbox__image {
    max-height: none;
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .screenshot-lightbox__caption {
    font-size: 13px;
    padding-bottom: max(0.25rem, env(safe-area-inset-bottom));
  }
}
@media (max-width: 768px) and (max-height: 700px) {
  .screenshot-lightbox__figure {
    justify-content: flex-start;
    padding-top: 3.25rem;
  }
  .screenshot-lightbox__image {
    max-height: calc(100dvh - 7rem);
  }
}
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 62px;
  background: rgba(7, 17, 14, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li > a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links > li > a:hover {
  color: var(--text);
}
.nav-links > li > a.active {
  color: var(--orange);
}

.nav-item-dropdown {
  position: relative;
}
@media (min-width: 769px) {
  .nav-item-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  .nav-item-dropdown.is-open .nav-dropdown-chevron {
    transform: rotate(180deg);
  }
  .nav-item-dropdown.is-open .nav-dropdown-trigger:not(.active) {
    color: var(--text);
  }
  .nav-item-dropdown.is-open .nav-dropdown-trigger:not(.active) .nav-dropdown-chevron {
    color: var(--text);
  }
}
@media (min-width: 769px) {
  .nav-item-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -12px;
    right: -12px;
    height: 14px;
  }
  .nav-item-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  .nav-item-dropdown:hover .nav-dropdown-chevron {
    transform: rotate(180deg);
  }
  .nav-item-dropdown:hover .nav-dropdown-trigger:not(.active) {
    color: var(--text);
  }
  .nav-item-dropdown:hover .nav-dropdown-trigger:not(.active) .nav-dropdown-chevron {
    color: var(--text);
  }
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-dropdown-trigger:hover:not(.active) {
  color: var(--text);
}
.nav-dropdown-trigger:hover:not(.active) .nav-dropdown-chevron {
  color: var(--text);
}
.nav-dropdown-trigger.active {
  color: var(--orange);
}
.nav-dropdown-trigger.active .nav-dropdown-chevron {
  color: var(--orange);
}

.nav-dropdown-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  transition: transform 0.25s ease, color 0.2s;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--bg2);
  border: 0.5px solid rgba(125, 168, 152, 0.15);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(125, 168, 152, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--bg2);
  border-left: 0.5px solid rgba(157, 127, 245, 0.18);
  border-top: 0.5px solid rgba(157, 127, 245, 0.18);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--text2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.2s ease;
}
.nav-dropdown-menu a:hover {
  color: var(--text);
  background: rgba(125, 168, 152, 0.08);
  transform: translateX(2px);
}
.nav-dropdown-menu a.active {
  color: var(--orange);
  background: rgba(255, 153, 51, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

footer {
  border-top: 0.5px solid var(--border2);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.15rem;
  background: var(--bg);
}

.footer-row-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-row-social {
  display: flex;
  justify-content: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.2px;
  color: var(--text);
  justify-self: start;
}

.footer-brand-logo {
  width: 22px;
  height: 22px;
  font-size: 11px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-self: center;
}
.footer-links > a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links > a:hover {
  color: var(--text);
}

.footer-item-dropdown {
  position: relative;
}
.footer-item-dropdown.is-open .footer-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.footer-item-dropdown.is-open .footer-dropdown-chevron {
  transform: rotate(180deg);
}
@media (min-width: 769px) {
  .footer-item-dropdown::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: -12px;
    right: -12px;
    height: 14px;
  }
  .footer-item-dropdown:hover .footer-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  .footer-item-dropdown:hover .footer-dropdown-trigger {
    color: var(--text);
  }
  .footer-item-dropdown:hover .footer-dropdown-trigger .footer-dropdown-chevron {
    color: var(--text);
  }
  .footer-item-dropdown:hover .footer-dropdown-chevron {
    transform: rotate(180deg);
  }
}

.footer-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text3);
  transition: color 0.2s ease;
}
.footer-dropdown-trigger:hover {
  color: var(--text);
}
.footer-dropdown-trigger:hover .footer-dropdown-chevron {
  color: var(--text);
}

.footer-dropdown-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  transition: transform 0.25s ease, color 0.2s;
}

.footer-dropdown-menu {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  margin: 0;
  padding: 8px;
  list-style: none;
  z-index: 50;
  text-align: left;
  background: var(--bg2);
  border: 0.5px solid rgba(125, 168, 152, 0.15);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(125, 168, 152, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.footer-dropdown-menu::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--bg2);
  border-right: 0.5px solid rgba(157, 127, 245, 0.18);
  border-bottom: 0.5px solid rgba(157, 127, 245, 0.18);
  transform: translateX(-50%) rotate(45deg);
}
.footer-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--text2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  transition: all 0.2s ease;
}
.footer-dropdown-menu a:hover {
  color: var(--text);
  background: rgba(125, 168, 152, 0.08);
  transform: translateX(2px);
}

.footer-copy {
  font-size: 12px;
  color: var(--text3);
  font-family: var(--mono);
  letter-spacing: 0.3px;
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-social-link {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(125, 168, 152, 0.22);
  background: rgba(125, 168, 152, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.footer-social-link:hover {
  color: var(--text);
  border-color: rgba(125, 168, 152, 0.38);
  background: rgba(125, 168, 152, 0.1);
  transform: translateY(-1px);
}

.footer-social-link__mark--linkedin {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1;
  text-transform: lowercase;
}

.footer-social-link__icon {
  width: 22px;
  height: 22px;
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 2.5rem;
  overflow: hidden;
  background: var(--bg);
}
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero h1 span {
  color: var(--green);
}
.hero canvas {
  position: absolute;
  top: 0;
  right: -60px;
  width: 620px;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
}

.hero-g1 {
  width: 750px;
  height: 750px;
  top: -10%;
  right: 0%;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.13) 0%, transparent 60%);
}

.hero-g2 {
  width: 550px;
  height: 550px;
  bottom: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.09) 0%, transparent 60%);
}

.hero-g3 {
  width: 380px;
  height: 380px;
  top: 45%;
  right: 22%;
  background: radial-gradient(circle, rgba(232, 98, 31, 0.07) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--green-light);
  border: 0.5px solid var(--green-lighter);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.75rem;
  font-family: var(--mono);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: estela-pulse 2s infinite;
}

.hero-sub {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
  align-items: center;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
  font-weight: 500;
}

.bullet-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.logos-section {
  padding: 5rem 2.5rem;
  border-top: 0.5px solid var(--border2);
  border-bottom: 0.5px solid var(--border2);
  text-align: center;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.logos-section::before {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 500px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(34, 201, 122, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.logos-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.logo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  display: block;
  max-height: 56px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo-img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.logo-item:hover .logo-img--base {
  opacity: 0;
}

.logo-item:hover .logo-img--hover {
  opacity: 1;
}

.stats-section {
  padding: 0 2.5rem 6rem;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid rgba(34, 201, 122, 0.1);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stat-item {
  background: transparent;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  bottom: 15%;
  width: 0.5px;
  background: rgba(34, 201, 122, 0.08);
}

.stat-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: var(--mono);
}

.stat-label {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  font-weight: 500;
}

.home-why-section-bg::before {
  content: "";
  position: absolute;
  top: 8%;
  right: 0%;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse at 100% 50%, rgba(34, 201, 122, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.home-why-section-bg::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232, 98, 31, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.why-card {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 201, 122, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.why-card:hover {
  border-color: rgba(34, 201, 122, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.why-card:hover::before {
  opacity: 1;
}
.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

.why-icon {
  width: 40px;
  height: 40px;
  background: rgba(34, 201, 122, 0.08);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 18px;
}

.home-products-section-bg::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232, 98, 31, 0.08) 0%, transparent 55%);
  pointer-events: none;
}
.home-products-section-bg::after {
  content: "";
  position: absolute;
  bottom: 20%;
  right: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.enterprise-section {
  padding: 8rem 2.5rem 7rem;
  background: var(--bg4);
  position: relative;
  overflow: hidden;
}
.enterprise-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.enterprise-section::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.enterprise-top-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 127, 245, 0.3), transparent);
}

.enterprise-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #2a1558 0%, #1d0e45 40%, #150d35 100%);
  border: 2px solid rgba(157, 127, 245, 0.4);
  border-radius: 22px;
  padding: 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  box-shadow: 0 0 80px rgba(157, 127, 245, 0.2), 0 0 160px rgba(157, 127, 245, 0.08), inset 0 1px 0 rgba(157, 127, 245, 0.2);
  overflow: hidden;
}
.enterprise-inner::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.enterprise-inner::after {
  content: "";
  position: absolute;
  bottom: -35%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.enterprise-tag-main {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  background: rgba(157, 127, 245, 0.15);
  color: #c4abff;
  border: 1.5px solid rgba(157, 127, 245, 0.5);
  box-shadow: 0 0 20px rgba(157, 127, 245, 0.2);
}

.enterprise-left {
  position: relative;
  z-index: 1;
}
.enterprise-left h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.enterprise-left p {
  font-size: 15px;
  color: rgba(220, 210, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 400px;
}

.enterprise-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.enterprise-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(157, 127, 245, 0.08);
  border: 0.5px solid rgba(157, 127, 245, 0.2);
  border-radius: 10px;
  transition: all 0.2s;
}
.enterprise-feat:hover {
  background: rgba(157, 127, 245, 0.14);
  border-color: rgba(157, 127, 245, 0.35);
  transform: translateX(3px);
}

.enterprise-feat-check {
  width: 20px;
  height: 20px;
  background: rgba(157, 127, 245, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid rgba(157, 127, 245, 0.4);
}
.enterprise-feat-check svg {
  width: 10px;
  height: 10px;
}

.enterprise-feat-text {
  font-size: 13px;
  color: rgba(220, 210, 255, 0.75);
  line-height: 1.5;
  font-weight: 500;
}
.enterprise-feat-text strong {
  font-weight: 700;
  color: #e0d4ff;
}

.home-platform-features-section-bg::before {
  content: "";
  position: absolute;
  top: 5%;
  right: 3%;
  width: 450px;
  height: 350px;
  background: radial-gradient(ellipse at 100% 0%, rgba(34, 201, 122, 0.09) 0%, transparent 65%);
  pointer-events: none;
}
.home-platform-features-section-bg::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 0%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.home-cli-section-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.home-cli-terminal {
  margin-top: 2.5rem;
}

.home-final-cta-section-bg::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 5%;
  width: 450px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232, 98, 31, 0.08) 0%, transparent 55%);
  pointer-events: none;
}
.home-final-cta-section-bg::after {
  content: "";
  position: absolute;
  top: 0%;
  right: 5%;
  width: 400px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(157, 127, 245, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.oss-hero-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.oss-hero-glow-tr {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.11) 0%, transparent 70%);
  pointer-events: none;
}

.oss-hero-glow-bl {
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.oss-hero {
  padding: 100px 2.5rem 80px;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
}
.oss-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.oss-hero h1 em {
  font-style: normal;
  color: var(--purple);
}

.oss-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(157, 127, 245, 0.08);
  border: 1px solid rgba(157, 127, 245, 0.28);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 1.75rem;
  font-family: var(--mono);
  letter-spacing: 0.5px;
}

.oss-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: estela-pulse 2s infinite;
}

.oss-hero-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.oss-hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.oss-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  background: rgba(157, 127, 245, 0.07);
  border: 1px solid rgba(157, 127, 245, 0.22);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  font-family: var(--mono);
}

.oss-hero-pill-dot {
  width: 5px;
  height: 5px;
  background: var(--purple);
  border-radius: 50%;
  opacity: 0.7;
}

.oss-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.oss-repo-card {
  background: var(--bg2);
  border: 1px solid rgba(157, 127, 245, 0.2);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.oss-repo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 127, 245, 0.5), transparent);
  opacity: 0.7;
}

.oss-repo-card-header {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(157, 127, 245, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.oss-repo-icon {
  width: 34px;
  height: 34px;
  background: rgba(157, 127, 245, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.oss-repo-name {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--purple);
  font-weight: 500;
}

.oss-repo-desc {
  font-size: 11px;
  color: var(--text3);
  margin-top: 2px;
}

.oss-repo-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(157, 127, 245, 0.06);
}

.oss-repo-stat {
  background: var(--bg2);
  padding: 1.1rem;
  text-align: center;
}

.oss-repo-stat-val {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.oss-repo-stat-lbl {
  font-size: 11px;
  color: var(--text3);
  margin-top: 3px;
}

.oss-repo-langs {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(157, 127, 245, 0.08);
}

.oss-lang-label {
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 0.6rem;
  font-family: var(--mono);
}

.oss-lang-blocks {
  display: flex;
  gap: 8px;
}
.oss-lang-blocks .oss-lang-block:nth-child(1) .oss-lang-block-dot {
  background: #3776AB;
}
.oss-lang-blocks .oss-lang-block:nth-child(2) .oss-lang-block-dot {
  background: #22C97A;
}

.oss-lang-block {
  flex: 1;
  padding: 8px 12px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oss-lang-block-python {
  background: rgba(55, 118, 171, 0.12);
  border: 1px solid rgba(55, 118, 171, 0.3);
}

.oss-lang-block-scrapy {
  background: rgba(34, 201, 122, 0.07);
  border: 1px solid rgba(34, 201, 122, 0.2);
}

.oss-lang-block-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.oss-lang-block-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.oss-lang-block-sub {
  font-size: 10px;
  color: var(--text2);
  font-family: var(--mono);
}

.oss-repo-badges {
  padding: 0.75rem 1.25rem 1rem;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.oss-rbadge {
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--mono);
  font-weight: 500;
}

.oss-rbadge-mit {
  color: var(--green);
  background: rgba(34, 201, 122, 0.08);
  border: 1px solid rgba(34, 201, 122, 0.15);
}

.oss-rbadge-build {
  color: #28c840;
  background: rgba(40, 200, 64, 0.08);
  border: 1px solid rgba(40, 200, 64, 0.15);
}

.oss-rbadge-default {
  color: var(--text2);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.oss-stats-wrap {
  position: relative;
  overflow: hidden;
}

.oss-stats-glow-l {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  width: 420px;
  height: 260px;
  background: radial-gradient(ellipse, rgba(157, 127, 245, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.oss-stats-glow-r {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 420px;
  height: 260px;
  background: radial-gradient(ellipse, rgba(157, 127, 245, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.oss-stats-row {
  border-top: 1px solid rgba(157, 127, 245, 0.12);
  border-bottom: 1px solid rgba(157, 127, 245, 0.12);
  background: linear-gradient(135deg, #0c1220, #09101c, #0c1220);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.oss-stat-sep {
  border-right: 1px solid rgba(157, 127, 245, 0.1);
}
.oss-stat-sep:last-child {
  border-right: none;
}

.oss-stat-block {
  padding: 2.75rem 2rem;
  text-align: center;
}

.oss-stat-num {
  font-family: var(--mono);
  font-size: 38px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: -1.5px;
  line-height: 1;
  text-shadow: 0 0 28px rgba(157, 127, 245, 0.4);
}

.oss-stat-lbl {
  font-size: 13px;
  color: var(--text2);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.oss-philosophy-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.oss-phil-glow-r {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.oss-philosophy {
  padding: 7rem 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

.oss-philosophy-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0;
}

.oss-philosophy-quote {
  position: relative;
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 2px solid var(--purple);
  background: rgba(157, 127, 245, 0.04);
  border-radius: 0 12px 12px 0;
  margin-top: 1.75rem;
}
.oss-philosophy-quote p {
  font-size: 19px;
  color: var(--text);
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -0.2px;
}
.oss-philosophy-quote cite {
  display: block;
  margin-top: 1.25rem;
  font-size: 12px;
  color: var(--text3);
  font-style: normal;
  font-family: var(--mono);
}

.oss-phil-body {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-top: 1.75rem;
}

.oss-philosophy-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 3rem;
}
.oss-philosophy-right .oss-pillar:nth-child(1) .oss-pillar-icon {
  background: rgba(157, 127, 245, 0.08);
}
.oss-philosophy-right .oss-pillar:nth-child(2) .oss-pillar-icon {
  background: rgba(34, 201, 122, 0.08);
}
.oss-philosophy-right .oss-pillar:nth-child(3) .oss-pillar-icon {
  background: rgba(232, 98, 31, 0.08);
}

.oss-pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.oss-pillar:hover {
  border-color: rgba(34, 201, 122, 0.25);
  transform: translateY(-2px);
}

.oss-pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.oss-pillar-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.oss-pillar-body p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

.oss-arch-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid rgba(34, 201, 122, 0.07);
  border-bottom: 1px solid rgba(34, 201, 122, 0.07);
}

.oss-arch-glow-tl {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.oss-arch {
  padding: 7rem 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.oss-arch-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.oss-arch-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 580px;
  line-height: 1.7;
}

.oss-arch-diagram {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.oss-arch-module {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.oss-arch-module:hover {
  border-color: rgba(34, 201, 122, 0.28);
  transform: translateY(-2px);
}
.oss-arch-module h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.oss-arch-module p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.55;
  flex-grow: 1;
}
.oss-arch-module .oss-arch-tech {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  margin-top: 0.7rem;
  letter-spacing: 0.3px;
}

.oss-arch-module-accent {
  border-color: rgba(34, 201, 122, 0.22);
}

.oss-arch-module-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid rgba(34, 201, 122, 0.35);
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oss-arch-module-icon {
  font-size: 28px;
  margin-bottom: 0.85rem;
  margin-top: 0.25rem;
}

.oss-arch-flow-caption {
  margin-top: 1.5rem;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 1px;
}
.oss-arch-flow-caption span {
  color: var(--green);
}

.oss-k8s-note {
  margin-top: 1.75rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.oss-k8s-note-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.oss-k8s-note-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.oss-k8s-note-body {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

.oss-arch-docs-link {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 13px;
  color: var(--text2);
}
.oss-arch-docs-link a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.oss-arch-docs-link a:hover {
  color: #b89ef8;
}

.oss-install-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.oss-install-glow-br {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 98, 31, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.oss-install {
  padding: 7rem 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.oss-install-header {
  margin-bottom: 3rem;
}

.oss-install-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.oss-install-intro {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 620px;
}

.oss-install-cloud-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(157, 127, 245, 0.06);
  border: 1px solid rgba(157, 127, 245, 0.18);
  border-radius: 10px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.oss-install-cloud-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.oss-install-cloud-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.oss-install-cloud-text {
  font-size: 13px;
  color: var(--text2);
}
.oss-install-cloud-text strong {
  color: var(--text);
  font-weight: 600;
}

.oss-install-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.oss-install-cols {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.oss-prereqs-title,
.oss-prereqs-sub-title {
  font-size: 13px;
  color: var(--text2);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.oss-prereqs-list,
.oss-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.oss-prereq-item,
.oss-service-item {
  display: flex;
  align-items: center;
  padding: 9px 13px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.oss-prereq-item {
  justify-content: space-between;
}

.oss-service-item {
  gap: 10px;
}

.oss-prereq-name,
.oss-service-name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
}

.oss-prereq-ver {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
}

.oss-service-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.5;
  flex-shrink: 0;
}

.oss-service-purpose {
  font-size: 11px;
  color: var(--text2);
  margin-left: auto;
  font-family: var(--mono);
}

.oss-contrib-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid rgba(34, 201, 122, 0.07);
  border-bottom: 1px solid rgba(34, 201, 122, 0.07);
}

.oss-contrib-glow-l {
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.oss-contrib {
  padding: 7rem 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.oss-contrib-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.oss-contrib-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 560px;
  line-height: 1.7;
}

.oss-contrib-ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.oss-contrib-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.oss-contrib-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 127, 245, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.oss-contrib-card:hover {
  border-color: rgba(157, 127, 245, 0.3);
  transform: translateY(-2px);
}
.oss-contrib-card:hover::before {
  opacity: 1;
}
.oss-contrib-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.oss-contrib-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.oss-contrib-card p code {
  font-family: var(--mono);
  font-size: 11px;
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--green);
}
.oss-contrib-card:nth-child(1) .oss-contrib-card-icon {
  background: rgba(34, 201, 122, 0.08);
}
.oss-contrib-card:nth-child(2) .oss-contrib-card-icon {
  background: rgba(157, 127, 245, 0.08);
}
.oss-contrib-card:nth-child(3) .oss-contrib-card-icon {
  background: rgba(232, 98, 31, 0.08);
}

.oss-contrib-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 1.25rem;
}

.oss-contrib-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.oss-contrib-link:hover {
  gap: 8px;
}

.oss-contrib-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.oss-workflow-block,
.oss-pr-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
}

.oss-workflow-title,
.oss-pr-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.oss-workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.oss-workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(34, 201, 122, 0.06);
}
.oss-workflow-step:last-child {
  border-bottom: none;
}

.oss-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 201, 122, 0.1);
  border: 1px solid rgba(34, 201, 122, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
  font-family: var(--mono);
}

.oss-step-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.oss-step-note {
  font-size: 12px;
  color: var(--text2);
  font-family: var(--mono);
}

.oss-pr-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.oss-pr-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.oss-pr-check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(34, 201, 122, 0.1);
  border: 1px solid rgba(34, 201, 122, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.oss-pr-check svg {
  opacity: 0.7;
}

.oss-pr-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.oss-pr-item-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
}

.oss-enterprise-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg4);
}

.oss-enterprise-glow-r {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.oss-enterprise {
  padding: 5rem 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.oss-enterprise-inner {
  background: linear-gradient(145deg, #16102e, #110d26, #0d0a1e);
  border: 1px solid rgba(157, 127, 245, 0.2);
  border-radius: 16px;
  padding: 2.75rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 48px rgba(157, 127, 245, 0.07);
}
.oss-enterprise-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 127, 245, 0.45), transparent);
}

.oss-enterprise-glow-inner {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.oss-enterprise-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  background: rgba(157, 127, 245, 0.1);
  border: 1px solid rgba(157, 127, 245, 0.25);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 0.85rem;
  font-family: var(--mono);
  letter-spacing: 1px;
}

.oss-enterprise-left h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.oss-enterprise-left p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.oss-enterprise-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.oss-enterprise-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 220px;
}

.oss-enterprise-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text2);
}

.oss-enterprise-check {
  color: var(--purple);
  font-size: 12px;
  flex-shrink: 0;
}

.pricing-header {
  position: relative;
  padding: 90px 2.5rem 68px;
  text-align: center;
  overflow: hidden;
}
.pricing-header::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -60px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.pricing-header::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.pricing-header h1 {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin: 1rem 0 1.1rem;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.pricing-header h1 span {
  color: var(--green);
}
.pricing-header p {
  font-size: 17px;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.pricing-header-tag {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.pricing-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 auto 4rem;
  max-width: 500px;
  padding: 0 2.5rem;
  scroll-margin-top: 80px;
}

.pricing-tab-btn {
  flex: 1;
  padding: 13px 0;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--sans);
  border: 1px solid rgba(34, 201, 122, 0.1);
  background: transparent;
  color: var(--text3);
  cursor: pointer;
  transition: all 0.22s;
}
.pricing-tab-btn:first-child {
  border-radius: 9px 0 0 9px;
}
.pricing-tab-btn:last-child {
  border-radius: 0 9px 9px 0;
}
.pricing-tab-btn.pricing-tab-btn-active-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 24px rgba(232, 98, 31, 0.38);
}
.pricing-tab-btn.pricing-tab-btn-active-purple {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  box-shadow: 0 0 24px rgba(157, 127, 245, 0.38);
}

.pricing-section {
  display: none;
  padding: 0 2.5rem 5rem;
}
.pricing-section.active {
  display: block;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.pricing-section-label h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  white-space: nowrap;
  margin: 0;
}

.pricing-section-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 201, 122, 0.14), transparent);
}

.pricing-fpt-wrap {
  position: relative;
  background: linear-gradient(145deg, #130a03, #0a0603);
  border: 1px solid rgba(232, 98, 31, 0.28);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.pricing-fpt-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 98, 31, 0.55), transparent);
}
.pricing-fpt-wrap::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232, 98, 31, 0.09) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-fpt-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1rem 1.75rem;
  border-bottom: 1px solid rgba(232, 98, 31, 0.12);
  background: rgba(255, 255, 255, 0.015);
  position: relative;
  z-index: 1;
}

.pricing-fpt-col {
  font-size: 10px;
  font-family: var(--mono);
  color: var(--text3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pricing-fpt-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1rem 1.75rem;
  border-bottom: 1px solid rgba(232, 98, 31, 0.07);
  align-items: center;
  transition: background 0.15s;
  position: relative;
  z-index: 1;
}
.pricing-fpt-row:last-child {
  border-bottom: none;
}
.pricing-fpt-row:hover {
  background: rgba(232, 98, 31, 0.04);
}

.pricing-fpt-resource {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.pricing-fpt-price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--orange);
}

.pricing-fpt-note {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
}

.pricing-proxy-banner {
  padding: 1.1rem 1.5rem;
  background: rgba(34, 201, 122, 0.04);
  border: 1px solid rgba(34, 201, 122, 0.16);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pricing-proxy-banner-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 3px;
}
.pricing-proxy-banner-text span {
  font-size: 12px;
  color: var(--text2);
}

.pricing-btn-green-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  background: rgba(34, 201, 122, 0.07);
  border: 1px solid rgba(34, 201, 122, 0.22);
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: var(--sans);
}
.pricing-btn-green-sm:hover {
  background: rgba(34, 201, 122, 0.12);
  border-color: rgba(34, 201, 122, 0.38);
}

.pricing-free-banner {
  position: relative;
  padding: 1.5rem 2rem;
  background: rgba(232, 98, 31, 0.04);
  border: 1px solid rgba(232, 98, 31, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  overflow: hidden;
}
.pricing-free-banner::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232, 98, 31, 0.09) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-free-banner h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.pricing-free-banner p {
  font-size: 13px;
  color: var(--text2);
}

.pricing-btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 22px rgba(232, 98, 31, 0.32);
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.pricing-btn-orange:hover {
  background: var(--orange-dim);
}

.pricing-cs-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.pricing-cs-header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin: 0.85rem 0;
  line-height: 1.15;
}
.pricing-cs-header p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.75;
}

.pricing-cs-header-tag {
  display: flex;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.pricing-tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.pricing-tier-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid rgba(157, 127, 245, 0.14);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  overflow: hidden;
}
.pricing-tier-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 127, 245, 0.38), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.pricing-tier-card:hover {
  transform: translateY(-3px);
  border-color: rgba(157, 127, 245, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
}
.pricing-tier-card:hover::before {
  opacity: 1;
}

.pricing-tier-card-enterprise {
  background: linear-gradient(145deg, #130f28, #0d0a1c);
  border: 1px solid rgba(157, 127, 245, 0.32);
  box-shadow: 0 0 70px rgba(157, 127, 245, 0.1), 0 0 30px rgba(157, 127, 245, 0.06);
}
.pricing-tier-card-enterprise::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-tier-card-enterprise .pricing-tier-cta {
  background: rgba(157, 127, 245, 0.16);
  border-color: rgba(157, 127, 245, 0.45);
  box-shadow: 0 0 24px rgba(157, 127, 245, 0.25);
  color: #d4bfff;
}
.pricing-tier-card-enterprise .pricing-tier-cta:hover {
  background: rgba(157, 127, 245, 0.26);
  border-color: rgba(157, 127, 245, 0.6);
  box-shadow: 0 0 36px rgba(157, 127, 245, 0.38);
}

.pricing-tier-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.pricing-tier-tag-std {
  background: rgba(157, 127, 245, 0.06);
  color: rgba(157, 127, 245, 0.6);
  border: 1px solid rgba(157, 127, 245, 0.12);
}

.pricing-tier-tag-pro {
  background: rgba(157, 127, 245, 0.1);
  color: var(--purple);
  border: 1px solid rgba(157, 127, 245, 0.24);
}

.pricing-tier-tag-ent {
  background: rgba(157, 127, 245, 0.18);
  color: var(--purple);
  border: 1px solid rgba(157, 127, 245, 0.4);
}

.pricing-popular-badge {
  background: var(--purple);
  color: #fff;
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.8px;
  box-shadow: 0 0 10px rgba(157, 127, 245, 0.45);
}

.pricing-tier-name {
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
  margin-bottom: 0.3rem;
}

.pricing-tier-tagline {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.pricing-tier-price {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(157, 127, 245, 0.1);
}
.pricing-tier-price span {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--purple);
}

.pricing-tier-sla {
  background: rgba(157, 127, 245, 0.05);
  border: 1px solid rgba(157, 127, 245, 0.1);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-tier-sla-highlight {
  background: rgba(157, 127, 245, 0.08);
  border-color: rgba(157, 127, 245, 0.2);
}

.pricing-tier-sla-title {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 0.75rem;
}

.pricing-tier-sla-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-tier-sla-row {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
}

.pricing-sla-label {
  color: var(--text3);
}

.pricing-sla-val {
  font-family: var(--mono);
  color: var(--text2);
  font-weight: 500;
}

.pricing-sla-val-fast {
  color: var(--purple);
}

.pricing-sla-val-fastest {
  color: #c4adff;
  font-weight: 700;
}

.pricing-tier-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.75rem;
  flex: 1;
}

.pricing-tier-features-intro {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 4px;
}

.pricing-tier-features-intro-tier {
  color: var(--purple);
}

.pricing-tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.5;
}

.pricing-tf-check {
  color: var(--purple);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px;
}

.pricing-tier-feature .tf-strong {
  color: var(--text);
  font-weight: 700;
}

.pricing-tier-cta {
  display: block;
  text-align: center;
  padding: 12px;
  background: rgba(157, 127, 245, 0.08);
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--sans);
  border: 1px solid rgba(157, 127, 245, 0.24);
  border-radius: 9px;
  text-decoration: none;
  transition: all 0.2s;
}
.pricing-tier-cta:hover {
  background: rgba(157, 127, 245, 0.15);
  border-color: rgba(157, 127, 245, 0.42);
}

.pricing-scope-wrap {
  position: relative;
  margin-bottom: 3.5rem;
  overflow: hidden;
}
.pricing-scope-wrap::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -40px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.pricing-scope-card {
  background: var(--bg2);
  border: 1px solid rgba(34, 201, 122, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
}

.pricing-scope-card-out {
  border-color: rgba(157, 127, 245, 0.08);
}

.pricing-scope-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.pricing-scope-card-title-muted {
  color: var(--text2);
}

.pricing-scope-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-scope-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.5;
}

.pricing-scope-item-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pricing-scope-item-note {
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--mono);
  letter-spacing: 0.5px;
  font-weight: 500;
  width: fit-content;
}

.pricing-scope-note-ps {
  background: rgba(232, 66, 42, 0.07);
  color: rgba(232, 66, 42, 0.75);
  border: 1px solid rgba(232, 66, 42, 0.14);
}

.pricing-scope-note-proxy {
  background: rgba(34, 201, 122, 0.07);
  color: var(--green);
  border: 1px solid rgba(34, 201, 122, 0.14);
}

.pricing-scope-note-ecs {
  background: rgba(157, 127, 245, 0.07);
  color: var(--purple);
  border: 1px solid rgba(157, 127, 245, 0.14);
}

.pricing-scope-check {
  color: var(--green);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 3px;
}

.pricing-scope-x {
  color: var(--text3);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 3px;
}

.pricing-scope-note-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(34, 201, 122, 0.06);
  font-size: 11.5px;
  color: var(--text3);
  line-height: 1.65;
}

.pricing-bottom-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.pricing-card-ps {
  background: linear-gradient(145deg, #f7f2ed, #f0eae3);
  border: 1px solid rgba(232, 66, 42, 0.18);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.pricing-card-ps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 66, 42, 0.35), transparent);
}
.pricing-card-ps h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f1a10;
  letter-spacing: -0.4px;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.pricing-card-ps p {
  font-size: 13px;
  color: #3d4a3e;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.pricing-ps-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid rgba(232, 66, 42, 0.28);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.pricing-card-ent {
  background: linear-gradient(145deg, #130f28, #0d0a1c);
  border: 1px solid rgba(157, 127, 245, 0.22);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.pricing-card-ent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 127, 245, 0.45), transparent);
}
.pricing-card-ent::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-card-ent h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
  margin-bottom: 0.6rem;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.pricing-card-ent p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.pricing-ent-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--purple);
  border: 1px solid rgba(157, 127, 245, 0.28);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.1rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.pricing-btn-purple-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(157, 127, 245, 0.15);
  border: 1px solid rgba(157, 127, 245, 0.38);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(157, 127, 245, 0.2);
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.pricing-btn-purple-solid:hover {
  background: rgba(157, 127, 245, 0.25);
  border-color: rgba(157, 127, 245, 0.55);
  box-shadow: 0 0 30px rgba(157, 127, 245, 0.32);
}

.pricing-strips {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0;
}

.pricing-strip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.5rem;
  border-radius: 12px;
  flex-wrap: wrap;
}

.pricing-strip-proxy {
  background: rgba(34, 201, 122, 0.04);
  border: 1px solid rgba(34, 201, 122, 0.14);
}

.pricing-strip-oss {
  background: rgba(157, 127, 245, 0.03);
  border: 1px solid rgba(157, 127, 245, 0.1);
}

.pricing-strip-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
  font-weight: 500;
}

.pricing-strip-tag-green {
  color: var(--green);
  background: rgba(34, 201, 122, 0.07);
  border: 1px solid rgba(34, 201, 122, 0.18);
}

.pricing-strip-tag-purple {
  color: var(--purple);
  background: rgba(157, 127, 245, 0.07);
  border: 1px solid rgba(157, 127, 245, 0.15);
}

.pricing-strip-body {
  flex: 1;
}
.pricing-strip-body strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
}
.pricing-strip-body span {
  font-size: 12.5px;
  color: var(--text2);
}

.pricing-btn-strip-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: transparent;
  border: 1px solid rgba(34, 201, 122, 0.22);
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: var(--sans);
}
.pricing-btn-strip-green:hover {
  background: rgba(34, 201, 122, 0.07);
  border-color: rgba(34, 201, 122, 0.38);
}

.pricing-btn-strip-purple {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  background: transparent;
  border: 1px solid rgba(157, 127, 245, 0.2);
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: var(--sans);
}
.pricing-btn-strip-purple:hover {
  background: rgba(157, 127, 245, 0.07);
  border-color: rgba(157, 127, 245, 0.35);
}

.pricing-github-icon {
  width: 14px;
  height: 14px;
  fill: var(--purple);
}

.pricing-faq-section {
  background: var(--bg2);
  padding: 6rem 2.5rem 7rem;
  position: relative;
  overflow: hidden;
}
.pricing-faq-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 98, 31, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-faq-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-faq-header {
  margin-bottom: 3rem;
}
.pricing-faq-header .section-tag {
  margin-bottom: 0.75rem;
}
.pricing-faq-header h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text);
  margin: 0;
}
.pricing-faq-header p {
  font-size: 15px;
  color: var(--text2);
  margin-top: 0.5rem;
}

.pricing-faq-list {
  background: var(--bg);
  border: 1px solid rgba(232, 98, 31, 0.14);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-faq-accordion {
  border-bottom: 1px solid rgba(34, 201, 122, 0.06);
}
.pricing-faq-accordion:last-child {
  border-bottom: none;
}

.pricing-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 1rem;
  transition: background 0.15s;
}
.pricing-faq-q:hover {
  background: rgba(34, 201, 122, 0.03);
}
.pricing-faq-q.is-open {
  color: var(--text);
}
.pricing-faq-q.is-open .pricing-faq-chevron {
  transform: rotate(180deg);
  color: var(--green);
}

.pricing-faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text3);
  transition: transform 0.25s, color 0.2s;
}

.pricing-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.pricing-faq-a.is-open {
  max-height: 300px;
}

.pricing-faq-a-inner {
  padding: 0 1.75rem 1.35rem;
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.75;
}

.pricing-faq-more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 1.5rem auto 0;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--sans);
  color: var(--text2);
  background: transparent;
  border: 1px solid rgba(34, 201, 122, 0.14);
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s;
}
.pricing-faq-more-btn:hover {
  border-color: rgba(34, 201, 122, 0.28);
  color: var(--text);
}
.pricing-faq-more-btn svg {
  transition: transform 0.2s;
}
.pricing-faq-more-btn[data-expanded=true] svg {
  transform: rotate(180deg);
}

.pricing-faq-hidden {
  display: none;
}
.pricing-faq-hidden.is-visible {
  display: block;
}

.bmc-hero {
  position: relative;
  padding: 90px 2.5rem 80px;
  overflow: hidden;
  background: var(--bg);
}
.bmc-hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -5%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(232, 98, 31, 0.14) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.bmc-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.09) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.bmc-hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.bmc-hero h1 .hl {
  color: var(--orange);
}

.bmc-hero-mid-glow {
  position: absolute;
  top: 40%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.bmc-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.bmc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(232, 98, 31, 0.09);
  border: 0.5px solid rgba(232, 98, 31, 0.4);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1.75rem;
  font-family: var(--mono);
}

.bmc-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: estela-pulse 2s infinite;
}

.bmc-hero-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  font-weight: 400;
  max-width: 480px;
}

.bmc-hero-note {
  font-size: 12.5px;
  color: var(--text3);
  margin-top: 0.85rem;
  font-family: var(--mono);
  display: flex;
  flex-direction: column;
}
.bmc-hero-note span {
  display: block;
  line-height: 1.9;
}

.bmc-dashboard {
  background: var(--bg2);
  border: 1px solid rgba(232, 98, 31, 0.28);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(232, 98, 31, 0.1), inset 0 1px 0 rgba(232, 98, 31, 0.15);
}

.bmc-dash-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(232, 98, 31, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.bmc-dash-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.bmc-dash-url {
  font-family: var(--mono);
  margin-left: 8px;
  display: flex;
  align-items: baseline;
}
.bmc-dash-url .bmc-dash-domain {
  font-size: 11px;
  color: rgba(237, 245, 241, 0.45);
  letter-spacing: 0.2px;
}
.bmc-dash-url .bmc-dash-path {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}

.bmc-dash-body {
  padding: 1.25rem;
}

.bmc-dash-credits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: rgba(232, 98, 31, 0.08);
  border: 1px solid rgba(232, 98, 31, 0.25);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 0 16px rgba(232, 98, 31, 0.08);
}

.bmc-dash-credits-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bmc-dash-credits-icon {
  width: 28px;
  height: 28px;
  background: rgba(232, 98, 31, 0.14);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.bmc-dash-credits-label {
  font-size: 11px;
  color: var(--text2);
  font-family: var(--mono);
}

.bmc-dash-credits-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--mono);
}

.bmc-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 1rem;
}

.bmc-dash-stat {
  background: var(--surface);
  border: 1px solid rgba(34, 201, 122, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
}

.bmc-dash-stat-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  font-family: var(--mono);
  letter-spacing: -0.3px;
}

.bmc-dash-stat-lbl {
  font-size: 9.5px;
  color: var(--text3);
  margin-top: 2px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bmc-dash-scraper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  background: var(--surface);
  border: 1px solid rgba(34, 201, 122, 0.07);
  border-radius: 6px;
  margin-bottom: 5px;
}

.bmc-dash-scraper-name {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text2);
  font-family: var(--mono);
}

.bmc-dash-scraper-label {
  font-size: 9.5px;
  color: var(--text3);
  font-family: var(--mono);
  margin-top: 1px;
}

.bmc-dash-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-family: var(--mono);
}

.bmc-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.bmc-status-running {
  color: #22c97a;
}
.bmc-status-running .bmc-status-dot {
  background: #22c97a;
  animation: estela-pulse 1.5s infinite;
}

.bmc-status-scheduled {
  color: var(--text3);
}
.bmc-status-scheduled .bmc-status-dot {
  background: var(--text3);
}

.bmc-status-done {
  color: var(--purple);
}
.bmc-status-done .bmc-status-dot {
  background: var(--purple);
}

.bmc-diff-bg {
  background: var(--bg2);
  border-top: 1px solid rgba(34, 201, 122, 0.08);
  border-bottom: 1px solid rgba(34, 201, 122, 0.08);
  position: relative;
  overflow: hidden;
}
.bmc-diff-bg::before {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(34, 201, 122, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.bmc-diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4.5rem 2.5rem;
  position: relative;
  z-index: 1;
}

.bmc-diff-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bmc-diff-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
}
.bmc-diff-item p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

.bmc-diff-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 98, 31, 0.08);
  border: 1px solid rgba(232, 98, 31, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 0.25rem;
}

.bmc-how-bg {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.bmc-how-bg::before {
  content: "";
  position: absolute;
  top: 5%;
  right: 0%;
  width: 550px;
  height: 450px;
  background: radial-gradient(ellipse at 100% 50%, rgba(34, 201, 122, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.bmc-how-bg::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: 3%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(232, 98, 31, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.bmc-how-section {
  padding: 7rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bmc-pricing-bg {
  background: var(--bg3);
  border-top: 1px solid rgba(34, 201, 122, 0.07);
  border-bottom: 1px solid rgba(34, 201, 122, 0.07);
  position: relative;
  overflow: hidden;
}
.bmc-pricing-bg::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 98, 31, 0.1) 0%, transparent 55%);
  pointer-events: none;
}
.bmc-pricing-bg::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.bmc-pricing-section {
  padding: 7rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bmc-pricing-card {
  background: linear-gradient(145deg, #1c0e06 0%, #130a04 60%, #0e0803 100%);
  border: 1px solid rgba(232, 98, 31, 0.32);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 50px rgba(232, 98, 31, 0.1), 0 0 100px rgba(232, 98, 31, 0.04);
}
.bmc-pricing-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 98, 31, 0.55), transparent);
}
.bmc-pricing-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
  margin-bottom: 0.35rem;
}
.bmc-pricing-card .bmc-pricing-tagline {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.bmc-pricing-card-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}

.bmc-pricing-left {
  padding: 2.25rem 2rem 2.25rem 2.25rem;
  border-right: 1px solid rgba(232, 98, 31, 0.1);
}

.bmc-pricing-right {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(232, 98, 31, 0.03);
}

.bmc-pricing-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  background: rgba(232, 98, 31, 0.12);
  color: var(--orange);
  border: 0.5px solid rgba(232, 98, 31, 0.4);
}

.bmc-price-table {
  width: 100%;
  border-collapse: collapse;
}
.bmc-price-table tr {
  border-bottom: 1px solid rgba(232, 98, 31, 0.08);
}
.bmc-price-table tr:last-child {
  border-bottom: none;
}
.bmc-price-table td {
  padding: 9px 0;
  font-size: 13px;
}
.bmc-price-table td:first-child {
  color: var(--text2);
}
.bmc-price-table td:last-child {
  text-align: right;
  font-family: var(--mono);
  font-weight: 500;
  color: var(--text);
}

.bmc-price-tbd {
  color: var(--text3);
  font-size: 11px;
  font-family: var(--mono);
}

.bmc-price-unit {
  color: var(--text3);
  font-size: 11px;
}

.bmc-pricing-right-top h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}

.bmc-pricing-right-top p {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.bmc-pricing-ctas {
  display: inline-flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bmc-price-note-sm {
  font-size: 10.5px;
  color: var(--text3);
  font-family: var(--mono);
  margin-top: 1rem;
  line-height: 1.7;
}

.bmc-commercial-hint {
  background: rgba(157, 127, 245, 0.04);
  border: 1px solid rgba(157, 127, 245, 0.18);
  border-radius: 14px;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.25rem;
  position: relative;
  overflow: hidden;
}
.bmc-commercial-hint::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 127, 245, 0.3), transparent);
}
.bmc-commercial-hint::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 200px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(157, 127, 245, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.bmc-comm-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(157, 127, 245, 0.08);
  color: var(--purple);
  border: 0.5px solid rgba(157, 127, 245, 0.25);
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.bmc-comm-body {
  flex: 1;
  position: relative;
  z-index: 1;
}
.bmc-comm-body h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.bmc-comm-body p {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.6;
}

.bmc-faq-bg {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.bmc-faq-bg::before {
  content: "";
  position: absolute;
  top: 5%;
  right: 0%;
  width: 450px;
  height: 400px;
  background: radial-gradient(ellipse at 100% 30%, rgba(232, 98, 31, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.bmc-faq-bg::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.bmc-faq-section {
  padding: 7rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bmc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid rgba(232, 98, 31, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(232, 98, 31, 0.05);
}

.bmc-faq-item {
  background: var(--bg);
  border-bottom: 1px solid rgba(34, 201, 122, 0.06);
}
.bmc-faq-item:last-child {
  border-bottom: none;
}
.bmc-faq-item.bmc-faq-hidden {
  display: none;
}

.bmc-faq-item.is-open .bmc-faq-a {
  display: block;
}
.bmc-faq-item.is-open .bmc-faq-arrow {
  transform: rotate(180deg);
}

.bmc-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  text-align: left;
  gap: 1rem;
}
.bmc-faq-q:hover {
  background: rgba(232, 98, 31, 0.03);
}

.bmc-faq-arrow {
  color: var(--text3);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.bmc-faq-a {
  padding: 0 1.5rem 1.25rem;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
  display: none;
}
.bmc-faq-a code {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(34, 201, 122, 0.07);
  color: var(--green);
  padding: 1px 6px;
  border-radius: 4px;
  border: 0.5px solid rgba(34, 201, 122, 0.15);
}

.bmc-faq-expand-wrap {
  text-align: center;
  margin-top: 1.5rem;
}

.bmc-faq-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  background: transparent;
  border: 1px solid rgba(34, 201, 122, 0.18);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
}
.bmc-faq-expand-btn:hover {
  color: var(--text);
  border-color: rgba(34, 201, 122, 0.35);
}

.bmc-final-bg {
  background: var(--bg4);
  position: relative;
  overflow: hidden;
}
.bmc-final-bg::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 5%;
  width: 500px;
  height: 440px;
  background: radial-gradient(ellipse, rgba(232, 98, 31, 0.09) 0%, transparent 55%);
  pointer-events: none;
}
.bmc-final-bg::after {
  content: "";
  position: absolute;
  top: 0%;
  right: 5%;
  width: 430px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(157, 127, 245, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.bmc-final-section {
  padding: 7rem 2.5rem;
  position: relative;
  z-index: 1;
}

.bmc-final-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bmc-final-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.bmc-ps-block {
  background: linear-gradient(145deg, #f7f2ed 0%, #f0eae3 100%);
  border: 1px solid rgba(232, 66, 42, 0.2);
  border-radius: 18px;
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}
.bmc-ps-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 66, 42, 0.45), transparent);
}
.bmc-ps-block:hover {
  border-color: rgba(232, 66, 42, 0.38);
  box-shadow: 0 8px 44px rgba(0, 0, 0, 0.35);
}

.bmc-tag-ps {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 5px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
  background: rgba(232, 66, 42, 0.1);
  color: #c43520;
  border: 0.5px solid rgba(232, 66, 42, 0.3);
}

.bmc-ps-block h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f1a10;
  margin-bottom: 0.5rem;
  letter-spacing: -0.4px;
}

.bmc-ps-block p {
  font-size: 13.5px;
  color: #3d4a3e;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.bmc-enterprise-block {
  background: linear-gradient(145deg, #130f28 0%, #0d0a1c 100%);
  border: 1px solid rgba(157, 127, 245, 0.2);
  border-radius: 18px;
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.bmc-enterprise-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 127, 245, 0.38), transparent);
}
.bmc-enterprise-block:hover {
  border-color: rgba(157, 127, 245, 0.35);
}

.bmc-tag-purple {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 5px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
  background: rgba(157, 127, 245, 0.1);
  color: var(--purple);
  border: 0.5px solid rgba(157, 127, 245, 0.28);
}

.bmc-enterprise-block h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.4px;
}

.bmc-enterprise-block p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.bmc-final-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 12px;
  padding: 1.1rem 1.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  transition: border-color 0.25s;
}
.bmc-final-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.bmc-proxy-strip {
  background: linear-gradient(135deg, #0a1e14 0%, #07110e 100%);
  border: 1px solid rgba(34, 201, 122, 0.18);
}
.bmc-proxy-strip::after {
  background: linear-gradient(90deg, transparent, rgba(34, 201, 122, 0.3), transparent);
}
.bmc-proxy-strip::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 180px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(34, 201, 122, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.bmc-proxy-strip:hover {
  border-color: rgba(34, 201, 122, 0.32);
}

.bmc-oss-strip {
  background: linear-gradient(135deg, #0a1520 0%, #07110e 100%);
  border: 1px solid rgba(157, 127, 245, 0.14);
}
.bmc-oss-strip::after {
  background: linear-gradient(90deg, transparent, rgba(157, 127, 245, 0.2), transparent);
}
.bmc-oss-strip:hover {
  border-color: rgba(157, 127, 245, 0.25);
}

.bmc-strip-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.bmc-strip-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.bmc-tag-green-strip {
  background: rgba(34, 201, 122, 0.08);
  color: var(--green);
  border: 0.5px solid rgba(34, 201, 122, 0.22);
}

.bmc-tag-purple-strip {
  background: rgba(157, 127, 245, 0.08);
  color: var(--purple);
  border: 0.5px solid rgba(157, 127, 245, 0.2);
}

.bmc-strip-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.bmc-strip-sub {
  font-size: 12px;
  color: var(--text2);
}

.bmc-strip-cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.bmc-github-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-left-panel {
  background: var(--bg);
  padding: 56px 56px 56px 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.contact-left-panel::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -60px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.13) 0%, transparent 65%);
  pointer-events: none;
}
.contact-left-panel::after {
  content: "";
  position: absolute;
  bottom: 60px;
  right: -40px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact-left-panel h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.contact-left-panel h1 span {
  color: var(--purple);
}
.contact-left-panel > p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.contact-left-panel .section-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-glow-mid {
  position: absolute;
  bottom: 200px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-glow-extra {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-glow-center {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.contact-trust-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: rgba(157, 127, 245, 0.05);
  border: 1px solid var(--border-purple-light);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.contact-trust-item:hover {
  border-color: rgba(157, 127, 245, 0.28);
}

.contact-trust-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.contact-trust-item-text {
  font-size: 13px;
  color: var(--text2);
}
.contact-trust-item-text strong {
  color: var(--text);
  font-weight: 600;
}

.contact-tier-divider {
  border: none;
  border-top: 1px solid rgba(157, 127, 245, 0.12);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-tier-block-title {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.contact-tier-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.contact-tier-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(157, 127, 245, 0.04);
  border: 1px solid rgba(157, 127, 245, 0.1);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.contact-tier-row:hover {
  border-color: rgba(157, 127, 245, 0.22);
  background: rgba(157, 127, 245, 0.07);
}

.contact-tier-row-dot {
  width: 7px;
  height: 7px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-tier-row-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.contact-tier-row-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
}

.contact-tier-row-sla {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--purple);
  margin-top: 3px;
}

.contact-btn-pricing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(157, 127, 245, 0.08);
  border: 1px solid rgba(157, 127, 245, 0.28);
  border-radius: 10px;
  padding: 12px 18px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
  width: fit-content;
}
.contact-btn-pricing:hover {
  background: rgba(157, 127, 245, 0.14);
  border-color: rgba(157, 127, 245, 0.45);
  box-shadow: 0 0 20px rgba(157, 127, 245, 0.15);
}

.contact-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(157, 127, 245, 0.1);
  border: 1px solid rgba(157, 127, 245, 0.24);
  border-radius: 8px;
  padding: 6px 14px;
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.contact-tier-badge span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-tier-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--purple);
  border-radius: 50%;
}

.contact-tier-badge-popular {
  font-size: 10px !important;
  color: rgba(157, 127, 245, 0.6) !important;
  margin-left: 4px;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.contact-page-enterprise .contact-left-panel {
  background: linear-gradient(145deg, #130f28, #0d0a1c);
  border-right: 1px solid rgba(157, 127, 245, 0.12);
}
.contact-page-enterprise .contact-left-panel::before {
  top: -80px;
  right: -80px;
  left: auto;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.18) 0%, transparent 62%);
}
.contact-page-enterprise .contact-left-panel::after {
  bottom: -60px;
  left: -60px;
  right: auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.09) 0%, transparent 70%);
}
.contact-page-enterprise .contact-left-panel h1 {
  font-size: 34px;
  letter-spacing: -0.7px;
}
.contact-page-enterprise .contact-left-panel > p {
  font-size: 14px;
  color: #9db8b0;
  margin-bottom: 22px;
}
.contact-page-enterprise .contact-left-panel .contact-tier-badge {
  background: rgba(157, 127, 245, 0.15);
  border-color: rgba(157, 127, 245, 0.35);
  padding: 7px 16px;
  box-shadow: 0 0 20px rgba(157, 127, 245, 0.15);
}
.contact-page-enterprise .contact-left-panel .contact-tier-badge-dot {
  box-shadow: 0 0 6px rgba(157, 127, 245, 0.8);
}

.contact-page-contact-estela-professional .contact-left-panel::before {
  top: -80px;
  right: -80px;
  left: auto;
  width: 540px;
  height: 540px;
}
.contact-page-contact-estela-professional .contact-left-panel::after {
  bottom: 60px;
  left: -60px;
  right: auto;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.06) 0%, transparent 70%);
}
.contact-page-contact-estela-professional .contact-left-panel h1 {
  font-size: 34px;
  letter-spacing: -0.7px;
}
.contact-page-contact-estela-professional .contact-left-panel > p {
  margin-bottom: 22px;
}

.contact-proactive-strip {
  background: rgba(34, 201, 122, 0.05);
  border: 1px solid rgba(34, 201, 122, 0.16);
  border-radius: 10px;
  padding: 13px 16px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.contact-proactive-strip p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

.contact-proactive-strip-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-p1-highlight {
  background: rgba(157, 127, 245, 0.08);
  border: 1px solid rgba(157, 127, 245, 0.24);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-p1-highlight-number {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 500;
  color: var(--purple);
  line-height: 1;
  flex-shrink: 0;
}
.contact-p1-highlight-number span {
  font-size: 13px;
  color: rgba(157, 127, 245, 0.6);
}

.contact-p1-highlight-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-p1-highlight-text p {
  font-size: 12px;
  color: #7a9090;
  line-height: 1.5;
}

.contact-sla-box {
  background: rgba(157, 127, 245, 0.05);
  border: 1px solid rgba(157, 127, 245, 0.16);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-page-contact-estela-professional .contact-sla-box,
.contact-page-enterprise .contact-sla-box {
  padding: 18px;
  margin-bottom: 18px;
}

.contact-page-enterprise .contact-sla-box {
  background: rgba(7, 4, 20, 0.6);
  border-color: rgba(157, 127, 245, 0.18);
}

.contact-sla-box-title {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-sla-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.contact-sla-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  background: rgba(7, 17, 14, 0.5);
  border: 1px solid rgba(157, 127, 245, 0.1);
  border-radius: 8px;
}

.contact-page-contact-estela-professional .contact-sla-row,
.contact-page-enterprise .contact-sla-row {
  padding: 9px 11px;
}

.contact-page-enterprise .contact-sla-row {
  background: rgba(4, 2, 14, 0.6);
}

.contact-sla-label {
  font-size: 11px;
  color: var(--text3);
  font-weight: 500;
}

.contact-page-enterprise .contact-sla-label {
  color: #5a7070;
}

.contact-sla-value {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}

.contact-sla-value-p1 {
  color: #f87171;
}

.contact-sla-value-p1-247 {
  color: #fb923c;
}

.contact-page-enterprise .contact-sla-value-p1-247 {
  color: var(--purple);
}

.contact-sla-value-p2-247 {
  color: #a78bfa;
}

.contact-sla-note {
  font-size: 11px;
  color: var(--text3);
  margin-top: 9px;
  font-family: var(--mono);
}

.contact-page-enterprise .contact-sla-note {
  color: #5a7070;
}

.contact-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.contact-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text2);
}
.contact-feature-list li::before {
  content: "✓";
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
}
.contact-feature-list li strong {
  color: var(--text);
  font-weight: 600;
}

.contact-page-enterprise .contact-feature-list li {
  color: #9db8b0;
}

.contact-right-panel {
  background: var(--bg2);
  padding: 56px 72px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 1px solid rgba(157, 127, 245, 0.08);
  position: relative;
  overflow: hidden;
}
.contact-right-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.09) 0%, transparent 65%);
  pointer-events: none;
}
.contact-right-panel::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-page-enterprise .contact-right-panel {
  border-left: none;
}

.contact-form-header {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.contact-form-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.contact-form-header p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  background: rgba(7, 17, 14, 0.8);
  border: 1px solid var(--border-purple-light);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.contact-form-group input::placeholder,
.contact-form-group select::placeholder,
.contact-form-group textarea::placeholder {
  color: var(--text3);
}
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: var(--border-purple-dark);
  box-shadow: 0 0 0 3px rgba(157, 127, 245, 0.1);
}
.contact-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 12 12'%3E%3Cpath stroke='%237DA898' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.contact-form-group select option {
  background: #0b1a15;
  color: var(--text);
}
.contact-form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-req {
  color: var(--purple);
  margin-left: 2px;
}

.contact-email-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 14px;
  background: rgba(157, 127, 245, 0.05);
  border: 1px solid rgba(157, 127, 245, 0.14);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
}

.contact-email-note-icon {
  color: var(--purple);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 13px;
}

.contact-submit-btn {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(157, 127, 245, 0.32);
  transition: all 0.2s;
  width: 100%;
  letter-spacing: -0.2px;
}
.contact-submit-btn:hover:not(:disabled) {
  background: #8b6de0;
  box-shadow: 0 0 40px rgba(157, 127, 245, 0.48);
  transform: translateY(-1px);
}
.contact-submit-btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.contact-form-error {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 13px;
  color: #ff8a8a;
  line-height: 1.5;
}

.contact-form-footer {
  text-align: center;
  font-size: 12px;
  color: var(--text3);
}
.contact-form-footer a {
  color: var(--text2);
  text-decoration: none;
}
.contact-form-footer a:hover {
  color: var(--purple);
}

.contact-optional-section {
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--border-purple-medium);
  background: rgba(157, 127, 245, 0.03);
}

.contact-optional-section--enterprise {
  background: rgba(19, 15, 40, 0.3);
  position: relative;
}
.contact-optional-section--enterprise::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(157, 127, 245, 0.5), transparent);
  border-radius: 12px 12px 0 0;
}

.contact-optional-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}

.contact-optional-section-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-optional-section-sub {
  font-size: 11px;
  color: var(--text3);
  text-align: right;
}

.contact-optional-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-opt {
  color: var(--text3);
  font-weight: 400;
  margin-left: 4px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}

@media (max-width: 960px) {
  .contact-page {
    grid-template-columns: 1fr;
  }
  .contact-left-panel,
  .contact-right-panel {
    padding: 40px 24px;
  }
  .contact-right-panel {
    border-left: none;
    border-top: 1px solid rgba(157, 127, 245, 0.08);
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}
.thankyou-hero {
  padding: 110px 80px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thankyou-hero::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(157, 127, 245, 0.13) 0%, transparent 65%);
  pointer-events: none;
}
.thankyou-hero::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 15%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.thankyou-hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.thankyou-hero h1 span {
  color: var(--purple);
}
.thankyou-hero .section-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.thankyou-page-enterprise .thankyou-hero {
  background: linear-gradient(180deg, #130f28 0%, var(--bg) 100%);
  padding: 110px 80px 72px;
  border-bottom: 1px solid rgba(157, 127, 245, 0.1);
}
.thankyou-page-enterprise .thankyou-hero::before {
  top: 30px;
  width: 760px;
  height: 520px;
  background: radial-gradient(ellipse, rgba(157, 127, 245, 0.16) 0%, transparent 62%);
}
.thankyou-page-enterprise .thankyou-hero::after {
  bottom: 0;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(34, 201, 122, 0.04) 0%, transparent 70%);
}
.thankyou-page-enterprise .thankyou-hero h1 {
  font-size: 50px;
  letter-spacing: -1.3px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.thankyou-page-thankyou-estela-standard .thankyou-hero h1,
.thankyou-page-thankyou-estela-professional .thankyou-hero h1 {
  font-size: 46px;
  letter-spacing: -1.1px;
  margin-bottom: 18px;
}
.thankyou-page-thankyou-estela-standard .thankyou-hero .section-tag,
.thankyou-page-thankyou-estela-professional .thankyou-hero .section-tag {
  margin-bottom: 14px;
}

.thankyou-page-thankyou-estela-standard .thankyou-hero::before {
  width: 680px;
  height: 460px;
  background: radial-gradient(ellipse, rgba(157, 127, 245, 0.12) 0%, transparent 65%);
}
.thankyou-page-thankyou-estela-standard .thankyou-hero::after {
  top: 100px;
  left: auto;
  right: 12%;
  width: 300px;
  height: 300px;
}

.thankyou-page-thankyou-estela-professional .thankyou-hero::before {
  width: 700px;
  height: 460px;
  background: radial-gradient(ellipse, rgba(157, 127, 245, 0.12) 0%, transparent 65%);
}
.thankyou-page-thankyou-estela-professional .thankyou-hero::after {
  top: 80px;
  left: 10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(34, 201, 122, 0.05) 0%, transparent 70%);
}

.thankyou-glow-left {
  position: absolute;
  top: 80px;
  left: 6%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.thankyou-glow-right {
  position: absolute;
  top: 60px;
  right: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.thankyou-page-enterprise .thankyou-glow-left {
  top: 80px;
}

.thankyou-page-enterprise .thankyou-glow-right {
  top: 80px;
  right: 6%;
}

.thankyou-confirm-icon {
  width: 68px;
  height: 68px;
  background: rgba(157, 127, 245, 0.12);
  border: 1px solid rgba(157, 127, 245, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 28px rgba(157, 127, 245, 0.18);
  animation: thankyou-pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.thankyou-page-thankyou-estela-standard .thankyou-confirm-icon,
.thankyou-page-thankyou-estela-professional .thankyou-confirm-icon {
  margin-bottom: 22px;
}

.thankyou-page-enterprise .thankyou-confirm-icon {
  width: 72px;
  height: 72px;
  background: rgba(157, 127, 245, 0.14);
  border-color: rgba(157, 127, 245, 0.36);
  font-size: 30px;
  box-shadow: 0 0 36px rgba(157, 127, 245, 0.24);
}

@keyframes thankyou-pop-in {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.thankyou-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(157, 127, 245, 0.1);
  border: 1px solid rgba(157, 127, 245, 0.24);
  border-radius: 8px;
  padding: 5px 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.thankyou-tier-badge span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.thankyou-page-thankyou-estela-professional .thankyou-tier-badge {
  margin-bottom: 16px;
}

.thankyou-page-enterprise .thankyou-tier-badge {
  background: rgba(157, 127, 245, 0.14);
  border-color: rgba(157, 127, 245, 0.36);
  padding: 6px 16px;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(157, 127, 245, 0.14);
}

.thankyou-tier-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
}

.thankyou-page-enterprise .thankyou-tier-badge-dot {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 6px rgba(157, 127, 245, 0.8);
}

.thankyou-tier-badge-popular {
  font-size: 10px !important;
  color: rgba(157, 127, 245, 0.6) !important;
  margin-left: 4px;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.thankyou-hero-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 680px;
  width: 100%;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.thankyou-hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

.thankyou-page-thankyou-estela-standard .thankyou-hero-sub,
.thankyou-page-thankyou-estela-professional .thankyou-hero-sub {
  margin-bottom: 32px;
}

.thankyou-page-thankyou-estela-professional .thankyou-hero-sub {
  margin-bottom: 28px;
}

.thankyou-page-enterprise .thankyou-hero-sub {
  color: #9db8b0;
  margin-bottom: 32px;
}

.thankyou-confirm-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(157, 127, 245, 0.06);
  border: 1px solid rgba(157, 127, 245, 0.18);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 680px;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: left;
}

.thankyou-confirm-box-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.thankyou-confirm-box-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}
.thankyou-confirm-box-text strong {
  color: var(--text);
  font-weight: 600;
}

.thankyou-what-next {
  background: rgba(157, 127, 245, 0.05);
  border: 1px solid rgba(157, 127, 245, 0.16);
  border-radius: 14px;
  padding: 22px 26px;
  max-width: 680px;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: left;
}

.thankyou-what-next-title {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.thankyou-what-next-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thankyou-what-next-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.thankyou-step-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--purple);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 2px;
}

.thankyou-step-text {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}
.thankyou-step-text strong {
  color: var(--text);
  font-weight: 600;
}

.thankyou-sla-reminder {
  background: rgba(157, 127, 245, 0.05);
  border: 1px solid rgba(157, 127, 245, 0.16);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 680px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  text-align: left;
}

.thankyou-sla-reminder-title {
  grid-column: 1/-1;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.thankyou-sla-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.thankyou-sla-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.thankyou-sla-dot.thankyou-sla-dot-red {
  background: #f87171;
}
.thankyou-sla-dot.thankyou-sla-dot-amber {
  background: #fb923c;
}
.thankyou-sla-dot.thankyou-sla-dot-green {
  background: var(--green);
}
.thankyou-sla-dot.thankyou-sla-dot-purple {
  background: var(--purple);
}

.thankyou-sla-text {
  font-size: 13px;
  color: var(--text2);
}
.thankyou-sla-text strong {
  color: var(--text);
  font-weight: 600;
}

.thankyou-commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 680px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.thankyou-commitment-item {
  background: rgba(7, 4, 20, 0.65);
  border: 1px solid rgba(157, 127, 245, 0.2);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: left;
}

.thankyou-commitment-value {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 4px;
}

.thankyou-commitment-label {
  font-size: 12px;
  color: #7a9090;
  line-height: 1.4;
}

.thankyou-content-section {
  background: var(--bg2);
  border-top: 1px solid rgba(157, 127, 245, 0.08);
  padding: 72px 80px;
  position: relative;
  overflow: hidden;
}
.thankyou-content-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.thankyou-content-section::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.thankyou-page-enterprise .thankyou-content-section {
  border-top-color: rgba(157, 127, 245, 0.1);
}
.thankyou-page-enterprise .thankyou-content-section::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.09) 0%, transparent 62%);
}
.thankyou-page-enterprise .thankyou-content-section::after {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.06) 0%, transparent 70%);
}

.thankyou-content-header {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.thankyou-content-header h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 6px;
}

.thankyou-page-thankyou-estela-standard .thankyou-content-header,
.thankyou-page-thankyou-estela-professional .thankyou-content-header {
  margin-bottom: 36px;
}
.thankyou-page-thankyou-estela-standard .thankyou-content-header h2,
.thankyou-page-thankyou-estela-professional .thankyou-content-header h2 {
  font-size: 26px;
}

.thankyou-page-enterprise .thankyou-content-header {
  margin-bottom: 36px;
}

.thankyou-content-section-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.thankyou-content-section-sub {
  font-size: 15px;
  color: var(--text2);
}

.thankyou-page-thankyou-estela-standard .thankyou-content-section-sub,
.thankyou-page-thankyou-estela-professional .thankyou-content-section-sub {
  font-size: 14px;
}

.thankyou-cards-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.thankyou-page-thankyou-estela-standard .thankyou-cards-main,
.thankyou-page-thankyou-estela-professional .thankyou-cards-main {
  gap: 18px;
  margin-bottom: 18px;
}

.thankyou-card-ps {
  background: linear-gradient(145deg, #f7f2ed, #f0eae3);
  border: 1px solid rgba(232, 66, 42, 0.2);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.thankyou-card-ps:hover {
  border-color: rgba(232, 66, 42, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.thankyou-card-ps h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f1a10;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.thankyou-card-ps p {
  font-size: 13px;
  color: #3d4a3e;
  line-height: 1.65;
  flex: 1;
}

.thankyou-page-thankyou-estela-standard .thankyou-card-ps,
.thankyou-page-thankyou-estela-professional .thankyou-card-ps {
  padding: 26px;
  gap: 12px;
}
.thankyou-page-thankyou-estela-standard .thankyou-card-ps h3,
.thankyou-page-thankyou-estela-professional .thankyou-card-ps h3 {
  font-size: 18px;
  line-height: 1.25;
}

.thankyou-page-enterprise .thankyou-card-ps h3 {
  font-size: 19px;
}

.thankyou-card-ps-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--coral);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(232, 66, 42, 0.1);
  border: 1px solid rgba(232, 66, 42, 0.2);
  border-radius: 6px;
  padding: 4px 10px;
  width: fit-content;
}

.thankyou-card-ps-btn {
  background: var(--coral);
  color: #fff;
  border-radius: 9px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  box-shadow: 0 0 20px rgba(232, 66, 42, 0.28);
  transition: all 0.2s;
}

.thankyou-page-thankyou-estela-standard .thankyou-card-ps-btn,
.thankyou-page-thankyou-estela-professional .thankyou-card-ps-btn {
  padding: 11px 18px;
}

.thankyou-card-ps:hover .thankyou-card-ps-btn {
  background: #d03a24;
  box-shadow: 0 0 28px rgba(232, 66, 42, 0.4);
}

.thankyou-card-bmc {
  background: linear-gradient(145deg, #130a03, #0a0603);
  border: 1px solid rgba(232, 98, 31, 0.28);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.thankyou-card-bmc::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232, 98, 31, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.thankyou-card-bmc:hover {
  border-color: rgba(232, 98, 31, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.thankyou-card-bmc h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.thankyou-card-bmc p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  flex: 1;
  position: relative;
  z-index: 1;
}

.thankyou-page-thankyou-estela-standard .thankyou-card-bmc,
.thankyou-page-thankyou-estela-professional .thankyou-card-bmc {
  padding: 26px;
  gap: 12px;
}
.thankyou-page-thankyou-estela-standard .thankyou-card-bmc::before,
.thankyou-page-thankyou-estela-professional .thankyou-card-bmc::before {
  width: 260px;
  height: 260px;
}
.thankyou-page-thankyou-estela-standard .thankyou-card-bmc h3,
.thankyou-page-thankyou-estela-professional .thankyou-card-bmc h3 {
  font-size: 18px;
  line-height: 1.25;
}

.thankyou-page-enterprise .thankyou-card-bmc h3 {
  font-size: 19px;
}

.thankyou-card-bmc-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(232, 98, 31, 0.1);
  border: 1px solid rgba(232, 98, 31, 0.22);
  border-radius: 6px;
  padding: 4px 10px;
  width: fit-content;
}

.thankyou-card-bmc-btn {
  background: var(--orange);
  color: #fff;
  border-radius: 9px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  box-shadow: 0 0 20px rgba(232, 98, 31, 0.32);
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}

.thankyou-page-thankyou-estela-standard .thankyou-card-bmc-btn,
.thankyou-page-thankyou-estela-professional .thankyou-card-bmc-btn {
  padding: 11px 18px;
}

.thankyou-card-bmc:hover .thankyou-card-bmc-btn {
  background: #d4561a;
  box-shadow: 0 0 30px rgba(232, 98, 31, 0.48);
}

.thankyou-strips {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.thankyou-strip-proxy,
.thankyou-strip-oss {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  padding: 16px 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}

.thankyou-strip-proxy {
  background: rgba(34, 201, 122, 0.04);
  border: 1px solid rgba(34, 201, 122, 0.14);
}
.thankyou-strip-proxy:hover {
  border-color: rgba(34, 201, 122, 0.28);
}

.thankyou-strip-oss {
  background: rgba(157, 127, 245, 0.03);
  border: 1px solid rgba(157, 127, 245, 0.1);
}
.thankyou-strip-oss:hover {
  border-color: rgba(157, 127, 245, 0.2);
}

.thankyou-strip-proxy-tag,
.thankyou-strip-oss-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.thankyou-strip-proxy-tag {
  color: var(--green);
  background: rgba(34, 201, 122, 0.08);
  border: 1px solid rgba(34, 201, 122, 0.16);
}

.thankyou-strip-oss-tag {
  color: var(--purple);
  background: rgba(157, 127, 245, 0.08);
  border: 1px solid rgba(157, 127, 245, 0.16);
}

.thankyou-strip-proxy-text,
.thankyou-strip-oss-text {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  flex: 1;
}
.thankyou-strip-proxy-text strong,
.thankyou-strip-oss-text strong {
  color: var(--text);
  font-weight: 600;
}

.thankyou-strip-proxy-link {
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.thankyou-strip-oss-link {
  font-size: 13px;
  color: var(--purple);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .thankyou-hero {
    padding: 80px 24px 48px;
  }
  .thankyou-hero h1 {
    font-size: 36px;
  }
  .thankyou-content-section {
    padding: 48px 24px;
  }
  .thankyou-cards-main {
    grid-template-columns: 1fr;
  }
  .thankyou-commitment-grid {
    grid-template-columns: 1fr;
  }
  .thankyou-sla-reminder {
    grid-template-columns: 1fr;
  }
  .thankyou-strip-proxy,
  .thankyou-strip-oss {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.bmc-terms-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 2rem 120px;
}

.bmc-terms-hero {
  margin-bottom: 56px;
}

.bmc-terms-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.bmc-terms-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.bmc-terms-subtitle {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.65;
  max-width: 580px;
}

.bmc-terms-meta-row {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.bmc-terms-meta-item {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
}
.bmc-terms-meta-item span {
  color: var(--text2);
}

.bmc-terms-section {
  margin-bottom: 56px;
  scroll-margin-top: 88px;
}
.bmc-terms-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 98, 31, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bmc-terms-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 22px 0 8px;
}
.bmc-terms-section p {
  color: var(--text2);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
}
.bmc-terms-section p:last-child {
  margin-bottom: 0;
}
.bmc-terms-section a {
  color: var(--green);
  text-decoration: none;
}
.bmc-terms-section a:hover {
  text-decoration: underline;
}

.bmc-terms-num {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--green);
  font-weight: 500;
}

.bmc-terms-list {
  list-style: none;
  margin: 12px 0 18px;
  padding: 0;
}
.bmc-terms-list li {
  color: var(--text2);
  font-size: 15px;
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.65;
}
.bmc-terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.55;
}

.bmc-terms-callout {
  background: var(--bg2);
  border: 1px solid rgba(34, 201, 122, 0.14);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  padding: 16px 22px;
  margin: 18px 0;
}
.bmc-terms-callout p {
  margin-bottom: 0;
}
.bmc-terms-callout .bmc-terms-list {
  margin-bottom: 0;
}

.bmc-terms-callout-orange {
  border-left-color: var(--orange);
  border-color: rgba(232, 98, 31, 0.14);
}

.bmc-terms-callout-purple {
  border-left-color: var(--purple);
  border-color: rgba(157, 127, 245, 0.14);
}

.bmc-terms-callout-warning {
  border-left-color: #e8c21f;
  border-color: rgba(232, 194, 31, 0.14);
  background: rgba(232, 194, 31, 0.04);
}
.bmc-terms-callout-warning .bmc-terms-callout-lead {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
}

.bmc-terms-price-table {
  background: linear-gradient(145deg, #130a03, #0a0603);
  border: 1px solid rgba(232, 98, 31, 0.28);
  border-radius: 14px;
  overflow: hidden;
  margin: 20px 0;
}
.bmc-terms-price-table table {
  width: 100%;
  border-collapse: collapse;
}
.bmc-terms-price-table th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(232, 98, 31, 0.15);
}
.bmc-terms-price-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.bmc-terms-price-table tr:last-child td {
  border-bottom: none;
}

.bmc-terms-price-val {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--orange);
  font-weight: 500;
}

.bmc-terms-contact-box {
  background: linear-gradient(145deg, #130a03, #0a0603);
  border: 1px solid rgba(232, 98, 31, 0.28);
  border-radius: 14px;
  padding: 28px 32px;
  margin-top: 48px;
}
.bmc-terms-contact-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.bmc-terms-contact-box p {
  color: var(--text2);
  font-size: 15px;
  margin-bottom: 16px;
}

.bmc-terms-email-link {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--orange);
  background: rgba(232, 98, 31, 0.1);
  border: 1px solid rgba(232, 98, 31, 0.25);
  border-radius: 8px;
  padding: 10px 18px;
  display: inline-block;
  text-decoration: none;
}
.bmc-terms-email-link:hover {
  text-decoration: none;
  background: rgba(232, 98, 31, 0.16);
}

@media (max-width: 640px) {
  .bmc-terms-wrap {
    padding: 56px 1.25rem 80px;
  }
  .bmc-terms-price-table {
    overflow-x: auto;
  }
}
.privacy-terms-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 2rem 120px;
}

.privacy-terms-hero {
  margin-bottom: 64px;
}

.privacy-terms-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.privacy-terms-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.privacy-terms-subtitle {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.6;
  max-width: 620px;
}

.privacy-terms-updated {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
  margin-top: 20px;
}

.privacy-terms-tab-nav {
  display: flex;
  gap: 4px;
  background: var(--bg2);
  border: 1px solid rgba(34, 201, 122, 0.1);
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 56px;
}

.privacy-terms-tab-btn {
  flex: 1;
  padding: 11px 20px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: var(--text2);
  transition: all 0.2s;
}
.privacy-terms-tab-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.privacy-terms-tab-btn.privacy-terms-tab-btn-active {
  background: var(--surface);
  color: var(--text);
}
.privacy-terms-tab-btn.privacy-terms-tab-btn-green.privacy-terms-tab-btn-active {
  color: var(--green);
}

.privacy-terms-tab-panel {
  display: none;
}
.privacy-terms-tab-panel.active {
  display: block;
}

.privacy-terms-section {
  margin-bottom: 52px;
  scroll-margin-top: 88px;
}
.privacy-terms-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(34, 201, 122, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.privacy-terms-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 10px;
}
.privacy-terms-section p {
  color: var(--text2);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
}
.privacy-terms-section p:last-child {
  margin-bottom: 0;
}
.privacy-terms-section a {
  color: var(--green);
  text-decoration: none;
}
.privacy-terms-section a:hover {
  text-decoration: underline;
}

.privacy-terms-num {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--green);
  font-weight: 500;
}

.privacy-terms-list {
  list-style: none;
  margin: 12px 0 18px;
  padding: 0;
}
.privacy-terms-list li {
  color: var(--text2);
  font-size: 15px;
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.65;
}
.privacy-terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.5;
}

.privacy-terms-callout {
  background: var(--bg2);
  border: 1px solid rgba(34, 201, 122, 0.14);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 20px 0;
}
.privacy-terms-callout p {
  margin-bottom: 0;
}

.privacy-terms-callout-orange {
  border-left-color: var(--orange);
  border-color: rgba(232, 98, 31, 0.14);
}

.privacy-terms-callout-purple {
  border-left-color: var(--purple);
  border-color: rgba(157, 127, 245, 0.14);
}

.privacy-terms-contact-box {
  background: var(--bg2);
  border: 1px solid rgba(34, 201, 122, 0.1);
  border-radius: 14px;
  padding: 28px 32px;
  margin-top: 48px;
}
.privacy-terms-contact-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.privacy-terms-contact-box p {
  color: var(--text2);
  font-size: 15px;
  margin-bottom: 16px;
}

.privacy-terms-email-link {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--green);
  background: rgba(34, 201, 122, 0.08);
  border: 1px solid rgba(34, 201, 122, 0.2);
  border-radius: 8px;
  padding: 10px 18px;
  display: inline-block;
  text-decoration: none;
}
.privacy-terms-email-link:hover {
  text-decoration: none;
  background: rgba(34, 201, 122, 0.12);
}

@media (max-width: 640px) {
  .privacy-terms-wrap {
    padding: 56px 1.25rem 80px;
  }
  .privacy-terms-tab-nav {
    flex-direction: column;
  }
}
@media (min-width: 769px) {
  .nav-hamburger {
    display: none;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 1.25rem;
    height: 56px;
  }
  .nav-links,
  .nav-right {
    display: none;
  }
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(7, 17, 14, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--border);
    padding: 0.75rem 1.25rem 1.25rem;
    z-index: 99;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }
  nav.nav-open .nav-links > li > a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 0.5px solid var(--border2);
    width: 100%;
  }
  nav.nav-open .nav-links > li:last-child > a {
    border-bottom: none;
  }
  nav.nav-open .nav-item-dropdown {
    width: 100%;
  }
  nav.nav-open .nav-item-dropdown::after {
    display: none;
  }
  nav.nav-open .nav-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 0.5px solid var(--border2);
    text-align: left;
  }
  nav.nav-open .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    min-width: 0;
    display: none;
  }
  nav.nav-open .nav-dropdown-menu::before {
    display: none;
  }
  nav.nav-open .nav-dropdown-menu a {
    padding: 10px 0;
    font-size: 14px;
  }
  nav.nav-open .nav-item-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }
  nav.nav-open .nav-dropdown-chevron svg {
    transform: none;
  }
  nav.nav-open .nav-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 1rem 1.25rem;
    position: absolute;
    left: 0;
    right: 0;
    background: rgba(7, 17, 14, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--border);
    z-index: 99;
  }
  nav.nav-open .nav-right .btn-ghost,
  nav.nav-open .nav-right .btn-signup {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
  }
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  .nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .section-spacing {
    padding: 4.5rem 0;
  }
  .section-spacing--short {
    padding: 4.5rem 0 3rem;
  }
  .section-title {
    font-size: 28px;
    letter-spacing: -0.8px;
  }
  .section-sub {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 2.5rem;
  }
  .section-tag,
  .section-tag-purple {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }
  .section-dual-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .section-triple-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .section-dual-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .hero {
    padding: 60px 1.25rem 80px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .hero canvas {
    width: 100%;
    right: 0;
    opacity: 0.25;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-sub {
    font-size: 16px;
    max-width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .cta-orange,
  .hero-ctas .cta-purple-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-ctas .cta-github-mini {
    align-self: center;
  }
  .hero-badge {
    font-size: 11px;
  }
  .stats-section {
    padding: 0 1rem 3rem;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 0.75rem 0.5rem;
  }
  .stat-item:not(:last-child)::after {
    top: 10%;
    bottom: 10%;
  }
  .stat-number {
    font-size: 20px;
    letter-spacing: -0.3px;
  }
  .stat-label {
    font-size: 10px;
    line-height: 1.35;
  }
  .why-card {
    padding: 1.5rem;
  }
  .product-card {
    padding: 1.75rem;
  }
  .product-title {
    font-size: 22px;
  }
  .product-title--mini {
    font-size: 20px;
  }
  .banner-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .banner-card--compact {
    padding: 1.25rem;
  }
  .banner-card--large {
    padding: 1.25rem;
  }
  .enterprise-section {
    padding: 3rem 1rem 2.5rem;
  }
  .enterprise-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }
  .enterprise-left {
    text-align: center;
  }
  .enterprise-left h2 {
    font-size: 22px;
    letter-spacing: -0.4px;
  }
  .enterprise-left p {
    max-width: 100%;
    font-size: 13px;
    margin-bottom: 1.5rem;
  }
  .cta-enterprise {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  .enterprise-features {
    gap: 6px;
  }
  .enterprise-feat {
    padding: 9px 12px;
    gap: 8px;
  }
  .enterprise-feat-text {
    font-size: 11.5px;
    line-height: 1.4;
  }
  .enterprise-tag-main {
    font-size: 10px;
    padding: 4px 12px;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
  }
  .step-card--side {
    flex-direction: column;
    gap: 0.75rem;
  }
  .step-num--sidebar {
    width: auto;
    padding-top: 0;
  }
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 2.5rem 1.25rem;
  }
  .footer-row-main {
    display: contents;
  }
  .footer-brand {
    order: 1;
    justify-content: center;
    justify-self: center;
  }
  .footer-links {
    order: 2;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    width: 100%;
    max-width: 520px;
  }
  .footer-item-dropdown {
    display: inline-flex;
  }
  .footer-dropdown-menu {
    bottom: auto;
    top: calc(100% + 8px);
    left: 50%;
    right: auto;
    min-width: min(240px, 100vw - 2.5rem);
    max-width: calc(100vw - 2.5rem);
    transform: translateX(-50%) translateY(-4px);
  }
  .footer-dropdown-menu::before {
    bottom: auto;
    top: -5px;
    border-right: none;
    border-bottom: none;
    border-left: 0.5px solid rgba(157, 127, 245, 0.18);
    border-top: 0.5px solid rgba(157, 127, 245, 0.18);
  }
  .footer-item-dropdown.is-open .footer-dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }
  .footer-copy {
    order: 4;
    justify-self: center;
    width: 100%;
    text-align: center;
    white-space: normal;
  }
  .footer-row-social {
    order: 3;
    width: 100%;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-social-link {
    width: 48px;
    height: 48px;
  }
  .footer-social-link__mark--linkedin {
    font-size: 16px;
  }
  .footer-social-link__icon {
    width: 23px;
    height: 23px;
  }
  .cta-orange,
  .cta-purple-ghost {
    padding: 12px 22px;
    font-size: 14px;
  }
  .cta-enterprise {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  .logos-section {
    padding: 3rem 1.25rem;
  }
  .logos-row {
    gap: 2.5rem;
  }
  .logo-img {
    max-height: 40px;
    max-width: 140px;
  }
  .home-cli-terminal {
    margin-top: 2rem;
  }
  .oss-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 70px 1.25rem 60px;
  }
  .oss-hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .oss-hero-sub {
    font-size: 15px;
    max-width: 100%;
  }
  .oss-hero-ctas {
    flex-direction: column;
  }
  .oss-repo-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .oss-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .oss-stat-block {
    padding: 2rem 1.25rem;
  }
  .oss-stat-num {
    font-size: 28px;
  }
  .oss-philosophy {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4.5rem 1.25rem;
  }
  .oss-philosophy-title {
    font-size: 26px;
  }
  .oss-philosophy-quote p {
    font-size: 16px;
  }
  .oss-philosophy-right {
    padding-top: 0;
  }
  .oss-arch {
    padding: 4.5rem 1.25rem;
  }
  .oss-arch-title {
    font-size: 26px;
  }
  .oss-arch-diagram {
    grid-template-columns: 1fr;
  }
  .oss-k8s-note {
    flex-direction: column;
    gap: 0.75rem;
  }
  .oss-install {
    padding: 4.5rem 1.25rem;
  }
  .oss-install-title {
    font-size: 26px;
  }
  .oss-install-intro {
    font-size: 14px;
  }
  .oss-install-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .oss-install-cloud-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .oss-contrib {
    padding: 4.5rem 1.25rem;
  }
  .oss-contrib-title {
    font-size: 26px;
  }
  .oss-contrib-ways {
    grid-template-columns: 1fr;
  }
  .oss-contrib-bottom {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .oss-enterprise {
    padding: 4rem 1.25rem;
  }
  .oss-enterprise-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
  .oss-enterprise-left p {
    max-width: 100%;
  }
  .pricing-header {
    padding: 60px 1.25rem 50px;
  }
  .pricing-header h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .pricing-header p {
    font-size: 15px;
  }
  .pricing-tabs-wrapper {
    padding: 0 1.25rem;
    margin-bottom: 3rem;
  }
  .pricing-section {
    padding: 0 1.25rem 4rem;
  }
  .pricing-section-label h2 {
    font-size: 20px;
  }
  .pricing-cs-header {
    max-width: 100%;
    margin-bottom: 2.5rem;
  }
  .pricing-cs-header h2 {
    font-size: 28px;
  }
  .pricing-tiers-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .pricing-scope-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .pricing-bottom-blocks {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .pricing-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .pricing-fpt-head,
  .pricing-fpt-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
  }
  .pricing-fpt-col {
    display: none;
  }
  .pricing-fpt-row .pricing-fpt-resource::before {
    content: attr(data-label);
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
  }
  .pricing-fpt-resource {
    display: flex;
    flex-direction: column;
  }
  .pricing-proxy-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .pricing-free-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
  }
  .bmc-hero {
    padding: 60px 1.25rem 60px;
  }
  .bmc-hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .bmc-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bmc-hero-sub {
    font-size: 15px;
    max-width: 100%;
  }
  .bmc-dash-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .bmc-diff-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 1.25rem;
  }
  .bmc-pricing-section {
    padding: 4rem 1.25rem;
  }
  .bmc-pricing-card-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bmc-pricing-left {
    border-right: none;
    border-bottom: 1px solid rgba(232, 98, 31, 0.1);
    padding: 1.75rem 1.25rem;
  }
  .bmc-pricing-right {
    padding: 1.75rem 1.25rem;
  }
  .bmc-commercial-hint {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    margin-top: 1rem;
  }
  .bmc-final-section {
    padding: 4.5rem 1.25rem;
  }
  .bmc-final-main-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .bmc-ps-block,
  .bmc-enterprise-block {
    padding: 1.75rem;
  }
  .bmc-final-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }
  .bmc-strip-left {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .bmc-strip-text {
    white-space: normal;
  }
  .contact-sla-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 50px 1rem 70px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero canvas {
    opacity: 0.15;
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-ctas {
    gap: 10px;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 0.6rem 0.35rem;
  }
  .stat-number {
    font-size: 18px;
  }
  .stat-label {
    font-size: 9px;
  }
  .enterprise-section {
    padding: 2.5rem 0.75rem 2rem;
  }
  .enterprise-inner {
    padding: 1rem 0.75rem;
    gap: 1rem;
    border-radius: 12px;
  }
  .enterprise-left h2 {
    font-size: 20px;
  }
  .enterprise-left p {
    font-size: 12px;
  }
  .enterprise-feat {
    padding: 7px 10px;
    gap: 7px;
  }
  .enterprise-feat-text {
    font-size: 11px;
  }
  .section-title {
    font-size: 24px;
  }
  .pricing-header h1 {
    font-size: 28px;
  }
  .oss-hero h1 {
    font-size: 28px;
  }
  .oss-repo-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .oss-repo-stat-val {
    font-size: 18px;
  }
  .oss-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .oss-stat-num {
    font-size: 24px;
  }
  .bmc-hero h1 {
    font-size: 28px;
  }
  .bmc-dash-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .logos-row {
    gap: 1.5rem;
  }
  .logo-img {
    max-height: 32px;
    max-width: 110px;
  }
}

/*# sourceMappingURL=main.css.map */