/* ─────────────────────────────────────────────
   Scam Slayer — Landing Page Styles
   Mobile-first. Breakpoints: 560 / 780 / 1000.
   Primary: #1A73E8  Dark bg: #0D1117
   ───────────────────────────────────────────── */

/* ── Universal box-sizing & reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Hard overflow guard (root level) ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

:root {
  /* ── Brand ── */
  --blue:        #1A73E8;
  --blue-dim:    #1558C0;
  --blue-soft:   #60A5FA;
  --blue-glow:   rgba(26,115,232,0.35);
  --purple:      #7B61FF;

  /* ── Verdict semantics ── */
  --green:       #2E7D32;
  --green-soft:  #86EFAC;
  --amber:       #F57F17;
  --amber-soft:  #FCD34D;
  --red:         #D32F2F;
  --red-soft:    #EF9A9A;

  /* ── Surfaces ── */
  --bg:          #0D1117;
  --bg-card:     #161B22;
  --bg-card-2:   #1C2128;
  --surface-1:   linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  --surface-2:   linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);

  /* ── Lines ── */
  --border:      rgba(255,255,255,0.08);
  --border-med:  rgba(255,255,255,0.14);
  --hairline:    inset 0 1px 0 rgba(255,255,255,0.06);

  /* ── Text ── */
  --text:        #E6EDF3;
  --text-muted:  #8B949E;
  --text-dim:    #484F58;

  /* ── Geometry ── */
  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   28px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lift: 0 24px 60px rgba(0,0,0,0.5);
  --ring:        0 0 0 3px rgba(26,115,232,0.45);

  --transition:  200ms cubic-bezier(0.4,0,0.2,1);
  --ease-out:    cubic-bezier(0.22,1,0.36,1);

  /* ── Layout rhythm ── */
  --gutter:      clamp(16px, 4vw, 40px);
  --section-y:   clamp(56px, 8vw, 96px);

  /* ── Nav height ── */
  --nav-h:       60px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  position: relative;
}

/* Belt-and-braces: every section/landmark caps at viewport width. */
header, main, footer, section, nav, .container {
  max-width: 100%;
}

img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Focus ── */
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-med);
  border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus { left: 16px; }

/* ── Container & Section ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section-header {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-header h2 {
  font-size: clamp(1.625rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-block: 16px 14px;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.section-header p {
  color: var(--text-muted);
  font-size: clamp(0.9375rem, 0.5vw + 0.85rem, 1.0625rem);
  max-width: 60ch;
  margin-inline: auto;
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  background: rgba(26,115,232,0.08);
  border: 1px solid rgba(26,115,232,0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--blue-soft);
  letter-spacing: 0.005em;
  margin-bottom: 20px;
  max-width: 100%;
}
.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: 0 0 0 4px rgba(26,115,232,0.2);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--blue {
  background: rgba(26,115,232,0.12);
  color: var(--blue-soft);
  border: 1px solid rgba(26,115,232,0.3);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
  min-height: 44px;
  max-width: 100%;
}
.btn--sm  { padding: 10px 16px; font-size: 0.875rem; min-height: 40px; }
.btn--lg  { padding: 14px 28px; font-size: 1rem; min-height: 48px; }
.btn--primary {
  background: var(--blue);
  color: #fff;
}
.btn--primary:hover {
  background: var(--blue-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--blue-glow);
}

/* ── Link CTA ── */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 4px;
  min-height: 44px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition), gap var(--transition);
}
.link-cta:hover { color: var(--blue-soft); gap: 10px; }

/* ══════════════════════════════════════
   NAV  (mobile-first)
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,17,23,0.78);
  border-bottom-color: var(--border);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 8px;
  min-width: 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 1;
  min-width: 0;
  min-height: 44px;
  margin-right: auto;
}
.nav__logo img { border-radius: 8px; width: 28px; height: 28px; flex-shrink: 0; }
.nav__logo span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* Mobile: links hidden behind burger */
.nav__links {
  display: none;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav__links a:hover { color: var(--text); }

/* Tools cluster (lang toggle + CTA). Mobile: lang stays visible, CTA hides. */
.nav__tools {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav__cta { display: none; }

/* Burger — 48×48 hit target on mobile */
.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-shrink: 0;
  border-radius: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════
   HERO  (mobile-first; 1-col, copy → console)
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;        /* clips auroras */
  width: 100%;
  max-width: 100%;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;        /* extra belt for aurora blobs */
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 25%, transparent 80%);
}
.hero__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  will-change: transform;
}
.hero__aurora--blue {
  width: clamp(200px, 50vw, 620px);
  height: clamp(200px, 50vw, 620px);
  background: var(--blue);
  top: -10%; left: 0%;       /* percentage only */
}
.hero__aurora--purple {
  width: clamp(180px, 40vw, 480px);
  height: clamp(180px, 40vw, 480px);
  background: var(--purple);
  bottom: 0%; left: 30%;     /* percentage only */
  opacity: 0.22;
}
.hero__aurora--red {
  width: clamp(160px, 35vw, 420px);
  height: clamp(160px, 35vw, 420px);
  background: var(--red);
  top: 10%; right: 0%;       /* percentage only */
  opacity: 0.18;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 6vw, 56px);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-block: clamp(24px, 5vw, 56px) clamp(32px, 5vw, 64px);
  width: 100%;
}

.hero__copy {
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.hero__headline {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 18px;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}
.hero__headline .gradient-text { display: block; }

.hero__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 100%;
  margin-bottom: 28px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  max-width: 100%;
}

.hero__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.hero__signals li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 10px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.hero__signals li:last-child { border-right: none; padding-right: 0; }
.hero__signals strong {
  font-size: clamp(0.9375rem, 0.5vw + 0.85rem, 1.0625rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  overflow-wrap: break-word;
}
.hero__signals span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ── Verdict console mock ── */
.console {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  min-width: 0;
  overflow: hidden;          /* clips halo + blurred glow */
}
.console__halo {
  position: absolute;
  inset: 0;                          /* no negative offsets on mobile */
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(26,115,232,0.35) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.console__frame {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #161B22 0%, #0F141A 100%);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-xl);
  padding: clamp(14px, 3vw, 22px);
  box-shadow:
    var(--shadow-lift),
    inset 0 1px 0 rgba(255,255,255,0.08);
  max-width: 100%;
  overflow: hidden;
}
.console__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
  flex-wrap: wrap;
}
.console__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(26,115,232,0.12);
  color: var(--blue-soft);
  border: 1px solid rgba(26,115,232,0.3);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 100%;
}
.console__chip--neutral {
  background: rgba(26,115,232,0.12);
  color: var(--blue-soft);
  border-color: rgba(26,115,232,0.32);
}
.console__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: 0 0 0 0 rgba(96,165,250,0.7);
  animation: ringPulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes ringPulse {
  0%   { box-shadow: 0 0 0 0 rgba(96,165,250,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(96,165,250,0); }
  100% { box-shadow: 0 0 0 0 rgba(96,165,250,0); }
}
.console__time {
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.console__input {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  max-width: 100%;
  overflow: hidden;
}
.console__from {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.console__msg {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.console__msg .hl {
  color: var(--red-soft);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.console__msg .link-fake {
  color: var(--blue-soft);
  text-decoration: underline;
  text-decoration-color: rgba(96,165,250,0.4);
  text-underline-offset: 2px;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.console__verdict {
  background: linear-gradient(180deg, rgba(211,47,47,0.07) 0%, rgba(211,47,47,0.03) 100%);
  border: 1px solid rgba(211,47,47,0.28);
  border-radius: 14px;
  padding: 16px;
  max-width: 100%;
  overflow: hidden;
}
.console__verdict-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
  flex-wrap: wrap;
}
.vbadge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.vbadge--scam {
  background: rgba(211,47,47,0.18);
  color: var(--red-soft);
  border: 1px solid rgba(211,47,47,0.35);
}
.gauge {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gauge__num {
  position: absolute;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.console__signals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.console__signals li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text);
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--red   { background: var(--red);   box-shadow: 0 0 0 3px rgba(211,47,47,0.18); }
.dot--amber { background: var(--amber); box-shadow: 0 0 0 3px rgba(245,127,23,0.18); }

.console__action {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  border-radius: 10px;
  max-width: 100%;
  overflow: hidden;
}
.console__action span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.console__action strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ══════════════════════════════════════
   THREATS BAR  (mobile-first wrap)
══════════════════════════════════════ */
.threats {
  padding-block: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 100% at 50% 50%, rgba(255,255,255,0.025) 0%, transparent 70%),
    var(--bg);
  overflow: hidden;
}
.threats__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 100%;
}
.threats__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
/* List wraps; chips don't break their own text. */
.threats__list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.threat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  white-space: nowrap;       /* OK because parent wraps */
  min-height: 36px;
  max-width: 100%;
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}
.threat-chip:hover {
  border-color: rgba(26,115,232,0.4);
  color: var(--text);
  background: rgba(26,115,232,0.08);
  transform: translateY(-1px);
}
.threat-chip svg { color: var(--text-dim); transition: color var(--transition); flex-shrink: 0; }
.threat-chip:hover svg { color: var(--blue-soft); }

/* ══════════════════════════════════════
   FEATURES — Bento grid (mobile-first 1-col)
══════════════════════════════════════ */
.features { overflow: hidden; }
.bento {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 16px;
  max-width: 100%;
}
.bento__card {
  position: relative;
  background: var(--bg-card);
  background-image: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}
.bento__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: var(--hairline);
  pointer-events: none;
}
.bento__card:hover {
  border-color: var(--border-med);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.bento__card--hero {
  background: linear-gradient(160deg, rgba(26,115,232,0.16) 0%, rgba(123,97,255,0.06) 60%, var(--bg-card) 100%);
  border-color: rgba(26,115,232,0.3);
  padding: clamp(22px, 4vw, 36px);
}
.bento__card--hero:hover { border-color: rgba(26,115,232,0.5); }

.bento__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26,115,232,0.14);
  border: 1px solid rgba(26,115,232,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-soft);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.bento__card--hero .bento__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,115,232,0.3), rgba(123,97,255,0.2));
}
.bento__card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.3;
  overflow-wrap: break-word;
  hyphens: auto;
}
.bento__card--hero h3 {
  font-size: clamp(1.125rem, 1vw + 1rem, 1.375rem);
  margin-bottom: 12px;
}
.bento__card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 60ch;
  overflow-wrap: break-word;
}
.bento__card--hero p {
  font-size: clamp(0.9375rem, 0.3vw + 0.9rem, 0.9375rem);
  max-width: 52ch;
}

.bento__demo {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
}
.bento__demo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bento__demo-score {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--red-soft);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.bento__demo-bar {
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  overflow: hidden;
  width: 100%;
}
.bento__demo-bar-fill {
  width: 94%;
  height: 100%;
  background: linear-gradient(90deg, var(--amber) 0%, var(--red) 100%);
  border-radius: inherit;
}
.bento__demo-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Accent card variant + tag ── */
.bento__card--accent {
  background:
    linear-gradient(160deg, rgba(46,125,50,0.12) 0%, rgba(26,115,232,0.05) 60%, var(--bg-card) 100%);
  border-color: rgba(46,125,50,0.28);
}
.bento__card--accent:hover { border-color: rgba(46,125,50,0.45); }
.bento__card--accent .bento__icon {
  background: rgba(46,125,50,0.18);
  border-color: rgba(46,125,50,0.34);
  color: var(--green-soft);
}
.bento__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: rgba(46,125,50,0.15);
  color: var(--green-soft);
  border: 1px solid rgba(46,125,50,0.32);
  border-radius: 100px;
  white-space: nowrap;
}

/* ══════════════════════════════════════
   HOW IT WORKS — Timeline (mobile-first)
══════════════════════════════════════ */
.how {
  background: linear-gradient(180deg, var(--bg) 0%, #0A0E13 100%);
  position: relative;
  overflow: hidden;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 80px);
  position: relative;
  width: 100%;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, rgba(26,115,232,0.6) 0%, rgba(26,115,232,0.05) 100%);
  border-radius: 2px;
}
.timeline__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  background-image: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.timeline__item:hover {
  border-color: var(--border-med);
  transform: translateX(4px);
}
.timeline__marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dim) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,115,232,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  border: 2px solid var(--bg);
  z-index: 1;
  font-variant-numeric: tabular-nums;
}
.timeline__body { min-width: 0; flex: 1; max-width: 100%; }
.timeline__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  overflow-wrap: break-word;
}
.timeline__body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 60ch;
  overflow-wrap: break-word;
}

/* ── Verdict cards: 1-col on mobile ── */
.verdicts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}
.verdict-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 22px;
  border-radius: var(--radius);
  border: 1px solid;
  background-image: var(--surface-1);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.verdict-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.verdict-card__label {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.verdict-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  overflow-wrap: break-word;
}
.verdict-card--safe       { background-color: rgba(46,125,50,0.07);  border-color: rgba(46,125,50,0.3); }
.verdict-card--safe .verdict-card__icon  { background: rgba(46,125,50,0.18); color: var(--green-soft); }
.verdict-card--safe .verdict-card__label { color: var(--green-soft); }

.verdict-card--suspicious { background-color: rgba(245,127,23,0.07); border-color: rgba(245,127,23,0.3); }
.verdict-card--suspicious .verdict-card__icon  { background: rgba(245,127,23,0.18); color: var(--amber-soft); }
.verdict-card--suspicious .verdict-card__label { color: var(--amber-soft); }

.verdict-card--scam       { background-color: rgba(211,47,47,0.07);  border-color: rgba(211,47,47,0.3); }
.verdict-card--scam .verdict-card__icon  { background: rgba(211,47,47,0.18); color: var(--red-soft); }
.verdict-card--scam .verdict-card__label { color: var(--red-soft); }

/* ══════════════════════════════════════
   DOWNLOAD  (mobile-first)
══════════════════════════════════════ */
.download { padding-block: var(--section-y); overflow: hidden; }
.download__inner {
  position: relative;
  text-align: center;
  padding: clamp(40px, 8vw, 88px) clamp(20px, 4vw, 40px);
  background: linear-gradient(180deg, var(--bg-card) 0%, #0F141A 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 100%;
}
.download__glow {
  position: absolute;
  inset: 0;                  /* contained, no overflow */
  background:
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(26,115,232,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(123,97,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.download__icon {
  margin-inline: auto;
  margin-bottom: 20px;
  border-radius: 20px;
  border: 1px solid var(--border-med);
  position: relative;
  box-shadow: 0 12px 32px rgba(26,115,232,0.25);
  width: clamp(56px, 8vw, 72px);
  height: clamp(56px, 8vw, 72px);
}
.download__inner h2 {
  font-size: clamp(1.5rem, 4vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 14px;
  position: relative;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.download__inner > p {
  font-size: clamp(0.9375rem, 0.3vw + 0.9rem, 1rem);
  color: var(--text-muted);
  margin-bottom: clamp(24px, 4vw, 36px);
  position: relative;
  max-width: 56ch;
  margin-inline: auto;
  overflow-wrap: break-word;
}
.download__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  position: relative;
  max-width: 100%;
}
/* Mobile: store badge full-width inside container, capped at 320px. */
.download__buttons .store-badge {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}
.download__fineprint {
  position: relative;
  margin-top: 24px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  overflow-wrap: break-word;
}

/* ══════════════════════════════════════
   FOOTER  (mobile-first stacked)
══════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding-block: 32px;
  overflow: hidden;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 100%;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
}
.footer__brand img { border-radius: 6px; width: 24px; height: 24px; flex-shrink: 0; }
.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 100%;
}
.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.footer__links a:hover { color: var(--text); }
.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.5;
  overflow-wrap: break-word;
}

/* ══════════════════════════════════════
   LANG TOGGLE
══════════════════════════════════════ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  height: 32px;
  flex-shrink: 0;
}
.lang-toggle__opt {
  appearance: none;
  background: none;
  border: none;
  font: inherit;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  min-width: 28px;
  height: 24px;
  cursor: pointer;
  border-radius: 100px;
  transition: color var(--transition), background var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Expand hit target without expanding visual size — but keep within parent. */
.lang-toggle__opt::before {
  content: "";
  position: absolute;
  inset: -10px 0;            /* vertical only — prevents horizontal overflow */
}
.lang-toggle__opt:hover { color: var(--text); }
.lang-toggle__opt--active {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 2px 8px rgba(26,115,232,0.4);
}
.lang-toggle__opt--active:hover { color: #fff; }
.lang-toggle__opt:focus-visible { outline: none; box-shadow: var(--ring); }
.lang-toggle__sep {
  color: var(--text-dim);
  font-size: 0.85rem;
  user-select: none;
  margin: 0 2px;
}
.lang-toggle:has(.lang-toggle__opt--active) .lang-toggle__sep { opacity: 0; }

/* ══════════════════════════════════════
   STORE BADGES
══════════════════════════════════════ */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  border-radius: 14px;
  font-family: inherit;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height: 52px;
  max-width: 100%;
  box-sizing: border-box;
}
.store-badge__icon { flex-shrink: 0; }
.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: left;
  min-width: 0;
}
.store-badge__sub  { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.06em; margin-bottom: 4px; white-space: nowrap; }
.store-badge__name { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; }

.store-badge--gplay {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}
.store-badge--gplay .store-badge__sub  { color: #5f6368; }
.store-badge--gplay .store-badge__name { color: #000; }
.store-badge--gplay:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(26,115,232,0.35), 0 0 0 1px rgba(26,115,232,0.4);
}

.store-badge--lg {
  padding: 12px 22px 12px 16px;
  min-height: 56px;
}
.store-badge--lg .store-badge__name { font-size: 1.0625rem; }

/* Hero store badge: full-width on mobile, capped at 320px. */
.hero__actions .store-badge {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.eyebrow,
.hero__headline,
.hero__sub,
.hero__actions,
.hero__signals {
  animation: fadeUp 0.7s var(--ease-out) both;
}
.eyebrow        { animation-delay: 0.05s; }
.hero__headline { animation-delay: 0.15s; }
.hero__sub      { animation-delay: 0.25s; }
.hero__actions  { animation-delay: 0.35s; }
.hero__signals  { animation-delay: 0.45s; }
.console        { animation: fadeUp 0.9s 0.3s var(--ease-out) both; }

/* Scroll-driven reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .eyebrow__dot,
  .console__pulse { animation: none !important; }
  .nav__burger span { transition: none !important; }
}

/* ══════════════════════════════════════
   MOBILE MENU (drawer)
══════════════════════════════════════ */
.nav--open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--gutter);
  gap: 8px;
  align-items: stretch;
  font-size: 1.0625rem;
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
}
.nav--open .nav__links a {
  padding: 12px 0;
  min-height: 48px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav--open .nav__links a:last-child { border-bottom: none; }

/* Surface the primary CTA at the bottom of the open menu drawer.
   Lang toggle stays in the top bar (always visible). */
.nav--open .nav__tools {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  padding: 16px var(--gutter) max(16px, env(safe-area-inset-bottom));
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  gap: 12px;
  margin-left: 0;
  align-items: stretch;
  z-index: 99;
}
.nav--open .nav__tools .lang-toggle { display: none !important; }
.nav--open .nav__tools .nav__cta { display: flex !important; width: 100%; }
.nav--open .nav__tools .nav__cta .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 0.9375rem;
  min-height: 48px;
}

/* ══════════════════════════════════════════════════════════════════════
   BREAKPOINT: ≥ 560px  (small adjustments)
   ══════════════════════════════════════════════════════════════════════ */
@media (min-width: 560px) {
  .nav__inner { gap: 12px; }
  .nav__logo { font-size: 1rem; gap: 10px; }
  .nav__logo img { width: 28px; height: 28px; }

  /* Hero store badge: auto width again. */
  .hero__actions .store-badge { width: auto; max-width: none; }
  .download__buttons .store-badge { width: auto; max-width: none; }

  /* Threats: label and chips share a row when there's room. */
  .threats__inner {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .threats__list { flex: 1; }

  /* Hero subhead can be a touch larger. */
  .hero__sub {
    font-size: clamp(1rem, 0.5vw + 0.95rem, 1.125rem);
    max-width: 52ch;
  }

  /* Hero signals max-width returns. */
  .hero__signals { max-width: 460px; }
}

/* ══════════════════════════════════════════════════════════════════════
   BREAKPOINT: ≥ 780px  (hero 2-col, nav links visible)
   ══════════════════════════════════════════════════════════════════════ */
@media (min-width: 780px) {
  :root { --nav-h: 64px; }

  /* Nav: links visible inline, CTA shows, burger hides. */
  .nav__inner { gap: 32px; }
  .nav__links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
  }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__tools { gap: 14px; }
  .lang-toggle {
    height: 36px;
    padding: 3px;
  }
  .lang-toggle__opt {
    height: 28px;
    padding: 6px 12px;
    min-width: 36px;
    font-size: 0.75rem;
  }
  .nav__logo { margin-right: 0; }

  /* Hero: 2-col with console next to copy. */
  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(40px, 5vw, 64px);
    align-items: center;
    padding-block: clamp(48px, 6vw, 80px) clamp(40px, 5vw, 64px);
  }
  .hero__copy { max-width: 560px; }
  .console {
    justify-self: end;
    max-width: 440px;
    margin-inline: 0;
  }
  /* Restore halo bleed on large screens — parent has overflow:hidden. */
  .console__halo { inset: -40px; }

  /* Bento: 2 cols, hero card spans both. */
  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .bento__card--hero { grid-column: 1 / -1; }

  /* Verdict cards: 3 across. */
  .verdicts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  /* Footer: row layout. */
  .footer { padding-block: 40px; }
  .footer__inner {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .footer__links { margin-left: auto; gap: 24px; }
}

/* ══════════════════════════════════════════════════════════════════════
   BREAKPOINT: ≥ 1000px  (bento 3-col, hero card spans 2 rows)
   ══════════════════════════════════════════════════════════════════════ */
@media (min-width: 1000px) {
  .bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, auto);
  }
  .bento__card--hero {
    grid-column: span 2;
    grid-row: span 2;
  }

  .hero__inner {
    gap: clamp(48px, 5vw, 72px);
  }
  .console { max-width: 460px; }
  .download__glow { inset: -50%; } /* parent has overflow:hidden */
}

/* ══════════════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════════════ */
.faq__list {
  display: grid;
  gap: 2px;
  list-style: none;
  margin-top: clamp(32px, 5vw, 48px);
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 32px);
  transition: border-color var(--transition);
}
.faq__item:hover { border-color: var(--border-med); }

.faq__item dt {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.faq__item dd {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 780px) {
  .faq__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}

/* ══════════════════════════════════════════════════════════════════════
   B2B BRIDGE  (on home page, links to /empresas.html)
   ══════════════════════════════════════════════════════════════════════ */
.b2b-bridge { text-align: center; }
.b2b-bridge__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.b2b-bridge h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.b2b-bridge p {
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════════
   BUSINESS PAGE  (empresas.html)
   ══════════════════════════════════════════════════════════════════════ */
.biz-hero {
  text-align: center;
  padding: 80px 0 60px;
  padding-top: calc(var(--nav-h) + 60px);
}
.biz-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 720px;
  margin: 16px auto 18px;
  text-wrap: balance;
}
.biz-hero p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.65;
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.125rem);
}
.biz-cases__grid,
.biz-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 100%;
}
.biz-card {
  background: var(--bg-card);
  background-image: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
  min-width: 0;
}
.biz-card:hover {
  border-color: var(--border-med);
  transform: translateY(-2px);
}
.biz-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.biz-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.biz-why__item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.biz-why__item:last-child { border-bottom: none; }
.biz-why__item h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.biz-why__item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.biz-contact { text-align: center; }
.biz-contact h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.biz-contact p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
  padding-bottom: 60px;
}
.trust-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════════════
   PRIVACY PAGE CALLOUT  (used on privacy.html for the quick summary)
   ══════════════════════════════════════════════════════════════════════ */
.legal .callout-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 32px;
  color: var(--text-muted);
}
.legal .callout-summary strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text);
}
.legal .callout-summary ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
}
.legal .callout-summary li {
  margin-bottom: 6px;
  line-height: 1.6;
}
