:root {
  color-scheme: dark;
  --bg: #05040a;
  --bg-soft: #0d0917;
  --panel: #160724;
  --panel-2: #210a38;
  --text: #ffffff;
  --muted: #cfc7dd;
  --line: rgba(255, 255, 255, 0.14);
  --purple: #9238e0;
  --pink: #f044d5;
  --green: #7cff78;
  --cyan: #7df5ff;
  --yellow: #ffd760;
  --gold: #ffd86b;
  --deep-blue: #061a48;
  --shadow: 0 24px 80px rgba(146, 56, 224, 0.25);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(125, 245, 255, 0.11), transparent 24rem),
    radial-gradient(circle at 85% 8%, rgba(240, 68, 213, 0.18), transparent 28rem),
    linear-gradient(180deg, #05040a 0%, #0d0614 46%, #07060b 100%);
  color: var(--text);
}

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

.member-unavailable {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px clamp(18px, 4vw, 56px);
  background: #ffd86b;
  color: #1a0826;
  font-weight: 950;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(5, 4, 10, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(125, 245, 255, 0.36);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(125, 245, 255, 0.16), rgba(255, 216, 107, 0.12));
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 0 22px rgba(125, 245, 255, 0.12);
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.lang-switch button {
  min-width: 44px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.lang-switch button.is-active {
  background: linear-gradient(135deg, var(--gold), #fff0a6);
  color: #201305;
}

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

.nav-links a:hover,
.ghost-link:hover,
.plan-toolbar a:hover {
  color: var(--cyan);
}

.section,
.section-band {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 56px 0 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  line-height: 1.03;
  overflow-wrap: normal;
  word-break: keep-all;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 3.3rem);
  line-height: 1.06;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
}

.lead {
  max-width: 710px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.cta,
.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #dfff78);
  color: #1a0826;
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(124, 255, 120, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover,
.plan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(124, 255, 120, 0.26);
}

.cta-small {
  min-height: 42px;
  padding: 0 18px;
}

.cta-large {
  min-width: 220px;
}

.ghost-link {
  color: var(--muted);
  font-weight: 800;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
  position: relative;
}

.opportunity-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "board board"
    "partner checklist";
  align-content: space-between;
  gap: 18px;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 107, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 216, 107, 0.1), transparent 24%),
    linear-gradient(160deg, rgba(8, 28, 65, 0.95), rgba(35, 8, 48, 0.96));
  box-shadow: var(--shadow);
}

.opportunity-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.opportunity-visual::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 216, 107, 0.11);
  filter: blur(18px);
}

.opportunity-board,
.partner-card,
.checklist-card,
.mentor-card {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
}

.opportunity-board {
  grid-area: board;
  width: 100%;
  min-height: auto;
  padding: clamp(20px, 4vw, 30px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
}

.opportunity-board p {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 14px;
  padding: 0 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #fff1a8);
  color: #241600;
  font-weight: 950;
}

.opportunity-board h3 {
  max-width: 720px;
  color: white;
  font-size: clamp(1.7rem, 2.45vw, 2.25rem);
  line-height: 1.14;
}

.roadmap-line {
  display: none;
}

.roadmap-items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.roadmap-items::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(124, 255, 120, 0.9));
  box-shadow: 0 0 18px rgba(255, 216, 107, 0.28);
}

.roadmap-items div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  justify-items: center;
}

.roadmap-items span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0b1832;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 950;
}

.roadmap-items strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  text-align: center;
}

.partner-card {
  grid-area: partner;
  width: 100%;
  padding: 20px;
}

.avatar-row {
  display: flex;
  margin-bottom: 16px;
}

.avatar-row span {
  display: block;
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: linear-gradient(135deg, #d7f5ff, #ffd86b);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.avatar-row span + span {
  margin-left: -12px;
}

.partner-card strong,
.checklist-card strong,
.mentor-card strong {
  display: block;
  color: white;
  font-size: 1.12rem;
  line-height: 1.25;
}

.partner-card small,
.mentor-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.checklist-card {
  grid-area: checklist;
  width: 100%;
  padding: 20px;
}

.checklist-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.checklist-card li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.35;
}

.checklist-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--green);
}

.checklist-card li::after {
  content: "";
  position: absolute;
  top: 0.47em;
  left: 4px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #0b1832;
  border-bottom: 2px solid #0b1832;
  transform: rotate(-45deg);
}

.mentor-card {
  right: 132px;
  bottom: 46px;
  width: 238px;
  padding: 18px 18px 18px 82px;
}

.mentor-icon {
  position: absolute;
  left: 18px;
  top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(255, 216, 107, 0.16);
  border: 1px solid rgba(255, 216, 107, 0.38);
}

.mentor-icon::before,
.mentor-icon::after,
.mentor-icon span {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
}

.mentor-icon::before {
  top: 9px;
  left: 16px;
  width: 14px;
  height: 14px;
}

.mentor-icon::after {
  left: 10px;
  bottom: 8px;
  width: 26px;
  height: 15px;
  border-radius: 14px 14px 6px 6px;
}

.mentor-icon span {
  right: 7px;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--green);
}

.pipeline-visual {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(125, 245, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 24%, rgba(125, 245, 255, 0.24), transparent 14rem),
    radial-gradient(circle at 18% 80%, rgba(255, 216, 107, 0.18), transparent 15rem),
    linear-gradient(115deg, rgba(4, 17, 53, 0.2) 0 46%, rgba(12, 199, 190, 0.12) 47% 48%, transparent 49%),
    linear-gradient(135deg, rgba(4, 17, 53, 0.96), rgba(37, 5, 62, 0.92));
  box-shadow: var(--shadow);
}

.network-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 245, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 245, 255, 0.09) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 62% 40%, black, transparent 72%);
}

.network-grid::after {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(125, 245, 255, 0.18);
  border-radius: 8px;
  box-shadow: inset 0 0 50px rgba(125, 245, 255, 0.08);
}

.data-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.data-orbit::before,
.data-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(125, 245, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(125, 245, 255, 0.12);
}

.data-orbit::before {
  top: 66px;
  right: 72px;
  width: 268px;
  height: 268px;
}

.data-orbit::after {
  top: 112px;
  right: 118px;
  width: 176px;
  height: 176px;
}

.data-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(125, 245, 255, 0.9);
}

.data-orbit span:nth-child(1) { top: 74px; right: 186px; }
.data-orbit span:nth-child(2) { top: 156px; right: 66px; }
.data-orbit span:nth-child(3) { top: 302px; right: 146px; }
.data-orbit span:nth-child(4) { top: 210px; right: 278px; }
.data-orbit span:nth-child(5) { top: 128px; left: 108px; }
.data-orbit span:nth-child(6) { bottom: 92px; left: 242px; }

.visual-badge,
.visual-mini-cta {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 950;
}

.visual-badge {
  top: 28px;
  right: 28px;
  min-height: 40px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--gold), #fff1a8);
  color: #231500;
  box-shadow: 0 16px 36px rgba(255, 216, 107, 0.22);
}

.visual-headline {
  position: absolute;
  z-index: 3;
  top: 32px;
  left: 34px;
  display: grid;
  gap: 2px;
  text-transform: uppercase;
}

.visual-headline span {
  color: var(--cyan);
  font-size: clamp(3rem, 6vw, 4.9rem);
  font-weight: 950;
  line-height: 0.9;
  text-shadow: 0 0 28px rgba(125, 245, 255, 0.82);
}

.visual-headline strong {
  color: white;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.28);
}

.signal-visual {
  position: absolute;
  z-index: 3;
  top: 86px;
  right: 52px;
  width: 94px;
  height: 70px;
}

.signal-visual span {
  position: absolute;
  left: 50%;
  bottom: 0;
  border: 5px solid transparent;
  border-top-color: var(--cyan);
  border-radius: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 12px rgba(125, 245, 255, 0.9));
}

.signal-visual span:nth-child(1) {
  width: 30px;
  height: 30px;
}

.signal-visual span:nth-child(2) {
  width: 58px;
  height: 58px;
}

.signal-visual span:nth-child(3) {
  width: 86px;
  height: 86px;
}

.sim-visual,
.phone-visual,
.wallet-visual {
  position: absolute;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.sim-visual {
  bottom: 82px;
  left: 38px;
  display: grid;
  align-content: space-between;
  width: 190px;
  height: 244px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(9, 211, 205, 0.24), rgba(4, 17, 53, 0.94)),
    var(--deep-blue);
  transform: rotate(-8deg);
}

.sim-visual::before {
  content: "";
  width: 54px;
  height: 42px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 31%, rgba(91, 53, 11, 0.5) 31% 36%, transparent 36% 64%, rgba(91, 53, 11, 0.5) 64% 69%, transparent 69%),
    linear-gradient(#ffe296, #c89128);
  box-shadow: inset 0 0 0 2px rgba(74, 45, 8, 0.2);
}

.sim-visual span,
.phone-visual span,
.wallet-visual span {
  color: var(--gold);
  font-weight: 950;
}

.sim-visual strong {
  color: white;
  font-size: 4.7rem;
  line-height: 0.9;
  text-shadow: 0 0 28px rgba(125, 245, 255, 0.66);
}

.phone-visual {
  top: 118px;
  right: 42px;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 210px;
  height: 292px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(125, 245, 255, 0.28), transparent 7rem),
    linear-gradient(180deg, #0a1947, #050816);
}

.phone-visual::before {
  content: "";
  position: absolute;
  top: 16px;
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.phone-visual strong {
  color: var(--cyan);
  font-size: 5rem;
  line-height: 1;
  text-shadow: 0 0 32px rgba(125, 245, 255, 0.82);
}

.phone-visual small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-align: center;
}

.growth-bars {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 54px;
}

.growth-bars i {
  display: block;
  width: 13px;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, var(--green), var(--cyan));
  box-shadow: 0 0 16px rgba(125, 245, 255, 0.42);
}

.growth-bars i:nth-child(1) { height: 18px; opacity: 0.58; }
.growth-bars i:nth-child(2) { height: 28px; opacity: 0.72; }
.growth-bars i:nth-child(3) { height: 40px; opacity: 0.86; }
.growth-bars i:nth-child(4) { height: 54px; }

.wallet-visual {
  left: 248px;
  bottom: 84px;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  background: linear-gradient(145deg, #5b2c12, #1b0b06);
}

.wallet-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 216, 107, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 216, 107, 0.32);
}

.wallet-visual strong {
  color: var(--gold);
  font-size: 2.15rem;
  text-shadow: 0 0 20px rgba(255, 216, 107, 0.42);
}

.visual-mini-cta {
  left: 36px;
  bottom: 28px;
  min-height: 44px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--gold), #fff1a8);
  color: #211400;
  box-shadow: 0 18px 40px rgba(255, 216, 107, 0.22);
}

.visual-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  width: min(280px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 4, 10, 0.82);
  backdrop-filter: blur(14px);
}

.visual-note span {
  color: var(--muted);
  line-height: 1.5;
}

.content-section,
.plans-section,
.split-section,
.income-section,
.final-cta,
.legal-section {
  padding: 74px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

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

.value-card,
.step,
.plan-card,
.income-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.value-card {
  padding: 24px;
}

.value-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(125, 245, 255, 0.11);
  color: var(--cyan);
  font-weight: 950;
}

.value-card p,
.step p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.plans-section {
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding-inline: max(18px, calc((100% - 1160px) / 2));
  background: linear-gradient(180deg, rgba(33, 10, 56, 0.45), rgba(5, 4, 10, 0.1));
}

.plan-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.plan-toolbar a {
  color: var(--green);
  font-weight: 800;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  overflow-x: visible;
  padding-bottom: 8px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 500px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(112, 19, 170, 0.82), rgba(31, 5, 48, 0.96)),
    var(--panel);
  border: 2px solid rgba(146, 56, 224, 0.84);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.plan-card.is-featured {
  border-color: var(--green);
}

.plan-badge {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(124, 255, 120, 0.12);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.plan-chip {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 92px;
  margin: 18px 0 20px;
  border: 2px solid rgba(125, 245, 255, 0.75);
  border-radius: 8px;
  color: white;
  text-shadow: 0 0 18px rgba(125, 245, 255, 0.9);
  box-shadow: inset 0 0 22px rgba(240, 68, 213, 0.28), 0 0 26px rgba(125, 245, 255, 0.16);
}

.plan-chip span {
  font-weight: 900;
  color: var(--cyan);
}

.plan-chip strong {
  font-size: 2rem;
}

.plan-features {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
}

.plan-features li {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
}

.plan-features li::before {
  content: "";
  position: absolute;
  top: 0.23em;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(124, 255, 120, 0.45);
}

.plan-features li::after {
  content: "";
  position: absolute;
  top: 0.53em;
  left: 5px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #210a38;
  border-bottom: 2px solid #210a38;
  transform: rotate(-45deg);
}

.plan-price {
  margin-top: auto;
  padding-top: 30px;
  text-align: center;
}

.plan-price span {
  display: block;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 950;
}

.plan-price strong {
  display: block;
  color: var(--pink);
  font-size: 2.55rem;
  font-style: italic;
  line-height: 1.1;
}

.plan-button {
  margin-top: 18px;
  background: white;
  color: #3f0a63;
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.32);
}

.plan-notes {
  display: none;
  gap: 4px;
  min-height: 38px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  line-height: 1.35;
  text-align: center;
}

.steps-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1160px) / 2));
  background:
    linear-gradient(90deg, rgba(6, 26, 72, 0.86), rgba(4, 9, 28, 0.72)),
    radial-gradient(circle at 20% 35%, rgba(125, 245, 255, 0.22), transparent 24rem);
}

.steps-section .section-heading {
  max-width: 940px;
  margin-bottom: 28px;
  text-align: center;
}

.steps-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1160px;
  margin: 0 auto;
}

.step {
  position: relative;
  min-height: 250px;
  padding: 26px 24px 24px;
  border-color: rgba(125, 245, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.96));
  color: #08214f;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -27px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 20px solid #09d3cd;
  filter: drop-shadow(0 0 14px rgba(9, 211, 205, 0.58));
  transform: translateY(-50%);
}

.step-ribbon {
  position: absolute;
  top: -14px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0cc7be, #087f92);
  color: white;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(8, 127, 146, 0.28);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 18px 0 18px;
  border: 3px solid #099b9b;
  border-radius: 8px;
  color: #087f92;
  font-weight: 950;
  background:
    linear-gradient(180deg, rgba(9, 211, 205, 0.1), rgba(255, 255, 255, 0.72));
}

.step h3 {
  color: #08214f;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
}

.step p {
  color: #18345f;
  font-size: 1.02rem;
  line-height: 1.62;
}

.income-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1160px) / 2));
  background:
    linear-gradient(135deg, rgba(125, 245, 255, 0.12), rgba(240, 68, 213, 0.12)),
    rgba(255, 255, 255, 0.035);
}

.income-card {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.income-card p:not(.eyebrow) {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.income-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0;
}

.income-metrics div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.income-metrics strong {
  display: block;
  color: var(--green);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.income-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.final-cta {
  max-width: 920px;
  text-align: center;
}

.final-cta p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.legal-section {
  width: min(980px, calc(100% - 36px));
  color: var(--muted);
}

.legal-section details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.legal-section summary {
  cursor: pointer;
  color: white;
  font-weight: 900;
}

.legal-section p {
  line-height: 1.75;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 8px;
  background: #25d366;
  color: #06120b;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.26);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 620px;
  }

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

  .plans-grid {
    grid-template-columns: repeat(4, 260px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .plans-grid::-webkit-scrollbar {
    display: none;
  }

  .plan-card {
    scroll-snap-align: start;
  }

  .steps-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -22px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 20px solid #09d3cd;
    border-bottom: 0;
    transform: translateX(50%);
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .lang-switch {
    flex: 1;
  }

  .lang-switch button {
    flex: 1;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.1rem, 12vw, 3.45rem);
  }

  .value-grid,
  .income-metrics {
    grid-template-columns: 1fr;
  }

  .plan-toolbar {
    flex-direction: column;
  }

  .plans-grid {
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }

  .hero-actions,
  .cta,
  .plan-button {
    width: 100%;
  }

  .visual-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .pipeline-visual .visual-note {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    margin-top: 0;
  }

  .opportunity-visual {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 18px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "board"
      "partner"
      "checklist";
  }

  .opportunity-visual::before {
    inset: 14px;
  }

  .opportunity-board,
  .partner-card,
  .checklist-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .opportunity-board {
    min-height: auto;
    padding: 18px;
  }

  .opportunity-board p {
    max-width: 100%;
    min-height: auto;
    padding: 9px 12px;
    line-height: 1.15;
  }

  .opportunity-board h3 {
    margin-top: 16px;
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .roadmap-line {
    display: none;
  }

  .roadmap-items {
    gap: 8px;
    margin-top: 20px;
  }

  .roadmap-items::before {
    top: 19px;
    left: 14%;
    right: 14%;
  }

  .roadmap-items div {
    position: relative;
    z-index: 1;
  }

  .roadmap-items strong {
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .partner-card {
    padding: 18px;
  }

  .checklist-card {
    padding: 16px;
  }

  .pipeline-visual {
    min-height: 470px;
  }

  .sim-visual {
    top: 132px;
    bottom: auto;
    left: 28px;
    width: 150px;
    height: 194px;
  }

  .sim-visual strong {
    font-size: 3.7rem;
  }

  .phone-visual {
    top: 178px;
    right: 24px;
    width: 160px;
    height: 250px;
  }

  .phone-visual strong {
    font-size: 3.45rem;
  }

  .wallet-visual {
    left: 118px;
    right: auto;
    bottom: 94px;
    width: 104px;
    height: 104px;
  }

  .wallet-visual strong {
    font-size: 1.7rem;
  }

  .visual-badge {
    top: 18px;
    right: 18px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .visual-headline {
    top: 22px;
    left: 22px;
  }

  .visual-headline span {
    font-size: 3.1rem;
  }

  .signal-visual {
    top: 72px;
    right: 32px;
    transform: scale(0.72);
  }

  .visual-mini-cta {
    left: 18px;
    bottom: 18px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .steps-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .step {
    min-height: auto;
    padding: 28px 20px 22px;
  }

  .step-icon {
    width: 68px;
    height: 68px;
  }

  .floating-whatsapp {
    display: none;
  }
}
