/* ===========================
   Privacy Prime — Main Styles
   =========================== */

:root {
  --cyan:       #00e5ff;
  --cyan-dim:   #00bcd4;
  --purple:     #b040fb;
  --purple-dim: #7c3aed;
  --green:      #00e676;
  --amber:      #ffb300;
  --red:        #ff1744;
  --bg:         #080c10;
  --bg2:        #0d1117;
  --bg3:        #111820;
  --card:       #131c26;
  --card-border:#1e3a4a;
  --text:       #e0e0e0;
  --text-dim:   #b0bec5;
  --text-muted: #78909c;
  --radius:     14px;
  --radius-lg:  22px;
  --shadow-cyan: 0 0 40px rgba(0,229,255,.18);
  --shadow-purple: 0 0 40px rgba(176,64,251,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { color: #fff; }

img { max-width: 100%; }

/* ── Canvas Background ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
}

/* ── Utility ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-cyan   { color: var(--cyan); }
.text-purple { color: var(--purple); }
.text-green  { color: var(--green); }
.text-amber  { color: var(--amber); }
.text-red    { color: var(--red); }

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-cyan   { background: rgba(0,229,255,.12); color: var(--cyan);   border: 1px solid rgba(0,229,255,.3); }
.badge-purple { background: rgba(176,64,251,.12); color: var(--purple); border: 1px solid rgba(176,64,251,.3); }
.badge-green  { background: rgba(0,230,118,.12); color: var(--green);  border: 1px solid rgba(0,230,118,.3); }
.badge-amber  { background: rgba(255,179,0,.12);  color: var(--amber);  border: 1px solid rgba(255,179,0,.3); }
.badge-red    { background: rgba(255,23,68,.12);  color: var(--red);    border: 1px solid rgba(255,23,68,.3); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, opacity .15s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dim) 100%);
  color: #080c10;
  box-shadow: 0 4px 24px rgba(0,229,255,.4);
}
.btn-primary:hover { box-shadow: 0 6px 32px rgba(0,229,255,.6); color: #080c10; }

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}
.btn-outline:hover { background: rgba(0,229,255,.08); }

.btn-purple {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dim) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(176,64,251,.4);
}
.btn-purple:hover { box-shadow: 0 6px 32px rgba(176,64,251,.6); color: #fff; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(8,12,16,.85);
  border-bottom: 1px solid var(--card-border);
  transition: background .3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}
.nav-logo .logo-icon {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

/* ── Hero ── */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 100px;
}
.hero-badge { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero-title .glow {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--purple) 60%, var(--cyan) 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% }
  100% { background-position: 200% }
}
.hero-sub {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
.stat-item { }
.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan);
}
.stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-wrap {
  position: relative;
  width: 280px;
}
.phone-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(0,229,255,.2) 0%, rgba(176,64,251,.1) 50%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.05); }
}
.phone-frame {
  width: 280px;
  height: 580px;
  background: var(--card);
  border-radius: 40px;
  border: 2px solid var(--card-border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.05);
}
.phone-notch {
  width: 100px; height: 26px;
  background: var(--bg);
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
}
.phone-screen {
  padding: 12px 16px;
}
.phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid var(--card-border);
}
.phone-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.phone-row-label { font-size: .7rem; color: var(--text-dim); flex: 1; }
.phone-row-value { font-size: .65rem; font-weight: 700; }
.phone-chart {
  background: var(--bg3);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
}
.phone-chart-title { font-size: .65rem; color: var(--text-muted); margin-bottom: 8px; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}
.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  opacity: .85;
}
.shield-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(0,229,255,.15), rgba(176,64,251,.1));
  border: 1px solid rgba(0,229,255,.3);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
}
.shield-badge-text { font-size: .65rem; font-weight: 700; color: var(--cyan); }

/* ── Section common ── */
section { position: relative; z-index: 1; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Feature strip ── */
#features-strip {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 20px 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-dim);
  font-weight: 500;
}
.strip-item .icon { font-size: 1.1rem; }

/* ── How It Works ── */
#how-it-works { padding: 100px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-cyan);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.step-card:nth-child(1)::before { background: linear-gradient(90deg, var(--cyan), var(--cyan-dim)); }
.step-card:nth-child(2)::before { background: linear-gradient(90deg, var(--purple), var(--purple-dim)); }
.step-card:nth-child(3)::before { background: linear-gradient(90deg, var(--green), #00acc1); }
.step-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  opacity: .15;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { color: var(--text-dim); font-size: .9rem; }

/* ── Features Grid ── */
#features { padding: 100px 0; background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--glow-color, var(--cyan));
  box-shadow: 0 0 28px var(--glow-shadow, rgba(0,229,255,.15));
}
.feature-card[data-color="cyan"]    { --glow-color: var(--cyan);   --glow-shadow: rgba(0,229,255,.18); }
.feature-card[data-color="purple"]  { --glow-color: var(--purple); --glow-shadow: rgba(176,64,251,.18); }
.feature-card[data-color="green"]   { --glow-color: var(--green);  --glow-shadow: rgba(0,230,118,.18); }
.feature-card[data-color="amber"]   { --glow-color: var(--amber);  --glow-shadow: rgba(255,179,0,.18); }
.feature-card[data-color="red"]     { --glow-color: var(--red);    --glow-shadow: rgba(255,23,68,.18); }

.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.feature-icon-wrap.cyan   { background: rgba(0,229,255,.12);   border: 1px solid rgba(0,229,255,.25); }
.feature-icon-wrap.purple { background: rgba(176,64,251,.12);  border: 1px solid rgba(176,64,251,.25); }
.feature-icon-wrap.green  { background: rgba(0,230,118,.12);   border: 1px solid rgba(0,230,118,.25); }
.feature-icon-wrap.amber  { background: rgba(255,179,0,.12);   border: 1px solid rgba(255,179,0,.25); }
.feature-icon-wrap.red    { background: rgba(255,23,68,.12);   border: 1px solid rgba(255,23,68,.25); }

.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-desc  { color: var(--text-dim); font-size: .875rem; line-height: 1.6; }
.feature-badge { margin-top: 14px; }

/* ── Permissions ── */
#permissions { padding: 100px 0; }
.perms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.perm-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color .2s;
}
.perm-row:hover { border-color: rgba(0,229,255,.3); }
.perm-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(0,229,255,.1);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}
.perm-name  { font-size: .875rem; font-weight: 700; margin-bottom: 4px; }
.perm-why   { font-size: .8rem; color: var(--text-dim); }

/* ── Pricing ── */
#pricing { padding: 100px 0; background: var(--bg2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.popular {
  border-color: var(--cyan);
  box-shadow: 0 0 40px rgba(0,229,255,.15);
}
.plan-card.pro-card {
  border-color: var(--purple);
  box-shadow: 0 0 40px rgba(176,64,251,.15);
}
.popular-label {
  position: absolute;
  top: 16px; right: 16px;
}
.plan-icon { font-size: 2rem; margin-bottom: 14px; }
.plan-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.plan-tagline { font-size: .85rem; color: var(--text-dim); margin-bottom: 24px; }
.plan-price {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.plan-price sup { font-size: 1.2rem; vertical-align: super; }
.plan-price-note { font-size: .8rem; color: var(--text-muted); margin-bottom: 28px; }
.plan-divider { border: none; border-top: 1px solid var(--card-border); margin-bottom: 24px; }
.plan-features { list-style: none; flex: 1; margin-bottom: 28px; }
.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.plan-features li .check { flex-shrink: 0; }
.plan-features li .cross { flex-shrink: 0; opacity: .4; }
.plan-cta { margin-top: auto; }

/* ── Security Promise ── */
#security { padding: 100px 0; }
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.security-text .section-label { text-align: left; }
.security-text .section-title { text-align: left; font-size: 2.2rem; }
.security-text .section-sub   { text-align: left; margin: 0 0 24px; }
.security-points { list-style: none; margin-bottom: 32px; }
.security-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: .9rem;
  color: var(--text-dim);
}
.security-points li .sp-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(0,229,255,.1);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}
.security-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sec-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sec-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.sec-card-title { font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.sec-card-desc  { font-size: .8rem; color: var(--text-dim); }

/* ── Magisk Section ── */
#magisk { padding: 100px 0; background: var(--bg2); }
.magisk-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.magisk-badge-wrap { margin-bottom: 16px; }
.magisk-title { font-size: 2rem; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.magisk-desc  { color: var(--text-dim); margin-bottom: 24px; }
.magisk-steps { list-style: none; margin-bottom: 28px; }
.magisk-steps li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.magisk-steps .m-num {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(176,64,251,.2);
  border: 1px solid rgba(176,64,251,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--purple);
}
.magisk-visual {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.terminal {
  background: #050810;
  border-radius: 10px;
  overflow: hidden;
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: .8rem;
}
.terminal-bar {
  background: #1a1f2e;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-body { padding: 16px; color: #b0c4d8; }
.t-prompt { color: var(--purple); }
.t-cmd    { color: var(--cyan); }
.t-comment{ color: #4a5568; }
.t-out    { color: var(--green); }
.t-line   { margin-bottom: 6px; }

/* ── FAQ ── */
#faq { padding: 100px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(0,229,255,.3); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 18px 22px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-arrow {
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--cyan);
  transition: transform .3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  color: var(--text-dim);
  font-size: .875rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ── CTA Banner ── */
#cta-banner {
  padding: 90px 0;
  background: linear-gradient(135deg, rgba(0,229,255,.06) 0%, rgba(176,64,251,.06) 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  text-align: center;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.cta-sub {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo .logo-icon {
  height: 32px;
  width: auto;
  display: block;
}
.footer-desc { color: var(--text-muted); font-size: .875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-col-title { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-dim); font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--card-border);
  padding-top: 28px;
  font-size: .8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner  { grid-template-columns: 1fr; text-align: center; }
  .hero-sub    { margin-left: auto; margin-right: auto; }
  .hero-actions{ justify-content: center; }
  .hero-stats  { justify-content: center; }
  .hero-visual { display: none; }
  .steps-grid  { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .perms-grid  { grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .magisk-inner{ grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Full wordmark logo ── */
.logo-full {
  height: 52px;
  width: auto;
  display: block;
  /* invert white bg to transparent on dark backgrounds */
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.logo-full-wrap {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 8px 18px;
  line-height: 0;
}

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,12,16,.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 700;
}
.mobile-menu a:hover { color: var(--cyan); }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: var(--text); font-size: 1.6rem; cursor: pointer;
}
