:root {
  --navy: #241a4c;
  --navy-2: #312566;
  --purple: #6655dc;
  --purple-soft: #f0edff;
  --violet: #8b5cf6;
  --teal: #0f9f94;
  --teal-soft: #e8f8f6;
  --gold: #f3b51b;
  --gold-soft: #fff6d9;
  --red: #c43b4e;
  --red-soft: #fff0f2;
  --ink: #1f2430;
  --muted: #5e6472;
  --line: #dedfea;
  --paper: #ffffff;
  --wash: #f8f8fc;
  --shadow: 0 18px 50px rgba(38, 26, 76, .10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --base-size: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: var(--base-size);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.large-text { --base-size: 20px; }
button, a { font: inherit; }
a { color: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-160%);
  background: #fff;
  color: #111;
  padding: .65rem 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(222,223,234,.85);
}
.nav-shell {
  min-height: 78px;
  width: min(calc(100% - 32px), 1260px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--navy);
  text-decoration: none;
  min-width: max-content;
}
.brand strong { display: block; font-size: 1rem; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: .72rem; margin-top: 3px; white-space: nowrap; }
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: .82rem;
  padding: .62rem .72rem;
  border-radius: 10px;
  color: #464b58;
}
.site-nav a:hover, .site-nav a:focus-visible { background: var(--purple-soft); color: var(--navy); }
.site-nav .nav-help { background: var(--navy); color: #fff; padding-inline: .95rem; }
.site-nav .nav-help:hover, .site-nav .nav-help:focus-visible { background: var(--purple); color: #fff; }
.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(126,91,255,.42), transparent 30%),
    linear-gradient(135deg, #201844 0%, #2d215c 52%, #211b47 100%);
  color: #fff;
  padding: 84px 0 72px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent);
}
.hero-orb { position: absolute; border-radius: 999px; filter: saturate(110%); opacity: .9; }
.orb-one { width: 250px; height: 250px; right: -90px; top: -62px; background: rgba(96,78,214,.46); }
.orb-two { width: 200px; height: 200px; right: 13%; bottom: -120px; background: rgba(243,181,27,.22); }
.orb-three { width: 170px; height: 170px; left: -80px; bottom: -50px; background: rgba(15,159,148,.22); }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 .5rem;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  color: #d2cafe;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.purple { color: var(--purple); }
.eyebrow.teal { color: var(--teal); }
.eyebrow.red { color: var(--red); }
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  line-height: .95;
  margin: 0 0 1.25rem;
  letter-spacing: -.04em;
}
.hero-subtitle { max-width: 760px; font-size: clamp(1.15rem, 2.1vw, 1.45rem); color: #e7e2f7; margin: 0 0 1.1rem; }
.presented-by { color: #bbb5d3; margin: 0 0 1.5rem; }
.presented-by strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.6rem 0 1.25rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 12px;
  padding: .82rem 1.05rem;
  font-weight: 850;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: #2c2452; box-shadow: 0 10px 22px rgba(243,181,27,.18); }
.button-secondary { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.button-outline { border-color: var(--navy); color: var(--navy); background: #fff; }
.hero-note { max-width: 700px; font-size: .92rem; color: #c8c3da; padding-left: 1rem; border-left: 3px solid var(--gold); }
.hero-card {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 70px rgba(10,7,28,.26);
}
.card-kicker { color: var(--teal); font-weight: 900; text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; margin: 0; }
.hero-card h2 { font-family: Georgia, serif; color: var(--navy); font-size: 1.7rem; margin: .35rem 0 1.1rem; }
.golden-rules { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.golden-rules li { display: grid; grid-template-columns: 38px 1fr; gap: 10px; align-items: start; }
.golden-rules span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: var(--navy); font-weight: 900; }
.golden-rules p { margin: 0; font-size: .9rem; color: #4c5060; }
.golden-rules strong { color: var(--ink); }

.quick-strip { background: #fff; border-bottom: 1px solid var(--line); }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.quick-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 16px;
  text-decoration: none;
  border-right: 1px solid var(--line);
}
.quick-card:first-child { border-left: 1px solid var(--line); }
.quick-card:hover { background: var(--wash); }
.quick-icon { width: 42px; height: 42px; border-radius: 13px; background: var(--purple-soft); color: var(--purple); display: grid; place-items: center; font-weight: 950; font-size: 1.1rem; flex: 0 0 auto; }
.quick-icon.danger { background: var(--red-soft); color: var(--red); }
.quick-icon.help { background: var(--teal-soft); color: var(--teal); }
.quick-card strong { display: block; font-size: .86rem; color: var(--navy); }
.quick-card small { display: block; font-size: .72rem; color: var(--muted); }

.section { padding: 92px 0; }
.section-light { background: var(--wash); }
.section-tint { background: #f7f5ff; }
.section-dark { background: linear-gradient(135deg, #25194d, #36256e); color: #fff; }
.section-number-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.section-number { font-family: Georgia, serif; font-size: 4rem; line-height: 1; color: var(--gold); font-weight: 800; }
.section-icon { width: 58px; height: 58px; border-radius: 16px; background: var(--purple); color: #fff; display: grid; place-items: center; font-weight: 900; box-shadow: 0 10px 20px rgba(102,85,220,.18); }
.section-icon.glow { background: linear-gradient(135deg, #775cff, #9f67ff); box-shadow: 0 0 30px rgba(130,91,255,.4); }
.section-heading { max-width: 850px; margin-bottom: 34px; }
.section-heading h2 { font-family: Georgia, "Times New Roman", serif; color: var(--navy); font-size: clamp(2.3rem, 4vw, 3.7rem); line-height: 1.08; letter-spacing: -.025em; margin: .25rem 0 1rem; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; margin: 0; }
.section-heading.inverse h2, .section-heading.inverse p:not(.eyebrow) { color: #fff; }
.section-heading.inverse p:not(.eyebrow) { color: #d7d0e9; }
.section-heading.centered { text-align: center; max-width: 800px; margin: 0 auto 38px; }
.compact-heading { margin-bottom: 26px; }

.spotter-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 34px; align-items: center; }
.phone-demo { width: min(100%, 440px); margin-inline: auto; background: #171821; padding: 16px; border: 10px solid #171821; border-radius: 34px; box-shadow: var(--shadow); }
.phone-top { display: flex; justify-content: space-between; align-items: center; color: #fff; padding: 2px 8px 12px; font-size: .72rem; }
.message-meta { color: #c5c8d4; font-size: .72rem; text-align: center; padding: 10px 6px 16px; }
.message-bubble { background: #e9e9ee; color: #11131a; padding: 16px 18px; border-radius: 20px 20px 20px 6px; font-size: .9rem; line-height: 1.45; }
.fake-link { color: #285bba; text-decoration: underline; overflow-wrap: anywhere; }
.demo-caption { color: #aeb2c1; font-size: .68rem; margin: 12px 6px 2px; text-align: center; }
.red-flag-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.red-flag-panel h3 { color: var(--navy); font-family: Georgia, serif; font-size: 1.8rem; margin: 0; }
.red-flag-panel > p { color: var(--muted); margin: .2rem 0 1rem; }
.flag-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.flag-choice { border: 2px solid #d8d4ef; background: #fff; color: var(--navy); border-radius: 999px; padding: .6rem .8rem; font-weight: 800; }
.flag-choice:hover, .flag-choice.active { border-color: var(--purple); background: var(--purple-soft); }
.flag-result { min-height: 84px; margin: 18px 0; border-left: 4px solid var(--purple); background: #f7f5ff; border-radius: 0 12px 12px 0; padding: 14px 16px; color: #4c4861; }
.safe-response { display: flex; gap: 12px; background: var(--teal-soft); color: #234843; padding: 15px 16px; border-radius: 14px; }
.safe-response > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 900; flex: 0 0 auto; }
.safe-response p { margin: 0; }

.three-cards, .four-cards { display: grid; gap: 18px; margin: 30px 0; }
.three-cards { grid-template-columns: repeat(3, 1fr); }
.four-cards { grid-template-columns: repeat(4, 1fr); }
.info-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; background: #fff; box-shadow: 0 8px 24px rgba(31,36,48,.045); }
.info-card h3 { color: var(--navy); font-size: 1.25rem; margin: .8rem 0 .45rem; }
.info-card p { color: var(--muted); margin: 0; }
.info-card.emphasized { border-top: 5px solid var(--purple); }
.mini-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--purple-soft); color: var(--purple); display: grid; place-items: center; font-weight: 900; font-size: 1.05rem; }
.scam-types .info-card:nth-child(2) .mini-icon { background: var(--teal-soft); color: var(--teal); }
.scam-types .info-card:nth-child(3) .mini-icon { background: var(--gold-soft); color: #956800; }

.content-grid { display: grid; gap: 22px; margin: 34px 0; }
.two-wide { grid-template-columns: repeat(2, 1fr); }
.panel { background: var(--wash); border-radius: var(--radius-md); border: 1px solid var(--line); padding: 28px; }
.panel-red { background: var(--red-soft); border-color: #f0c6cd; }
.panel-violet { background: var(--purple-soft); border-color: #d9d1ff; }
.panel-label { margin: 0 0 .25rem; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; color: var(--red); }
.panel-violet .panel-label { color: var(--purple); }
.panel h3 { font-family: Georgia, serif; color: var(--navy); font-size: 1.65rem; margin: .2rem 0 .8rem; }
ul { padding-left: 1.2rem; }
li + li { margin-top: .45rem; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.8rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05rem; width: 1.25rem; height: 1.25rem; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: #fff; font-size: .7rem; font-weight: 900; }
.warning-list li::before { content: "!"; background: var(--red); }
.callout { background: #fff; border-radius: 12px; padding: 14px 16px; border: 1px solid #d9d1ff; margin: 1rem 0; }
.small-note { color: var(--muted); font-size: .86rem; }

.scam-tabs { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; margin: 36px 0; box-shadow: 0 12px 28px rgba(31,36,48,.05); }
.tab-list { display: grid; grid-template-columns: repeat(3, 1fr); background: #f4f3fa; border-bottom: 1px solid var(--line); }
.tab-list button { border: 0; padding: .9rem; background: transparent; color: var(--navy); font-weight: 850; }
.tab-list button[aria-selected="true"] { background: var(--navy); color: #fff; }
.tab-panel { padding: 28px; background: #fff; }
.tab-panel h3 { font-family: Georgia, serif; font-size: 1.55rem; color: var(--navy); margin: 0 0 1rem; }
.example-stack { display: grid; gap: 10px; }
.example-stack p { margin: 0; background: var(--purple-soft); border-radius: 10px; padding: 11px 13px; }

.response-card { border-radius: var(--radius-lg); padding: 30px; margin: 38px 0 20px; display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; align-items: start; }
.response-card-important { background: linear-gradient(135deg, #fff5f6, #f8f5ff); border: 1px solid #f0c6cd; }
.response-card h3 { font-family: Georgia, serif; color: var(--navy); font-size: 2rem; margin: .25rem 0 0; }
.steps-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.steps-list li { display: grid; grid-template-columns: 36px 1fr; gap: 10px; align-items: start; }
.steps-list li > span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: var(--navy); font-weight: 900; }
.steps-list p { margin: 0; }

.action-details, .learning-details { border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; overflow: hidden; margin-top: 18px; }
.action-details summary, .learning-details summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 900; color: var(--navy); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.action-details summary::-webkit-details-marker, .learning-details summary::-webkit-details-marker { display: none; }
.action-details summary::after, .learning-details summary::after { content: "+"; width: 30px; height: 30px; border-radius: 50%; background: var(--purple-soft); color: var(--purple); display: grid; place-items: center; flex: 0 0 auto; }
details[open] summary::after { content: "−"; }
.details-body { border-top: 1px solid var(--line); padding: 22px; }
.two-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.two-columns h3 { color: var(--navy); margin-top: 0; }

.deepfake-story { display: grid; grid-template-columns: .8fr 70px 1.2fr; gap: 18px; align-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 28px; }
.story-call { display: flex; align-items: center; gap: 14px; background: #fff; color: var(--ink); padding: 18px; border-radius: 16px; }
.avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--teal)); color: #fff; display: grid; place-items: center; font-weight: 900; flex: 0 0 auto; }
.story-call small, .story-call strong { display: block; }
.story-call p { margin: .45rem 0 0; color: var(--muted); }
.story-arrow { font-size: 2.5rem; color: var(--gold); text-align: center; }
.story-lessons h3 { font-family: Georgia, serif; font-size: 1.7rem; margin: 0 0 .6rem; }
.story-lessons em { color: var(--gold); font-style: normal; }
.story-lessons p { color: #d4cde6; margin: 0; }
.verify-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 26px; }
.verify-grid article { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 18px; }
.verify-grid span { width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; font-weight: 900; }
.verify-grid h3 { font-size: 1.05rem; margin: .8rem 0 .35rem; }
.verify-grid p { color: #d6d0e7; margin: 0; font-size: .85rem; }

.browser-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin: 30px 0; }
.browser-toolbar { background: #efeff5; padding: 12px 16px; display: flex; gap: 18px; align-items: center; }
.browser-dots { color: #a6a8b2; letter-spacing: .2em; font-size: .7rem; }
.address-bar { flex: 1; background: #fff; border: 1px solid #d9dae2; border-radius: 9px; padding: 7px 12px; font-size: .82rem; color: #424754; overflow-wrap: anywhere; }
.browser-body { display: grid; grid-template-columns: 1fr .9fr; gap: 36px; align-items: center; padding: 32px; background: #fff; }
.browser-body h3 { font-family: Georgia, serif; color: var(--navy); font-size: 1.8rem; margin: .2rem 0 .6rem; }
.url-parts { background: #171821; color: #fff; border-radius: 15px; padding: 20px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; overflow-wrap: anywhere; }
.url-fake { color: #ff969f; text-decoration: line-through; text-decoration-thickness: 2px; }
.url-real { color: #83e1d8; font-weight: 900; }
.url-parts small { display: block; font-family: inherit; color: #bfc2cf; margin-top: 10px; }
.malware-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.malware-grid article { background: var(--wash); border-radius: 12px; padding: 16px; }
.malware-grid h3 { margin: 0 0 .35rem; color: var(--navy); }
.malware-grid p { margin: 0; color: var(--muted); }
.wifi-banner { margin: 36px 0; background: var(--navy); color: #fff; border-radius: var(--radius-lg); display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; padding: 32px; }
.wifi-copy h3 { font-family: Georgia, serif; font-size: 1.85rem; margin: .25rem 0 .6rem; }
.wifi-copy p { color: #d6d0e7; margin-bottom: 0; }
.wifi-actions { display: grid; gap: 12px; align-content: center; }
.wifi-actions div { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: 12px; padding: 14px 16px; }
.wifi-actions strong, .wifi-actions span { display: block; }
.wifi-actions strong { color: var(--gold); }
.feature-columns { margin-top: 28px; }
.feature-columns article { border-top: 4px solid var(--teal); padding-top: 20px; }
.feature-columns h3 { color: var(--navy); font-family: Georgia, serif; font-size: 1.55rem; margin: .25rem 0 .6rem; }

.privacy-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.privacy-card { background: #fff; border: 1px solid #ded9f6; border-radius: var(--radius-md); padding: 24px; }
.privacy-icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--purple-soft); }
.privacy-card h3 { color: var(--navy); margin: .8rem 0 .35rem; }
.privacy-card p { margin: 0; color: var(--muted); }
.romance-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; margin: 28px 0; background: #fff; border: 1px solid #f0c6cd; border-radius: var(--radius-lg); padding: 28px; }
.romance-card h3 { font-family: Georgia, serif; color: var(--navy); font-size: 1.8rem; margin: .25rem 0 .55rem; }
.romance-card p { margin-bottom: 0; color: var(--muted); }

.password-scorecard { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 30px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: center; }
.password-intro h3 { font-family: Georgia, serif; font-size: 1.9rem; margin: .25rem 0 .6rem; }
.password-intro p:not(.eyebrow) { color: #d5cfe7; }
.score-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.score-grid div { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); border-radius: 14px; padding: 16px; }
.score-grid span, .score-grid strong, .score-grid small { display: block; }
.score-grid span { color: var(--gold); font-size: 1.2rem; font-weight: 900; }
.score-grid strong { margin: .15rem 0; }
.score-grid small { color: #cfc9e2; }
.security-question-card { margin: 30px 0; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.security-question-card h3 { font-family: Georgia, serif; color: var(--navy); font-size: 1.7rem; margin: .25rem 0 .55rem; }
.question-examples { display: grid; gap: 10px; }
.question-examples span { background: var(--purple-soft); color: #4a426f; padding: 12px 14px; border-radius: 10px; font-weight: 750; }
.breach-card { background: linear-gradient(135deg, #2a1d55, #3b2774); color: #fff; border-radius: var(--radius-lg); padding: 30px; margin: 34px 0; }
.breach-heading { display: flex; gap: 16px; align-items: center; }
.breach-heading h3 { font-family: Georgia, serif; font-size: 1.8rem; margin: .25rem 0; }
.breach-card > p { color: #d8d2e9; }
.horizontal-steps { grid-template-columns: repeat(4, 1fr); margin-top: 22px; }
.horizontal-steps li { grid-template-columns: 1fr; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 15px; }
.credit-freeze-card { background: var(--teal-soft); border: 1px solid #bfe8e2; border-radius: var(--radius-lg); padding: 28px; display: flex; gap: 24px; align-items: center; justify-content: space-between; }
.credit-freeze-card h3 { font-family: Georgia, serif; color: var(--navy); font-size: 1.65rem; margin: .25rem 0 .45rem; }
.credit-freeze-card p { color: #4d6663; margin-bottom: 0; }

.help-section { background: linear-gradient(135deg, #201844, #312462); color: #fff; }
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.resource-card { text-decoration: none; display: flex; align-items: flex-start; gap: 14px; background: #fff; color: var(--ink); padding: 18px; border-radius: 14px; border: 1px solid transparent; transition: transform .18s ease, border-color .18s ease; }
a.resource-card:hover { transform: translateY(-2px); border-color: #b7adf4; }
.resource-card > span { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--purple-soft); color: var(--purple); font-weight: 900; flex: 0 0 auto; font-size: .8rem; }
.resource-card strong { color: var(--navy); }
.resource-card p { color: var(--muted); margin: .2rem 0 0; font-size: .86rem; }
.non-link { cursor: default; }
.help-reminder { max-width: 900px; margin: 28px auto 0; display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); padding: 18px 20px; border-radius: 16px; }
.help-reminder > span { width: 34px; height: 34px; display: grid; place-items: center; background: var(--gold); color: var(--navy); border-radius: 50%; font-weight: 900; flex: 0 0 auto; }
.help-reminder p { margin: 0; color: #eeeaf8; }

.site-footer { background: #17122f; color: #d7d2e7; padding: 30px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.site-footer strong { color: #fff; font-size: 1.05rem; }
.site-footer p { margin: .15rem 0 0; }
.footer-small { color: #a9a4bc; font-size: .8rem; }
.footer-links { display: flex; align-items: center; gap: 16px; }
.footer-links a, .footer-links button { color: #fff; background: transparent; border: 0; text-decoration: underline; text-underline-offset: 3px; padding: 0; }

:focus-visible { outline: 3px solid #16b9ac; outline-offset: 3px; }

@media (max-width: 1080px) {
  .site-nav a { font-size: .75rem; padding-inline: .5rem; }
  .verify-grid { grid-template-columns: repeat(3, 1fr); }
  .four-cards { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-card:nth-child(2) { border-right: 1px solid var(--line); }
  .quick-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .horizontal-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 76px; }
  .nav-shell { min-height: 70px; }
  .menu-button { display: inline-flex; align-items: center; gap: 7px; margin-left: auto; border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 10px; padding: .5rem .65rem; font-weight: 800; }
  .site-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 10px 18px 18px; box-shadow: var(--shadow); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: .75rem; font-size: .9rem; }
  .text-controls { margin-left: 0; }
  .hero { padding-top: 64px; }
  .hero-grid, .spotter-layout, .response-card, .browser-body, .wifi-banner, .password-scorecard, .security-question-card, .romance-card { grid-template-columns: 1fr; }
  .hero-card { max-width: 660px; }
  .three-cards, .privacy-layout { grid-template-columns: 1fr 1fr; }
  .deepfake-story { grid-template-columns: 1fr; }
  .story-arrow { transform: rotate(90deg); }
  .malware-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 26px), var(--max)); }
  .brand small { display: none; }
  .brand strong { font-size: .84rem; }
  .menu-label { display: none; }
  .hero { padding: 54px 0 46px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-card { padding: 22px; }
  .section { padding: 68px 0; }
  .section-number { font-size: 3.1rem; }
  .section-icon { width: 50px; height: 50px; }
  .section-heading h2 { font-size: 2.2rem; }
  .quick-grid, .three-cards, .four-cards, .two-wide, .two-columns, .privacy-layout, .resource-grid, .horizontal-steps, .verify-grid, .malware-grid { grid-template-columns: 1fr; }
  .quick-card { border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .tab-list { grid-template-columns: 1fr; }
  .tab-list button { border-bottom: 1px solid var(--line); }
  .score-grid { grid-template-columns: 1fr 1fr; }
  .credit-freeze-card { align-items: flex-start; flex-direction: column; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

@media print {
  :root { --base-size: 12pt; }
  body { background: #fff; color: #000; }
  .site-header, .hero-orb, .quick-strip, .hero-actions, .menu-button, .footer-links, .flag-buttons { display: none !important; }
  .hero, .section-dark, .help-section, .breach-card, .password-scorecard, .wifi-banner { background: #fff !important; color: #000 !important; }
  .hero { padding: 20px 0; }
  .hero-grid { display: block; }
  .hero h1, .section-heading h2, .section-heading.inverse h2, .help-section h2, .breach-card h3, .password-scorecard h3 { color: #000 !important; }
  .hero-subtitle, .hero-note, .section-heading.inverse p:not(.eyebrow), .story-lessons p, .verify-grid p, .wifi-copy p, .password-intro p:not(.eyebrow), .breach-card > p, .help-reminder p { color: #333 !important; }
  .hero-card, .panel, .info-card, .resource-card, .privacy-card, .romance-card, .browser-card, .response-card, .security-question-card, .credit-freeze-card, .action-details, .learning-details { box-shadow: none !important; break-inside: avoid; }
  .verify-grid article, .horizontal-steps li, .score-grid div, .wifi-actions div, .help-reminder { background: #fff !important; color: #000 !important; border: 1px solid #bbb !important; }
  .resource-card { border: 1px solid #bbb !important; }
  a { text-decoration: none; }
  details { display: block; }
  details > * { display: block !important; }
  details summary::after { display: none; }
  .section { padding: 28px 0; }
}

/* =========================================================
   LIGHT, SENIOR-FRIENDLY THEME
   Calm high-contrast colors, larger visual targets, minimal dark blocks.
   ========================================================= */
:root {
  --navy: #17324d;
  --navy-2: #24465f;
  --purple: #6752a3;
  --purple-soft: #f4f1fb;
  --violet: #7861b0;
  --teal: #1b746f;
  --teal-soft: #edf8f6;
  --gold: #d89b20;
  --gold-soft: #fff7df;
  --red: #a93b45;
  --red-soft: #fff2f2;
  --ink: #25313b;
  --muted: #586875;
  --line: #d8e2e7;
  --paper: #fffefa;
  --wash: #f6fafb;
  --sky-soft: #edf6fb;
  --peach-soft: #fff4ea;
  --shadow: 0 12px 34px rgba(23, 50, 77, .08);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.68;
}

.site-header {
  background: rgba(255, 254, 250, .97);
  border-bottom-color: #dfe8ec;
  box-shadow: 0 2px 12px rgba(23, 50, 77, .035);
}

.brand { color: var(--navy); }
.brand-mark {
  background: var(--teal);
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(27, 116, 111, .16);
}
.site-nav a { color: #425566; }
.site-nav a:hover,
.site-nav a:focus-visible { background: var(--teal-soft); color: var(--navy); }
.site-nav .nav-help { background: var(--teal); color: #fff; }
.site-nav .nav-help:hover,
.site-nav .nav-help:focus-visible { background: #145e5a; }
.hero::before {
  background-image: radial-gradient(circle, rgba(27,116,111,.09) 1.3px, transparent 1.3px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to right, rgba(0,0,0,.38), transparent 68%);
}
.hero-orb { opacity: .72; filter: none; }
.orb-one { background: #e9e2f7; }
.orb-two { background: #f8e5b7; }
.orb-three { background: #dcefeb; }
.eyebrow { color: var(--teal); }
.eyebrow.gold { color: #9a6810; }
.hero h1 {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--navy);
  font-size: clamp(3rem, 6.6vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
}
.hero-subtitle { color: #455b6a; font-size: clamp(1.16rem, 2.1vw, 1.42rem); }
.presented-by { color: #627481; }
.presented-by strong { color: var(--navy); }
.button-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 18px rgba(27,116,111,.16); }
.button-primary:hover { background: #145e5a; }
.button-secondary { background: #fff; color: var(--navy); border-color: #a9bdc7; }
.button-secondary:hover { background: var(--sky-soft); }
.button-outline { border-color: var(--teal); color: var(--teal); background: #fff; }
.hero-note { color: #586d79; border-left-color: var(--gold); }
.hero-card {
  background: rgba(255,255,255,.98);
  border: 1px solid #dbe6ea;
  box-shadow: 0 18px 44px rgba(23,50,77,.10);
}
.hero-card h2 {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--navy);
  font-weight: 800;
}
.golden-rules span { background: var(--gold-soft); color: #80580f; border: 1px solid #efd58f; }
.golden-rules p { color: #53646f; }

.quick-strip { background: #fffefa; }
.quick-card:hover { background: var(--sky-soft); }
.quick-icon { background: var(--sky-soft); color: #356a85; }
.quick-icon.danger { background: var(--red-soft); color: var(--red); }
.quick-icon.help { background: var(--teal-soft); color: var(--teal); }

.section { padding: 90px 0; }
.section-light { background: var(--wash); }
.section-tint { background: #f8f6fc; }
.section-dark {
  background: linear-gradient(135deg, #f1f8fb 0%, #f8f6fc 56%, #f6fbf8 100%);
  color: var(--ink);
  border-block: 1px solid #dfe8ec;
}
.section-number { color: #bc8120; }
.section-icon {
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid #cfe6e2;
  box-shadow: none;
}
.section-icon.glow { background: var(--purple-soft); color: var(--purple); box-shadow: none; border-color: #ddd5ef; }
.section-heading h2,
.panel h3,
.response-card h3,
.tab-panel h3,
.browser-body h3,
.feature-columns h3,
.romance-card h3,
.security-question-card h3,
.credit-freeze-card h3,
.breach-heading h3,
.password-intro h3,
.wifi-copy h3,
.story-lessons h3 {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.section-heading.inverse h2 { color: var(--navy); }
.section-heading.inverse p:not(.eyebrow) { color: var(--muted); }

.info-card,
.red-flag-panel,
.action-details,
.learning-details,
.browser-card,
.privacy-card,
.romance-card,
.security-question-card {
  box-shadow: 0 8px 24px rgba(23,50,77,.045);
}
.info-card { border-color: #dbe5e9; }
.info-card.emphasized { border-top-color: var(--teal); }
.info-card h3 { color: var(--navy); }
.mini-icon { background: var(--sky-soft); color: #356a85; }
.scam-types .info-card:nth-child(2) .mini-icon { background: var(--teal-soft); color: var(--teal); }
.scam-types .info-card:nth-child(3) .mini-icon { background: var(--gold-soft); color: #8b6213; }
.panel-violet { background: #f6f3fb; border-color: #ddd7ea; }
.panel-red { background: #fff5f3; border-color: #efd5d1; }
.callout { border-color: #ccdce2; }
.flag-result { background: var(--sky-soft); border-left-color: #4b86a4; color: #3e5664; }
.safe-response { background: var(--teal-soft); color: #315b57; }

.tab-list { background: #f1f6f8; }
.tab-list button[aria-selected="true"] { background: var(--teal); color: #fff; }
.example-stack p { background: var(--sky-soft); }

.response-card-important { background: linear-gradient(135deg, #fff6f2, #f5f9fb); border-color: #ead9d3; }
.action-details summary::after,
.learning-details summary::after { background: var(--sky-soft); color: #356a85; }

.deepfake-story {
  background: #fff;
  border-color: #d8e4e9;
  box-shadow: 0 10px 28px rgba(23,50,77,.055);
}
.story-call { border: 1px solid #dce7eb; box-shadow: none; }
.avatar { background: linear-gradient(135deg, #7c68a9, #4f8f8a); }
.story-arrow { color: #b97d14; }
.story-lessons em { color: #9c6b14; font-weight: 800; }
.story-lessons p { color: var(--muted); }
.verify-grid article { background: #fff; border-color: #d8e4e9; }
.verify-grid span { background: var(--gold-soft); color: #80580f; border: 1px solid #efd58f; }
.verify-grid h3 { color: var(--navy); }
.verify-grid p { color: var(--muted); }

.browser-toolbar { background: #eef3f5; }
.url-parts { background: #f6f8f9; color: var(--ink); border: 1px solid #d7e1e5; }
.url-fake { color: #a93b45; }
.url-real { color: #17675f; }
.url-parts small { color: #62727d; }
.malware-grid article { background: #f5f9fa; border: 1px solid #e0e8eb; }

.wifi-banner {
  background: linear-gradient(135deg, #edf7fb, #f2faf7);
  color: var(--ink);
  border: 1px solid #d5e5e8;
}
.wifi-copy p { color: var(--muted); }
.wifi-actions div { background: #fff; border-color: #d7e4e7; }
.wifi-actions strong { color: #8e6414; }

.password-scorecard {
  background: linear-gradient(135deg, #f4f1fb, #edf7fb);
  color: var(--ink);
  border: 1px solid #d9e2e8;
}
.password-intro p:not(.eyebrow) { color: var(--muted); }
.score-grid div { background: #fff; border-color: #d7e2e6; }
.score-grid span { color: #986814; }
.score-grid small { color: var(--muted); }
.question-examples span { background: var(--sky-soft); color: #3f5c6b; }

.breach-card {
  background: linear-gradient(135deg, #f3f8fb, #f5f2fa);
  color: var(--ink);
  border: 1px solid #d9e2e8;
}
.breach-card > p { color: var(--muted); }
.horizontal-steps li { background: #fff; border-color: #d8e3e7; }
.credit-freeze-card { background: #eff9f6; border-color: #cfe5df; }

.help-section {
  background: linear-gradient(135deg, #eef7fb 0%, #fffaf0 48%, #f0f9f6 100%);
  color: var(--ink);
  border-top: 1px solid #dbe6e9;
}
.help-section .section-heading.inverse h2 { color: var(--navy); }
.help-section .section-heading.inverse p:not(.eyebrow) { color: var(--muted); }
.resource-card { border-color: #d9e4e8; }
.resource-card > span { background: var(--sky-soft); color: #356a85; }
.help-reminder { background: #fff; border-color: #d6e3e7; color: var(--ink); }
.help-reminder p { color: #536873; }
.help-reminder > span { background: var(--gold-soft); color: #80580f; border: 1px solid #efd58f; }

.site-footer { background: #f4f8f9; color: #526672; border-top: 1px solid #d9e4e8; }
.site-footer strong { color: var(--navy); }
.footer-small { color: #6e7f89; }
.footer-links a,
.footer-links button { color: var(--navy); }

:focus-visible { outline-color: #247d77; }

@media (max-width: 900px) {
  .site-nav { background: #fffefa; }
}

@media print {
  .hero, .section-dark, .help-section, .breach-card, .password-scorecard, .wifi-banner { border: 0 !important; }
}


/* --- Multi-page navigation and topic directory --- */
.site-nav a[aria-current="page"] { background: var(--teal-soft); color: var(--navy); box-shadow: inset 0 -3px 0 var(--teal); }
.site-nav .nav-help[aria-current="page"] { background: var(--teal); color: #fff; box-shadow: none; }
.topic-icon-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.topic-directory { background: #fffefa; }
.topic-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; margin-top: 34px; }
.topic-link-card { display: grid; grid-template-columns: 62px 1fr; gap: 18px; align-items: start; text-decoration: none; background: #fff; border: 1px solid #dbe5e9; border-radius: var(--radius-md); padding: 24px; box-shadow: 0 8px 24px rgba(23,50,77,.045); transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
.topic-link-card:hover, .topic-link-card:focus-visible { transform: translateY(-2px); border-color: #a8cbc8; box-shadow: 0 12px 28px rgba(23,50,77,.075); }
.topic-card-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; background: var(--sky-soft); color: #356a85; font-weight: 900; font-size: 1.25rem; }
.topic-link-card:nth-child(2) .topic-card-icon, .topic-link-card:nth-child(5) .topic-card-icon { background: var(--purple-soft); color: var(--purple); }
.topic-link-card:nth-child(3) .topic-card-icon, .topic-link-card:nth-child(6) .topic-card-icon { background: var(--teal-soft); color: var(--teal); }
.topic-link-card:nth-child(4) .topic-card-icon { background: var(--gold-soft); color: #80580f; }
.topic-link-card h3 { margin: 0 0 .35rem; color: var(--navy); font-size: 1.3rem; }
.topic-link-card p { margin: 0 0 .75rem; color: var(--muted); }
.topic-link-card strong { color: var(--teal); font-size: .9rem; }
.next-topic-card, .resource-callout { margin-top: 32px; display: flex; justify-content: space-between; align-items: center; gap: 26px; padding: 26px; border: 1px solid #cfe5df; background: #eff9f6; border-radius: var(--radius-md); }
.next-topic-card h3, .resource-callout h3 { margin: .15rem 0 .4rem; color: var(--navy); }
.next-topic-card p, .resource-callout p { margin: 0; color: var(--muted); }
.maintenance-cards { margin-top: 34px; }
.emergency-intro { padding-bottom: 42px; background: linear-gradient(135deg,#fffaf4,#f2f9fb); border-bottom: 1px solid #dfe8ec; }
.recovery-section { padding-top: 48px; }
.page-practice { border-top: 1px solid #dfe8ec; }

@media (max-width: 1120px) {
  .nav-shell { gap: 10px; }
  .site-nav a { font-size: .74rem; padding: .55rem .52rem; }
  .brand small { display: none; }
}
@media (max-width: 900px) {
  .brand small { display: block; }
  .topic-grid { grid-template-columns: 1fr; }
  .next-topic-card, .resource-callout { align-items: flex-start; flex-direction: column; }
  .site-nav a[aria-current="page"] { box-shadow: none; }
}
@media (max-width: 560px) {
  .labeled-controls button { padding-inline: .5rem; font-size: .68rem; }
  .topic-link-card { grid-template-columns: 48px 1fr; padding: 19px; gap: 14px; }
  .topic-card-icon { width: 46px; height: 46px; border-radius: 13px; }
}
@media print {
  .topic-directory { background: #fff !important; }
  .topic-link-card, .next-topic-card, .resource-callout { box-shadow: none !important; }
}

/* =========================================================
   HOME PAGE REFINEMENT
   Bright, calm introduction; action/recovery content lives on topic pages.
   ========================================================= */
.home-hero {
  background: linear-gradient(135deg, #f3f9fc 0%, #fffdf7 58%, #f2faf7 100%);
  color: var(--ink);
  border-bottom: 1px solid #dce7eb;
  padding: 82px 0 76px;
}
.home-hero::before {
  background-image: radial-gradient(circle, rgba(27,116,111,.10) 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to right, rgba(0,0,0,.28), transparent 72%);
}
.home-hero .orb-one { width: 230px; height: 230px; right: -70px; top: -80px; background: #e8f3f8; }
.home-hero .orb-two { width: 190px; height: 190px; right: 19%; bottom: -115px; background: #fff0c9; }
.home-hero .orb-three { width: 160px; height: 160px; left: -75px; bottom: -60px; background: #e1f2ee; }
.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.home-hero .hero-subtitle { max-width: 720px; }
.home-hero .hero-note { max-width: 680px; margin-top: 1.35rem; background: rgba(255,255,255,.7); border: 1px solid #dce7eb; border-left: 4px solid var(--gold); border-radius: 10px; padding: .85rem 1rem; }
.confidence-card {
  background: rgba(255,255,255,.96);
  border: 1px solid #d8e5e9;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 18px 44px rgba(23,50,77,.08);
}
.confidence-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--teal-soft);
  font-size: 1.55rem;
  margin-bottom: 16px;
}
.confidence-card h2 { margin: .35rem 0 1.2rem; color: var(--navy); font-size: 1.85rem; font-weight: 800; }
.confidence-steps { display: grid; gap: 12px; }
.confidence-steps > div { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; padding: 13px 14px; background: #fbfdfd; border: 1px solid #e0e8eb; border-radius: 14px; }
.confidence-steps span { width: 36px; height: 36px; display: grid; place-items: center; background: var(--sky-soft); border-radius: 11px; color: var(--navy); }
.confidence-steps > div:nth-child(2) span { background: var(--gold-soft); }
.confidence-steps > div:nth-child(3) span { background: var(--teal-soft); }
.confidence-steps p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.confidence-steps strong { color: var(--navy); }
.home-intro { background: #fff; }
.home-intro .section-heading { max-width: 800px; margin-inline: auto; }
.home-benefits { margin-top: 32px; }
.home-benefits .info-card { padding: 26px; }
.topic-help-card { grid-column: 1 / -1; max-width: 780px; }
.topic-help-card .topic-card-icon { background: var(--peach-soft) !important; color: #8b5c20 !important; }
.golden-home { background: linear-gradient(135deg, #fffaf0, #f2faf7); border-top: 1px solid #e2e9e8; }
.golden-home-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 64px; align-items: start; }
.home-rules { background: #fff; border: 1px solid #dce6e9; border-radius: var(--radius-lg); padding: 26px; box-shadow: 0 10px 28px rgba(23,50,77,.05); }
.home-rules li { padding: 4px 0; }

@media (max-width: 900px) {
  .home-hero-grid, .golden-home-grid { grid-template-columns: 1fr; gap: 34px; }
  .confidence-card { max-width: 680px; }
  .topic-help-card { grid-column: auto; max-width: none; }
}

@media (max-width: 680px) {
  .home-hero { padding: 56px 0 50px; }
  .confidence-card { padding: 22px; }
  .confidence-steps > div { grid-template-columns: 36px 1fr; padding: 11px 12px; }
  .confidence-steps span { width: 32px; height: 32px; }
}

@media print {
  .home-hero { background: #fff !important; border: 0 !important; }
  .confidence-card, .home-rules { box-shadow: none !important; }
}


/* =========================================================
   GOLD AWARD PAGE
   ========================================================= */
.gold-award-intro {
  background: linear-gradient(135deg, #fffdf8 0%, #f5fafb 58%, #fff8e8 100%);
  border-bottom: 1px solid #e2e9e8;
}
.gold-award-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: .48rem .8rem;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid #efd58f;
  color: #80580f;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.gold-award-heading { max-width: 880px; }
.gold-project-card { background: #fff; }
.panel-gold {
  background: #fffaf0;
  border-color: #eddaa5;
}
.panel-gold .panel-label { color: #986814; }
.panel-gold .button { margin-top: 12px; }
.journey-section { padding-block: 74px; }
.journey-card {
  max-width: 900px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid #dbe5e9;
  border-top: 5px solid #d7a22c;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 10px 28px rgba(23,50,77,.05);
}
.journey-card h2 {
  margin: .25rem 0 .8rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}
.journey-placeholder {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  padding: 20px 22px;
  background: #f8fbfb;
  border: 1px dashed #b9ced0;
  border-radius: 14px;
}
@media (max-width: 1200px) and (min-width: 901px) {
  .nav-shell { gap: 8px; }
  .site-nav { gap: 2px; }
  .site-nav a { font-size: .70rem; padding: .52rem .42rem; }
  .brand strong { font-size: .94rem; }
}
@media print {
  .gold-award-intro { background: #fff !important; }
  .journey-card { box-shadow: none !important; }
}

/* =========================================================
   SENIOR INTERNET SAFETY BRAND REFRESH
   ========================================================= */
.brand-copy {
  display: block;
  line-height: 1.05;
}
.brand strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.06;
  letter-spacing: -.02em;
  font-weight: 850;
}
.brand-senior { color: #274f73; }
.brand-security { color: #16766f; }
.brand small {
  display: block;
  margin-top: 5px;
  color: #75609f;
  font-size: .78rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}
.home-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(205,235,231,.80), transparent 27%),
    radial-gradient(circle at 7% 84%, rgba(238,229,249,.68), transparent 26%),
    linear-gradient(135deg, #fffdf6 0%, #f1faf9 48%, #f3f7fc 100%);
}
.home-hero .hero-copy { max-width: 760px; }
.home-hero h1 {
  margin-bottom: .55rem;
  font-size: clamp(3.7rem, 7.3vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.055em;
}
.hero-title-senior { color: #274f73; }
.hero-title-security { color: #16766f; }
.hero-tagline {
  margin: 0 0 1.25rem;
  color: #745d9d;
  font-size: clamp(1.42rem, 2.4vw, 2rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.02em;
}
.home-hero .hero-subtitle {
  max-width: 720px;
  font-size: clamp(1.18rem, 1.9vw, 1.38rem);
  color: #425966;
}
.home-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: .42rem .72rem;
  border-radius: 999px;
  background: #fff4d4;
  border: 1px solid #f0db9d;
  color: #855f14;
  font-weight: 850;
  letter-spacing: .04em;
}

@media (max-width: 1200px) and (min-width: 901px) {
  .brand strong { font-size: 1.08rem; }
  .brand small { font-size: .68rem; }
}
@media (max-width: 900px) {
  .brand strong { font-size: 1.12rem; }
  .brand small { display: block; font-size: .69rem; }
}
@media (max-width: 680px) {
  .brand strong { font-size: 1.02rem; }
  .brand small { display: none; }
  .home-hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .hero-tagline { font-size: clamp(1.3rem, 6vw, 1.65rem); }
}


/* --- Gold Award prominence --- */
.gold-award-banner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem 1rem;
  margin: 0 0 1.15rem;
  padding: .72rem 1rem;
  background: linear-gradient(135deg, #fff2bd 0%, #fff8df 100%);
  border: 1px solid #e5c05e;
  border-radius: 14px;
  color: #5f4510;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(109, 78, 14, .07);
}
.gold-award-banner:hover,
.gold-award-banner:focus-visible {
  background: #fff0ad;
  border-color: #d3a83d;
}
.gold-award-label {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 850;
  letter-spacing: .01em;
}
.gold-award-link {
  font-size: .84rem;
  font-weight: 750;
  color: #775715;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .gold-award-banner { display: flex; align-items: flex-start; }
  .gold-award-link { white-space: normal; width: 100%; }
}
@media print {
  .gold-award-banner { box-shadow: none; background: #fff !important; border-color: #aaa !important; }
  .gold-award-link { display: none; }
}

/* =========================================================
   VISUAL EXAMPLES
   Mock screenshot-style examples for scam spotting.
   ========================================================= */
.example-gallery { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; margin: 30px 0; }
.example-card { background: #fff; border: 1px solid #dbe5e9; border-radius: 22px; overflow: hidden; box-shadow: 0 10px 28px rgba(23,50,77,.06); }
.example-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 14px 18px; background: #f4f8fa; border-bottom: 1px solid #dbe5e9; }
.example-head strong { color: var(--navy); font-size: 1.03rem; }
.example-head span { color: var(--muted); font-size: .78rem; font-weight: 700; }
.example-body { padding: 18px; }
.example-note { color: var(--muted); margin: .35rem 0 0; font-size: .92rem; }
.flag-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.flag-tags span { display: inline-flex; align-items: center; padding: .35rem .62rem; border-radius: 999px; background: var(--red-soft); color: var(--red); border: 1px solid #efc5cc; font-size: .77rem; font-weight: 800; }
.flag-tags.gold span { background: var(--gold-soft); color: #8a6214; border-color: #efd58f; }
.flag-tags.teal span { background: var(--teal-soft); color: var(--teal); border-color: #cfe5df; }
.email-window { border: 1px solid #dce6ea; border-radius: 16px; overflow: hidden; background: #fff; }
.email-toolbar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #eef4f6; color: #8a97a0; font-size: .75rem; }
.dot-row { letter-spacing: .2em; }
.email-content { padding: 16px 16px 12px; }
.email-fields { display: grid; gap: 7px; margin-bottom: 12px; color: #4d5f6b; font-size: .86rem; }
.email-fields strong { color: var(--navy); }
.email-message { border-top: 1px solid #e4ecef; padding-top: 14px; }
.email-message p { margin: 0 0 .75rem; }
.email-cta { display: inline-block; padding: .6rem .9rem; border-radius: 10px; background: #d9465d; color: #fff; font-weight: 800; font-size: .9rem; text-decoration: none; }
.link-preview { margin-top: 10px; padding: 8px 10px; background: #f8fafb; border: 1px dashed #c9d7dd; border-radius: 10px; font-size: .82rem; color: #516370; overflow-wrap: anywhere; }
.phone-shot { max-width: 360px; margin-inline: auto; background: #1b2230; border-radius: 28px; padding: 12px; box-shadow: 0 18px 32px rgba(15,24,38,.16); }
.phone-status { color: #fff; font-size: .72rem; display: flex; justify-content: space-between; padding: 4px 8px 10px; }
.phone-screen { background: #f8fbfd; border-radius: 20px; padding: 14px; min-height: 290px; }
.phone-meta { text-align: center; color: #6c7a84; font-size: .78rem; margin-bottom: 12px; }
.bubble { max-width: 90%; padding: 12px 14px; border-radius: 18px; font-size: .92rem; line-height: 1.45; margin-bottom: 10px; }
.bubble.incoming { background: #e7edf1; color: #17212c; border-bottom-left-radius: 7px; }
.bubble.outgoing { margin-left: auto; background: #dff4f1; color: #194540; border-bottom-right-radius: 7px; }
.phone-link { color: #1f5cc1; text-decoration: underline; overflow-wrap: anywhere; }
.voicemail-card { background: #f7fafb; border: 1px solid #dce5e9; border-radius: 16px; padding: 16px; }
.voicemail-top { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 12px; }
.voicemail-top strong { color: var(--navy); }
.play-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: #fff; border: 1px solid #dbe5e9; border-radius: 12px; }
.play-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-size: .9rem; font-weight: 900; }
.waveform { flex: 1; height: 8px; border-radius: 999px; background: linear-gradient(90deg, #8ecbc4 0 14%, #d6e7ea 14% 22%, #8ecbc4 22% 40%, #d6e7ea 40% 52%, #8ecbc4 52% 63%, #d6e7ea 63% 74%, #8ecbc4 74% 100%); }
.voicemail-text { margin-top: 12px; color: #4c5e6a; }
.browser-shot { border: 1px solid #dbe5e9; border-radius: 18px; overflow: hidden; background: #fff; }
.browser-shot .topbar { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: #eef4f6; border-bottom: 1px solid #dbe5e9; }
.browser-shot .address { flex: 1; background: #fff; border: 1px solid #d4dfe4; border-radius: 10px; padding: 8px 10px; font-size: .84rem; color: #4e606c; overflow-wrap: anywhere; }
.browser-page { padding: 18px; }
.browser-banner { height: 96px; border-radius: 14px; background: linear-gradient(135deg, #e9f6fb, #f5eefc); margin-bottom: 16px; }
.browser-page h4 { margin: 0 0 .55rem; color: var(--navy); font-size: 1.15rem; }
.browser-page p { margin: 0 0 .7rem; color: var(--muted); }
.pop-alert { background: #fff5f3; border: 1px solid #edc8ca; color: #8f313d; border-radius: 12px; padding: 10px 12px; font-weight: 700; }
.profile-shot { border: 1px solid #dbe5e9; border-radius: 18px; overflow: hidden; background: #fff; }
.profile-cover { height: 84px; background: linear-gradient(135deg, #f4c0c8, #f4e9b8, #d8f1ed); }
.profile-body { padding: 0 18px 18px; }
.profile-avatar { width: 74px; height: 74px; margin-top: -32px; border-radius: 50%; border: 4px solid #fff; background: linear-gradient(135deg, #8769b2, #5ca9a1); color: #fff; display: grid; place-items: center; font-size: 1.2rem; font-weight: 900; }
.profile-body h4 { margin: 12px 0 .2rem; color: var(--navy); font-size: 1.15rem; }
.profile-handle { color: #6a7b85; font-size: .84rem; }
.profile-stats { display: flex; gap: 16px; margin: 10px 0 12px; font-size: .84rem; color: #50626e; }
.profile-bio { color: var(--muted); font-size: .92rem; margin-bottom: 10px; }
.profile-links { display: flex; flex-wrap: wrap; gap: 8px; }
.profile-links span { padding: .35rem .55rem; border-radius: 999px; background: #f7fafb; border: 1px solid #dbe5e9; color: #5a6a75; font-size: .75rem; }
.qr-demo { display: grid; grid-template-columns: 148px 1fr; gap: 18px; align-items: center; }
.qr-box { width: 148px; height: 148px; border-radius: 12px; background: conic-gradient(from 90deg, #17212c 0 25%, #fff 0 50%, #17212c 0 75%, #fff 0) 0 0/24px 24px; padding: 12px; position: relative; }
.qr-box::after { content: ""; position: absolute; inset: 10px; border: 5px solid rgba(255,255,255,.95); mix-blend-mode: screen; }
.qr-label { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; padding: .35rem .6rem; background: var(--gold-soft); border: 1px solid #efd58f; border-radius: 999px; color: #855f14; font-weight: 800; font-size: .76rem; }
.form-demo { border: 1px solid #dbe5e9; border-radius: 18px; padding: 18px; background: #fff; }
.form-demo h4 { margin: 0 0 .8rem; color: var(--navy); }
.form-row { display: grid; gap: 6px; margin-bottom: 10px; }
.form-row label { color: #5f707c; font-size: .8rem; font-weight: 700; }
.form-row .field { background: #f8fafb; border: 1px solid #dce6ea; border-radius: 10px; padding: 10px 12px; color: #84929b; }
.auth-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.auth-chips span { padding: .35rem .6rem; border-radius: 999px; background: var(--teal-soft); color: var(--teal); border: 1px solid #cfe5df; font-size: .76rem; font-weight: 800; }

@media (max-width: 900px) {
  .example-gallery, .qr-demo { grid-template-columns: 1fr; }
  .phone-shot { max-width: none; }
}

@media print {
  .example-card { box-shadow: none !important; }
}

/* QR image example */
.example-card.wide { grid-column: 1 / -1; }
.example-figure { margin: 0; display: grid; gap: 14px; }
.example-figure img { width: 100%; max-width: 780px; display: block; margin: 0 auto; border-radius: 16px; border: 1px solid #dbe5e9; box-shadow: 0 8px 24px rgba(23,50,77,.08); }
.example-figure figcaption { color: var(--muted); font-size: .92rem; }
.public-warning-list { margin: 10px 0 0; }
.public-warning-list li + li { margin-top: .35rem; }
@media print {
  .example-figure img { box-shadow: none !important; }
}

/* =========================================================
   SCAMS PAGE: COLLAPSIBLE EXAMPLES BY TYPE
   Keeps phishing, smishing, and vishing examples together.
   ========================================================= */
.scam-example-heading { margin-top: 42px; }
.scam-accordion { display: grid; gap: 16px; margin: 24px 0 54px; }
.scam-example-details { background: #fff; border: 1px solid #d8e4e9; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 24px rgba(23,50,77,.045); }
.scam-example-details summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 52px 1fr 42px; gap: 14px; align-items: center; padding: 18px 20px; color: var(--navy); font-weight: 800; }
.scam-example-details summary::-webkit-details-marker { display: none; }
.scam-example-details summary::after { content: "+"; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--sky-soft); color: #356a85; font-size: 1.2rem; font-weight: 800; }
.scam-example-details[open] summary::after { content: "−"; }
.scam-example-details[open] summary { background: #f7fbfb; border-bottom: 1px solid #dce7eb; }
.scam-example-details summary strong { display: block; font-size: 1.28rem; line-height: 1.15; }
.scam-example-details summary small { display: block; margin-top: 4px; color: var(--muted); font-size: .84rem; font-weight: 700; }
.accordion-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--sky-soft); color: #356a85; font-size: 1.05rem; }
.accordion-icon.text-icon { background: var(--teal-soft); color: var(--teal); }
.accordion-icon.phone-icon { background: var(--gold-soft); color: #80580f; }
.scam-example-body { padding: 24px; }
.accordion-example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.accordion-example-grid h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.25rem; }
.embedded-example { margin: 0; box-shadow: none; }
.vishing-prevention-inline { margin-top: 24px; padding: 22px; background: linear-gradient(135deg, #fff6f2, #f7fafb); border: 1px solid #ead9d3; border-radius: 16px; }
.vishing-prevention-inline h3 { color: var(--navy); margin: .2rem 0 1rem; }
.shared-flags-heading { margin-top: 12px; }
@media (max-width: 900px) {
  .accordion-example-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .scam-example-details summary { grid-template-columns: 42px 1fr 34px; padding: 15px 14px; gap: 10px; }
  .accordion-icon { width: 40px; height: 40px; border-radius: 12px; }
  .scam-example-body { padding: 16px; }
}
@media print {
  .scam-example-details { box-shadow: none !important; }
  .scam-example-details > * { display: block !important; }
  .scam-example-details summary::after { display: none !important; }
}

/* Homepage: single-column introduction after removing duplicate Topics Covered card */
.home-hero-grid { grid-template-columns: 1fr; }
.home-hero .hero-copy { max-width: 920px; }


/* Homepage hero: more compact vertical footprint */
.home-hero { padding: 48px 0 42px; }
.home-hero .gold-award-banner { margin-bottom: 16px; }
.home-hero h1 { margin-top: 0; }
@media (max-width: 680px) {
  .home-hero { padding: 38px 0 34px; }
}

/* Homepage vertical spacing: compact hero and topic transition */
.home-hero {
  padding: 22px 0 20px;
}
.home-hero .gold-award-banner {
  margin-bottom: 8px;
  padding: .52rem .78rem;
}
.home-hero h1 {
  margin: 0 0 .2rem;
  font-size: clamp(3.15rem, 6vw, 5.35rem);
}
.home-hero .hero-tagline {
  margin: 0;
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
}
.topic-directory {
  padding-top: 24px;
  padding-bottom: 64px;
}
.topic-directory .section-heading {
  margin-bottom: 18px;
}
.topic-directory .section-heading .eyebrow {
  margin-bottom: .15rem;
}
.topic-directory .section-heading h2 {
  margin: .1rem 0 .35rem;
}
.topic-directory .topic-grid {
  margin-top: 20px;
}
@media (max-width: 680px) {
  .home-hero {
    padding: 18px 0 17px;
  }
  .home-hero .gold-award-banner {
    margin-bottom: 7px;
    padding: .48rem .7rem;
  }
  .home-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.35rem);
  }
  .home-hero .hero-tagline {
    font-size: clamp(1.15rem, 5.5vw, 1.48rem);
  }
  .topic-directory {
    padding-top: 18px;
    padding-bottom: 48px;
  }
}

/* =========================================================
   INNER PAGE BANNER
   Compact shared identity block for every page except Home.
   ========================================================= */
.inner-page-banner {
  background:
    radial-gradient(circle at 88% 25%, rgba(226, 241, 247, .95), transparent 28%),
    linear-gradient(105deg, #f2faf9 0%, #fffaf0 54%, #f2f7fc 100%);
  border-bottom: 1px solid #dbe6e9;
  padding: 20px 0 18px;
}
.inner-page-banner-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.inner-page-identity { min-width: 0; }
.inner-page-site-title {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 850;
}
.inner-page-senior { color: #274f73; }
.inner-page-safety { color: #16766f; }
.inner-page-tagline {
  margin: .38rem 0 0;
  color: #745d9d;
  font-size: clamp(.9rem, 1.45vw, 1.08rem);
  line-height: 1.2;
  font-weight: 750;
}
.inner-page-current {
  flex: 0 0 auto;
  max-width: 390px;
  padding: .62rem .92rem;
  border-radius: 13px;
  background: rgba(255,255,255,.88);
  border: 1px solid #d8e4e8;
  border-left: 4px solid #d7a22c;
  color: var(--navy);
  font-weight: 850;
  font-size: clamp(.92rem, 1.3vw, 1.08rem);
  line-height: 1.25;
  text-align: right;
  box-shadow: 0 5px 16px rgba(23,50,77,.045);
}
.inner-page main > .section:first-child {
  padding-top: 38px;
}
.inner-page main > .section:first-child .topic-icon-row {
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .inner-page-banner { padding: 16px 0 15px; }
  .inner-page-banner-grid { gap: 16px; }
  .inner-page-site-title { font-size: clamp(1.75rem, 5vw, 2.35rem); }
  .inner-page-current { max-width: 300px; font-size: .9rem; padding: .55rem .72rem; }
  .inner-page main > .section:first-child { padding-top: 28px; }
}

@media (max-width: 680px) {
  .inner-page-banner { padding: 13px 0 12px; }
  .inner-page-banner-grid { align-items: flex-start; flex-direction: column; gap: 10px; }
  .inner-page-site-title { font-size: clamp(1.65rem, 8vw, 2.15rem); }
  .inner-page-tagline { margin-top: .25rem; font-size: .82rem; }
  .inner-page-current {
    max-width: none;
    width: 100%;
    text-align: left;
    padding: .48rem .66rem;
    border-radius: 10px;
    font-size: .84rem;
  }
  .inner-page main > .section:first-child { padding-top: 22px; }
}

@media print {
  .inner-page-banner { background: #fff !important; border-bottom: 1px solid #bbb !important; }
  .inner-page-current { box-shadow: none !important; }
}

/* =========================================================
   STRUCTURED SECURITY PAGE
   Tighter spacing and consistent hierarchy for the former Web & Devices page.
   ========================================================= */
.security-hub .security-section {
  padding: 42px 0;
}
.security-hub .security-section + .security-section {
  border-top: 1px solid #dfe8ec;
}
.security-hub .inner-page main > .section:first-child {
  padding-top: 30px;
}
.security-hub .structured-heading {
  max-width: none;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px 18px;
  border: 1px solid #dbe6e9;
  border-radius: 16px;
  background: #f5fafb;
}
.security-hub .structured-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
}
.security-hub .structured-heading p {
  margin: .25rem 0 0 !important;
  font-size: .95rem !important;
  color: var(--muted) !important;
}
.security-hub .structured-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid #cfe5df;
  font-weight: 900;
  font-size: .82rem;
}
.security-hub .malware-heading { background: #fff6f3; border-color: #efd8d3; }
.security-hub .malware-heading .structured-icon { background: var(--red-soft); color: var(--red); border-color: #efcdd1; }
.security-hub .wifi-heading { background: #f3f8fc; }
.security-hub .wifi-heading .structured-icon { background: var(--sky-soft); color: #356a85; border-color: #d4e5ed; }
.security-hub .banking-heading { background: #fffaf0; border-color: #eadcae; }
.security-hub .banking-heading .structured-icon { background: var(--gold-soft); color: #80580f; border-color: #efd58f; font-size: 1.15rem; }
.security-hub .compact-grid,
.security-hub .compact-cards,
.security-hub .compact-examples {
  margin-top: 18px;
  margin-bottom: 18px;
}
.security-hub .subsection-heading {
  margin: 22px 0 12px;
}
.security-hub .subsection-heading h3 {
  margin: 0 0 .25rem;
  color: var(--navy);
  font-size: 1.35rem;
}
.security-hub .subsection-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.security-hub .compact-panel { margin-top: 18px; }
.security-hub .panel h3 { margin-top: 0; }
.security-hub .four-cards,
.security-hub .three-cards,
.security-hub .content-grid,
.security-hub .example-gallery { margin-top: 18px; margin-bottom: 18px; }

@media (max-width: 900px) {
  .security-hub .security-section { padding: 32px 0; }
  .security-hub .inner-page main > .section:first-child { padding-top: 24px; }
  .security-hub .structured-heading { padding: 12px 14px; gap: 12px; }
  .security-hub .structured-icon { width: 42px; height: 42px; }
}

@media (max-width: 680px) {
  .security-hub .security-section { padding: 26px 0; }
  .security-hub .inner-page main > .section:first-child { padding-top: 20px; }
  .security-hub .structured-heading { align-items: flex-start; }
  .security-hub .structured-heading h2 { font-size: 1.55rem; }
}

/* =========================================================
   SIMPLIFIED TOP NAVIGATION
   Five top-level choices with grouped topic dropdowns.
   ========================================================= */
.site-nav { overflow: visible; }
.nav-group { position: relative; }
.nav-group summary { list-style: none; }
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group-label {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .62rem .72rem;
  border-radius: 10px;
  color: #425566;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  white-space: nowrap;
}
.nav-group-label:hover,
.nav-group-label:focus-visible,
.nav-group[open] > .nav-group-label,
.nav-group.active-group > .nav-group-label {
  background: var(--teal-soft);
  color: var(--navy);
}
.nav-arrow { font-size: .78rem; transition: transform .15s ease; }
.nav-group[open] .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 270px;
  display: grid;
  gap: 3px;
  padding: 8px;
  background: #fffefa;
  border: 1px solid #d8e2e7;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(23,50,77,.12);
  z-index: 150;
}
.nav-dropdown a {
  padding: .72rem .78rem;
  font-size: .84rem;
  border-radius: 9px;
  white-space: normal;
}
.nav-dropdown a[aria-current="page"] { box-shadow: none; background: var(--teal-soft); }

@media (max-width: 900px) {
  .menu-button { min-width: 44px; min-height: 44px; justify-content: center; font-size: 1.15rem; }
  .site-nav.open { gap: 4px; }
  .nav-group { width: 100%; }
  .nav-group-label { width: 100%; justify-content: space-between; padding: .75rem; font-size: .9rem; }
  .nav-dropdown {
    position: static;
    min-width: 0;
    margin: 2px 0 6px 12px;
    padding: 5px;
    box-shadow: none;
    border-radius: 10px;
    background: #f7faf9;
  }
  .nav-dropdown a { font-size: .88rem; padding: .68rem .75rem; }
}

@media print {
  .nav-group { display: none !important; }
}

/* Remove the redundant current-page pill from inner-page banners. */
.inner-page-banner-grid {
  justify-content: flex-start;
  gap: 0;
}
@media (max-width: 680px) {
  .inner-page-banner-grid { flex-direction: row; gap: 0; }
}


/* Non-interactive example notes: plain lists instead of button-like pills */
.example-list {
  margin: 14px 0 0;
  padding-left: 1.45rem;
  color: #7f343c;
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.55;
}
.example-list li { padding-left: .1rem; }
.example-list li + li { margin-top: .3rem; }
.example-list li::marker { color: var(--red); }
.example-list.gold { color: #6e551f; }
.example-list.gold li::marker { color: #b37b14; }
.example-list.teal { color: #315b57; }
.example-list.teal li::marker { color: var(--teal); }
.example-list.neutral { color: #526672; font-weight: 600; }
.example-list.neutral li::marker { color: #6b8795; }

/* =========================================================
   GLOBAL INNER-PAGE SECTION SPACING
   Prevent large blank bands between adjacent content sections.
   ========================================================= */
.inner-page main > .section {
  padding-top: 28px;
  padding-bottom: 28px;
}
.inner-page main > .section:first-child {
  padding-top: 26px;
}
.inner-page main > .section + .section {
  padding-top: 28px;
}
.inner-page main > .section .section-heading {
  margin-bottom: 24px;
}
.inner-page main > .section .topic-icon-row {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .inner-page main > .section,
  .inner-page main > .section + .section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .inner-page main > .section:first-child {
    padding-top: 22px;
  }
  .inner-page main > .section .section-heading {
    margin-bottom: 20px;
  }
}

@media (max-width: 680px) {
  .inner-page main > .section,
  .inner-page main > .section + .section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .inner-page main > .section:first-child {
    padding-top: 18px;
  }
  .inner-page main > .section .section-heading {
    margin-bottom: 17px;
  }
  .inner-page main > .section .topic-icon-row {
    margin-bottom: 8px;
  }
}

/* =========================================================
   COMPACT SITE-WIDE DENSITY PASS
   Less scrolling, content-sized cards, and single-line desktop headings.
   ========================================================= */

/* Shared inner-page identity stays visible but compact. */
.inner-page-banner {
  padding: 11px 0 10px;
}
.inner-page-site-title {
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1;
}
.inner-page-tagline {
  margin-top: .2rem;
  font-size: clamp(.78rem, 1vw, .9rem);
}

/* Major page sections: deliberately tight. */
.inner-page main > .section,
.inner-page main > .section + .section,
.inner-page main > .section:first-child {
  padding-top: 17px;
  padding-bottom: 17px;
}
.inner-page main > .section .section-heading {
  margin-bottom: 12px;
}
.inner-page main > .section .topic-icon-row {
  margin-bottom: 6px;
}
.inner-page main .section-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: .9rem;
}
.inner-page main .section-heading .eyebrow {
  margin-bottom: .12rem;
}
.inner-page main .section-heading h2 {
  margin: .08rem 0 .42rem;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.inner-page main .section-heading p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.5;
}

/* Do not force short cards/panels to match the tallest card in a row. */
.inner-page main .three-cards,
.inner-page main .four-cards,
.inner-page main .content-grid,
.inner-page main .example-gallery,
.inner-page main .two-columns,
.inner-page main .privacy-layout,
.inner-page main .resource-grid {
  align-items: start;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.inner-page main .info-card {
  padding: 14px 18px;
  border-radius: 14px;
}
.inner-page main .info-card h3 {
  margin: 0 0 .25rem;
  font-size: 1.05rem;
  line-height: 1.35;
}
.inner-page main .info-card p {
  font-size: .93rem;
  line-height: 1.48;
}
.inner-page main .panel {
  padding: 16px 18px;
  border-radius: 14px;
}
.inner-page main .panel h3 {
  margin: .05rem 0 .4rem;
  font-size: 1.28rem;
  line-height: 1.25;
}
.inner-page main .panel-label {
  margin-bottom: .18rem;
}
.inner-page main .check-list li,
.inner-page main .steps-list p,
.inner-page main .panel p,
.inner-page main .example-list {
  line-height: 1.48;
}
.inner-page main li + li {
  margin-top: .28rem;
}

/* Accordion and example blocks should not create extra page length. */
.inner-page main .action-details,
.inner-page main .learning-details,
.inner-page main .scam-accordion {
  margin-top: 10px;
}
.inner-page main .action-details summary,
.inner-page main .learning-details summary,
.inner-page main .scam-accordion summary {
  padding: 13px 16px;
}
.inner-page main .details-body {
  padding: 15px 16px;
}
.inner-page main .response-card {
  padding: 18px;
  margin: 16px 0 10px;
  gap: 18px;
}
.inner-page main .steps-list {
  gap: 8px;
}
.inner-page main .example-card {
  border-radius: 16px;
}
.inner-page main .example-head {
  padding: 10px 14px;
}
.inner-page main .example-body {
  padding: 14px;
}
.inner-page main .browser-page {
  padding: 14px;
}
.inner-page main .browser-banner {
  height: 62px;
  margin-bottom: 10px;
}
.inner-page main .email-content,
.inner-page main .phone-screen,
.inner-page main .voicemail-card,
.inner-page main .form-demo {
  padding: 12px;
}

/* Keep desktop section titles on one line at normal laptop/desktop widths. */
@media (min-width: 1024px) {
  .inner-page main .section-heading h2 {
    white-space: nowrap;
  }
  .inner-page main .section-heading h2.long-title {
    font-size: clamp(1.7rem, 2.1vw, 2.15rem);
    letter-spacing: -.025em;
  }
  /* Compact text-only three-card rows such as Public Wi-Fi. */
  .inner-page main .three-cards .info-card h3 {
    font-size: 1rem;
  }
}

/* Tablet/mobile: wrapping is preferable to tiny type, but spacing remains tight. */
@media (max-width: 900px) {
  .inner-page-banner { padding: 9px 0 8px; }
  .inner-page main > .section,
  .inner-page main > .section + .section,
  .inner-page main > .section:first-child {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .inner-page main .section-heading { margin-bottom: 10px; }
  .inner-page main .section-heading h2 {
    font-size: clamp(1.85rem, 5vw, 2.35rem);
  }
  .inner-page main .info-card,
  .inner-page main .panel { padding: 13px 15px; }
}

@media (max-width: 680px) {
  .inner-page-banner { padding: 8px 0 7px; }
  .inner-page main > .section,
  .inner-page main > .section + .section,
  .inner-page main > .section:first-child {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .inner-page main .section-icon {
    width: 39px;
    height: 39px;
  }
  .inner-page main .section-heading h2 {
    font-size: clamp(1.72rem, 8vw, 2.05rem);
  }
}

/* Homepage topic cards: keep the landing page compact too. */
.topic-directory {
  padding-bottom: 30px;
}
.topic-directory .topic-grid {
  gap: 12px;
  margin-top: 12px;
}
.topic-directory .topic-link-card {
  padding: 15px 17px;
  gap: 13px;
}
.topic-directory .topic-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
}
.topic-directory .topic-link-card h3 {
  font-size: 1.12rem;
  margin-bottom: .2rem;
}
.topic-directory .topic-link-card p {
  margin-bottom: .4rem;
  font-size: .92rem;
  line-height: 1.45;
}

/* Gold Award page also follows the compact page rhythm. */
.journey-section { padding-block: 24px; }
.journey-card { padding: 22px 26px; }


/* Semantic list icons: green = recommended action, red = warning, neutral = review/info. */
.check-list.neutral-list li::before {
  content: "•";
  background: #e9f1f4;
  color: #496878;
  border: 1px solid #cddce3;
  font-size: .95rem;
  line-height: 1;
}


/* Compact QR example: supporting visual, not a full-page image. */
.qr-example-card {
  max-width: 760px;
  margin-inline: auto;
}
.qr-example-card .example-figure img {
  width: min(100%, 440px);
  max-width: 440px;
}
.qr-example-card .example-body {
  padding: 14px 18px 16px;
}
.qr-example-card .example-figure {
  gap: 10px;
}
.qr-example-card .example-head {
  padding: 10px 16px;
}
@media (max-width: 680px) {
  .qr-example-card .example-figure img {
    width: min(100%, 360px);
    max-width: 360px;
  }
}

/* Navigation-only top bar: site title lives in the banner below. */
.nav-shell {
  min-height: 54px;
  justify-content: flex-end;
}
.site-nav {
  margin-left: 0;
}
@media (max-width: 900px) {
  .nav-shell { min-height: 52px; }
  .menu-button { margin-left: auto; }
  .site-nav { top: 52px; }
}
