/* ============================================================
   Mac Cleaner Pro 2  —  #12111A · #E8B4D8
   Dark rose / mauve aesthetic
   ============================================================ */

:root {
  --bg:         #12111A;
  --rose:       #E8B4D8;
  --rose-dim:   rgba(232,180,216,.14);
  --rose-glow:  rgba(232,180,216,.25);
  --text:       #F0ECF4;
  --soft:       #9880A0;
  --muted:      #50445A;
  --border:     rgba(255,255,255,.07);
  --border-s:   rgba(255,255,255,.12);
  --glass:      rgba(255,255,255,.03);
  --glass-2:    rgba(255,255,255,.06);
  --win-bg:     rgba(18,16,28,.88);
  --win-border: rgba(255,255,255,.08);
  --rad:        18px;
  --rad-sm:     10px;
  --rad-lg:     26px;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "SF Mono","Fira Code","Menlo",monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); color: var(--text); }
body { font-family: var(--sans); font-size: 15px; line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  height: 62px;
  display: flex; align-items: center;
  background: rgba(18,17,26,0);
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(18,17,26,.86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-in {
  max-width: 1160px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em;
}
.brand-icon { flex-shrink: 0; }
/* brand name is one solid word — no em colour split */
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: .88rem; color: rgba(255,255,255,.55);
  transition: color .25s;
}
.nav-link:hover { color: var(--text); }
.btn-nav {
  font-size: .85rem; font-weight: 600; padding: .5rem 1.2rem;
  background: var(--rose); color: var(--bg); border-radius: 100px;
  transition: opacity .2s, transform .2s;
}
.btn-nav:hover { opacity: .88; transform: translateY(-1px); }

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* ═══════════════════════════════════════════════
   SCROLL STORY
═══════════════════════════════════════════════ */
.story {
  height: 500vh;  /* 5 slides × 100vh */
  position: relative;
}

/* Sticky stage — stays pinned while scroll continues */
.stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ── Dynamic background ── */
.bg-layer {
  position: absolute; inset: 0; z-index: 0;
  background: #12111A;
  transition: background-color .85s cubic-bezier(.4,0,.2,1);
}
.noise {
  position: absolute; inset: 0; z-index: 1;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  transition: background .85s cubic-bezier(.4,0,.2,1);
}
.orb-a {
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  top: -15%; left: -8%;
  background: radial-gradient(circle, rgba(232,180,216,.09) 0%, transparent 70%);
}
.orb-b {
  width: 40vw; height: 40vw; max-width: 520px; max-height: 520px;
  bottom: -10%; right: 2%;
  background: radial-gradient(circle, rgba(232,180,216,.06) 0%, transparent 70%);
}

/* ── Slides ── */
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  justify-content: center;
  padding: 62px clamp(1.5rem, 5vw, 5rem) 0;
  gap: 5%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity .55s cubic-bezier(.4,0,.2,1);
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Text column */
.slide-text {
  flex: 0 0 40%;
  max-width: 440px;
}
.tag {
  display: block;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: .9;
}
.slide-text h1, .slide-text h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.slide-text h1, .slide-text h2 em { font-style: normal; }
.lead {
  font-size: 1rem;
  color: rgba(240,236,244,.55);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 380px;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .92rem; font-weight: 700;
  padding: .75rem 1.7rem;
  background: var(--c, #E8B4D8);
  color: var(--ci, #12111A);
  border-radius: 100px;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(0,0,0,.28);
}
.cta-btn:hover {
  opacity: .88; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.38);
}

/* Visual column */
.slide-visual {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
}

/* ── Mac Window ── */
.win {
  width: 100%; max-width: 520px;
  background: var(--win-bg);
  border: 1px solid var(--win-border);
  border-radius: var(--rad-lg);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 .5px rgba(255,255,255,.06);
}
.win-bar {
  height: 44px;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: .8rem;
  padding: 0 1.2rem;
}
.dots { display: flex; gap: 7px; }
.d { display: block; width: 12px; height: 12px; border-radius: 50%; }
.rd { background: #ff5f57; }
.yw { background: #febc2e; }
.gn { background: #28c840; }
.win-title {
  font-size: .78rem; color: rgba(255,255,255,.28); font-weight: 500;
  margin-left: auto; margin-right: auto; padding-right: 70px;
}
.win-body { padding: 1.4rem 1.6rem 1.6rem; }

/* State 0: Disk chart */
.disk-wrap { display: flex; align-items: center; gap: 1.4rem; margin-bottom: 1rem; }
.ring-svg { width: 180px; height: 180px; flex-shrink: 0; }
.disk-stats { flex: 1; }
.ds-row {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: .55rem; font-size: .85rem;
}
.ds-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.ds-label { color: rgba(255,255,255,.4); flex: 1; }
.ds-val { font-weight: 700; font-size: .9rem; }
.ds-bar-track {
  height: 6px; background: rgba(255,255,255,.06); border-radius: 3px;
  overflow: hidden; margin-top: 1rem;
}
.ds-bar { height: 100%; border-radius: 3px; transition: width .6s ease; }
.win-warn {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: rgba(255,140,160,.8);
  background: rgba(255,140,160,.08);
  border: 1px solid rgba(255,140,160,.15);
  border-radius: var(--rad-sm); padding: .6rem .9rem;
  margin-bottom: 1rem;
}
.win-cta {
  width: 100%;
  padding: .7rem; font-size: .9rem; font-weight: 700;
  background: var(--bc, #E8B4D8); color: var(--bci, #12111A);
  border: none; border-radius: var(--rad-sm);
  cursor: pointer; transition: opacity .2s, transform .2s;
}
.win-cta:hover { opacity: .88; transform: translateY(-1px); }

/* State 1: Scan */
.scan-wrap { display: flex; align-items: center; gap: 1.4rem; margin-bottom: 1rem; }
.scan-ring { width: 170px; height: 170px; flex-shrink: 0; }
.scan-arc {
  animation: spin 3s linear infinite;
  transform-origin: center;
}
@keyframes spin { from { transform: rotate(-90deg); } to { transform: rotate(270deg); } }
/* Override — arc itself doesn't spin, just the glow pulse */
.scan-arc { animation: none; }
.scan-info { flex: 1; }
.scan-found-label { font-size: .75rem; color: rgba(255,255,255,.38); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .2rem; }
.scan-found-val { font-size: 1.6rem; font-weight: 800; margin-bottom: .8rem; }
.scan-cats { }
.sc-row {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; margin-bottom: .45rem;
}
.sc-name { color: rgba(255,255,255,.45); width: 90px; flex-shrink: 0; }
.sc-track {
  flex: 1; height: 5px; background: rgba(255,255,255,.06);
  border-radius: 3px; overflow: hidden;
}
.sc-fill { height: 100%; border-radius: 3px; }
.sc-sz { width: 44px; text-align: right; font-weight: 600; color: rgba(255,255,255,.6); font-size: .77rem; }
.terminal-line {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(0,0,0,.3); border-radius: var(--rad-sm);
  padding: .55rem .8rem;
  font-family: var(--mono); font-size: .72rem;
  color: rgba(255,255,255,.38);
  overflow: hidden;
}
.term-prefix { color: rgba(196,170,238,.8); flex-shrink: 0; }
.term-path { color: rgba(196,170,238,.55); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.term-blink {
  color: rgba(196,170,238,.8); flex-shrink: 0;
  animation: blink .9s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* State 2: Results */
.res-header { text-align: center; margin-bottom: 1.2rem; }
.res-badge {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  color: var(--rose); background: rgba(232,180,216,.1);
  border: 1px solid rgba(232,180,216,.2);
  padding: .2rem .7rem; border-radius: 100px;
  margin-bottom: .5rem;
}
.res-total { font-size: 2.8rem; font-weight: 900; line-height: 1.1; letter-spacing: -.04em; }
.res-sub { font-size: .82rem; color: rgba(255,255,255,.35); margin-top: .2rem; }
.res-list { margin-bottom: 1.2rem; }
.res-row {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; margin-bottom: .65rem;
}
.res-name { width: 160px; flex-shrink: 0; color: rgba(255,255,255,.55); }
.res-count { font-size: .68rem; color: rgba(255,255,255,.28); margin-left: .25rem; }
.res-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: hidden; }
.res-bar { height: 100%; border-radius: 3px; }
.res-sz { width: 44px; text-align: right; font-weight: 700; color: rgba(255,255,255,.65); flex-shrink: 0; }

/* State 3: Done */
.done-body { text-align: center; padding: 1rem 1.6rem 1.6rem; }
.check-wrap { margin-bottom: .8rem; display: flex; justify-content: center; }
.check-svg { width: 110px; height: 110px; }
.check-ring {
  stroke-dasharray: 0 390;
  animation: drawRing 1s .2s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes drawRing { to { stroke-dasharray: 390 390; } }
.check-mark {
  stroke-dasharray: 0 120;
  animation: drawCheck .6s .9s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes drawCheck { to { stroke-dasharray: 120 120; } }
.done-freed { font-size: 3rem; font-weight: 900; letter-spacing: -.05em; line-height: 1; }
.done-freed-label { font-size: .8rem; color: rgba(255,255,255,.35); margin-bottom: 1.2rem; }
.done-stats { display: flex; justify-content: center; gap: 0; margin-bottom: 1rem; }
.done-stat {
  flex: 1; padding: .8rem 0;
  border-right: 1px solid rgba(255,255,255,.06);
}
.done-stat:last-child { border-right: none; }
.ds-num { font-size: 1.3rem; font-weight: 800; margin-bottom: .1rem; }
.ds-lbl { font-size: .7rem; color: rgba(255,255,255,.35); }
.done-speed {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: rgba(255,255,255,.45);
}
.done-speed strong { color: inherit; }

/* State 4: Privacy */
.priv-body { }
.shield-wrap { display: flex; flex-direction: column; align-items: center; margin-bottom: 1.2rem; }
.shield-svg { width: 100px; height: 116px; margin-bottom: .6rem; }
.shield-badge {
  font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  color: #D4A8D8; background: rgba(212,168,216,.1);
  border: 1px solid rgba(212,168,216,.25); border-radius: 100px;
  padding: .2rem .8rem;
}
.priv-list { }
.priv-row {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .82rem; color: rgba(255,255,255,.58);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.priv-row:last-child { border-bottom: none; }
.priv-row svg { flex-shrink: 0; margin-top: .05rem; }

/* ── Scroll progress dots ── */
.story-dots {
  position: absolute; right: 2rem; top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex; flex-direction: column; gap: .7rem;
}
.sdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none; padding: 0;
  transition: background .35s, transform .35s, box-shadow .35s;
  cursor: pointer;
}
.sdot.active {
  background: var(--rose);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(232,180,216,.5);
}

/* ── Scroll hint ── */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.2);
  pointer-events: none;
  transition: opacity .4s;
}
.scroll-hint.hidden { opacity: 0; }
.sh-line {
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, rgba(232,180,216,.5), transparent);
  animation: shLine 1.8s ease-in-out infinite;
}
@keyframes shLine {
  0%   { transform: translateY(-6px); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ═══════════════════════════════════════════════
   BELOW-FOLD SECTIONS
═══════════════════════════════════════════════ */

/* ── Reveal animation ── */
.reveal-sec { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-sec.in { opacity: 1; transform: translateY(0); }
.reveal-item { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal-item.in { opacity: 1; transform: translateY(0); }
.reveal-item:nth-child(2) { transition-delay: .1s; }
.reveal-item:nth-child(3) { transition-delay: .2s; }
.reveal-item:nth-child(4) { transition-delay: .1s; }
.reveal-item:nth-child(5) { transition-delay: .2s; }
.reveal-item:nth-child(6) { transition-delay: .3s; }

/* Section headers */
.sec-head { text-align: center; margin-bottom: 3.5rem; }
.tag-sm {
  display: inline-block;
  font-family: var(--mono); font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--rose);
  margin-bottom: .9rem; opacity: .85;
}
.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.1;
}
.sec-title em { color: var(--rose); font-style: normal; }

/* ── Features ── */
.features { padding: 6rem 0; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feat-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 1.8rem;
  transition: border-color .25s, background .25s, transform .25s;
}
.feat-card:hover {
  border-color: var(--border-s);
  background: var(--glass-2);
  transform: translateY(-3px);
}
.feat-icon {
  width: 48px; height: 48px;
  background: var(--rose-dim);
  border-radius: var(--rad-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
  margin-bottom: 1.1rem;
}
.feat-card h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: .55rem;
}
.feat-card p { font-size: .88rem; color: rgba(240,236,244,.5); line-height: 1.65; }

/* ── Stats ── */
.stats-bar {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row { display: flex; gap: 0; }
.stat-item {
  flex: 1; text-align: center;
  padding: 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; letter-spacing: -.04em;
  color: var(--rose); margin-bottom: .3rem;
}
.stat-lbl { font-size: .82rem; color: rgba(255,255,255,.35); }

/* ── How it works ── */
.how { padding: 6rem 0; }
.steps { display: flex; align-items: flex-start; gap: 1rem; }
.step {
  flex: 1; background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 2rem 1.6rem;
}
.step-arrow { flex-shrink: 0; font-size: 1.4rem; color: rgba(255,255,255,.18); margin-top: 2.5rem; }
.step-num {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em;
  color: var(--rose); margin-bottom: .8rem; display: block;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.step p { font-size: .85rem; color: rgba(240,236,244,.5); line-height: 1.65; }

/* ── FAQ ── */
.faq { padding: 6rem 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.fq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.fq-q {
  width: 100%; text-align: left;
  padding: 1.3rem 0;
  font-size: 1rem; font-weight: 600; color: var(--text);
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; cursor: pointer;
  transition: color .2s;
}
.fq-q:hover { color: var(--rose); }
.fq-q::after {
  content: '+'; font-size: 1.3rem; color: rgba(255,255,255,.3);
  transition: transform .3s, color .2s;
  flex-shrink: 0;
}
.fq-item.open .fq-q::after { transform: rotate(45deg); color: var(--rose); }
.fq-a {
  font-size: .9rem; color: rgba(240,236,244,.5); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s;
  padding: 0;
}
.fq-item.open .fq-a { max-height: 200px; padding-bottom: 1.3rem; }

/* ── Download CTA ── */
.download-cta { padding: 6rem 0; }
.dl-card {
  background: var(--glass);
  border: 1px solid var(--border-s);
  border-radius: var(--rad-lg);
  padding: 4rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.dl-orb {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,180,216,.1) 0%, transparent 70%);
  pointer-events: none;
}
.dl-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.1;
  margin: .8rem 0 1rem;
}
.dl-title em { color: var(--rose); font-style: normal; }
.dl-sub { font-size: 1rem; color: rgba(240,236,244,.45); margin-bottom: 2rem; }
.cta-btn-big {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: 1.02rem; font-weight: 700;
  padding: .95rem 2.2rem;
  background: var(--rose); color: var(--bg);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(232,180,216,.25);
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.cta-btn-big:hover {
  opacity: .88; transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,180,216,.35);
}
.dl-req { margin-top: 1rem; font-size: .78rem; color: rgba(255,255,255,.2); }

/* ── Footer ── */
.footer { padding: 2.5rem 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-links a:hover { color: var(--rose); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.2); margin-left: auto; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials { padding: 6rem 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .25s, background .25s, transform .25s;
}
.testi-card:hover {
  border-color: var(--border-s);
  background: var(--glass-2);
  transform: translateY(-3px);
}
.testi-stars {
  font-size: 1rem;
  color: var(--rose);
  letter-spacing: .1em;
}
.testi-quote {
  font-size: .92rem;
  color: rgba(240,236,244,.72);
  line-height: 1.72;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: .5rem;
}
.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(232,180,216,.25);
  display: block;
}
.testi-name { font-size: .88rem; font-weight: 700; }
.testi-role { font-size: .76rem; color: rgba(240,236,244,.38); margin-top: .05rem; }

/* ═══════════════════════════════════════════════
   BEFORE / AFTER
═══════════════════════════════════════════════ */
.before-after { padding: 6rem 0; }
.sec-sub {
  font-size: .95rem;
  color: rgba(240,236,244,.42);
  max-width: 560px;
  margin: .8rem auto 0;
  text-align: center;
}
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 3rem;
}
.ba-col {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.ba-col-label {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(240,236,244,.4);
  align-self: flex-start;
}
.ba-ring-wrap { display: flex; justify-content: center; }
.ba-list {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.ba-list li {
  font-size: .87rem;
  color: rgba(240,236,244,.62);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.ba-x { color: #E8706A; font-weight: 700; font-size: .95rem; flex-shrink: 0; }
.ba-ok { color: #80D4A0; font-weight: 700; font-size: .95rem; flex-shrink: 0; }
.ba-after { border-color: rgba(144,212,170,.2); }
.ba-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding-top: 6rem;
  min-width: 110px;
}
.ba-arrow-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(232,180,216,.3), transparent);
}
.ba-arrow-label {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: .7;
  text-align: center;
  white-space: nowrap;
  padding: .4rem .7rem;
  border: 1px solid rgba(232,180,216,.2);
  border-radius: 100px;
  background: rgba(232,180,216,.06);
}

/* ═══════════════════════════════════════════════
   TRUST
═══════════════════════════════════════════════ */
.trust-sec { padding: 6rem 0; }
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.trust-body {
  font-size: .95rem;
  color: rgba(240,236,244,.5);
  line-height: 1.78;
  margin-bottom: 1.6rem;
}
.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .9rem;
  color: rgba(240,236,244,.65);
}
.trust-list svg { flex-shrink: 0; margin-top: .1rem; }
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.trust-badge {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: border-color .25s, transform .25s;
}
.trust-badge:hover {
  border-color: rgba(232,180,216,.25);
  transform: translateY(-2px);
}
.tb-icon {
  width: 48px; height: 48px;
  border-radius: var(--rad-sm);
  background: var(--rose-dim);
  display: flex; align-items: center; justify-content: center;
}
.tb-title {
  font-size: .9rem; font-weight: 700; line-height: 1.3;
  color: var(--text);
}
.tb-sub { font-size: .75rem; color: rgba(240,236,244,.35); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .trust-inner { gap: 3rem; }
}

@media (max-width: 900px) {
  .slide { flex-direction: column; gap: 1.5rem; padding-top: 80px; padding-bottom: 2rem; overflow-y: auto; }
  .slide-text { max-width: 100%; text-align: center; }
  .slide-text h1, .slide-text h2 { font-size: 2.2rem; }
  .lead { max-width: 100%; }
  .slide-visual { width: 100%; }
  .win { max-width: 100%; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .ba-wrap { grid-template-columns: 1fr; }
  .ba-divider { flex-direction: row; padding-top: 0; min-width: auto; width: 100%; }
  .ba-arrow-line { width: 40px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(232,180,216,.3), transparent); }
  .trust-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .feat-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr; }
  .slide-text h1, .slide-text h2 { font-size: 1.9rem; }
  .disk-wrap { flex-direction: column; }
  .scan-wrap { flex-direction: column; }
  .story-dots { right: .8rem; }
  .footer-inner { justify-content: center; }
  .footer-copy { margin-left: 0; width: 100%; text-align: center; }
}

.nav-burger {
  display: none;
  background: transparent; border: 0; padding: 8px; margin-left: auto;
  cursor: pointer; width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .25s, opacity .2s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; inset: 64px 0 auto 0;
  background: var(--win-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.25rem;
  flex-direction: column; gap: .25rem;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: .75rem 0; color: var(--soft); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--border); text-decoration: none;
}
.mobile-nav-link:hover { color: var(--text); }
.mobile-nav-cta {
  margin-top: .65rem;
  background: var(--rose); color: var(--bg);
  font-size: .95rem; font-weight: 700;
  padding: .75rem 1.1rem; border-radius: 100px; text-align: center;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ═══════════════════════════════════════════════
   COMPETITOR COMPARISON
═══════════════════════════════════════════════ */
.compare-sec {
  padding: 6rem 0;
  position: relative;
}
.compare-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232,180,216,.05) 0%, transparent 70%);
  pointer-events: none;
}
.compare-intro {
  text-align: center;
  font-size: .98rem;
  color: rgba(240,236,244,.5);
  max-width: 620px;
  margin: -1.4rem auto 2.6rem;
  line-height: 1.7;
}
.compare-card {
  background: linear-gradient(160deg, rgba(232,180,216,.04), rgba(18,17,26,.6));
  border: 1px solid rgba(232,180,216,.18);
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  position: relative;
}
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: .87rem;
}
.compare-table thead th {
  position: sticky; top: 0;
  background: rgba(18,17,26,.94);
  backdrop-filter: blur(12px);
  padding: 1.2rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  color: rgba(240,236,244,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.compare-table thead th.feat-col {
  text-align: left;
  color: rgba(232,180,216,.65);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.compare-table thead th.us {
  color: var(--rose);
  background: linear-gradient(180deg, rgba(232,180,216,.12), rgba(232,180,216,.04));
  border-bottom: 1px solid rgba(232,180,216,.3);
  position: relative;
}
.compare-table thead th.us::after {
  content: 'OURS';
  position: absolute;
  top: 4px; right: 8px;
  font-size: .55rem;
  letter-spacing: .14em;
  color: rgba(232,180,216,.55);
  font-weight: 800;
}
.compare-table tbody td {
  padding: .85rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: rgba(240,236,244,.55);
  font-size: .86rem;
  vertical-align: middle;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(232,180,216,.025); }
.compare-table td.feat-name {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  font-size: .88rem;
  padding-left: 1.3rem;
}
.compare-table td.us-col {
  background: rgba(232,180,216,.04);
  border-left: 1px solid rgba(232,180,216,.12);
  border-right: 1px solid rgba(232,180,216,.12);
  color: var(--text);
  font-weight: 600;
}
.cmp-yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(144,212,170,.14);
  color: #90D4AA;
  font-weight: 800;
  font-size: .82rem;
}
.cmp-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(232,112,106,.1);
  color: #E8706A;
  font-weight: 800;
  font-size: .82rem;
}
.cmp-partial {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(212,168,32,.12);
  color: #d4a820;
  font-weight: 800;
  font-size: .8rem;
}
.compare-table td.price {
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .01em;
}
.compare-table td.price.free {
  color: var(--rose);
  font-size: .92rem;
  font-weight: 800;
}
.compare-foot {
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(232,180,216,.03);
}
.compare-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .75rem;
  color: rgba(240,236,244,.4);
}
.compare-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.compare-foot .cta-btn {
  font-size: .85rem;
  padding: .6rem 1.4rem;
}
.honest-note {
  background: linear-gradient(135deg, rgba(212,168,32,.08), rgba(212,168,32,.03));
  border: 1px solid rgba(212,168,32,.18);
  border-radius: var(--rad);
  padding: 1.2rem 1.4rem;
  margin: 2rem auto 0;
  max-width: 720px;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(240,236,244,.65);
}
.honest-note strong { color: #d4a820; font-weight: 700; }

@media (max-width: 900px) {
  .compare-foot { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════
   NEW VARIED SECTIONS (sec-intro2 → sec-tradeoff2)
   Each section: own bg, own layout, sibling of .story/.features
═══════════════════════════════════════════════ */
:root {
  --gold:        #d4a820;
  --gold-dim:    rgba(212,168,32,.14);
  --lav:         #C4AAEE;
  --lav-dim:     rgba(196,170,238,.14);
  --lav-glow:    rgba(196,170,238,.25);
}

/* ─── SEC 1 — INTRO HERO (full-bleed centered, floating orbs) ─── */
.sec-intro2 {
  position: relative;
  padding: 7rem 0 5rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(232,180,216,.05), transparent 60%),
    var(--bg);
  overflow: hidden;
  text-align: center;
}
.sec-intro2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.sec-intro2-orb-a {
  width: 480px; height: 480px;
  top: -120px; left: -120px;
  background: radial-gradient(circle, var(--rose-glow), transparent 70%);
  opacity: .55;
}
.sec-intro2-orb-b {
  width: 420px; height: 420px;
  bottom: -160px; right: -100px;
  background: radial-gradient(circle, var(--lav-glow), transparent 70%);
  opacity: .55;
}
.sec-intro2-in {
  position: relative; z-index: 1;
  max-width: 820px;
}
.sec-intro2-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.4rem;
  opacity: .9;
}
.sec-intro2-title {
  font-family: "Inter", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.05;
  margin-bottom: 1.8rem;
  color: var(--text);
}
.sec-intro2-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--rose), #F4CCEC);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
.sec-intro2-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(240,236,244,.72);
  max-width: 720px;
  margin: 0 auto 2rem;
}
.sec-intro2-lead em {
  color: var(--rose); font-style: normal; font-weight: 500;
}
.sec-intro2-meta {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--soft);
  padding: .45rem 1.1rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.sec-intro2-meta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 8px var(--rose-glow);
}

/* ─── SEC 2 — PRIVACY (sticky split — mockup left, stacked cards right) ─── */
.sec-privacy2 {
  background:
    linear-gradient(180deg, var(--bg), #16142a 50%, var(--bg)),
    var(--bg);
  padding: 6rem 0;
  position: relative;
}
.sec-privacy2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}
.sec-privacy2-sticky {
  position: sticky;
  top: 90px;
  display: flex; flex-direction: column;
  gap: 1.4rem;
}
.sec-privacy2-win {
  width: 100%;
  background: var(--win-bg);
  border: 1px solid var(--win-border);
  border-radius: var(--rad-lg);
  box-shadow: 0 32px 80px -32px rgba(0,0,0,.7), 0 0 0 1px rgba(232,180,216,.08);
  overflow: hidden;
}
.sec-privacy2-win-body {
  padding: 1.2rem 1.2rem 1rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.sec-privacy2-paths {
  display: flex; flex-direction: column;
  background: rgba(0,0,0,.3);
  border-radius: var(--rad-sm);
  padding: .65rem .8rem;
  font-family: var(--mono);
  font-size: .77rem;
}
.sec-privacy2-row {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: .6rem;
  padding: .4rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.05);
}
.sec-privacy2-row:last-child { border-bottom: 0; }
.sec-privacy2-tag {
  font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; font-weight: 700;
}
.sec-privacy2-line {
  color: rgba(240,236,244,.6);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sec-privacy2-sz {
  color: rgba(240,236,244,.85);
  font-weight: 600;
}
.sec-privacy2-foot {
  display: flex; align-items: center; gap: .55rem;
  font-size: .78rem;
  color: rgba(240,236,244,.6);
  padding: .35rem .15rem 0;
}
.sec-privacy2-foot-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 8px var(--rose-glow);
}
.sec-privacy2-ring-wrap {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.1rem 1.3rem;
  background: linear-gradient(160deg, var(--rose-dim), var(--lav-dim));
  border: 1px solid rgba(232,180,216,.18);
  border-radius: var(--rad-lg);
}
.sec-privacy2-ring { width: 130px; height: 130px; flex-shrink: 0; }
.sec-privacy2-ring-legend { flex: 1; }
.sec-privacy2-leg-row {
  display: flex; align-items: center; gap: .55rem;
  padding: .35rem 0;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sec-privacy2-leg-row:last-child { border-bottom: 0; }
.sec-privacy2-leg-dot { width: 8px; height: 8px; border-radius: 50%; }
.sec-privacy2-leg-lbl { flex: 1; color: var(--soft); }
.sec-privacy2-leg-val { font-weight: 700; }
.sec-privacy2-cards {
  display: flex; flex-direction: column; gap: 1rem;
}
.sec-privacy2-kick {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .6rem;
}
.sec-privacy2-h {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.18;
  margin-bottom: 1.4rem;
  color: var(--text);
}
.sec-privacy2-card {
  position: relative;
  padding: 1.3rem 1.5rem 1.3rem 3.4rem;
  background: var(--glass-2);
  border: 1px solid var(--border);
  border-left: 2px solid var(--rose);
  border-radius: var(--rad);
}
.sec-privacy2-card-num {
  position: absolute;
  top: 1.35rem; left: 1.2rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--rose);
}
.sec-privacy2-card p {
  font-size: .96rem;
  line-height: 1.78;
  color: rgba(240,236,244,.7);
}
.sec-privacy2-card p em {
  color: var(--rose); font-style: normal; font-weight: 500;
}

/* ─── SEC 3 — AI ADVISOR (centered chat, lavender-tinted bg + prompt line) ─── */
.sec-ai2 {
  position: relative;
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(196,170,238,.06), transparent 70%),
    linear-gradient(180deg, var(--bg), #18152a, var(--bg));
  overflow: hidden;
}
.sec-ai2-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 30% 35% at 20% 80%, var(--lav-dim), transparent 60%),
    radial-gradient(ellipse 25% 30% at 80% 20%, var(--rose-dim), transparent 60%);
  pointer-events: none;
  opacity: .8;
}
.sec-ai2-in {
  position: relative; z-index: 1;
  max-width: 780px;
}
.sec-ai2-head { text-align: center; margin-bottom: 2.6rem; }
.sec-ai2-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lav);
  margin-bottom: .9rem;
}
.sec-ai2-h {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 1.4rem;
  color: var(--text);
}
.sec-ai2-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(240,236,244,.7);
  max-width: 700px;
  margin: 0 auto;
}
.sec-ai2-lead em {
  color: var(--lav); font-style: normal; font-weight: 500;
}
.sec-ai2-chatcard {
  background: rgba(18,16,28,.7);
  border: 1px solid rgba(196,170,238,.22);
  border-radius: var(--rad-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 32px 80px -32px rgba(196,170,238,.22);
}
.sec-ai2-prompt {
  display: flex; align-items: center; gap: .55rem;
  padding: .85rem 1.1rem;
  background: rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(196,170,238,.15);
  font-family: var(--mono);
  font-size: .76rem;
  color: rgba(196,170,238,.7);
}
.sec-ai2-prompt-prefix { color: var(--lav); font-weight: 700; }
.sec-ai2-prompt-path { flex: 1; color: rgba(196,170,238,.5); }
.sec-ai2-prompt-blink {
  color: var(--rose);
  animation: blink .9s step-end infinite;
}
.sec-ai2-chat {
  display: flex; flex-direction: column; gap: .8rem;
  padding: 1.4rem 1.4rem 1.6rem;
}
.sec-ai2-bubble {
  max-width: 80%;
  padding: .75rem 1rem;
  border-radius: 16px;
  font-size: .9rem;
  line-height: 1.6;
}
.sec-ai2-who {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .3rem;
  opacity: .75;
  display: flex; align-items: center; gap: .35rem;
}
.sec-ai2-text { color: rgba(240,236,244,.88); }
.sec-ai2-text em { color: var(--rose); font-style: normal; }
.sec-ai2-bubble-user {
  align-self: flex-end;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-s);
  border-bottom-right-radius: 5px;
}
.sec-ai2-bubble-user .sec-ai2-who { color: var(--soft); }
.sec-ai2-bubble-ai {
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(232,180,216,.16), rgba(196,170,238,.12));
  border: 1px solid rgba(232,180,216,.3);
  border-bottom-left-radius: 5px;
}
.sec-ai2-bubble-ai .sec-ai2-who { color: var(--rose); }
.sec-ai2-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 6px var(--rose-glow);
  animation: sec-ai2-pulse 1.8s ease-in-out infinite;
}
@keyframes sec-ai2-pulse {
  0%,100% { opacity: .5; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ─── SEC 4 — MODULES (horizontal scroll panel, lighter bg) ─── */
.sec-modules2 {
  padding: 6rem 0;
  background: #1a1726;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sec-modules2-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 2.6rem;
}
.sec-modules2-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .8rem;
}
.sec-modules2-h {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.18;
  color: var(--text);
}
.sec-modules2-lead {
  font-size: .98rem;
  line-height: 1.78;
  color: rgba(240,236,244,.65);
}
.sec-modules2-lead em {
  color: var(--rose); font-style: normal; font-weight: 500;
}
.sec-modules2-scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 max(2rem, calc((100vw - 1160px) / 2 + 2rem)) 1.2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--rose) transparent;
}
.sec-modules2-scroll-wrap::-webkit-scrollbar { height: 6px; }
.sec-modules2-scroll-wrap::-webkit-scrollbar-thumb { background: var(--rose-dim); border-radius: 3px; }
.sec-modules2-scroll {
  display: flex;
  gap: 1.1rem;
  min-width: max-content;
}
.sec-modules2-card {
  scroll-snap-align: start;
  flex: 0 0 240px;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(165deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--border);
  border-radius: var(--rad);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.sec-modules2-card:hover {
  border-color: rgba(232,180,216,.32);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px var(--rose-glow);
}
.sec-modules2-ico {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--rose), #B864A8);
  color: var(--bg);
  margin-bottom: .85rem;
  box-shadow: 0 8px 18px -6px var(--rose-glow);
}
.sec-modules2-name {
  font-size: .98rem; font-weight: 700;
  color: var(--text); margin-bottom: .25rem;
}
.sec-modules2-meta {
  font-size: .82rem; color: var(--soft); line-height: 1.5;
}

/* ─── SEC 5 — DUPLICATE FINDER (full-width window, dark bg + orb glow) ─── */
.sec-dup2 {
  position: relative;
  padding: 6rem 0;
  background: var(--bg);
  overflow: hidden;
}
.sec-dup2-orb {
  position: absolute;
  width: 720px; height: 720px;
  top: 10%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, var(--rose-glow), transparent 60%);
  filter: blur(110px);
  opacity: .35;
  pointer-events: none;
}
.sec-dup2-in { position: relative; z-index: 1; }
.sec-dup2-head { text-align: center; margin-bottom: 1.6rem; }
.sec-dup2-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .8rem;
}
.sec-dup2-h {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.18;
  max-width: 820px;
  margin: 0 auto;
  color: var(--text);
}
.sec-dup2-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(240,236,244,.68);
  max-width: 800px;
  margin: 0 auto 2.4rem;
  text-align: center;
}
.sec-dup2-win {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--win-bg);
  border: 1px solid var(--win-border);
  border-radius: var(--rad-lg);
  box-shadow: 0 50px 110px -40px rgba(0,0,0,.75), 0 0 0 1px rgba(232,180,216,.08);
  overflow: hidden;
}
.sec-dup2-body {
  padding: 1.5rem 1.6rem 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.sec-dup2-group {
  background: rgba(0,0,0,.32);
  border-radius: var(--rad-sm);
  padding: .95rem 1.1rem;
}
.sec-dup2-grp-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem;
  margin-bottom: .7rem;
}
.sec-dup2-grp-name { color: rgba(240,236,244,.88); font-weight: 600; }
.sec-dup2-grp-sz { color: var(--rose); font-family: var(--mono); font-weight: 600; }
.sec-dup2-thumbs {
  display: flex; gap: .65rem;
}
.sec-dup2-thumb {
  flex: 1; aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(232,180,216,.28), rgba(196,170,238,.18));
  border: 1px solid var(--border);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: .66rem; font-weight: 800; letter-spacing: .1em;
  color: rgba(240,236,244,.6);
  min-height: 90px;
}
.sec-dup2-thumbs-doc { gap: .65rem; }
.sec-dup2-doc {
  flex: 1; height: 76px;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .66rem; font-weight: 800; letter-spacing: .1em;
  color: rgba(240,236,244,.6);
  position: relative;
}
.sec-dup2-keep {
  border-color: rgba(144,212,170,.55) !important;
  box-shadow: 0 0 0 1px rgba(144,212,170,.28), 0 0 18px rgba(144,212,170,.2);
  color: #90D4AA;
}
.sec-dup2-del {
  opacity: .55;
  border-color: rgba(232,112,106,.4) !important;
}
.sec-dup2-del::after {
  content: '✕';
  position: absolute;
  top: 6px; right: 8px;
  color: #E8706A;
  font-weight: 700; font-size: .78rem;
}
.sec-dup2-foot {
  display: flex; align-items: center; gap: .6rem;
  margin-top: .4rem;
  padding: .55rem .1rem 0;
  font-size: .82rem;
  color: rgba(240,236,244,.65);
}
.sec-dup2-foot-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 8px var(--rose-glow);
}

/* ─── SEC 6 — TRUST STRIP (horizontal 5-card glass on lighter bg) ─── */
.sec-trust2 {
  padding: 5.5rem 0 6.5rem;
  background:
    linear-gradient(180deg, #16142a, #1b1830);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sec-trust2-head { max-width: 820px; margin: 0 auto 2.4rem; text-align: center; }
.sec-trust2-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .85rem;
}
.sec-trust2-h {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.sec-trust2-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(240,236,244,.7);
}
.sec-trust2-strip-wrap {
  padding: 0 max(2rem, calc((100vw - 1160px) / 2 + 2rem));
}
.sec-trust2-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1240px;
  margin: 0 auto;
}
.sec-trust2-claim {
  position: relative;
  padding: 1.4rem 1.2rem 1.4rem 1.2rem;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-top: 2px solid var(--rose);
  border-radius: var(--rad);
  display: flex; flex-direction: column; gap: .65rem;
  transition: border-color .25s, transform .25s;
}
.sec-trust2-claim:hover {
  border-color: rgba(232,180,216,.35);
  transform: translateY(-3px);
}
.sec-trust2-claim-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 10px var(--rose-glow);
}
.sec-trust2-claim-t {
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(240,236,244,.85);
}

/* ─── SEC 7 — FREE vs PAID (two-panel split + body) ─── */
.sec-free2 {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 65% 50% at 50% 0%, rgba(232,180,216,.05), transparent 60%),
    var(--bg);
  position: relative;
}
.sec-free2-in { max-width: 1000px; }
.sec-free2-head { text-align: center; margin-bottom: 2.6rem; }
.sec-free2-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .8rem;
}
.sec-free2-h {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
}
.sec-free2-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 2.4rem;
}
.sec-free2-panel {
  padding: 2.4rem 2rem;
  border-radius: var(--rad-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sec-free2-panel-paid {
  background: linear-gradient(165deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  color: var(--soft);
}
.sec-free2-panel-free {
  background: linear-gradient(165deg, rgba(232,180,216,.12), rgba(196,170,238,.08));
  border: 1px solid rgba(232,180,216,.3);
  box-shadow: 0 24px 60px -28px var(--rose-glow);
}
.sec-free2-panel-lbl {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: .8rem;
}
.sec-free2-panel-lbl-pro { color: var(--rose); }
.sec-free2-panel-price {
  margin-bottom: .6rem;
}
.sec-free2-strike {
  position: relative;
  display: inline-block;
  font-size: 1.9rem;
  font-weight: 800;
  color: rgba(240,236,244,.5);
}
.sec-free2-strike::after {
  content: '';
  position: absolute;
  left: -8px; right: -8px;
  top: 52%;
  height: 2px;
  background: var(--rose);
  transform: rotate(-6deg);
  opacity: .85;
}
.sec-free2-free-grad {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--rose), #F4CCEC);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px var(--rose-glow);
}
.sec-free2-panel-sub {
  font-size: .82rem;
  color: var(--soft);
  margin-bottom: 1.4rem;
}
.sec-free2-paid-list, .sec-free2-free-list {
  list-style: none;
  padding: 1.1rem 0 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; gap: .55rem;
  text-align: left;
}
.sec-free2-paid-list li, .sec-free2-free-list li {
  font-size: .86rem;
  line-height: 1.55;
  padding-left: 1.3rem;
  position: relative;
}
.sec-free2-paid-list li::before {
  content: '✕';
  position: absolute; left: 0; top: 0;
  color: rgba(232,112,106,.7);
  font-weight: 700;
}
.sec-free2-paid-list li { color: rgba(240,236,244,.5); }
.sec-free2-free-list li { color: rgba(240,236,244,.85); }
.sec-free2-free-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--rose);
  font-weight: 800;
}
.sec-free2-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(240,236,244,.68);
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.sec-free2-body em {
  color: var(--rose); font-style: normal; font-weight: 500;
}

/* ─── SEC 8 — PROCESS PIPELINE (centered 900, chevrons, checklist) ─── */
.sec-process2 {
  padding: 6rem 0;
  background: #15132a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sec-process2-in { max-width: 900px; }
.sec-process2-head { text-align: center; margin-bottom: 1.4rem; }
.sec-process2-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .8rem;
}
.sec-process2-h {
  font-size: clamp(1.6rem, 2.7vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--text);
}
.sec-process2-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(240,236,244,.7);
  text-align: center;
  margin: 0 auto 2.4rem;
  max-width: 760px;
}
.sec-process2-lead em {
  color: var(--rose); font-style: normal; font-weight: 500;
}
.sec-process2-pipe {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: .85rem;
  margin-bottom: 2rem;
}
.sec-process2-stage {
  padding: 1.4rem 1.4rem;
  background: var(--glass-2);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  border-left: 3px solid var(--rose);
}
.sec-process2-num {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--rose);
  margin-bottom: .3rem;
}
.sec-process2-name {
  font-size: 1.1rem; font-weight: 800;
  color: var(--text); margin-bottom: .45rem;
}
.sec-process2-body {
  font-size: .87rem; line-height: 1.65;
  color: rgba(240,236,244,.65);
}
.sec-process2-chev {
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--rose);
  opacity: .55;
  font-weight: 300;
}
.sec-process2-check {
  list-style: none;
  padding: 1.4rem 1.6rem;
  margin: 0 0 1.4rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rad);
}
.sec-process2-check li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .92rem;
  line-height: 1.75;
  color: rgba(240,236,244,.68);
  margin-bottom: .55rem;
}
.sec-process2-check li:last-child { margin-bottom: 0; }
.sec-process2-check li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--rose);
  font-weight: 800;
}
.sec-process2-outro {
  font-size: .98rem;
  line-height: 1.82;
  color: rgba(240,236,244,.68);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

/* ─── SEC 9 — HONEST TRADEOFF (gold-edged callout + treemap, narrow centered) ─── */
.sec-tradeoff2 {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, var(--gold-dim), transparent 60%),
    var(--bg);
}
.sec-tradeoff2-in { max-width: 820px; }
.sec-tradeoff2-head { text-align: center; margin-bottom: 1.6rem; }
.sec-tradeoff2-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}
.sec-tradeoff2-h {
  font-size: clamp(1.55rem, 2.6vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.22;
  color: var(--text);
}
.sec-tradeoff2-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(240,236,244,.68);
  margin-bottom: 2rem;
}
.sec-tradeoff2-call {
  padding: 1.6rem 1.7rem;
  background: linear-gradient(135deg, rgba(212,168,32,.10), rgba(212,168,32,.02));
  border: 1px solid rgba(212,168,32,.32);
  border-left: 3px solid var(--gold);
  border-radius: var(--rad);
  box-shadow: 0 24px 60px -32px rgba(212,168,32,.4);
}
.sec-tradeoff2-call-head {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .9rem;
}
.sec-tradeoff2-pill {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  background: rgba(212,168,32,.2);
  color: var(--gold);
  border-radius: 100px;
  font-weight: 700;
}
.sec-tradeoff2-title {
  font-size: 1rem; font-weight: 700;
  color: var(--text);
}
.sec-tradeoff2-call-body {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 1.4rem;
  align-items: center;
}
.sec-tradeoff2-call-body p {
  font-size: .9rem;
  line-height: 1.72;
  color: rgba(240,236,244,.7);
  margin: 0;
}
.sec-tradeoff2-tree {
  display: flex;
  height: 150px;
  gap: 4px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.sec-tradeoff2-col, .sec-tradeoff2-row {
  display: flex; gap: 4px; flex-direction: column;
  flex: 1;
}
.sec-tradeoff2-row { flex-direction: row; }
.sec-tradeoff2-tile {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.92);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.3;
  border-radius: 6px;
}
.sec-tradeoff2-tile small {
  font-size: .62rem;
  opacity: .75;
  font-weight: 600;
}

/* ─── Responsive (≤880px) ─── */
@media (max-width: 880px) {
  .sec-intro2 { padding: 5rem 0 3.5rem; }
  .sec-intro2-orb-a { width: 320px; height: 320px; }
  .sec-intro2-orb-b { width: 300px; height: 300px; }

  .sec-privacy2 { padding: 4rem 0; }
  .sec-privacy2-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .sec-privacy2-sticky { position: static; gap: 1rem; }
  .sec-privacy2-ring-wrap { padding: 1rem 1.1rem; }

  .sec-ai2 { padding: 4.5rem 0; }
  .sec-ai2-bubble { max-width: 90%; }

  .sec-modules2 { padding: 4.5rem 0; }
  .sec-modules2-head { grid-template-columns: 1fr; gap: 1rem; }
  .sec-modules2-card { flex-basis: 210px; padding: 1.3rem 1.2rem; }

  .sec-dup2 { padding: 4.5rem 0; }
  .sec-dup2-body { padding: 1.1rem 1.1rem 1.2rem; }

  .sec-trust2 { padding: 4.5rem 0 5rem; }
  .sec-trust2-strip { grid-template-columns: repeat(2, 1fr); gap: .85rem; }

  .sec-free2 { padding: 4.5rem 0; }
  .sec-free2-split { grid-template-columns: 1fr; gap: 1rem; }
  .sec-free2-panel { padding: 1.8rem 1.5rem; }

  .sec-process2 { padding: 4.5rem 0; }
  .sec-process2-pipe { grid-template-columns: 1fr; }
  .sec-process2-chev { transform: rotate(90deg); padding: .15rem 0; opacity: .5; }
  .sec-process2-stage { padding: 1.15rem 1.2rem; }

  .sec-tradeoff2 { padding: 4.5rem 0; }
  .sec-tradeoff2-call-body { grid-template-columns: 1fr; }
  .sec-tradeoff2-tree { height: 130px; }
}

/* ─── Responsive (≤520px) ─── */
@media (max-width: 520px) {
  .sec-intro2 { padding: 4rem 0 3rem; }
  .sec-intro2-title { font-size: clamp(1.9rem, 7vw, 2.4rem); }
  .sec-intro2-lead { font-size: .96rem; line-height: 1.75; }

  .sec-privacy2-row { grid-template-columns: 46px 1fr auto; font-size: .7rem; gap: .45rem; }
  .sec-privacy2-tag { font-size: .62rem; }
  .sec-privacy2-card { padding: 1.05rem 1.1rem 1.05rem 2.9rem; }
  .sec-privacy2-card p { font-size: .9rem; line-height: 1.7; }
  .sec-privacy2-h { font-size: 1.45rem; }
  .sec-privacy2-ring-wrap { flex-direction: column; align-items: center; text-align: center; }
  .sec-privacy2-ring { width: 110px; height: 110px; }

  .sec-ai2-h { font-size: 1.5rem; }
  .sec-ai2-lead { font-size: .94rem; line-height: 1.75; }
  .sec-ai2-chat { padding: 1rem 1rem 1.2rem; }
  .sec-ai2-bubble { max-width: 95%; padding: .65rem .85rem; font-size: .86rem; }
  .sec-ai2-prompt { padding: .65rem .85rem; font-size: .7rem; }

  .sec-modules2-h { font-size: 1.45rem; }
  .sec-modules2-lead { font-size: .92rem; }
  .sec-modules2-card { flex-basis: 200px; }

  .sec-dup2-h { font-size: 1.5rem; }
  .sec-dup2-lead { font-size: .94rem; line-height: 1.75; }
  .sec-dup2-body { padding: .9rem .9rem 1rem; gap: .8rem; }
  .sec-dup2-group { padding: .75rem .85rem; }
  .sec-dup2-thumb { min-height: 70px; font-size: .58rem; }
  .sec-dup2-doc { height: 60px; font-size: .58rem; }

  .sec-trust2-h { font-size: 1.5rem; }
  .sec-trust2-lead { font-size: .94rem; line-height: 1.75; }
  .sec-trust2-strip { grid-template-columns: 1fr; }
  .sec-trust2-claim { padding: 1.1rem 1.1rem; }
  .sec-trust2-claim-t { font-size: .86rem; }

  .sec-free2-h { font-size: 1.5rem; }
  .sec-free2-panel { padding: 1.5rem 1.2rem; }
  .sec-free2-strike { font-size: 1.55rem; }
  .sec-free2-free-grad { font-size: 2rem; }
  .sec-free2-body { font-size: .94rem; line-height: 1.78; }
  .sec-free2-paid-list li, .sec-free2-free-list li { font-size: .82rem; }

  .sec-process2-h { font-size: 1.45rem; }
  .sec-process2-lead { font-size: .94rem; line-height: 1.75; }
  .sec-process2-stage { padding: 1rem 1.1rem; }
  .sec-process2-name { font-size: 1rem; }
  .sec-process2-body { font-size: .84rem; }
  .sec-process2-check { padding: 1rem 1.1rem; }
  .sec-process2-check li { font-size: .86rem; padding-left: 1.35rem; }
  .sec-process2-outro { font-size: .92rem; line-height: 1.78; }

  .sec-tradeoff2-h { font-size: 1.45rem; }
  .sec-tradeoff2-body { font-size: .94rem; line-height: 1.78; }
  .sec-tradeoff2-call { padding: 1.2rem 1.15rem; }
  .sec-tradeoff2-pill { font-size: .62rem; padding: .22rem .55rem; }
  .sec-tradeoff2-title { font-size: .92rem; }
  .sec-tradeoff2-tree { height: 110px; }
  .sec-tradeoff2-tile { font-size: .62rem; }
  .sec-tradeoff2-tile small { font-size: .56rem; }
}
