/* css/styles.css */
:root {
  --ease: cubic-bezier(.22,.68,0,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'DM Mono', monospace;
  --radius-xs: 10px; --radius-sm: 14px; --radius-md: 20px;
  --radius-lg: 28px; --radius-xl: 36px; --radius-pill: 999px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

[data-theme="dark"] {
  --bg-base: #000; --bg-elevated: #111;
  --bg-glass: rgba(255,255,255,0.06); --bg-glass-heavy: rgba(255,255,255,0.10);
  --bg-card: #101012; --bg-card-border: rgba(255,255,255,0.10);
  --text-primary: #eef0f4; --text-secondary: #a0a8b8; --text-tertiary: #6b7588;
  --accent: #5aa8ff; --accent-soft: rgba(90,168,255,0.12); --accent-glow: rgba(90,168,255,0.22);
  --green: #3ee097; --green-soft: rgba(62,224,151,0.12);
  --orange: #ffaa55; --orange-soft: rgba(255,170,85,0.12);
  --red: #ff7878; --red-soft: rgba(255,120,120,0.12);
  --cyan: #18c8ee; --cyan-soft: rgba(24,200,238,0.12);
  --border: rgba(255,255,255,0.10); --border-hover: rgba(255,255,255,0.18);
  --shadow-card: 0 2px 20px rgba(0,0,0,0.6);
  --shadow-elevated: 0 8px 40px rgba(0,0,0,0.7);
  --shadow-card-color: rgba(0,0,0,0.5); --glass-border: rgba(255,255,255,0.10);
  --nav-bg: rgba(8,8,12,0.92); --demo-bar-bg: #0a0a0e; --demo-url-bg: #161619;
  --code-bg: rgba(255,255,255,0.08);
  --input-bg: #0a0a0e; --input-border: rgba(255,255,255,0.12);
  --orb1: rgba(90,168,255,0.10);
  --orb2: rgba(62,224,151,0.07); --orb3: rgba(24,200,238,0.08);
  color-scheme: dark;
}

[data-theme="light"] {
  --bg-base: #f0f3f8; --bg-elevated: #fff;
  --bg-glass: rgba(255,255,255,0.72); --bg-glass-heavy: rgba(255,255,255,0.88);
  --bg-card: rgba(255,255,255,0.88); --bg-card-border: rgba(0,0,0,0.06);
  --text-primary: #111827; --text-secondary: #4b5563; --text-tertiary: #9ca3af;
  --accent: #2563eb; --accent-soft: rgba(37,99,235,0.08); --accent-glow: rgba(37,99,235,0.18);
  --green: #059669; --green-soft: rgba(5,150,105,0.08);
  --orange: #d97706; --orange-soft: rgba(217,119,6,0.08);
  --red: #dc2626; --red-soft: rgba(220,38,38,0.08);
  --cyan: #0891b2; --cyan-soft: rgba(8,145,178,0.08);
  --border: rgba(0,0,0,0.06); --border-hover: rgba(0,0,0,0.12);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-elevated: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-card-color: rgba(37,99,235,0.06); --glass-border: rgba(255,255,255,0.8);
  --nav-bg: rgba(255,255,255,0.78); --demo-bar-bg: #f8fafc; --demo-url-bg: #eef2f7;
  --code-bg: rgba(37,99,235,0.06);
  --input-bg: #f8fafc; --input-border: rgba(0,0,0,0.08);
  --orb1: rgba(37,99,235,0.12); --orb2: rgba(5,150,105,0.10); --orb3: rgba(217,119,6,0.08);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text-primary); background-color: var(--bg-base); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; padding-left: var(--safe-left); padding-right: var(--safe-right); }
img, svg { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: .85; }

/* AMBIENT BACKGROUNDS */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.ambient::before, .ambient::after { content: ''; position: absolute; border-radius: 50%; }
.ambient::before { width: 60vw; height: 60vw; max-width: 650px; max-height: 650px; top: -10%; left: -5%; background: radial-gradient(circle, var(--orb1) 0%, transparent 70%); }
.ambient::after { width: 50vw; height: 50vw; max-width: 500px; max-height: 500px; bottom: 5%; right: -5%; background: radial-gradient(circle, var(--orb2) 0%, transparent 70%); }
.ambient-extra { position: fixed; z-index: 0; pointer-events: none; width: 45vw; height: 45vw; max-width: 400px; max-height: 400px; top: 45%; left: 35%; background: radial-gradient(circle, var(--orb3) 0%, transparent 70%); border-radius: 50%; }

.wrapper { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); width: 100%; }

/* NAVIGATION */
.nav { position: fixed; top: calc(12px + var(--safe-top)); left: 50%; transform: translateX(-50%); width: calc(100% - 2rem); max-width: 1120px; z-index: 100; padding: .65rem .8rem; -webkit-backdrop-filter: blur(20px) saturate(1.4); backdrop-filter: blur(20px) saturate(1.4); background: var(--nav-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-elevated); }
.nav__inner { display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.05rem; color: var(--text-primary); text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.logo-mark { width: 34px; height: 34px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--accent), var(--cyan)); box-shadow: 0 4px 16px var(--accent-glow); flex-shrink: 0; }
.logo-mark svg { width: 20px; height: 20px; color: #fff; }
.nav-right { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.theme-toggle { position: relative; width: 56px; height: 30px; border-radius: var(--radius-pill); background: var(--bg-glass-heavy); border: 1px solid var(--border); cursor: pointer; flex-shrink: 0; -webkit-tap-highlight-color: transparent; }
.theme-toggle::before { content: ''; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); box-shadow: 0 2px 8px var(--accent-glow); transition: transform .45s var(--ease-bounce), background .4s, box-shadow .4s; }
[data-theme="light"] .theme-toggle { background: #fef3c7; border-color: rgba(217,119,6,0.2); }
[data-theme="light"] .theme-toggle::before { transform: translateX(26px); background: var(--orange); box-shadow: 0 2px 10px rgba(217,119,6,0.3); }
.theme-icon { position: absolute; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; transition: opacity .3s; }
.theme-icon--moon { left: 8px; opacity: 1; color: var(--accent); }
.theme-icon--sun  { right: 8px; opacity: .35; color: var(--orange); }
[data-theme="light"] .theme-icon--moon { opacity: .3; }
[data-theme="light"] .theme-icon--sun  { opacity: 1; }
.nav-link { padding: .5rem .85rem; border-radius: var(--radius-xs); color: var(--text-secondary); font-weight: 600; font-size: .88rem; transition: all .2s; white-space: nowrap; }
.nav-link:hover { color: var(--text-primary); background: var(--bg-glass); }
.menu-toggle { display: none; width: 36px; height: 36px; border-radius: var(--radius-xs); border: 1px solid var(--border); background: var(--bg-glass); cursor: pointer; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent; }
.menu-toggle svg { width: 18px; height: 18px; color: var(--text-secondary); }
.nav-links-desktop { display: flex; align-items: center; gap: .25rem; }
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99; background-color: var(--bg-base); padding: calc(5rem + var(--safe-top)) 1.5rem calc(2rem + var(--safe-bottom)); flex-direction: column; align-items: center; justify-content: center; gap: 1rem; opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); padding: .8rem 1.5rem; border-radius: var(--radius-sm); width: 100%; max-width: 300px; text-align: center; }

/* COMMON HERO COMPONENTS */
.hero { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; padding: clamp(6rem, 12vw, 8rem) 0 clamp(2rem, 5vw, 3rem); padding-top: calc(clamp(6rem, 12vw, 8rem) + var(--safe-top)); text-align: center; }
.hero__inner { max-width: 780px; margin: 0 auto; width: 100%; }
.hero-chip { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .85rem; border-radius: var(--radius-pill); background: var(--bg-card); border: 1px solid var(--border); font-size: clamp(.72rem, 1.8vw, .82rem); color: var(--text-secondary); font-weight: 600; animation: fadeUp .7s var(--ease) both; }
.chip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; background: var(--green); box-shadow: 0 0 8px var(--green); animation: dotPulse 2s ease-in-out infinite; }
.hero h1 { font-size: clamp(1.8rem, 5vw + .5rem, 4.2rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.035em; margin: 1rem 0 .8rem; animation: fadeUp .7s var(--ease) .1s both; }
.grad { background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 45%, var(--green) 100%); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: gradMove 5s ease-in-out infinite; display: inline-block; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.hero p { font-size: clamp(.95rem, 2vw, 1.12rem); color: var(--text-secondary); max-width: 560px; margin: 0 auto clamp(1.2rem, 3vw, 2rem); line-height: 1.75; animation: fadeUp .7s var(--ease) .2s both; }

@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.7)} }
@keyframes gradMove { 0%,100%{background-position:0% 50%}50%{background-position:100% 50%} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)} }
@keyframes revealFB { to { opacity:1; transform:translateY(0); } }

.card-base { border-radius: var(--radius-md); border: 1px solid var(--bg-card-border); background: var(--bg-card); transition: all .4s var(--ease); }
.card-base:hover { transform: translateY(-4px); border-color: var(--border-hover); box-shadow: var(--shadow-card); }

/* MAIN HOMEPAGE SECTIONS */
.store-btns { display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: clamp(1rem, 3vw, 2rem); animation: fadeUp .7s var(--ease) .35s both; }
.store-btn { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; padding: .85rem 1.8rem; border-radius: var(--radius-md); border: 1px solid var(--border); background: var(--bg-card); color: var(--text-primary); font-weight: 600; font-size: .95rem; cursor: pointer; text-decoration: none; transition: all .35s var(--ease); min-width: 280px; }
.store-btn:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 8px 30px var(--shadow-card-color); }
.store-btn__icon { width: 28px; height: 28px; flex-shrink: 0; border-radius: 6px; object-fit: contain; }
.store-btn__text { display: flex; flex-direction: column; align-items: center; text-align: center; line-height: 1.2; }
.store-btn__label { font-size: .68rem; font-weight: 500; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: .04em; }
.store-btn__name { font-size: 1rem; font-weight: 800; }
.trust-row { display: flex; justify-content: center; gap: .55rem; flex-wrap: wrap; animation: fadeUp .7s var(--ease) .5s both; }
.trust-pill { display: inline-flex; align-items: center; gap: .35rem; padding: .3rem .65rem; border-radius: var(--radius-pill); background: var(--bg-card); border: 1px solid var(--border); font-size: clamp(.7rem, 1.6vw, .78rem); color: var(--text-secondary); font-weight: 600; white-space: nowrap; }
.trust-pill svg { width: 13px; height: 13px; flex-shrink: 0; }

.hero-visual { margin-top: clamp(1.5rem, 4vw, 3rem); animation: fadeUp .9s var(--ease) .65s both; }
.demo-card { max-width: 600px; margin: 0 auto; border-radius: var(--radius-lg); border: 1px solid var(--glass-border); background: var(--bg-card); overflow: hidden; box-shadow: var(--shadow-elevated); }
.demo-toggle-row { display: flex; align-items: center; justify-content: center; gap: .75rem; padding: .75rem 1rem; border-bottom: 1px solid var(--border); }
.demo-toggle-label { font-size: .78rem; font-weight: 600; color: var(--text-tertiary); transition: color .3s; }
.demo-toggle-label.active { color: var(--text-primary); }
.demo-toggle-label--off { color: var(--red); }
.demo-toggle-label--on.active { color: var(--green); }
.demo-switch { position: relative; width: 44px; height: 24px; border-radius: 12px; background: var(--red); border: none; cursor: pointer; -webkit-tap-highlight-color: transparent; transition: background .3s; flex-shrink: 0; forced-color-adjust: none; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
.demo-switch.on { background: var(--green); }
.demo-switch::before { content: ''; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .3s var(--ease-bounce); }
.demo-switch.on::before { transform: translateX(20px); }
.demo-bar { display: flex; align-items: center; gap: .5rem; padding: .65rem clamp(.6rem, 2vw, 1rem); background: var(--demo-bar-bg); border-bottom: 1px solid var(--border); }
.demo-dots { display: flex; gap: 5px; flex-shrink: 0; }
.demo-dots span { width: 9px; height: 9px; border-radius: 50%; }
.demo-dots span:nth-child(1) { background: var(--red); opacity:.6; }
.demo-dots span:nth-child(2) { background: var(--orange); opacity:.6; }
.demo-dots span:nth-child(3) { background: var(--green); opacity:.6; }
.demo-url { flex: 1; min-width: 0; margin-left: .4rem; padding: .35rem .7rem; border-radius: 8px; background: var(--demo-url-bg); font-family: var(--mono); font-size: clamp(.62rem, 1.4vw, .73rem); color: var(--text-secondary); overflow: hidden; display: flex; align-items: center; }
.demo-url .clean { color: var(--text-primary); flex-shrink: 0; white-space: nowrap; }
.demo-url .tracking { color: var(--red); display: inline-block !important; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 500px; opacity: 1; position: relative; text-decoration: none; transition: max-width 0.6s var(--ease) 0.5s, opacity 0.4s ease 0.5s; }
.demo-url .tracking::after { content: ''; position: absolute; left: 0; top: 50%; width: 0%; height: 1.5px; background-color: var(--red); transition: width 0.3s ease; }
.demo-url .tracking.struck::after { width: 100%; }
.demo-url .tracking.struck { max-width: 0; opacity: 0; }
.demo-body { padding: clamp(.8rem, 2.5vw, 1.4rem) clamp(.8rem, 2.5vw, 1.2rem); display: flex; flex-direction: column; gap: .7rem; min-height: 160px; }
.demo-line { display: flex; align-items: center; gap: .55rem; font-family: var(--mono); font-size: clamp(.7rem, 1.5vw, .78rem); }
.demo-ico { width: 16px; height: 16px; flex-shrink: 0; }
.demo-text { color: var(--text-secondary); }
.demo-text strong { color: var(--text-primary); font-weight: 600; }

.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto clamp(1.5rem, 4vw, 3rem); }
.section-header h2 { font-size: clamp(1.4rem, 2.5vw + .5rem, 2.5rem); font-weight: 900; margin-bottom: .5rem; letter-spacing: -0.02em; }
.section-header p { color: var(--text-secondary); font-size: clamp(.88rem, 1.8vw, 1rem); }
.awareness-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-card { position: relative; padding: clamp(1rem, 2.5vw, 1.6rem) clamp(.8rem, 2vw, 1.2rem); text-align: center; overflow: hidden; }
.stat-card__icon { width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: .8rem; }
.stat-card__icon svg { width: 20px; height: 20px; }
.stat-card__number { font-size: clamp(1.5rem, 2.5vw, 2.4rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: .25rem; }
.stat-card__label { color: var(--text-secondary); font-size: clamp(.75rem, 1.5vw, .82rem); font-weight: 500; line-height: 1.4; }
.awareness-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.aware-card { padding: clamp(1rem, 2.5vw, 1.5rem); }
.aware-card h3 { font-size: clamp(.95rem, 1.8vw, 1.05rem); font-weight: 700; margin-bottom: .4rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.aware-card p { color: var(--text-secondary); font-size: clamp(.82rem, 1.5vw, .88rem); line-height: 1.7; }
.aware-tag { display: inline-flex; padding: .2rem .5rem; border-radius: 6px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.aware-card code { font-family: var(--mono); font-size: .82rem; padding: .1rem .35rem; border-radius: 5px; background: var(--code-bg); color: var(--accent); word-break: break-all; }

.features-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.features-wrap > .feat { flex: 1 1 calc(33.333% - 1rem); min-width: 280px; max-width: calc(33.333% - 1rem); }
.feat { position: relative; padding: clamp(1.2rem, 2.5vw, 1.6rem); overflow: hidden; }
.feat__icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: .9rem; border: 1px solid var(--border); background: var(--bg-elevated); }
.feat__icon svg { width: 20px; height: 20px; }
.feat h3 { font-size: clamp(.95rem, 1.6vw, 1.05rem); font-weight: 700; margin-bottom: .35rem; }
.feat p { color: var(--text-secondary); font-size: clamp(.82rem, 1.4vw, .88rem); line-height: 1.65; }

.steps, .how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: s; }
.step, .how-card { position: relative; padding: 2rem clamp(1rem, 2vw, 1.4rem) clamp(1rem, 2vw, 1.4rem); counter-increment: s; }
.step::before, .how-card::before { content: counter(s); position: absolute; top: -14px; left: clamp(1rem, 2vw, 1.4rem); width: 28px; height: 28px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .8rem; background: linear-gradient(135deg, var(--accent), var(--cyan)); color: #fff; box-shadow: 0 4px 12px var(--accent-glow); }
.step h3, .how-card h3 { font-size: clamp(.92rem, 1.6vw, 1.02rem); font-weight: 700; margin-bottom: .35rem; }
.step p, .how-card p { color: var(--text-secondary); font-size: clamp(.82rem, 1.4vw, .86rem); line-height: 1.65; }

.cta-box { text-align: center; padding: clamp(2rem, 5vw, 3.5rem) clamp(1.2rem, 4vw, 2rem); border-radius: var(--radius-xl); border: 1px solid var(--border); background: var(--bg-card); overflow: hidden; box-shadow: var(--shadow-card); }
.cta-box h2 { font-size: clamp(1.3rem, 2.5vw + .5rem, 2.2rem); font-weight: 900; margin-bottom: .5rem; }
.cta-box p { color: var(--text-secondary); font-size: clamp(.88rem, 1.8vw, 1rem); margin-bottom: 1.8rem; }
.cta-box .store-btns { margin-bottom: 0; animation: none; }
.cta-btn { display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 2rem; border-radius: var(--radius-md); border: 1px solid var(--border); background: var(--bg-card); color: var(--text-primary); font-weight: 700; font-size: .95rem; cursor: pointer; text-decoration: none; transition: all .35s var(--ease); font-family: var(--font); }
.cta-btn:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 8px 30px var(--shadow-card-color); }
.cta-btn svg { width: 20px; height: 20px; }

/* CLEANER SPECIFIC SECTIONS */
.cleaner-card { max-width: 680px; margin: 0 auto; border-radius: var(--radius-lg); border: 1px solid var(--glass-border); background: var(--bg-card); overflow: hidden; box-shadow: var(--shadow-elevated); animation: fadeUp .9s var(--ease) .35s both; transition: border-color .3s; }
.cleaner-card.has-results { border-color: var(--green); box-shadow: var(--shadow-elevated), 0 0 30px rgba(62,224,151,0.08); }
.cleaner-card.no-trackers { border-color: var(--accent); box-shadow: var(--shadow-elevated), 0 0 30px rgba(90,168,255,0.08); }
.address-bar { display: flex; align-items: center; gap: .5rem; padding: .65rem clamp(.6rem, 2vw, 1rem); background: var(--input-bg); border-bottom: 1px solid var(--border); }
.address-bar__dots { display: flex; gap: 5px; flex-shrink: 0; }
.address-bar__dots span { width: 9px; height: 9px; border-radius: 50%; }
.address-bar__dots span:nth-child(1) { background: var(--red); opacity:.6; }
.address-bar__dots span:nth-child(2) { background: var(--orange); opacity:.6; }
.address-bar__dots span:nth-child(3) { background: var(--green); opacity:.6; }
.address-bar__lock { flex-shrink: 0; color: var(--text-tertiary); display: flex; transition: color .3s; }
.address-bar__lock.secure { color: var(--green); }
.address-bar__lock svg { width: 14px; height: 14px; }
.address-bar__input-wrap { flex: 1; min-width: 0; display: flex; align-items: center; padding: .35rem .7rem; border-radius: 8px; background: var(--bg-elevated); border: 1px solid var(--input-border); transition: border-color .3s, box-shadow .3s; }
.address-bar__input-wrap:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.address-bar__input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-family: var(--mono); font-size: clamp(.72rem, 1.5vw, .82rem); color: var(--text-primary); line-height: 1.5; }
.address-bar__input::placeholder { color: var(--text-tertiary); }
.address-bar__clear { flex-shrink: 0; display: none; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 6px; border: none; cursor: pointer; background: transparent; color: var(--text-tertiary); transition: all .2s; -webkit-tap-highlight-color: transparent; margin-left: .25rem; }
.address-bar__clear.visible { display: flex; }
.address-bar__clear:hover { background: var(--red-soft); color: var(--red); }
.address-bar__clear svg { width: 13px; height: 13px; }
.loading-state { padding: 1.5rem; text-align: center; color: var(--text-tertiary); font-size: .85rem; }
.loading-state .spinner { display: inline-block; width: 20px; height: 20px; border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin .6s linear infinite; margin-bottom: .5rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.stats-row { display: none; padding: .7rem clamp(.8rem, 2vw, 1.2rem); border-bottom: 1px solid var(--border); gap: .6rem; flex-wrap: wrap; align-items: center; }
.stats-row.visible { display: flex; }
.stat-chip { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .65rem; border-radius: var(--radius-pill); font-size: clamp(.7rem, 1.4vw, .78rem); font-weight: 700; white-space: nowrap; }
.stat-chip svg { width: 13px; height: 13px; flex-shrink: 0; }
.stat-chip--trackers { background: var(--red-soft); color: var(--red); }
.stat-chip--green { background: var(--green-soft); color: var(--green); }
.stat-chip--bytes { background: var(--cyan-soft); color: var(--cyan); }
.stat-chip--accent { background: var(--accent-soft); color: var(--accent); }
.results-body { display: none; max-height: 420px; overflow-y: auto; }
.results-body.visible { display: block; }
.results-body::-webkit-scrollbar { width: 6px; }
.results-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.result-section { border-bottom: 1px solid var(--border); }
.result-section:last-child { border-bottom: none; }
.result-section__header { display: flex; align-items: center; gap: .55rem; padding: .7rem clamp(.8rem, 2vw, 1.2rem); cursor: pointer; user-select: none; -webkit-tap-highlight-color: transparent; transition: background .2s; }
.result-section__header:hover { background: var(--bg-glass); }
.result-section__chevron { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-tertiary); transition: transform .3s var(--ease); }
.result-section.open .result-section__chevron { transform: rotate(90deg); }
.result-section__icon { width: 16px; height: 16px; flex-shrink: 0; }
.result-section__title { font-size: clamp(.78rem, 1.5vw, .85rem); font-weight: 700; flex: 1; }
.result-section__count { padding: .15rem .45rem; border-radius: 6px; font-size: .7rem; font-weight: 800; background: var(--red-soft); color: var(--red); }
.result-section__body { display: none; padding: 0 clamp(.8rem, 2vw, 1.2rem) .7rem; }
.result-section.open .result-section__body { display: block; }
.param-item { display: flex; align-items: flex-start; gap: .5rem; padding: .45rem 0; border-bottom: 1px solid var(--border); animation: paramIn .3s var(--ease) both; }
.param-item:last-child { border-bottom: none; }
@keyframes paramIn { from { opacity:0; transform:translateX(-8px); } to { opacity:1; transform:translateX(0); } }
.param-item__name { font-family: var(--mono); font-size: clamp(.72rem, 1.3vw, .78rem); color: var(--red); font-weight: 500; flex-shrink: 0; min-width: 90px; padding: .12rem .4rem; background: var(--red-soft); border-radius: 5px; word-break: break-all; }
.param-item__value { font-family: var(--mono); font-size: clamp(.68rem, 1.2vw, .72rem); color: var(--text-tertiary); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.param-item__reason { font-size: clamp(.7rem, 1.3vw, .76rem); color: var(--text-secondary); flex-shrink: 0; padding: .12rem .4rem; border-radius: 5px; background: var(--bg-glass-heavy); white-space: nowrap; }
.clean-url-row { display: none; padding: .7rem clamp(.8rem, 2vw, 1.2rem); background: var(--bg-glass); border-top: 1px solid var(--border); }
.clean-url-row.visible { display: block; }
.clean-url-row__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .4rem; }
.clean-url-row__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--green); }
.clean-url-row__copy { display: inline-flex; align-items: center; gap: .35rem; padding: .3rem .7rem; border-radius: 8px; border: 1px solid var(--green); background: var(--green-soft); color: var(--green); cursor: pointer; font-family: var(--font); font-size: .75rem; font-weight: 700; transition: all .25s var(--ease); -webkit-tap-highlight-color: transparent; }
.clean-url-row__copy:hover { background: var(--green); color: #fff; }
.clean-url-row__copy.copied { background: var(--green); color: #fff; }
.clean-url-row__copy svg { width: 14px; height: 14px; }
.clean-url-row__url { font-family: var(--mono); font-size: clamp(.72rem, 1.4vw, .8rem); color: var(--text-primary); word-break: break-all; line-height: 1.5; }
.unwrap-row { display: none; padding: .55rem clamp(.8rem, 2vw, 1.2rem); background: var(--cyan-soft); border-top: 1px solid var(--border); align-items: flex-start; gap: .45rem; font-size: clamp(.72rem, 1.3vw, .78rem); color: var(--cyan); font-weight: 600; line-height: 1.5; }
.unwrap-row.visible { display: flex; }
.empty-state { padding: clamp(1.2rem, 3vw, 2rem) clamp(.8rem, 2vw, 1.2rem); text-align: center; color: var(--text-tertiary); }
.empty-state svg { width: 40px; height: 40px; margin-bottom: .6rem; opacity: .4; }
.empty-state p { font-size: clamp(.82rem, 1.5vw, .88rem); }

/* PRIVACY POLICY SPECIFIC */
.pp-hero { padding: clamp(6rem, 12vw, 7.5rem) 0 clamp(1rem, 3vw, 1.5rem); padding-top: calc(clamp(6rem, 12vw, 7.5rem) + var(--safe-top)); text-align: center; }
.pp-hero h1 { font-size: clamp(1.6rem, 3.5vw + .5rem, 3rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: .4rem; animation: fadeUp .7s var(--ease) both; }
.pp-hero .badge { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .7rem; border-radius: var(--radius-pill); background: var(--bg-card); border: 1px solid var(--border); font-size: clamp(.72rem, 1.6vw, .82rem); color: var(--text-secondary); font-weight: 600; margin-bottom: 1rem; animation: fadeUp .7s var(--ease) .05s both; }
.pp-hero .sub { color: var(--text-secondary); font-size: clamp(.9rem, 1.8vw, 1.05rem); animation: fadeUp .7s var(--ease) .15s both; }
.pp-content { max-width: 740px; margin: 0 auto; padding: clamp(1rem, 3vw, 1.5rem) clamp(.75rem, 3vw, 1rem) clamp(2rem, 5vw, 4rem); }
.pp-block { margin-bottom: 1.2rem; padding: clamp(1rem, 3vw, 1.5rem); border-radius: var(--radius-md); border: 1px solid var(--bg-card-border); background: var(--bg-card); transition: border-color .35s, box-shadow .35s; }
.pp-block:hover { border-color: var(--border-hover); box-shadow: var(--shadow-card); }
.pp-block h3 { font-size: clamp(.95rem, 1.8vw, 1.1rem); font-weight: 700; margin-bottom: .5rem; display: flex; align-items: center; gap: .6rem; }
.pp-block h3 .num { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(135deg, var(--accent), var(--cyan)); color: #fff; font-size: .75rem; font-weight: 800; flex-shrink: 0; }
.pp-block p, .pp-block ul { color: var(--text-secondary); font-size: clamp(.85rem, 1.5vw, .94rem); line-height: 1.75; }
.pp-block ul { padding-left: 1.2rem; margin-top: .5rem; }
.pp-block li { margin-bottom: .4rem; }
.pp-block li strong { color: var(--text-primary); }
.pp-note { max-width: 740px; margin: 1rem auto 0; padding: clamp(.8rem, 2.5vw, 1.2rem) clamp(1rem, 3vw, 1.5rem); border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--accent-soft); color: var(--text-secondary); font-size: clamp(.84rem, 1.5vw, .92rem); line-height: 1.7; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 1.8rem 0; padding-bottom: calc(1.8rem + var(--safe-bottom)); margin-top: auto; display: flex; justify-content: space-between; align-items: center; color: var(--text-tertiary); font-size: .85rem; flex-wrap: wrap; gap: .8rem; }
.footer-links a { color: var(--text-tertiary); }
.footer-links a:hover { color: var(--text-primary); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal { animation: revealFB 0s 2.5s forwards; }
.reveal.visible { animation: none; }

/* RESPONSIVE */
@media (min-width:1440px) { .container { max-width: 1200px; } }
@media (max-width:1100px) { .nav-link { padding:.45rem .6rem; font-size:.82rem; } }
@media (max-width:900px) {
  .steps, .how-grid { grid-template-columns: repeat(2,1fr); }
  .steps .step:last-child:nth-child(odd), .how-grid .how-card:last-child:nth-child(odd) { grid-column:1/-1; max-width:50%; margin:0 auto; }
  .awareness-grid { grid-template-columns: repeat(2,1fr); }
  .awareness-detail { grid-template-columns: 1fr; }
  .nav-links-desktop { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .features-wrap > .feat { flex: 1 1 calc(50% - 1rem); max-width: calc(50% - 1rem); }
}
@media (max-width:768px) {
  .hero { min-height:auto; padding-top:calc(7rem + var(--safe-top)); padding-bottom:2rem; }
  .hero h1 br { display:none; }
  .store-btn { padding:.75rem 1.2rem; min-width:240px; }
  .cta-box .store-btn { width:100%; max-width:340px; }
  .steps .step:last-child:nth-child(odd) { max-width:100%; }
}
@media (max-width:600px) {
  .nav { top:calc(8px + var(--safe-top)); width:calc(100% - 1rem); border-radius:var(--radius-md); padding:.5rem .65rem; }
  .brand { font-size:.95rem; gap:.45rem; }
  .logo-mark { width:30px; height:30px; border-radius:9px; }
  .logo-mark svg { width:17px; height:17px; }
  .hero { padding-top:calc(5.5rem + var(--safe-top)); }
  .store-btn { width:100%; max-width:340px; min-width:0; }
  .steps, .how-grid { grid-template-columns:1fr; }
  .steps .step:last-child:nth-child(odd), .how-grid .how-card:last-child:nth-child(odd) { max-width:100%; }
  .awareness-grid { grid-template-columns:1fr 1fr; }
  footer { justify-content:center; text-align:center; }
  .param-item { flex-wrap:wrap; } 
  .param-item__value { width:100%; flex:unset; } 
  .features-wrap > .feat { flex: 1 1 100%; max-width: 100%; }
}
@media (max-width:380px) {
  .brand span:not(.logo-mark) { font-size:.88rem; }
  .awareness-grid { grid-template-columns:1fr; }
  .trust-pill { padding:.25rem .5rem; font-size:.68rem; }
  .store-btn { padding:.7rem 1rem; gap:.6rem; }
  .store-btn__name { font-size:.9rem; }
  .pp-hero h1 { font-size:1.5rem; }
}
@media (hover:none) and (pointer:coarse) {
  .card-base:hover, .pp-block:hover, .store-btn:hover, .cta-btn:hover { transform:none; }
  .theme-toggle, .nav-btn { min-height:44px; }
}
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:0.01ms!important; transition-duration:0.01ms!important; }
  .reveal { opacity:1; transform:none; animation:none; }
  .demo-line { opacity:1; }
}
@media (max-height:500px) and (orientation:landscape) {
  .hero { min-height:auto; padding:calc(5rem + var(--safe-top)) 0 2rem; }
  .section { padding:2.5rem 0; }
  .pp-hero { padding-top:calc(5rem + var(--safe-top)); }
}
