:root {
  --ink: #f4f8f7;
  --muted: #a6b4b2;
  --muted-strong: #c4d0ce;
  --bg: #0b1111;
  --surface: #111a19;
  --surface-raised: #16201f;
  --surface-soft: #0f1716;
  --line: rgba(209, 234, 229, 0.14);
  --line-strong: rgba(209, 234, 229, 0.26);
  --green: #11df78;
  --green-bright: #3af394;
  --green-dark: #063d27;
  --mint: #bcffdd;
  --warning: #f5c86e;
  --display: "Space Grotesk", "Segoe UI", sans-serif;
  --body: "Inter", "Segoe UI", sans-serif;
  --max: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% -10%, rgba(18, 218, 119, 0.14), transparent 30rem),
    radial-gradient(circle at -10% 35%, rgba(34, 100, 89, 0.16), transparent 34rem),
    var(--bg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(196, 225, 219, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 225, 219, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--green-bright);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.page-shell { overflow: hidden; }

.site-header {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 48px), var(--max));
  min-height: 88px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: var(--display);
  letter-spacing: 0.04em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  transform: rotate(30deg);
}

.brand-mark span {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid var(--green);
  border-radius: 3px;
}

.brand-mark span:nth-child(1) { top: 0; left: 7px; }
.brand-mark span:nth-child(2) { bottom: 0; left: 1px; }
.brand-mark span:nth-child(3) { right: 1px; bottom: 0; }

.brand-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.brand-copy strong { color: var(--green-bright); font-weight: 700; }
.brand-divider { color: var(--muted); font-weight: 400; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a { transition: color 160ms ease; }
.desktop-nav a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary { color: #03180d; background: var(--green); box-shadow: 0 12px 28px rgba(17, 223, 120, 0.16); }
.button-primary:hover { background: var(--green-bright); box-shadow: 0 16px 34px rgba(17, 223, 120, 0.26); }
.button-outline { color: var(--ink); border-color: var(--line-strong); background: rgba(17, 26, 25, 0.52); }
.button-outline:hover { border-color: var(--green); background: rgba(17, 223, 120, 0.08); }
.button-ghost { color: var(--muted-strong); border-color: var(--line); background: rgba(17, 26, 25, 0.42); }
.button-ghost:hover { color: var(--ink); border-color: var(--line-strong); }
.button-small { min-height: 42px; padding: 10px 15px; font-size: 13px; }
.button-large { min-width: 230px; min-height: 56px; font-size: 16px; }

.section-frame {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(360px, 0.93fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  min-height: 650px;
  padding: 86px 0 92px;
}

.eyebrow,
.card-kicker,
.signal-status,
.result-label {
  margin: 0;
  color: var(--green-bright);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px rgba(58, 243, 148, 0.84); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); }

h1 {
  max-width: 780px;
  margin: 20px 0 22px;
  font-size: clamp(3rem, 6.3vw, 5.45rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

h1 em { color: var(--green-bright); font-style: normal; }

.hero-intro {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.65;
}

.mobile-copy-group { display: block; }
.mobile-copy-more { display: none; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.microcopy { max-width: 460px; margin: 18px 0 0; color: var(--muted); font-size: 13px; }

.hero-visual {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 14% 3% 11% 8%;
  z-index: -2;
  content: "";
  border: 1px solid rgba(58, 243, 148, 0.18);
  border-radius: 50%;
  transform: rotate(-17deg) scaleY(0.76);
}

.hero-visual::after {
  position: absolute;
  inset: 2% 14% 3% 0;
  z-index: -3;
  content: "";
  background: radial-gradient(circle, rgba(17, 223, 120, 0.18), transparent 64%);
  filter: blur(16px);
}

.hero-creator-card {
  position: absolute;
  top: 2%;
  bottom: 1%;
  left: 14%;
  z-index: 0;
  display: block;
  width: 55%;
  overflow: hidden;
  border: 1px solid rgba(188, 255, 221, 0.3);
  border-radius: 30px;
  background: #16101e;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  transform: rotate(-3deg);
  transition: border-color 160ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.hero-creator-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to bottom, rgba(4, 5, 8, 0.04) 42%, rgba(4, 5, 8, 0.82) 100%); }
.hero-creator-card img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-creator-caption { position: absolute; right: 20px; bottom: 20px; left: 20px; z-index: 1; display: grid; gap: 4px; }
.hero-creator-caption strong { color: var(--mint); font-family: var(--display); font-size: 15px; letter-spacing: 0.12em; }
.hero-creator-caption small { color: var(--ink); font-size: 13px; }

.hero-orbit { position: absolute; border: 1px dashed rgba(187, 255, 221, 0.22); border-radius: 50%; transform: rotate(27deg) scaleY(0.48); }
.orbit-one { inset: 17% -4% 28% 21%; }
.orbit-two { inset: 36% 20% 4% -6%; transform: rotate(-36deg) scaleY(0.36); opacity: 0.55; }

.result-card,
.signal-card {
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(28, 45, 42, 0.96), rgba(12, 20, 19, 0.96));
  box-shadow: var(--shadow);
}

.result-card {
  position: absolute;
  top: 1%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 206px;
  min-height: 164px;
  padding: 22px;
  border-radius: var(--radius-md);
  z-index: 3;
  transform: rotate(5deg);
}

.result-card strong { margin-top: 8px; color: var(--mint); font-family: var(--display); font-size: 42px; letter-spacing: -0.08em; line-height: 1; }
.result-card > span:not(.result-label) { color: var(--muted-strong); font-size: 15px; }
.result-card small { margin-top: 12px; color: var(--muted); font-size: 11px; }
.result-line { width: 100%; height: 5px; margin-top: 12px; overflow: hidden; border-radius: 5px; background: rgba(188, 255, 221, 0.12); }
.result-line span { display: block; width: 72%; height: 100%; border-radius: inherit; background: var(--green); }

.signal-card {
  position: absolute;
  right: -1%;
  bottom: 4%;
  left: auto;
  width: min(380px, 72%);
  padding: 22px;
  border-radius: var(--radius-lg);
  z-index: 2;
  transform: rotate(-4deg);
}

.signal-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.signal-status { display: inline-flex; align-items: center; gap: 8px; color: var(--muted-strong); font-size: 10px; }
.signal-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.signal-index { color: var(--green-bright); font-family: var(--display); font-size: 14px; font-weight: 700; }

.signal-pipeline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 10px; padding: 36px 0; }
.pipeline-node { display: grid; place-items: center; aspect-ratio: 1; min-width: 72px; padding: 10px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--muted-strong); font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-align: center; }
.node-video { color: var(--bg); border-color: var(--green); background: var(--green); }
.node-ai { color: var(--mint); border-color: rgba(188, 255, 221, 0.5); }
.pipeline-arrow { color: var(--green); font-size: 21px; }
.signal-card p { max-width: 380px; margin: 0; color: var(--muted-strong); font-size: 15px; }

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(calc(100% - 48px), 1240px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-item { display: flex; align-items: center; gap: 12px; min-height: 94px; padding: 16px 20px; border-right: 1px solid var(--line); }
.benefit-item:last-child { border-right: 0; }
.benefit-icon { display: grid; flex-shrink: 0; place-items: center; width: 31px; height: 31px; color: var(--green-bright); border: 1px solid rgba(58, 243, 148, 0.35); border-radius: 9px; font-family: var(--display); font-size: 16px; }
.benefit-copy { display: grid; gap: 2px; }
.benefit-item strong { font-family: var(--display); font-size: 14px; }
.benefit-item small { color: var(--muted); font-size: 12px; line-height: 1.35; }
.benefit-more { display: none; }

.proof-section,
.faq-section,
.final-cta { padding-top: 132px; }

.section-heading { max-width: 600px; }
.section-heading h2 { margin: 14px 0 16px; font-size: clamp(2.2rem, 4vw, 3.65rem); font-weight: 600; letter-spacing: -0.065em; line-height: 1.04; }
.section-heading > p:not(.eyebrow), .section-support-copy { color: var(--muted); font-size: 17px; line-height: 1.65; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.72fr); gap: 70px; align-items: end; max-width: none; }
.split-heading > p, .split-heading > .section-support-group { margin: 0; padding-bottom: 4px; }
.section-support-copy { margin: 0; }
.narrow-heading { max-width: 620px; }

.proof-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr); gap: 18px; margin-top: 46px; }
.card-surface { border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(17, 26, 25, 0.78); box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16); }
.featured-video { overflow: hidden; }
.video-frame { aspect-ratio: 16 / 9; background: #050707; }
.video-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-copy { padding: 25px 28px 29px; }
.card-kicker { color: var(--muted); font-size: 10px; }
.video-copy h3, .second-video h3 { margin: 9px 0 8px; font-size: clamp(1.25rem, 2.1vw, 1.65rem); line-height: 1.15; letter-spacing: -0.04em; }
.video-copy p, .second-video p { margin: 0; color: var(--muted); font-size: 14px; }

.second-video { position: relative; display: flex; flex-direction: column; min-height: 100%; padding: 27px; overflow: hidden; background: linear-gradient(160deg, rgba(17, 223, 120, 0.19), rgba(17, 26, 25, 0.92) 54%); transition: border-color 160ms ease, transform 160ms ease; }
.second-video::after { position: absolute; right: -20%; bottom: -30%; width: 240px; height: 240px; content: ""; border: 1px solid rgba(188, 255, 221, 0.15); border-radius: 50%; box-shadow: 0 0 0 28px rgba(188, 255, 221, 0.035), 0 0 0 56px rgba(188, 255, 221, 0.025); }
.second-video:hover { border-color: rgba(58, 243, 148, 0.58); transform: translateY(-4px); }
.second-video-thumb { display: block; width: calc(100% + 54px); height: 145px; margin: -27px -27px 22px; object-fit: cover; object-position: center 47%; border-bottom: 1px solid rgba(188, 255, 221, 0.2); filter: saturate(0.92); }
.second-video-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.round-arrow { display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid rgba(188, 255, 221, 0.35); border-radius: 50%; color: var(--mint); }
.play-symbol { display: grid; place-items: center; width: 70px; height: 70px; margin: auto 0 28px; border: 1px solid rgba(188, 255, 221, 0.42); border-radius: 50%; color: var(--mint); font-size: 20px; padding-left: 3px; }
.second-video h3 { max-width: 180px; color: var(--mint); }
.second-video p { max-width: 250px; }
.card-link-line { display: flex; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 42px; color: var(--mint); font-family: var(--display); font-size: 13px; font-weight: 700; }

.social-icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-icon circle:last-child { fill: currentColor; stroke: none; }

.results-section,
.phone-section,
.community-section { padding-top: 132px; }
.results-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) repeat(2, minmax(0, 0.78fr)); gap: 16px; margin-top: 46px; }
.earnings-highlight { display: flex; flex-direction: column; min-height: 360px; padding: 29px; overflow: hidden; background: radial-gradient(circle at 86% 9%, rgba(17, 223, 120, 0.22), transparent 38%), linear-gradient(150deg, rgba(24, 52, 44, 0.94), rgba(17, 26, 25, 0.82)); }
.earnings-highlight > strong { margin-top: 22px; color: var(--mint); font-family: var(--display); font-size: clamp(2.9rem, 5vw, 4.7rem); letter-spacing: -0.09em; line-height: 0.95; }
.earnings-label { margin-top: 8px; color: var(--muted-strong); font-size: 14px; }
.earnings-art { width: 100%; height: 108px; margin: 21px 0 15px; border: 1px solid rgba(188, 255, 221, 0.15); border-radius: 11px; object-fit: cover; object-position: center 31%; opacity: 0.78; }
.earnings-bar { width: 100%; height: 6px; overflow: hidden; border-radius: 8px; background: rgba(188, 255, 221, 0.12); }
.earnings-bar span { display: block; width: 72%; height: 100%; border-radius: inherit; background: var(--green); }
.earnings-highlight p { margin: 18px 0 0; color: var(--muted-strong); font-size: 14px; line-height: 1.5; }
.earnings-highlight small { margin-top: auto; padding-top: 18px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.payment-proof { display: flex; flex-direction: column; margin: 0; overflow: hidden; }
.payment-proof > a { display: block; overflow: hidden; background: #050707; }
.payment-proof img { display: block; width: 100%; height: 270px; object-fit: cover; object-position: top center; transition: transform 220ms ease; }
.payment-proof a:hover img { transform: scale(1.025); }
.payment-proof figcaption { display: grid; gap: 3px; padding: 17px 20px 19px; }
.payment-proof figcaption strong { color: var(--mint); font-family: var(--display); font-size: 21px; }
.payment-proof figcaption span { color: var(--muted); font-size: 12px; }
.section-cta { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 30px; padding-top: 19px; border-top: 1px solid var(--line); }
.section-cta p { margin: 0; color: var(--muted); font-size: 14px; }

.phone-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(30px, 7vw, 90px); align-items: start; }
.phone-checker { display: grid; gap: 15px; margin-top: 28px; padding: 22px; background: rgba(17, 26, 25, 0.72); }
.field-group { display: grid; gap: 7px; }
.field-group label { color: var(--muted-strong); font-family: var(--display); font-size: 13px; font-weight: 700; }
.field-group select { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: 9px; color: var(--ink); background: var(--surface-soft); font: inherit; }
.field-group select:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 2px; }
.field-group select:disabled { color: var(--muted); opacity: 0.75; }
.phone-checker .button { width: 100%; margin-top: 4px; }
.checker-result { min-height: 44px; margin: 0; padding: 11px 13px; border: 1px solid rgba(188, 255, 221, 0.16); border-radius: 9px; color: var(--muted); background: rgba(188, 255, 221, 0.04); font-size: 13px; line-height: 1.45; }
.checker-result.is-found { color: var(--mint); border-color: rgba(58, 243, 148, 0.38); background: rgba(17, 223, 120, 0.08); }
.checker-result.is-review { color: #ffe4a4; border-color: rgba(245, 200, 110, 0.4); background: rgba(245, 200, 110, 0.08); }
.checker-result.is-unknown { color: var(--muted-strong); }
.phone-official-card { display: grid; align-content: start; gap: 18px; min-height: 100%; padding: clamp(26px, 5vw, 54px); overflow: hidden; background: radial-gradient(circle at 92% 8%, rgba(17, 223, 120, 0.2), transparent 34%), linear-gradient(145deg, rgba(27, 57, 48, 0.9), rgba(17, 26, 25, 0.84)); }
.official-card-top { display: flex; align-items: center; gap: 9px; color: var(--green-bright); font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 0.13em; }
.official-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px rgba(58, 243, 148, 0.85); }
.phone-official-card h3 { margin: 15px 0 0; color: var(--ink); font-family: var(--display); font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: -0.06em; line-height: 1.08; }
.phone-official-card > p { margin: 0; color: var(--muted-strong); font-size: clamp(1rem, 1.7vw, 1.16rem); line-height: 1.6; }
.phone-official-card > p strong { color: var(--mint); }
.official-models { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.official-models span { display: grid; align-content: center; min-height: 72px; padding: 12px; border: 1px solid rgba(188, 255, 221, 0.22); border-radius: 13px; color: var(--mint); background: rgba(188, 255, 221, 0.05); font-family: var(--display); font-size: 13px; font-weight: 700; line-height: 1.25; }
.phone-official-card > small { color: var(--muted); font-size: 13px; line-height: 1.5; }
.phone-official-card .text-link { margin-top: 2px; }

.community-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: center; padding: clamp(29px, 5vw, 57px); background: linear-gradient(125deg, rgba(28, 65, 51, 0.88), rgba(17, 26, 25, 0.82) 66%); }
.community-copy h2 { max-width: 550px; margin: 13px 0 13px; font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -0.07em; line-height: 1.03; }
.community-copy > p:not(.eyebrow), .community-copy .section-support-copy { max-width: 640px; margin: 0; color: var(--muted-strong); font-size: 16px; }
.community-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.community-meta span { padding: 7px 10px; border: 1px solid rgba(188, 255, 221, 0.22); border-radius: 999px; color: var(--mint); font-family: var(--display); font-size: 12px; font-weight: 700; }
.community-actions { display: grid; justify-items: start; gap: 18px; }
.button-whatsapp { color: #06150d; background: #64e59c; box-shadow: 0 12px 28px rgba(100, 229, 156, 0.14); }
.button-whatsapp:hover { background: #8af2b6; }
.whatsapp-logo { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.community-socials { display: flex; gap: 9px; }
.social-button { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(188, 255, 221, 0.28); border-radius: 12px; color: var(--mint); background: rgba(188, 255, 221, 0.05); transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease; }
.social-button:hover { border-color: var(--green-bright); color: var(--green-bright); background: rgba(17, 223, 120, 0.1); transform: translateY(-2px); }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.step-card { position: relative; min-height: 300px; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-soft); }
.step-card::after { position: absolute; right: -50px; bottom: -65px; width: 180px; height: 180px; content: ""; border: 1px solid rgba(188, 255, 221, 0.12); border-radius: 50%; }
.step-card-accent { border-color: rgba(58, 243, 148, 0.45); background: linear-gradient(150deg, rgba(17, 223, 120, 0.16), var(--surface-soft) 64%); }
.step-number { color: var(--green-bright); font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; }
.step-icon { display: grid; place-items: center; width: 47px; height: 47px; margin: 39px 0 22px; border: 1px solid rgba(188, 255, 221, 0.35); border-radius: 14px; color: var(--mint); font-family: var(--display); font-size: 21px; }
.step-card h3 { margin: 0 0 9px; font-size: 21px; letter-spacing: -0.04em; }
.step-card p { position: relative; z-index: 1; max-width: 260px; margin: 0; color: var(--muted); font-size: 14px; }

.value-panel { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); gap: clamp(45px, 8vw, 105px); padding: clamp(30px, 6vw, 70px); background: linear-gradient(130deg, rgba(27, 57, 48, 0.85), rgba(17, 26, 25, 0.8) 62%); }
.value-copy h2 { margin: 14px 0 19px; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.05; letter-spacing: -0.065em; }
.value-copy > p:not(.eyebrow) { margin-bottom: 26px; color: var(--muted-strong); font-size: 16px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--mint); font-family: var(--display); font-size: 14px; font-weight: 700; }
.text-link:hover { color: var(--green-bright); }
.value-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-item { display: grid; gap: 9px; min-height: 150px; padding: 23px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-item strong { color: var(--mint); font-family: var(--display); font-size: 16px; }
.value-item span { color: var(--muted); font-size: 13px; line-height: 1.45; }

.know-layout { display: grid; grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr); gap: clamp(50px, 9vw, 140px); align-items: start; }
.check-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { display: grid; grid-template-columns: 27px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.check-list li > span:first-child { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: var(--bg); background: var(--green); font-size: 14px; font-weight: 700; }
.check-list li > span:last-child { display: grid; gap: 4px; }
.check-list strong { font-family: var(--display); font-size: 16px; }
.check-list small { color: var(--muted); font-size: 14px; line-height: 1.45; }

.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 18px; margin-top: 43px; }
details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(17, 26, 25, 0.64); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 70px; padding: 16px 20px; cursor: pointer; color: var(--muted-strong); font-family: var(--display); font-size: 15px; font-weight: 600; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--green-bright); font-size: 23px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details[open] { border-color: rgba(58, 243, 148, 0.38); }
details p { max-width: 580px; margin: -4px 20px 20px; color: var(--muted); font-size: 14px; line-height: 1.55; }

.final-cta { padding-bottom: 132px; }
.final-cta-inner { position: relative; display: grid; justify-items: center; max-width: 870px; margin: 0 auto; padding: clamp(45px, 8vw, 85px) 28px; overflow: hidden; border: 1px solid rgba(58, 243, 148, 0.35); border-radius: var(--radius-lg); background: radial-gradient(circle at 50% 12%, rgba(17, 223, 120, 0.22), transparent 50%), var(--surface); text-align: center; }
.final-cta-inner::before, .final-cta-inner::after { position: absolute; width: 380px; height: 180px; content: ""; border: 1px solid rgba(188, 255, 221, 0.13); border-radius: 50%; }
.final-cta-inner::before { top: -115px; left: -80px; transform: rotate(-18deg); }
.final-cta-inner::after { right: -80px; bottom: -115px; transform: rotate(-18deg); }
.final-cta-inner > * { position: relative; z-index: 1; }
.final-cta h2 { max-width: 730px; margin: 16px 0 14px; font-size: clamp(2.3rem, 4.5vw, 4.25rem); line-height: 1; letter-spacing: -0.075em; }
.final-cta p:not(.eyebrow) { max-width: 450px; margin-bottom: 28px; color: var(--muted-strong); }
.final-cta small { margin-top: 17px; color: var(--muted); font-size: 12px; }

.site-footer { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 30px 0 34px; border-top: 1px solid var(--line); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-top p { max-width: 390px; margin: 0; color: var(--muted); font-size: 13px; text-align: right; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 23px; color: var(--mint); font-family: var(--display); font-size: 13px; font-weight: 700; }
.footer-socials a:hover { color: var(--green-bright); }
.footer-links { display: flex; flex-wrap: wrap; gap: 13px 22px; margin: 35px 0 28px; color: var(--muted); font-size: 13px; }
.footer-links a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; color: #73807e; font-size: 12px; }
.mobile-cta { display: none; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 18px; padding-top: 60px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 650px; width: 100%; min-height: 480px; margin: 0 auto; }
  .benefit-strip { grid-template-columns: repeat(3, 1fr); }
  .benefit-item:nth-child(3) { border-right: 0; }
  .benefit-item:nth-child(n + 4) { border-top: 1px solid var(--line); }
  .benefit-item:nth-child(4) { border-left: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .second-video { min-height: 260px; }
  .second-video .play-symbol { margin-top: 32px; }
  .results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .earnings-highlight { grid-column: 1 / -1; min-height: 300px; }
  .phone-layout { grid-template-columns: 1fr; }
  .value-panel, .know-layout { grid-template-columns: 1fr; }
  .know-layout { gap: 40px; }
  .community-panel { grid-template-columns: 1fr; }
  .community-actions { justify-items: start; }
}

@media (max-width: 700px) {
  body { padding-bottom: 76px; }
  .site-header, .section-frame, .site-footer { width: min(calc(100% - 32px), var(--max)); }
  .site-header { min-height: 72px; gap: 10px; }
  .desktop-nav { display: none; }
  .site-header .button { margin-left: auto; }
  .brand-copy { font-size: 11px; }
  .brand-mark { width: 22px; height: 22px; transform: scale(0.88) rotate(30deg); }
  .hero { min-height: 0; padding: 62px 0 54px; }
  h1 { margin-top: 17px; font-size: clamp(2.65rem, 14vw, 4rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-actions .button-ghost,
  .microcopy { display: none; }
  .hero-visual { display: none; }
  .hero { padding-bottom: 18px; }
  .hero-intro-group { margin-bottom: 20px; }
  .benefit-strip { display: none; }
  .hero-creator-card { top: 1%; bottom: 0; left: 18%; width: 61%; border-radius: 23px; }
  .hero-creator-caption { right: 13px; bottom: 14px; left: 13px; }
  .hero-creator-caption strong { font-size: 11px; }
  .hero-creator-caption small { font-size: 11px; }
  .result-card { right: -2px; width: 176px; min-height: 143px; padding: 17px; }
  .result-card strong { font-size: 35px; }
  .signal-card { right: 0; bottom: 3%; left: auto; width: min(330px, 84%); padding: 17px; }
  .signal-pipeline { gap: 5px; padding: 27px 0; }
  .pipeline-node { min-width: 58px; font-size: 8px; }
  .pipeline-arrow { font-size: 16px; }
  .signal-card p { font-size: 13px; }
  .benefit-strip { grid-template-columns: 1fr 1fr; width: 100%; }
  .benefit-item { min-height: 79px; padding: 13px 16px; }
  .benefit-icon { display: none; }
  .benefit-item { gap: 0; }
  .benefit-item:nth-child(2n) { border-right: 0; }
  .benefit-item:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .benefit-item:nth-child(3) { border-right: 1px solid var(--line); }
  .benefit-item:nth-child(5) { grid-column: 1 / -1; border-right: 0; }
  .benefit-item strong { font-size: 13px; }
  .benefit-copy small { display: none; max-height: none; overflow: visible; font-size: 11px; }
  .benefit-item.is-expanded .benefit-copy small { display: block; margin-top: 4px; }
  .benefit-more { display: inline-flex; width: max-content; margin: 2px 0 0; padding: 0; border: 0; color: var(--green-bright); background: transparent; font: 700 11px/1.3 var(--display); cursor: pointer; }
  .benefit-more:hover { color: var(--mint); }
  .proof-section, .results-section, .phone-section, .community-section, .faq-section, .final-cta { padding-top: 44px; }
  .final-cta { padding-bottom: 84px; }
  .split-heading { display: block; }
  .split-heading > p, .split-heading > .section-support-group { margin-top: 22px; padding-bottom: 0; }
  .section-heading h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .section-heading > p:not(.eyebrow) { font-size: 16px; }
  .mobile-copy-group { display: grid; justify-items: start; gap: 7px; }
  .mobile-collapsible-copy { display: none; max-height: none; margin-top: 0 !important; margin-bottom: 0 !important; overflow: visible; opacity: 0; }
  .mobile-collapsible-copy.is-expanded { display: block; max-height: none; margin-top: 10px !important; opacity: 1; }
  .mobile-copy-more { display: inline-flex; width: max-content; padding: 0; border: 0; color: var(--green-bright); background: transparent; font: 700 11px/1.3 var(--display); cursor: pointer; }
  .mobile-copy-more:hover { color: var(--mint); }
  .video-copy { padding: 22px 20px 25px; }
  .second-video { padding: 22px; }
  .second-video-thumb { width: calc(100% + 44px); height: 172px; margin: -22px -22px 20px; }
  .second-video { display: none; }
  .results-grid { grid-template-columns: 1fr; margin-top: 33px; }
  .earnings-highlight { grid-column: auto; min-height: 0; padding: 23px; }
  .earnings-highlight > strong { font-size: clamp(3rem, 14vw, 4.2rem); }
  .earnings-art { height: 128px; }
  .payment-proof img { height: 290px; }
  .section-cta { display: grid; justify-items: start; gap: 10px; margin-top: 24px; }
  .section-cta .button { width: 100%; }
  .steps-grid { grid-template-columns: 1fr; margin-top: 33px; }
  .step-card { min-height: 245px; }
  .step-icon { margin-top: 30px; }
  .value-panel { gap: 38px; padding: 27px 22px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { min-height: 118px; padding: 18px; }
  .phone-layout { gap: 34px; }
  .phone-checker { margin-top: 23px; padding: 18px; }
  .phone-checker .button { min-height: 52px; }
  .phone-official-card { min-height: 0; padding: 24px 21px; }
  .official-models { grid-template-columns: 1fr; }
  .official-models span { min-height: 53px; }
  .community-panel { gap: 30px; padding: 25px 21px; }
  .community-copy h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .community-copy > p:not(.eyebrow) { font-size: 15px; }
  .community-actions { width: 100%; }
  .community-actions .button, .community-actions .text-link { width: 100%; }
  .community-socials { margin-top: -3px; }
  .faq-list { grid-template-columns: 1fr; gap: 10px; margin-top: 30px; }
  summary { min-height: 62px; padding: 14px 16px; font-size: 14px; }
  details p { margin-right: 16px; margin-left: 16px; }
  .final-cta-inner { padding-right: 20px; padding-left: 20px; }
  .final-cta h2 { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  .footer-top { display: block; }
  .footer-top p { margin-top: 17px; text-align: left; }
  .footer-socials { gap: 11px 16px; margin-top: 25px; }
  .footer-links { gap: 12px 17px; margin: 27px 0; }
  .footer-bottom { display: grid; gap: 8px; }
  .mobile-cta { position: fixed; right: 0; bottom: 0; left: 0; z-index: 10; display: block; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(11, 17, 17, 0.9); backdrop-filter: blur(16px); }
  .mobile-cta .button { width: 100%; min-height: 49px; }
}

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