/* ═══ Index Guard Landing — style.css ═══ */
:root {
  --bg: #030503;
  --panel: rgba(10, 13, 10, 0.88);
  --panel-2: rgba(13, 17, 13, 0.78);
  --line: rgba(130, 255, 26, 0.22);
  --line-soft: rgba(255, 255, 255, 0.10);
  --green: #86f000;
  --green-2: #a6ff22;
  --red: #ff2d20;
  --red-soft: rgba(255, 45, 32, 0.18);
  --white: #f7f7f4;
  --muted: #b4b9ad;
  --dim: #788072;
  --shadow: 0 0 42px rgba(125, 255, 0, .20);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #000;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ═══ Page wrapper ═══ */
.page {
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(circle at 73% 10%, rgba(134,240,0,.10), transparent 24%),
    radial-gradient(circle at 18% 38%, rgba(134,240,0,.055), transparent 18%),
    linear-gradient(180deg, #030503 0%, #050706 42%, #030503 100%);
  overflow: hidden;
}

.wrap {
  width: 1440px;
  max-width: calc(100vw - 72px);
  margin: 0 auto;
}

/* ═══ Header ═══ */
.header {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
}

.shield-logo {
  width: 50px;
  height: 50px;
  border: 2px solid var(--green);
  border-radius: 13px;
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: 0 0 22px rgba(134,240,0,.25), inset 0 0 18px rgba(134,240,0,.10);
  clip-path: polygon(50% 0%, 93% 16%, 86% 76%, 50% 100%, 14% 76%, 7% 16%);
  background: rgba(134,240,0,.06);
}

.bot-face {
  width: 24px;
  height: 20px;
  border: 2px solid var(--green);
  border-radius: 7px;
  position: relative;
}
.bot-face:before, .bot-face:after {
  content: "";
  position: absolute;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: var(--green);
}
.bot-face:before { left: 5px; }
.bot-face:after { right: 5px; }
.bot-face span {
  position: absolute;
  width: 2px;
  height: 7px;
  background: var(--green);
  left: 50%;
  top: -9px;
  transform: translateX(-50%);
}
.bot-face span:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  left: -2px;
  top: -4px;
}

.brand-title { line-height: .92; }
.brand-title b {
  display: block;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.brand-title span {
  display: block;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  margin-top: 5px;
  letter-spacing: -0.025em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 54px;
  font-size: 16px;
  font-weight: 800;
}
.nav a { color: #fff; text-decoration: none; opacity: .94; }
.nav a:hover { color: var(--green); }

.buy-top {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

/* ═══ Buttons ═══ */
.btn {
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 56px;
  padding: 0 34px;
  border-radius: 9px;
  background: linear-gradient(180deg, #9aff10, #69b900);
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.015em;
  text-shadow: 0 1px 0 rgba(0,0,0,.20);
  box-shadow: 0 0 28px rgba(134,240,0,.28), inset 0 1px 0 rgba(255,255,255,.20);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.08); }
.pay-note { color: #d7ddd0; font-size: 14px; }

/* ═══ Hero ═══ */
.hero {
  display: grid;
  grid-template-columns: 690px 1fr;
  gap: 70px;
  padding: 56px 0 36px;
  position: relative;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 32px;
  padding: 0 18px;
  border: 1px solid rgba(134,240,0,.36);
  border-radius: 999px;
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .01em;
  background: rgba(134,240,0,.06);
  box-shadow: inset 0 0 18px rgba(134,240,0,.06);
}
.pill:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(134,240,0,.45);
}

.partner-badge {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #b0b8a6;
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(134,240,0,.5);
  flex: 0 0 auto;
}

h1 {
  margin: 32px 0 22px;
  font-size: 69px;
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 900;
}
h1 .green { color: var(--green); display: block; }

.hero-copy {
  width: 610px;
  color: #e2e5dd;
  font-size: 21px;
  line-height: 1.56;
  margin-bottom: 26px;
  letter-spacing: -0.018em;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 600px;
  margin: 26px 0 22px;
}
.benefit-mini {
  height: 80px;
  border: 1px solid rgba(134,240,0,.20);
  background: rgba(8,12,8,.76);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 18px;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: inset 0 0 14px rgba(134,240,0,.04);
}

.round-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  flex: 0 0 auto;
  box-shadow: 0 0 18px rgba(134,240,0,.18);
}

.main-cta {
  width: 600px;
  height: 67px;
  font-size: 24px;
  margin-bottom: 17px;
}

.checks-line {
  display: flex;
  gap: 28px;
  align-items: center;
  color: #d6ddd0;
  font-size: 15px;
  font-weight: 600;
}
.check-small {
  color: var(--green);
  margin-right: 8px;
  font-weight: 900;
}

/* ═══ Hero Visual ═══ */
.hero-visual {
  min-height: 525px;
  position: relative;
}
.shield-big {
  position: absolute;
  top: 16px;
  left: 222px;
  width: 280px;
  height: 280px;
  border: 7px solid var(--green);
  clip-path: polygon(50% 0%, 92% 17%, 84% 77%, 50% 100%, 16% 77%, 8% 17%);
  background: radial-gradient(circle at 50% 42%, rgba(165,255,53,.34), rgba(134,240,0,.10) 44%, rgba(0,0,0,.20) 70%);
  box-shadow: 0 0 82px rgba(134,240,0,.50), inset 0 0 42px rgba(134,240,0,.24);
  display: grid;
  place-items: center;
  opacity: .96;
}
.shield-big .bot-face {
  width: 88px;
  height: 72px;
  border-width: 7px;
  border-radius: 18px;
}
.shield-big .bot-face:before, .shield-big .bot-face:after {
  top: 27px;
  width: 13px;
  height: 13px;
}
.shield-big .bot-face:before { left: 18px; }
.shield-big .bot-face:after { right: 18px; }
.shield-big .bot-face span {
  width: 7px;
  height: 25px;
  top: -34px;
}
.shield-big .bot-face span:before {
  width: 21px;
  height: 21px;
  left: -7px;
  top: -13px;
}

.junk {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}
.x {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: grid;
  place-items: center;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 0 15px rgba(255,45,32,.45);
}
.junk:after {
  content: "";
  width: 70px;
  height: 1px;
  border-top: 2px dashed rgba(255,45,32,.7);
  position: absolute;
  top: 15px;
}
.junk.j1 { left: 18px; top: 74px; }
.junk.j2 { left: 18px; top: 168px; }
.junk.j3 { left: 18px; top: 262px; }
.junk.j1:after { left: 118px; width: 120px; transform: rotate(18deg); }
.junk.j2:after { left: 118px; width: 120px; transform: rotate(14deg); }
.junk.j3:after { left: 132px; width: 104px; transform: rotate(12deg); }

.allow-route {
  position: absolute;
  top: 128px;
  right: 0;
  width: 265px;
  height: 118px;
  display: grid;
  grid-template-columns: 74px 1fr 42px;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.07;
  letter-spacing: -0.035em;
  text-shadow: 0 0 22px rgba(134,240,0,.52);
}
.allow-route .arrow-product { font-size: 76px; line-height: 1; }
.allow-route .ok-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid var(--green);
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 0 22px rgba(134,240,0,.40);
}

.flow-card {
  position: absolute;
  left: 38px;
  bottom: 36px;
  width: 595px;
  height: 154px;
  border: 1px solid rgba(134,240,0,.30);
  border-radius: 16px;
  background: rgba(9, 13, 9, .78);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 18px 24px;
  box-shadow: inset 0 0 22px rgba(134,240,0,.04);
}
.flow-step {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.12;
  position: relative;
}
.flow-step:not(:last-child):after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 44px;
  color: var(--green);
  font-size: 36px;
}
.flow-step .round-icon { margin: 0 auto 11px; width: 54px; height: 54px; }

/* ═══ Panels (shared) ═══ */
.panel {
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(180deg, rgba(16,19,16,.82), rgba(7,9,7,.72));
  border-radius: 16px;
  box-shadow: inset 0 0 30px rgba(255,255,255,.015);
}

.section-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}
.section-heading .red { color: var(--red); }
.section-heading .green { color: var(--green); }

/* ═══ Problem section ═══ */
.problem-panel {
  margin-top: 12px;
  padding: 31px 30px 34px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.problem-item {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,.10);
  color: #f5f5f1;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}
.problem-item:last-child { border-right: 0; }
.problem-icon {
  color: var(--red);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 16px rgba(255,45,32,.35);
}

/* ═══ How it works ═══ */
.how-panel {
  margin-top: 24px;
  padding: 31px 44px 32px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step:not(:last-child):after {
  content: "→";
  position: absolute;
  right: -33px;
  top: 44px;
  color: var(--green);
  font-size: 34px;
  font-weight: 400;
}
.step .round-icon {
  margin: 0 auto 18px;
  width: 84px;
  height: 84px;
  font-size: 36px;
}
.step b {
  display: block;
  font-size: 17px;
  margin-bottom: 7px;
}
.step p {
  margin: 0;
  color: #d4d9cf;
  line-height: 1.34;
  font-size: 15px;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #102000;
  font-weight: 900;
  margin-right: 5px;
  font-size: 13px;
}

/* ═══ Gains strip ═══ */
.gain-strip {
  margin-top: 24px;
  padding: 22px 24px;
}
.gain-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.gain {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  color: #f4f6f1;
  font-size: 16px;
}
.gain .round-icon { width: 35px; height: 35px; font-size: 17px; border-width: 1.5px; }

/* ═══ Mid grid (table + search console) ═══ */
.mid-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.3fr .85fr;
  gap: 24px;
}
.table-panel { padding: 25px 24px; }
.table-title {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.table-title .green { color: var(--green); }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  overflow: hidden;
  border-radius: 11px;
}
th, td {
  border: 1px solid rgba(255,255,255,.12);
  padding: 14px 14px;
  text-align: center;
}
th:first-child, td:first-child { text-align: left; }
th { font-size: 13px; color: #fff; background: rgba(255,255,255,.05); }
.col-good { background: rgba(134,240,0,.08); color: var(--green); font-weight: 900; }
.col-bad { background: rgba(255,45,32,.08); color: #ff6b62; font-weight: 900; }
.yes { color: var(--green); font-weight: 900; }
.no { color: var(--red); font-weight: 900; }

/* ═══ Search Console card ═══ */
.search-console {
  padding: 29px 30px;
  position: relative;
  min-height: 332px;
  overflow: hidden;
}
.search-console h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.035em;
}
.search-console p {
  margin: 0;
  color: #e5e8df;
  font-size: 19px;
  line-height: 1.35;
}
.chart {
  position: absolute;
  left: 30px;
  right: 38px;
  bottom: 38px;
  height: 150px;
}
.chart svg { width: 100%; height: 100%; overflow: visible; }
.bubble {
  position: absolute;
  right: 28px;
  top: 92px;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff5a4d, #c90f08);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(255,45,32,.34);
}
.bubble b { font-size: 43px; letter-spacing: -0.05em; }
.bubble span { font-size: 16px; }

/* ═══ Activate grid ═══ */
.activate-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.45fr .72fr;
  gap: 24px;
}
.activate-panel { padding: 31px 31px; }
.activate-title {
  text-align: center;
  font-size: 29px;
  font-weight: 900;
  margin: 0 0 30px;
  letter-spacing: -0.035em;
}
.activate-inner {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 22px;
  align-items: center;
}
.activate-steps { display: grid; gap: 23px; }
.activate-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
  color: #fff;
  font-size: 16px;
  line-height: 1.38;
  font-weight: 600;
}
.activate-step .n {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green);
  color: #152700;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 19px;
  box-shadow: 0 0 14px rgba(134,240,0,.28);
}

/* ═══ Shoper mockup ═══ */
.shoper-box {
  height: 210px;
  border-radius: 10px;
  background: linear-gradient(145deg, #17212c, #ecf0f3 62%);
  overflow: hidden;
  display: grid;
  grid-template-columns: 95px 1fr;
  box-shadow: 0 0 30px rgba(0,0,0,.5);
}
.shoper-side {
  background: #263442;
  padding: 14px 12px;
  color: #dce4eb;
  font-size: 12px;
  line-height: 2.2;
  font-weight: 700;
}
.shoper-side b { display: block; color: #fff; font-size: 18px; margin-bottom: 7px; }
.code-box {
  padding: 18px 18px;
  color: #1f2933;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  line-height: 1.42;
  position: relative;
}
.code-box h4 {
  margin: 0 0 10px;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
}
.save-btn {
  position: absolute;
  bottom: 14px;
  left: 18px;
  right: 18px;
  height: 30px;
  border-radius: 5px;
  background: var(--green);
  color: #193100;
  font-weight: 900;
  display: grid;
  place-items: center;
  font-family: Inter, Arial, sans-serif;
}

/* ═══ Final CTA ═══ */
.final-cta {
  padding: 31px 31px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 325px;
  position: relative;
  overflow: hidden;
}
.final-cta:after {
  content: "🚀";
  position: absolute;
  right: 30px;
  bottom: 80px;
  font-size: 92px;
  filter: drop-shadow(0 0 18px rgba(134,240,0,.6));
  opacity: .92;
  animation: rocketFloat 3s ease-in-out infinite;
}
@keyframes rocketFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.final-cta h3 {
  font-size: 31px;
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.final-cta p {
  margin: 0 0 28px;
  color: #d7ddd1;
  font-size: 18px;
  line-height: 1.45;
}
.final-cta .btn { width: 100%; height: 58px; font-size: 19px; }

/* ═══ Price tag ═══ */
.price-tag {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}
.price-tag strong {
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
}

/* ═══ Footer ═══ */
.footer {
  height: 82px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 20px;
  color: #dce1d6;
  font-size: 15px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 26px;
}
.footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.08);
  min-height: 38px;
}
.footer-item:last-child { border-right: 0; justify-content: flex-end; }
.footer-item .round-icon { width: 34px; height: 34px; font-size: 15px; border-width: 1.5px; }

.partner-bar {
  text-align: center;
  padding: 28px 0 32px;
  font-size: 14px;
  font-weight: 600;
  color: #788072;
  letter-spacing: 0.02em;
}
.partner-bar a {
  color: var(--green);
  text-decoration: none;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(134,240,0,.3);
}
.partner-bar a:hover {
  text-decoration: underline;
}
.partner-bar--bottom {
  padding: 24px 0 48px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 8px;
}

/* ═══ Responsive ═══ */
@media (max-width: 1100px) {
  .wrap { max-width: calc(100vw - 36px); }
  .header { height: auto; padding: 20px 0; gap: 18px; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; justify-content: space-between; gap: 16px; }
  .hero { grid-template-columns: 1fr; gap: 30px; }
  h1 { font-size: 48px; }
  .hero-copy, .benefits-row, .main-cta { width: 100%; }
  .hero-visual { min-height: 520px; }
  .problem-grid, .gain-list { grid-template-columns: 1fr; gap: 18px; }
  .problem-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); min-height: auto; padding: 20px; }
  .steps, .mid-grid, .activate-grid, .activate-inner { grid-template-columns: 1fr; }
  .step:not(:last-child):after { display: none; }
  .footer { height: auto; grid-template-columns: 1fr; padding: 24px 0; }
  .footer-item { justify-content: flex-start; border-right: 0; }
}

@media (max-width: 650px) {
  .benefits-row { grid-template-columns: 1fr; }
  .hero-visual { transform: scale(.72); transform-origin: top left; min-height: 390px; width: 137%; }
  .nav { font-size: 13px; }
  .btn { width: 100%; }
  .buy-top { width: 100%; align-items: stretch; }
  .pay-note { text-align: center; }
  h1 { font-size: 38px; }
  .hero-copy { font-size: 18px; }
  .section-heading { font-size: 23px; }
  .mid-grid, .activate-grid { gap: 16px; }
}
