/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Palette */
  --bg:          #050505;
  --panel:       #0d0d0d;
  --panel-2:     #111111;
  --line:        #1f1f1f;
  --text:        #f2f2f2;
  --muted:       #b5b5b5;
  --accent:      #ff6a00;
  --accent-soft: rgba(255, 106, 0, 0.12);

  /* Status */
  --safe:     #4caf50;
  --moderate: #ffc107;
  --risk:     #f44336;

  /* Layout */
  --max:    1180px;
  --radius: 18px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}


/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(255, 106, 0, 0.22), transparent 28%),
    linear-gradient(180deg, #060606 0%, #050505 100%);
  color: var(--text);
  font-size: 24px;
}

a { color: inherit; text-decoration: none; }


/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ============================================================
   HEADER & NAV
   ============================================================ */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 8, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.brand-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #ff9a42);
  color: #111;
  box-shadow: 0 0 22px rgba(255, 106, 0, 0.25);
  font-size: 20px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

nav a {
  color: #9a9a9a;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

nav a:hover { color: var(--accent); }

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.16);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}


/* ============================================================
   HERO
   ============================================================ */

.hero { padding: 88px 0 60px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 106, 0, 0.26);
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffd0ae;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -1.6px;
  max-width: 760px;
}

.hero p {
  margin: 0;
  max-width: 670px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero card */
.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.35), transparent 68%);
  pointer-events: none;
}


/* ============================================================
   DEVICE WIDGET
   ============================================================ */

.device {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 18px;
  background: #0b0b0b;
}

.device-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  color: #c9c9c9;
  font-size: 13px;
}

.device-title {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.stat {
  border: 1px solid var(--line);
  background: var(--panel-2);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.mini-panel {
  margin-top: 12px;
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.14), rgba(255, 106, 0, 0.03));
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 18px;
  padding: 16px;
}

.mini-panel h3 {
  margin: 0 0 12px;
  color: #ffb27d;
  font-size: 15px;
  letter-spacing: 0.4px;
}

.risk-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.risk-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.risk-name { font-weight: 700; }

.risk-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tag-safe     { background: rgba(76, 175, 80, 0.16);  color: #8ee392; }
.tag-moderate { background: rgba(255, 193, 7, 0.14);  color: #ffd65c; }
.tag-risk     { background: rgba(244, 67, 54, 0.14);  color: #ff8e85; }


/* ============================================================
   SECTIONS — GENERIC
   ============================================================ */

section { padding: 34px 0; }

.section-head {
  margin-bottom: 26px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
}

.section-head p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}


/* ============================================================
   SHOWCASE CAROUSEL
   ============================================================ */

#showcase .container {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.showcase-grid {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 20px 0;
  animation: scroll-x 40s linear infinite;
}

.showcase-grid:hover { animation-play-state: paused; }

.showcase-grid img {
  flex: 0 0 auto;
  width: 130px;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-grid img:hover {
  transform: scale(1.5);
  box-shadow: 0 16px 40px rgba(125, 211, 252, 0.25);
}

@keyframes scroll-x {
  to { transform: translateX(calc(-50% - 10px)); }
}


/* ============================================================
   CARDS — shared base
   ============================================================ */

.card,
.feature-card,
.step-card,
.highlight-card,
.audience-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card h3,
.feature-card h3,
.step-card h3,
.highlight-card h3,
.audience-card h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 22px;
}

.card p,
.feature-card p,
.step-card p,
.highlight-card p,
.audience-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 24px;
}


/* ============================================================
   FEATURE SECTION
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-icon,
.step-num {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.18);
  color: #ffb27d;
  font-size: 22px;
  margin-bottom: 16px;
}

.step-num { font-size: 18px; font-weight: 700; }


/* ============================================================
   HIGHLIGHTS
   ============================================================ */

.highlights {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.65;
}

.check-item strong { color: var(--text); }

.check-bullet {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 106, 0, 0.12);
  color: var(--accent);
  font-size: 14px;
  margin-top: 2px;
}


/* ============================================================
   STEPS
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}


/* ============================================================
   AUDIENCE
   ============================================================ */

.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


/* ============================================================
   CTA
   ============================================================ */

.cta { padding: 30px 0 70px; }

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.22), rgba(255, 106, 0, 0.06));
  border: 1px solid rgba(255, 106, 0, 0.2);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.cta-box p {
  margin: 0 auto;
  max-width: 720px;
  color: #f2c9ab;
  line-height: 1.7;
  font-size: 18px;
}

.cta-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ============================================================
   FOOTER
   ============================================================ */

footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid #1a1a1a;
  color: #666;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* --- Hamburger base (required for standard template) --- */
.menu-toggle {
  display: none;
}


/* ============================================================
   RESPONSIVE — ≤ 700px
   ============================================================ */

/* ============================================================
   MOBILE (STANDARD TEMPLATE ALIGNMENT)
   ============================================================ */

@media (max-width: 768px) {

  .container { padding: 0 20px; }

  /* --- Header Layout --- */
  .nav-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }

  /* Filename: privacy_guardian.css */
/* Placement: update .brand */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 60px; /* increased from default */
}

  .brand-badge { width: 80px; height: 80px; font-size: 14px; }

  /* --- Hide desktop nav completely --- */
  nav {
    display: none;
  }

  /* --- Hamburger (standard system) --- */
  .menu-toggle {
    display: block;
    z-index: 100;
    padding: 14px 24px;
    background: var(--panel);
    border-radius: 25px;
    color: var(--accent);
    font-size: 56px;
    line-height: 1; 
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 10px;
    width: 220px;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 99;
  }


.mobile-nav a {
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);

  font-size: 25px; /* ← THIS is what makes text bigger */
}

  .mobile-nav.active {
    display: flex;
  }

  /* --- Hero --- */
  .hero { padding: 50px 0 40px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h1 { font-size: 32px; line-height: 1.1; }

  .hero p { font-size: 26px; }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .risk-note { font-size: 20px; }
  
  .stat span { font-size: 20px; }

  .btn { min-height: 46px; padding: 10px 16px; }
  .btn-primary { width: 100%; }

  /* --- Layout Grids --- */
  .stats { grid-template-columns: 1fr 1fr; }

  .feature-grid,
  .steps,
  .audience { grid-template-columns: 1fr; }

  /* --- Cards --- */
  .cta-box,
  .hero-card,
  .feature-card,
  .step-card,
  .highlight-card,
  .audience-card {
    padding: 16px;
  }

  /* --- Showcase (standard behavior) --- */
  #showcase .container {
    mask-image: none;
    overflow: hidden;
  }

  .showcase-grid {
    animation: scroll-x 40s linear infinite;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .showcase-grid img {
    width: 250px;
  }

}