/* Minimal black & white glassmorphism for Social Media Blocker */
:root {
  --bg: #0a0a0a;
  --bg-soft: #0f0f10;
  --text: #f5f5f5;
  --muted: #bdbdbd;
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.12);
  --accent: #ffffff;
  --green: #2ecc71;
  --shadow: 0 10px 30px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1000px 600px at 80% -10%, #1a1a1a, transparent),
              radial-gradient(800px 500px at -10% 20%, #131313, transparent),
              var(--bg);
}

/* Layout */
.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}
.section { padding: 80px 0; }
.section-cta { padding: 96px 0; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  overflow: visible;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; position: relative; z-index: 1; }
.site-header::before { content: ""; position: absolute; inset: 0; background: rgba(10, 10, 10, 0.75); backdrop-filter: saturate(200%) blur(20px); -webkit-backdrop-filter: saturate(200%) blur(20px); pointer-events: none; }
.logo { color: var(--text); text-decoration: none; font-weight: 600; letter-spacing: 0.2px; }
.nav a { color: var(--muted); text-decoration: none; margin: 0 12px; font-size: 14px; }
.nav a:hover { color: var(--text); }

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(15, 15, 16, 0.6);
  min-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  padding: 8px 0 8px;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 2000;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-content a {
  color: var(--muted);
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: all 0.2s ease;
  margin: 0;
  border-radius: 4px;
}

.dropdown-content a:hover {
  color: var(--text);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Make the logo cursor pointer to indicate it's clickable */
.logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

/* Add a small arrow to indicate dropdown */
.logo::after {
  content: '▼';
  font-size: 8px;
  margin-left: 6px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.dropdown:hover .logo::after {
  transform: rotate(180deg);
}

/* Offset page content below fixed header */
body { padding-top: 74px; }

/* Ensure header background covers the full hotbar, including padding */
.site-header { min-height: 64px; }

/* Hero */
.hero { padding: 96px 0 36px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; padding: 32px; }
.hero-copy h1 { margin: 0 0 14px; font-size: 52px; line-height: 1.05; letter-spacing: -0.5px; }
.lede { color: var(--muted); margin: 0 0 22px; font-size: 18px; }
.badges { list-style: none; padding: 0; margin: 18px 0 0; display: flex; gap: 14px; color: var(--muted); font-size: 13px; }

.device-card { padding: 20px; box-shadow: var(--shadow); }
.device-status { display:flex; align-items:center; gap:8px; color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.dot { display:inline-block; width:8px; height:8px; border-radius: 50%; background: var(--muted); }
.dot-green { background: var(--green); }
.block-list { display: grid; gap: 10px; }
.block-list .row { display:flex; align-items:center; justify-content: space-between; padding: 12px 14px; border: 1px solid var(--stroke); border-radius: 12px; background: rgba(255,255,255,0.03); }
.app { color: var(--text); }
.pill { font-size: 12px; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--stroke); color: var(--text); background: rgba(255,255,255,0.06); }
.pill-muted { color: var(--muted); }

/* Features */
.features-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.card { padding: 22px; border-radius: 16px; min-height: 140px; }
.card h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: 0.2px; }
.card p { margin: 0; color: var(--muted); }

/* Feature icons */
.features-detailed .card { display: flex; gap: 10px; flex-direction: column; align-items: flex-start; }
.with-icons .card { display: flex; gap: 10px; flex-direction: column; align-items: flex-start; }
.feature-icon { width: 28px; height: 28px; border-radius: 10px; display: inline-block; background: rgba(255,255,255,0.08); border: 1px solid var(--stroke); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04); position: relative; }
.feature-icon::before { content: ""; position: absolute; inset: 5px; background-repeat: no-repeat; background-position: center; background-size: contain; opacity: 0.96; }
.with-icons .feature-icon, .features-detailed .feature-icon { margin-bottom: 6px; }

/* Remove left border line on feature cards */
.features-grid .card { border-left: none; }

/* NFC icon */
.icon-nfc::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='3' width='18' height='18' rx='3' ry='3' fill='none' stroke='%23fff' stroke-width='2'/><path d='M8 12a4 4 0 0 1 8 0v2M10 12a2 2 0 0 1 4 0v2' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'/></svg>"); }

/* Apps icon (grid) */
.icon-apps::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='4' y='4' width='6' height='6' rx='1.5' ry='1.5' fill='none' stroke='%23fff' stroke-width='2'/><rect x='14' y='4' width='6' height='6' rx='1.5' ry='1.5' fill='none' stroke='%23fff' stroke-width='2'/><rect x='4' y='14' width='6' height='6' rx='1.5' ry='1.5' fill='none' stroke='%23fff' stroke-width='2'/><rect x='14' y='14' width='6' height='6' rx='1.5' ry='1.5' fill='none' stroke='%23fff' stroke-width='2'/></svg>"); }

/* Web icon (globe) */
.icon-web::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='9' fill='none' stroke='%23fff' stroke-width='2'/><path d='M3 12h18M12 3a16 16 0 0 1 0 18M12 3a16 16 0 0 0 0 18' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'/></svg>"); }

/* Modes icon (toggle) */
.icon-modes::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='8' width='18' height='8' rx='4' ry='4' fill='none' stroke='%23fff' stroke-width='2'/><circle cx='9' cy='12' r='3' fill='%23fff'/></svg>"); }

/* Bypass icon (shield check) */
.icon-bypass::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 3l7 3v5c0 5-3.5 8.5-7 10-3.5-1.5-7-5-7-10V6l7-3z' fill='none' stroke='%23fff' stroke-width='2'/><path d='M8.5 12.5l2.5 2.5 4.5-4.5' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'/></svg>"); }

/* Insights icon (chart) */
.icon-insights::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 20V10M10 20V6M16 20v-8M20 20V4' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'/></svg>"); }

/* First features row icons */
/* Schedule (calendar + clock) */
.icon-schedule::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='5' width='18' height='16' rx='2' ry='2' fill='none' stroke='%23fff' stroke-width='2'/><path d='M7 3v4M17 3v4M3 9h18' stroke='%23fff' stroke-width='2'/><circle cx='14' cy='15' r='3' fill='none' stroke='%23fff' stroke-width='2'/><path d='M14 14v2l1 1' stroke='%23fff' stroke-width='2' stroke-linecap='round'/></svg>"); }

/* Cross‑platform (devices) */
.icon-cross::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='2' y='6' width='12' height='10' rx='2' ry='2' fill='none' stroke='%23fff' stroke-width='2'/><rect x='16' y='4' width='6' height='12' rx='1.5' ry='1.5' fill='none' stroke='%23fff' stroke-width='2'/><path d='M6 18h4' stroke='%23fff' stroke-width='2' stroke-linecap='round'/></svg>"); }

/* Gentle friction (hourglass) */
.icon-friction::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 3h12M6 21h12M7 7c0 2 2 3 5 5 3-2 5-3 5-5M7 17c0-2 2-3 5-5 3 2 5 3 5 5' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'/></svg>"); }

/* Privacy‑first (lock) */
.icon-privacy::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='4' y='11' width='16' height='9' rx='2' ry='2' fill='none' stroke='%23fff' stroke-width='2'/><path d='M8 11V8a4 4 0 0 1 8 0v3' fill='none' stroke='%23fff' stroke-width='2'/><circle cx='12' cy='15' r='1' fill='%23fff'/></svg>"); }

/* How */
.how-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); padding: 20px; }
.step { border-radius: 14px; padding: 18px; border: 1px solid var(--stroke); background: rgba(255,255,255,0.03); }
.step-num { display:inline-block; font-weight: 600; width: 28px; height: 28px; border-radius: 999px; text-align:center; line-height: 28px; background: rgba(255,255,255,0.08); margin-bottom: 8px; }

/* CTA */
.cta-box { display: grid; grid-template-columns: 1.5fr auto; align-items: center; gap: 24px; padding: 28px; }
.cta-copy h2 { margin: 0 0 8px; font-size: 32px; }
.cta-copy p { margin: 0; color: var(--muted); }
.cta-actions { display:flex; gap: 12px; }

.faq { display: grid; gap: 12px; }
.faq-item { border-radius: 16px; border: 1px solid var(--stroke); background: rgba(255,255,255,0.03); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 12px; padding: 16px 18px; font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; margin-left: auto; width: 16px; height: 16px; border: 1px solid var(--stroke); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04); }
.faq-item summary::before { content: ""; width: 8px; height: 8px; border-right: 2px solid var(--text); border-bottom: 2px solid var(--text); transform: rotate(-45deg); transition: transform .2s ease; margin-right: 6px; opacity: 0.9; }
.faq-item[open] summary::before { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 18px 16px 18px; color: var(--muted); line-height: 1.6; }
.faq-item:hover { background: rgba(255,255,255,0.045); }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; margin-top: 40px; background: rgba(10,10,10,0.5); backdrop-filter: blur(6px); }
.footer-inner { display:flex; align-items:center; justify-content: space-between; }
.foot-right a { color: var(--muted); text-decoration:none; margin-left: 14px; font-size: 13px; }
.foot-right a:hover { color: var(--text); }

/* Common UI */
.btn { display:inline-flex; align-items:center; justify-content:center; padding: 10px 14px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 14px; letter-spacing: 0.2px; border: 1px solid var(--stroke); transition: transform .06s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: #000; border-color: transparent; }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); }

/* Glass + border aesthetics */
.glass { background: var(--card); border: 1px solid var(--stroke); border-radius: 18px; }
.subtle-border { border: 1px solid rgba(255,255,255,0.18); }

/* Forms */
.form { width: 100%; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; color: var(--muted); }
.input { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--stroke); background: rgba(255,255,255,0.04); color: var(--text); font-size: 14px; }
.input:focus { outline: none; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
.form-actions { margin-top: 12px; display: flex; justify-content: flex-end; }

/* iPhone Mockup (Hero) */
.iphone-wrap { perspective: 1200px; display: flex; justify-content: center; }
.iphone { position: relative; transform: rotateY(-18deg) rotateX(6deg); transform-style: preserve-3d; }
.iphone-shadow { position: absolute; inset: 18% -10% -8% -10%; background: radial-gradient(40% 20% at 50% 80%, rgba(0,0,0,0.5), rgba(0,0,0,0)); filter: blur(8px); transform: translateZ(-1px); }
.iphone-frame { width: 280px; height: 560px; border-radius: 36px; padding: 18px; box-shadow: 0 20px 40px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.06); position: relative; }
.iphone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 120px; height: 22px; background: rgba(255,255,255,0.08); border-radius: 0 0 14px 14px; }
.iphone-screen { position: absolute; inset: 18px; border-radius: 26px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid var(--stroke); overflow: hidden; display: grid; grid-template-rows: auto 1fr; }
.iphone-header { display: flex; align-items: center; gap: 8px; padding: 12px 14px; color: var(--muted); font-size: 12px; border-bottom: 1px solid var(--stroke); background: rgba(255,255,255,0.03); }
.tiny-dot { width: 6px; height: 6px; border-radius: 999px; display:inline-block; background: var(--muted); }
.tiny-green { background: var(--green); }
/* (reverted) no override for tiny-dot display */
.iphone-app-list { padding: 12px; display: grid; gap: 10px; }
.iphone-row { display:flex; align-items:center; justify-content: space-between; padding: 10px 12px; border-radius: 12px; border: 1px solid var(--stroke); background: rgba(255,255,255,0.03); }
.iphone-app { display:flex; align-items:center; gap:10px; }
.iphone-app-icon { width: 22px; height: 22px; border-radius: 6px; display:inline-block; background: rgba(255,255,255,0.08); position: relative; overflow: hidden; }
.iphone-app-icon::before { content: ""; position: absolute; inset: 3px; background-repeat: no-repeat; background-position: center; background-size: contain; opacity: 0.96; }
/* Instagram */
.iphone-app-icon.ig::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='2.5' y='2.5' width='19' height='19' rx='5' ry='5' fill='none' stroke='%23fff' stroke-width='2'/><circle cx='12' cy='12' r='4' fill='none' stroke='%23fff' stroke-width='2'/><circle cx='17.5' cy='6.5' r='1.5' fill='%23fff'/></svg>"); }
/* TikTok (musical note stylized) */
.iphone-app-icon.tt::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M15 4v3.3c1.3 1 2.7 1.6 4 1.7v2.2c-1.6-.1-3-.6-4-1.3V13.5A3.5 3.5 0 1 1 11 10V6.2l4-1.2V4z' fill='%23fff'/></svg>"); }
/* YouTube */
.iphone-app-icon.yt::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='2' y='6' width='20' height='12' rx='3' ry='3' fill='none' stroke='%23fff' stroke-width='2'/><path d='M11 10l5 2-5 2z' fill='%23fff'/></svg>"); }
/* X (Twitter) */
.iphone-app-icon.tw::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 5l14 14M19 5L5 19' stroke='%23fff' stroke-width='2' stroke-linecap='round'/></svg>"); }
.iphone-app-name { font-size: 13px; color: var(--text); }
.iphone-pill { font-size: 11px; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--stroke); color: var(--text); background: rgba(255,255,255,0.06); }

@media (max-width: 960px) {
  .iphone { transform: none; }
  .iphone-frame { width: 260px; height: 520px; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* Navigation */
.nav-feature {
  white-space: nowrap;  /* Prevent text from wrapping */
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 38px; }
}
/* Advanced section grid: 3x2 desktop, responsive overrides */
#features-plus .features-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) {
  #features-plus .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  #features-plus .features-grid { grid-template-columns: 1fr; }
}
/* Override: remove main page gradients */
body { background: var(--bg) !important; }
