@import url('assets/colors_and_type.css');

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--bg-0);
  color: var(--fg-1);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; }
img { display: block; max-width: 100%; }

/* ========= GLOBAL STRUCTURE ========= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
  padding: 84px 0;
}

.eyebrow {
  font: 700 12px/1 var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-sub);
}
.eyebrow--violet { color: #a8a3ff; }
.eyebrow--accent { color: var(--accent); }

.h2 {
  font: 700 52px/1.08 var(--font-display);
  letter-spacing: -0.03em;
  color: var(--fg-2);
  margin-top: 18px;
  text-wrap: balance;
}

.h2-sub {
  font: 400 18px/1.55 var(--font-sans);
  color: var(--fg-sub);
  max-width: 580px;
  margin-top: 20px;
  text-wrap: pretty;
}

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .h2-sub { margin-left: auto; margin-right: auto; }

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font: 600 14px/1 var(--font-sans);
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 0.12s var(--ease-out),
              box-shadow 0.25s var(--ease-out),
              background 0.18s var(--ease-out),
              border-color 0.18s var(--ease-out),
              color 0.18s var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--accent);
  color: #1a0a02;
  box-shadow: 0 0 0 1px rgba(249,115,22,0.5), 0 0 24px rgba(249,115,22,0.32);
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 0 1px rgba(249,115,22,0.7), 0 0 40px rgba(249,115,22,0.5);
}

.btn--violet-outline {
  background: transparent;
  color: #c4c0ff;
  border-color: rgba(108,99,255,0.45);
  background-color: rgba(108,99,255,0.06);
}
.btn--violet-outline:hover {
  border-color: var(--violet);
  color: #fff;
  background-color: rgba(108,99,255,0.14);
  box-shadow: 0 0 24px rgba(108,99,255,0.28);
}

.btn--violet-solid {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 0 24px rgba(108,99,255,0.28);
}
.btn--violet-solid:hover {
  background: var(--violet-hover);
  box-shadow: 0 0 36px rgba(108,99,255,0.45);
}

.btn--sm { padding: 9px 16px; font-size: 13px; border-radius: 8px; }

.btn-icon {
  width: 14px; height: 14px; flex-shrink: 0;
}

/* ========= NAVIGATION ========= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out),
              backdrop-filter 0.25s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: rgba(42, 42, 42, 0.8);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img {
  width: 28px; height: 28px;
  filter: drop-shadow(0 2px 12px rgba(108,99,255,0.5));
}
.nav-brand span {
  font: 700 16px/1 var(--font-display);
  letter-spacing: -0.015em;
  color: #fff;
}
.nav-links {
  display: flex;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font: 500 14px/1 var(--font-sans);
  color: var(--fg-sub);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--fg-1); background: rgba(255,255,255,0.04); }

/* ========= HERO ========= */
.hero {
  padding-top: 150px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  /* Center violet nebula */
  content: '';
  position: absolute;
  left: 50%;
  top: 55%;
  width: 1200px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 50% 45% at 50% 50%,
    rgba(108,99,255,0.28) 0%,
    rgba(108,99,255,0.10) 40%,
    transparent 72%);
  filter: blur(20px);
}
.hero-bg::after {
  /* Subtle grid */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.25);
  color: #c4c0ff;
  font: 500 13px/1 var(--font-sans);
  margin-bottom: 32px;
}
.hero-pill-tag {
  background: var(--violet);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.hero h1 {
  font: 700 88px/0.98 var(--font-display);
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 900px;
  text-wrap: balance;
}
.hero h1 .accent-word {
  background: linear-gradient(180deg, #fff 0%, #8f86ff 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 620px;
  font: 400 19px/1.55 var(--font-sans);
  color: var(--fg-sub);
  margin-top: 24px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-micro {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font: 400 13px/1 var(--font-sans);
  color: var(--fg-muted);
}
.hero-micro-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

/* ========= BROWSER MOCKUP ========= */
.browser-stage {
  margin-top: 52px;
  position: relative;
  transform: perspective(2400px) rotateX(2.5deg);
  transform-origin: 50% 0%;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.browser-stage::before {
  /* Under-glow */
  content: '';
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 90%;
  height: 60%;
  background: radial-gradient(ellipse 50% 50% at 50% 50%,
    rgba(108,99,255,0.55) 0%,
    rgba(108,99,255,0.15) 40%,
    transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.browser {
  position: relative;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 14px 14px 16px 16px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.85),
    0 16px 40px rgba(0,0,0,0.5),
    0 0 0 1px rgba(108,99,255,0.08),
    0 0 80px rgba(108,99,255,0.18);
  z-index: 1;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #151515;
  border-bottom: 1px solid var(--border);
}
.browser-traffic {
  display: flex; gap: 7px;
}
.browser-traffic span {
  width: 11px; height: 11px; border-radius: 50%;
}
.browser-traffic span:nth-child(1) { background: #3a3a3a; }
.browser-traffic span:nth-child(2) { background: #3a3a3a; }
.browser-traffic span:nth-child(3) { background: #3a3a3a; }

.browser-tabs {
  display: flex;
  gap: 2px;
  flex: 0 1 auto;
}
.browser-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #0a0a0a;
  border-radius: 8px 8px 0 0;
  font: 500 12px/1 var(--font-sans);
  color: var(--fg-sub);
  max-width: 180px;
  border: 1px solid transparent;
  border-bottom: none;
  position: relative;
  top: 1px;
}
.browser-tab.active { color: var(--fg-1); border-color: var(--border); }
.browser-tab-favicon {
  width: 14px; height: 14px; border-radius: 3px; flex-shrink: 0;
}

.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 8px;
  font: 500 12px/1 var(--font-mono);
  color: var(--fg-sub);
}
.browser-url-lock {
  color: var(--fg-muted);
  font-size: 11px;
}
.browser-url strong { color: var(--fg-1); font-weight: 500; }

.browser-toolbar-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}
.browser-toolbar-icons .toolbar-btn {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--fg-muted);
}
.browser-toolbar-icons .toolbar-btn.purity {
  position: relative;
  background: rgba(108,99,255,0.12);
  color: #a8a3ff;
}
.browser-toolbar-icons .toolbar-btn.purity::after {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet), 0 0 0 2px #151515;
}

.browser-body {
  position: relative;
  min-height: 560px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,99,255,0.06), transparent 70%),
    #0a0a0a;
  display: flex;
  padding: 0;
}

/* Fake YouTube frame in the browser body */
.fake-site {
  flex: 1;
  padding: 28px 36px;
  position: relative;
  overflow: hidden;
}
.fake-site-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fake-site-logo {
  display: flex; align-items: center; gap: 10px;
  font: 700 18px/1 var(--font-sans);
  color: rgba(255,255,255,0.4);
  letter-spacing: -0.02em;
}
.fake-site-logo-mark {
  width: 26px; height: 18px; background: rgba(255,40,40,0.25);
  border-radius: 4px; display: grid; place-items: center;
}
.fake-site-logo-mark::after {
  content: '';
  width: 0; height: 0;
  border-left: 7px solid rgba(255,255,255,0.5);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.fake-site-search {
  flex: 0 1 380px;
  height: 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
}
.fake-site-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.fake-site-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.fake-thumb {
  aspect-ratio: 16/10;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.fake-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, transparent 60%);
}
.fake-thumb + .fake-thumb-caption { margin-top: 10px; }
.fake-thumb-card {
  display: flex;
  flex-direction: column;
}
.fake-caption {
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  margin-top: 10px;
  width: 90%;
}
.fake-caption-sub {
  height: 8px;
  background: rgba(255,255,255,0.035);
  border-radius: 3px;
  margin-top: 6px;
  width: 55%;
}

/* Blocked-out mask over the grid */
.fake-site-blocked {
  position: absolute;
  inset: 90px 36px 36px 36px;
  border-radius: 12px;
  background:
    repeating-linear-gradient(135deg,
      rgba(108,99,255,0.035) 0px,
      rgba(108,99,255,0.035) 12px,
      rgba(108,99,255,0.08) 12px,
      rgba(108,99,255,0.08) 24px);
  border: 1px dashed rgba(108,99,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
}
.fake-site-blocked-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 18, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(108,99,255,0.35);
  padding: 8px 14px;
  border-radius: 999px;
  font: 600 13px/1 var(--font-sans);
  color: #c4c0ff;
  box-shadow: 0 0 24px rgba(108,99,255,0.25);
}
.fake-site-blocked-chip::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}

/* Purity popup floating over browser */
.popup-float {
  position: absolute;
  right: 30px;
  top: 60px;
  width: 360px;
  z-index: 5;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle 140px at 92% 0%, rgba(180,140,255,0.26) 0%, transparent 65%),
    radial-gradient(ellipse 300px 260px at -8% 100%, rgba(100,50,255,0.28) 0%, transparent 75%),
    linear-gradient(155deg, #120c22 0%, #0a0818 70%, #09060f 100%);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(108,99,255,0.28),
    0 0 60px rgba(108,99,255,0.3);
}
.popup-float::before {
  content: '';
  position: absolute;
  right: -12px;
  top: -8px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.7), transparent 60%);
  filter: blur(8px);
  pointer-events: none;
}
.popup-float-arrow {
  position: absolute;
  top: -8px;
  right: 68px;
  width: 14px; height: 14px;
  background: #120c22;
  border-top: 1px solid rgba(108,99,255,0.28);
  border-left: 1px solid rgba(108,99,255,0.28);
  transform: rotate(45deg);
  z-index: 1;
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(140,120,255,0.18);
  position: relative;
  z-index: 2;
}
.popup-header-left { display: flex; align-items: center; gap: 10px; }
.popup-header-left img { width: 20px; height: 20px; filter: drop-shadow(0 0 8px rgba(108,99,255,0.7)); }
.popup-header-title { font: 700 13px/1 var(--font-display); color: #fff; letter-spacing: -0.01em; }
.popup-header-site { font: 500 11px/1 var(--font-sans); color: #8a80c8; margin-top: 3px; }
.popup-master { display: flex; align-items: center; gap: 8px; }
.popup-master-label { font: 600 10px/1 var(--font-sans); color: #a8a3ff; text-transform: uppercase; letter-spacing: 0.1em; }
.popup-toggle {
  width: 30px; height: 18px;
  border-radius: 10px;
  background: var(--violet);
  border: 1px solid var(--violet);
  position: relative;
  box-shadow: 0 0 12px rgba(108,99,255,0.6);
}
.popup-toggle::after {
  content: ''; position: absolute;
  top: 1px; right: 2px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #fff;
}
.popup-toggle.off { background: #222; border-color: #2a2a2a; box-shadow: none; }
.popup-toggle.off::after { right: auto; left: 2px; background: #555; }

.popup-list { list-style: none; padding: 6px; position: relative; z-index: 2; }
.popup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 8px;
}
.popup-row:hover { background: rgba(108,99,255,0.08); }
.popup-row-name { font: 600 12px/1.2 var(--font-sans); color: #ECECEC; }
.popup-row-desc { font: 400 10.5px/1.3 var(--font-sans); color: #6868a0; margin-top: 2px; }

.popup-footer {
  padding: 10px 14px;
  border-top: 1px solid rgba(140,120,255,0.15);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-footer-tagline {
  font: italic 400 10px/1 var(--font-sans);
  color: #6a6a8e;
}
.popup-footer-link {
  font: 500 11px/1 var(--font-sans);
  color: var(--violet);
}

/* ========= LOGO STRIP ========= */
.logos-strip {
  padding: 48px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.logos-strip-label {
  text-align: center;
  margin-bottom: 32px;
}
.logos-strip-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.logos-strip-items img {
  height: 34px; width: 34px;
  border-radius: 7px;
  opacity: 0.72;
  filter: saturate(0.85);
  transition: opacity 0.2s var(--ease-out), filter 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.logos-strip-items img:hover {
  opacity: 1;
  filter: saturate(1) brightness(1.1);
  transform: translateY(-2px);
}
.logos-strip-items span {
  font: 600 14px/1 var(--font-sans);
  color: var(--fg-muted);
}

/* ========= HOW IT WORKS ========= */
.how {
  padding: 98px 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.how-step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.how-step::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(108,99,255,0.15) 0%, rgba(108,99,255,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.how-step > * { position: relative; z-index: 1; }
.how-step:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.how-step-num {
  font: 700 12px/1 var(--font-mono);
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.how-step-visual {
  height: 120px;
  margin: 0 -28px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.how-step h3 {
  font: 600 20px/1.3 var(--font-display);
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 10px;
}
.how-step p {
  font: 400 15px/1.55 var(--font-sans);
  color: var(--fg-sub);
}

/* Step 1 visual: stacked platform chips with selection */
.viz-platforms {
  position: absolute;
  inset: 0;
  padding: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
}
.viz-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 8px;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 999px;
  font: 500 12px/1 var(--font-sans);
  color: var(--fg-sub);
}
.viz-chip img { width: 16px; height: 16px; border-radius: 3px; }
.viz-chip.active {
  color: #c4c0ff;
  border-color: var(--violet);
  background: var(--violet-dim);
  box-shadow: 0 0 16px rgba(108,99,255,0.2);
}
.viz-chip.active::after {
  content: '✓';
  font-size: 11px;
  color: var(--violet);
  margin-left: 2px;
}

/* Step 2 visual: cascading stripes that "disappear" */
.viz-blocks {
  position: absolute;
  inset: 0;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.viz-block {
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.08) 60%,
    rgba(255,255,255,0.02) 100%);
  position: relative;
  display: flex;
  align-items: center;
}
.viz-block::before {
  content: '';
  width: 20%;
  height: 100%;
  border-radius: 6px 0 0 6px;
  background: rgba(108,99,255,0.18);
}
.viz-block.struck {
  background: transparent;
  border: 1px dashed rgba(108,99,255,0.3);
}
.viz-block.struck::before { display: none; }
.viz-block.struck::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px;
  height: 1px;
  background: rgba(108,99,255,0.4);
}
.viz-block:nth-child(2) { width: 80%; }
.viz-block:nth-child(3) { width: 60%; }
.viz-block:nth-child(4) { width: 90%; }

/* Step 3 visual: toggle cluster */
.viz-toggles {
  position: absolute;
  inset: 0;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.viz-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 8px;
  font: 500 11px/1 var(--font-sans);
  color: var(--fg-sub);
}
.viz-toggle-row .toggle {
  width: 26px; height: 14px;
  border-radius: 8px;
  background: #222; border: 1px solid var(--border);
  position: relative;
}
.viz-toggle-row .toggle::after {
  content: '';
  position: absolute; top: 1px; left: 1px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #555;
}
.viz-toggle-row.on .toggle { background: var(--violet); border-color: var(--violet); box-shadow: 0 0 8px rgba(108,99,255,0.5); }
.viz-toggle-row.on .toggle::after { left: auto; right: 1px; background: #fff; }

/* Step 3 visual: Chain Covenant icon */
.viz-covenant-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 12px;
}
.viz-covenant-icon img {
  width: 78px;
  height: 78px;
  filter: drop-shadow(0 0 14px rgba(108,99,255,0.55));
}

/* ========= PLATFORM GRID ========= */
.platforms {
  padding: 98px 0;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.platform-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.platform-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 160px;
  background: radial-gradient(ellipse at center, rgba(108,99,255,0.15) 0%, rgba(108,99,255,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.platform-card > *, .platform-card img { position: relative; z-index: 1; }
.platform-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-1);
}
.platform-card img {
  width: 44px; height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}
.platform-name {
  font: 600 17px/1.2 var(--font-display);
  color: #fff;
  letter-spacing: -0.015em;
}
.platform-sub {
  font: 500 12px/1 var(--font-sans);
  color: var(--fg-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.platform-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 3px 8px;
  border-radius: 4px;
  font: 700 9.5px/1 var(--font-sans);
  letter-spacing: 0.1em;
}
.platform-badge--free {
  background: rgba(74, 222, 128, 0.12);
  color: #6EE7A3;
  border: 1px solid rgba(74, 222, 128, 0.28);
}
.platform-badge--pro {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #1a0a02;
  box-shadow: 0 0 8px rgba(249,115,22,0.4);
}

/* ========= FEATURES ========= */
.features {
  padding: 98px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out);
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(108,99,255,0.15) 0%, rgba(108,99,255,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.feature-card > * { position: relative; z-index: 1; }
.feature-card:hover { border-color: var(--border-strong); }

.feature-visual {
  flex: 1;
  margin: -8px -36px 28px;
  padding: 28px 36px 0;
  min-height: 160px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-card h3 {
  font: 600 22px/1.25 var(--font-display);
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.feature-card p {
  font: 400 15px/1.55 var(--font-sans);
  color: var(--fg-sub);
  max-width: 420px;
}

/* Feature 1: Feed & Reel Blocking */
.fv-feed-wrap {
  display: flex;
  gap: 10px;
  height: 100%;
  align-items: flex-end;
  padding-top: 20px;
}
.fv-feed-card {
  flex: 1;
  height: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 6px;
}
.fv-feed-card.blocked::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg,
    rgba(108,99,255,0.06) 0 8px,
    rgba(108,99,255,0.12) 8px 16px);
  border-radius: 8px;
}
.fv-feed-card.blocked .fv-feed-line { opacity: 0.15; }
.fv-feed-card.blocked::after {
  content: 'HIDDEN';
  position: absolute;
  top: 8px; right: 8px;
  font: 700 8px/1 var(--font-sans);
  color: #c4c0ff;
  letter-spacing: 0.12em;
  padding: 3px 6px;
  background: rgba(108,99,255,0.2);
  border-radius: 3px;
}
.fv-feed-thumb {
  height: 38px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
}
.fv-feed-line {
  height: 5px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
}
.fv-feed-line.short { width: 60%; }

/* Feature 2: URL / Keyword blocker */
.fv-url {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
}
.fv-url-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-0);
  border: 1px solid var(--violet);
  border-radius: 8px;
  font: 500 13px/1 var(--font-mono);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(108,99,255,0.15);
}
.fv-url-input-caret {
  width: 2px; height: 14px;
  background: var(--violet);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.fv-url-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.fv-url-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 999px;
  font: 500 11.5px/1 var(--font-mono);
  color: #c4c0ff;
}
.fv-url-chip::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--violet);
}
.fv-url-chip.keyword {
  background: rgba(255,255,255,0.03);
  color: #8888A0;
  border-color: var(--border);
}
.fv-url-chip.keyword::before { background: var(--fg-muted); }

/* Feature 3: Covenant Mode */
.fv-covenant {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0c0c 0%, #1f0808 80%);
  margin: -28px -36px 0;
  padding: 32px;
  border-bottom: 1px solid rgba(220,38,38,0.25);
}
.fv-covenant-ring {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(220,38,38,0.3);
  background: rgba(220,38,38,0.08);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 0 40px rgba(220,38,38,0.2);
}
.fv-covenant-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(220,38,38,0.35);
  animation: slow-rotate 30s linear infinite;
}
@keyframes slow-rotate { to { transform: rotate(360deg); } }
.fv-covenant-ring svg { color: #ff6a6a; }
.fv-covenant-time {
  position: absolute;
  right: 24px;
  top: 28px;
  font: 500 11px/1 var(--font-mono);
  color: #ff9999;
  letter-spacing: 0.08em;
  padding: 5px 9px;
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: 6px;
}

/* Feature 4: Focus timer */
.fv-timer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 10px;
  height: 100%;
  justify-content: center;
}
.fv-timer-clock {
  font: 300 52px/1 var(--font-sans);
  color: #fff;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.fv-timer-sub {
  text-align: center;
  font: 600 10px/1 var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a8a3ff;
}
.fv-timer-bar {
  height: 4px;
  width: 80%;
  margin: 0 auto;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.fv-timer-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 60%;
  background: var(--violet);
  box-shadow: 0 0 12px rgba(108,99,255,0.6);
  border-radius: inherit;
}
.fv-timer-schedule {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 4px;
}
.fv-timer-day {
  flex: 1;
  max-width: 28px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: 600 9px/1 var(--font-sans);
  color: var(--fg-muted);
  text-align: center;
  text-transform: uppercase;
}
.fv-timer-day.on { background: rgba(108,99,255,0.15); border-color: var(--violet); color: #c4c0ff; }

/* ========= PRICING ========= */
.pricing {
  padding: 98px 0;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 240px;
  background: radial-gradient(ellipse at center, rgba(108,99,255,0.15) 0%, rgba(108,99,255,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.price-card--pro::after {
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.20) 0%, rgba(249,115,22,0) 70%);
}
.price-card > * { position: relative; z-index: 1; }
.price-card--pro {
  background: var(--bg-1);
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--bg-1), var(--bg-1)) padding-box,
    linear-gradient(145deg, rgba(249,115,22,0.9), rgba(108,99,255,0.75) 50%, rgba(249,115,22,0.4)) border-box;
  box-shadow:
    0 0 60px rgba(249,115,22,0.22),
    0 0 120px rgba(108,99,255,0.14),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.price-card--pro::before {
  content: '';
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(ellipse 45% 55% at 30% 30%, rgba(249,115,22,0.22), transparent 70%),
    radial-gradient(ellipse 45% 55% at 70% 70%, rgba(108,99,255,0.18), transparent 70%);
  z-index: -1;
  filter: blur(36px);
  pointer-events: none;
}
.price-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 16px;
  border-radius: 999px;
  font: 700 10.5px/1 var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #1a0a02;
  box-shadow: 0 0 16px rgba(249,115,22,0.5), 0 0 0 3px var(--bg-0);
  white-space: nowrap;
}

.price-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.price-tier h3 {
  font: 700 28px/1 var(--font-display);
  color: #fff;
  letter-spacing: -0.02em;
}
.price-tag-pro {
  padding: 4px 10px;
  border-radius: 6px;
  font: 700 10px/1 var(--font-sans);
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #1a0a02;
  box-shadow: 0 0 10px rgba(249,115,22,0.5);
}
.price-blurb {
  font: 400 14px/1.5 var(--font-sans);
  color: var(--fg-sub);
  margin-bottom: 28px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.price-amount .num {
  font: 700 56px/1 var(--font-display);
  color: #fff;
  letter-spacing: -0.035em;
}
.price-amount .per {
  font: 500 15px/1 var(--font-sans);
  color: var(--fg-sub);
}
.price-monthly {
  font: 500 13px/1 var(--font-sans);
  color: var(--fg-muted);
  margin-bottom: 18px;
}

.billing-toggle {
  display: inline-flex;
  padding: 3px;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 24px;
  gap: 2px;
}
.billing-toggle button {
  padding: 7px 14px;
  border-radius: 999px;
  font: 600 12px/1 var(--font-sans);
  color: var(--fg-sub);
  transition: background 0.2s, color 0.2s;
}
.billing-toggle button.active {
  background: var(--violet-dim);
  color: #c4c0ff;
  box-shadow: inset 0 0 0 1px rgba(108,99,255,0.3);
}
.billing-toggle-save {
  color: var(--success) !important;
  font-size: 10px !important;
  margin-left: 4px;
}

.trial-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 999px;
  font: 600 12px/1 var(--font-sans);
  color: #6EE7A3;
  margin-bottom: 24px;
  align-self: flex-start;
}
.trial-pill::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font: 400 14px/1.45 var(--font-sans);
  color: var(--fg-1);
}
.price-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(108,99,255,0.15);
  border: 1px solid rgba(108,99,255,0.35);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 8.5L7 11.5L12 5.5' stroke='%236C63FF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.price-card--pro .price-features li::before {
  background-color: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.35);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 8.5L7 11.5L12 5.5' stroke='%23F97316' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.price-features li strong { color: #fff; font-weight: 600; }

.price-cta-sub {
  font: 400 12px/1.4 var(--font-sans);
  color: var(--fg-muted);
  margin-top: 14px;
  text-align: center;
}

/* ========= AFFILIATE ========= */
.affiliate {
  padding: 98px 0;
}
.affiliate-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.affiliate-card::before {
  content: '';
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.affiliate-card h2 {
  font: 700 46px/1.05 var(--font-display);
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
  text-wrap: balance;
}
.affiliate-card h2 .num {
  background: linear-gradient(135deg, #c4c0ff 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.affiliate-card p {
  font: 400 16px/1.55 var(--font-sans);
  color: var(--fg-sub);
  margin-bottom: 28px;
  max-width: 460px;
}

.affiliate-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.affiliate-stat {
  padding: 22px 20px;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.affiliate-stat::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 140px;
  background: radial-gradient(ellipse at center, rgba(108,99,255,0.15) 0%, rgba(108,99,255,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.affiliate-stat > * { position: relative; z-index: 1; }
.affiliate-stat-value {
  font: 700 26px/1 var(--font-display);
  color: #fff;
  letter-spacing: -0.02em;
}
.affiliate-stat-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.affiliate-stat-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.25);
  display: grid; place-items: center;
  color: #a8a3ff;
  flex-shrink: 0;
}
.affiliate-stat-label {
  font: 500 12px/1.3 var(--font-sans);
  color: var(--fg-sub);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========= TRUST ========= */
.trust {
  padding: 84px 0 56px;
  border-top: 1px solid var(--hairline);
}
.trust-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.trust-mark {
  color: #a8a3ff;
  filter: drop-shadow(0 0 12px rgba(108,99,255,0.4));
  margin-bottom: 22px;
}
.trust-quote {
  font: 500 22px/1.45 var(--font-display);
  letter-spacing: -0.015em;
  color: #fff;
  max-width: 640px;
  text-wrap: balance;
}
.trust-divider {
  width: 48px;
  height: 1px;
  background: var(--hairline);
  margin: 40px 0 32px;
}
.trust-placeholders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 640px;
  opacity: 0.5;
}
.trust-placeholder {
  padding: 22px 22px 18px;
  background: var(--bg-2);
  border: 1px dashed var(--border);
  border-radius: 12px;
  text-align: left;
}
.trust-ph-stars {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.trust-ph-line {
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  margin-bottom: 6px;
}
.trust-ph-line.short { width: 72%; margin-bottom: 14px; }
.trust-ph-attr {
  font: 500 11px/1 var(--font-sans);
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ========= FOOTER ========= */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--hairline);
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-head img { width: 28px; height: 28px; filter: drop-shadow(0 2px 12px rgba(108,99,255,0.5)); }
.footer-brand-head span { font: 700 18px/1 var(--font-display); color: #fff; letter-spacing: -0.015em; }
.footer-brand-note {
  font: italic 400 13px/1.5 var(--font-sans);
  color: var(--fg-sub);
}
.footer-brand-loc {
  font: 400 12px/1.5 var(--font-sans);
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-brand-loc .flag { font-size: 14px; filter: saturate(0.9); }
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.footer-social-link {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--fg-sub);
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social-link:hover {
  color: #c4c0ff;
  border-color: rgba(108,99,255,0.4);
  background: var(--violet-dim);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  justify-content: center;
}
.footer-link {
  font: 500 14px/1 var(--font-sans);
  color: var(--fg-sub);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--fg-1); }
.footer-tagline-col {
  text-align: right;
  font: 400 13px/1.55 var(--font-sans);
  color: var(--fg-sub);
}
.footer-tagline-col strong { display: block; color: var(--fg-1); font-weight: 600; margin-bottom: 6px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font: 400 12px/1.5 var(--font-sans);
  color: var(--fg-muted);
}
.footer-bottom em {
  font-style: italic;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
}

/* ========= PRIVACY PAGE ========= */
.privacy-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 32px 100px;
}
.privacy-shell h1 {
  font: 700 52px/1.08 var(--font-display);
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}
.privacy-shell .privacy-updated {
  font: 500 13px/1 var(--font-sans);
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 48px;
}
.privacy-shell h2 {
  font: 600 20px/1.3 var(--font-display);
  color: #fff;
  margin: 36px 0 12px;
  letter-spacing: -0.015em;
}
.privacy-shell p {
  font: 400 16px/1.65 var(--font-sans);
  color: var(--fg-1);
  margin-bottom: 16px;
}
.privacy-shell a { color: #a8a3ff; border-bottom: 1px solid rgba(108,99,255,0.35); }
.privacy-shell a:hover { color: #fff; border-bottom-color: var(--violet); }
.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 999px;
  font: 600 12px/1 var(--font-sans);
  color: #6EE7A3;
  margin-bottom: 32px;
}
.privacy-pill::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}
.privacy-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0 16px;
}
.privacy-principle {
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  font: 600 15px/1.3 var(--font-sans);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.privacy-principle::before {
  content: '×';
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(224, 82, 82, 0.12);
  border: 1px solid rgba(224, 82, 82, 0.3);
  color: var(--danger);
  display: grid; place-items: center;
  font: 700 16px/1 var(--font-sans);
  flex-shrink: 0;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav { padding: 10px 0; }
  .container { padding: 0 20px; }
  .hero h1 { font-size: 44px; letter-spacing: -0.035em; }
  .hero-sub { font-size: 16px; }
  .h2 { font-size: 32px; }
  .how-grid, .feature-grid, .platform-grid, .price-grid { grid-template-columns: 1fr; }
  .affiliate-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .affiliate-card h2 { font-size: 30px; }
  .affiliate-stats { grid-template-columns: 1fr 1fr; }
  .trust-placeholders { grid-template-columns: 1fr; }
  .trust-quote { font-size: 18px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer-brand { align-items: center; }
  .footer-tagline-col { text-align: center; }
  .footer-links { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .popup-float { position: relative; right: auto; top: auto; margin: 20px auto 0; width: 100%; max-width: 340px; }
  .browser-body { min-height: auto; }
  .browser-stage { transform: none; margin-top: 40px; }
  .fake-site { padding: 18px; }
  .fake-site-blocked { inset: 80px 18px 18px 18px; }
  section { padding: 64px 0; }
  .how, .platforms, .features, .pricing, .affiliate, .trust { padding: 64px 0; }
  .hero { padding-top: 110px; padding-bottom: 40px; }
  .section-head { margin-bottom: 40px; }
  .price-card, .feature-card { padding: 28px 24px; }
  .logos-strip-items { gap: 24px; }
  .logos-strip-items img { height: 30px; width: 30px; }
  .price-amount .num { font-size: 44px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .h2 { font-size: 26px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .platform-card { padding: 20px 18px; }
  .nav-brand span { font-size: 14px; }
}
