/* ==========================================================================
   SENTINEL VAULT — Design System
   Dark navy theme, gold accent, professional cybersecurity brand
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --sv-navy:        #0b0f2b;
  --sv-navy-light:  #12163a;
  --sv-navy-mid:    #1a1f4a;
  --sv-gold:        #F2B233;
  --sv-gold-soft:   #ffd483;
  --sv-white:       #eaf0ff;
  --sv-gray:        rgba(207,214,255,0.92);
  --sv-gray-dim:    rgba(207,214,255,0.55);
  --sv-border:      rgba(255,255,255,0.10);
  --sv-border-light:rgba(255,255,255,0.06);
  --sv-surface:     rgba(255,255,255,0.04);
  --sv-surface-hover:rgba(255,255,255,0.08);
  --sv-green:       #1E9E6B;
  --sv-red:         #D9534F;
  --sv-radius:      12px;
  --sv-radius-lg:   20px;
  --sv-shadow:      0 8px 30px rgba(0,0,0,0.25);
  --sv-font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --sv-max-width:   1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sv-font);
  background: var(--sv-navy);
  color: var(--sv-gray);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sv-gold-soft); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--sv-gold); }
h1,h2,h3,h4,h5,h6 { color: #fff; line-height: 1.2; font-weight: 700; }
ul, ol { padding-left: 1.2rem; }

/* ---------- Layout ---------- */
.sv-wrap {
  max-width: var(--sv-max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.center { text-align: center; }

/* ---------- Header ---------- */
.sv-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,15,43,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sv-border);
  transition: background 0.3s, box-shadow 0.3s;
}
.sv-header.scrolled {
  background: rgba(11,15,43,0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.sv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.sv-logo-img {
  height: 32px;
  width: auto;
}

/* Nav */
.sv-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.sv-nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sv-gray);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.sv-nav-link:hover, .sv-nav-link.active {
  color: #fff;
  background: var(--sv-surface-hover);
}
.sv-nav-cta {
  color: var(--sv-gold) !important;
  font-weight: 700;
}
.sv-nav-contact {
  background: var(--sv-gold);
  color: var(--sv-navy) !important;
  font-weight: 700;
  margin-left: 0.5rem;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
}
.sv-nav-contact:hover {
  background: var(--sv-gold-soft);
  color: var(--sv-navy) !important;
}

/* Hamburger */
.sv-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.sv-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.sv-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.sv-hamburger.open span:nth-child(2) { opacity: 0; }
.sv-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .sv-hamburger { display: flex; }
  .sv-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--sv-navy-light);
    border-bottom: 1px solid var(--sv-border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
  }
  .sv-nav.open { display: flex; }
  .sv-nav-link { width: 100%; padding: 0.75rem 1rem; }
  .sv-nav-contact { text-align: center; margin-left: 0; margin-top: 0.5rem; }
}

/* ---------- Main ---------- */
.sv-main { min-height: 60vh; }

/* ---------- Buttons ---------- */
.sv-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  cursor: pointer;
  border: none;
}
.sv-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}
.sv-btn-primary {
  background: var(--sv-gold);
  color: var(--sv-navy);
}
.sv-btn-primary:hover { filter: brightness(1.05); color: var(--sv-navy); }
.sv-btn-secondary {
  background: transparent;
  color: var(--sv-white);
  border: 1px solid var(--sv-border);
}
.sv-btn-secondary:hover { background: var(--sv-surface-hover); color: #fff; }

/* ---------- Sections ---------- */
.sv-section {
  padding: 4rem 0;
}
.sv-soft {
  background: var(--sv-navy-light);
}
.sv-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-gold);
  margin-bottom: 0.5rem;
}
.sv-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.sv-h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.sv-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--sv-gray);
  max-width: 680px;
}
.sv-accent { color: var(--sv-gold); }
.sv-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ---------- Grid ---------- */
.sv-grid {
  display: grid;
  gap: 1.25rem;
}
.sv-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media (min-width: 960px) {
  .sv-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Cards ---------- */
.sv-card-clean {
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-lg);
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sv-card-clean:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
.sv-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.sv-card-text {
  font-size: 0.95rem;
  color: var(--sv-gray);
}
.sv-card {
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-lg);
  padding: 1.5rem;
}

/* ---------- Hero ---------- */
.sv-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, var(--sv-navy-light) 0%, var(--sv-navy) 100%);
}
.sv-hero-lead { max-width: 600px; }
.sv-book-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sv-gold-soft);
}
.sv-book-link:hover { color: var(--sv-gold); }
.sv-book-link svg { width: 16px; height: 16px; }

/* ---------- Proof bar ---------- */
.sv-proof {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--sv-border);
}
.sv-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: center;
}
.sv-proof-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}
.sv-proof-text {
  font-size: 0.9rem;
  color: var(--sv-gray-dim);
}

/* ---------- Book section ---------- */
.sv-book {
  padding: 4rem 0;
  background: var(--sv-navy-light);
}
.sv-book-trust {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sv-gray-dim);
  margin-bottom: 1.5rem;
  text-align: center;
}
.sv-book-card-new {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-lg);
  padding: 2rem;
}
.sv-book-cover img {
  border-radius: var(--sv-radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.sv-book-kicker { margin-bottom: 0.25rem; }
.sv-book-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.sv-book-lead {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.sv-bullets, .sv-book-bullets {
  list-style: none;
  padding: 0;
}
.sv-bullets li, .sv-book-bullets li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 0.93rem;
}
.sv-bullets li::before, .sv-book-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sv-gold);
}
@media (max-width: 700px) {
  .sv-book-card-new {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sv-book-cover { display: flex; justify-content: center; }
  .sv-book-cover img { max-width: 180px; }
}

/* ---------- Announcement ---------- */
.sv-announcement {
  background: var(--sv-gold);
  padding: 0.6rem 0;
}
.sv-announcement-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--sv-navy);
  font-weight: 600;
  font-size: 0.9rem;
}
.sv-announcement-badge { font-size: 1.1rem; }
.sv-announcement-title { font-weight: 800; }
.sv-announcement-sub { opacity: 0.8; }
.sv-announcement-arrow { font-size: 1.2rem; margin-left: auto; }

/* ---------- Blog list ---------- */
.sv-blog-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, var(--sv-navy-light) 0%, var(--sv-navy) 100%);
}
.sv-blog-list { padding: 2rem 0 4rem; }

/* ---------- Spotlight (newest post) ---------- */
.sv-spotlight {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--sv-surface);
  border: 1px solid var(--sv-gold);
  border-radius: var(--sv-radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (min-width: 768px) {
  .sv-spotlight { grid-template-columns: 1fr 1fr; }
}
.sv-spotlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(242,178,51,0.12);
}
.sv-spotlight a {
  display: contents;
  color: inherit;
  text-decoration: none;
}
.sv-spotlight-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--sv-navy-mid);
}
@media (min-width: 768px) {
  .sv-spotlight-image { aspect-ratio: auto; min-height: 320px; }
}
.sv-spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.sv-spotlight:hover .sv-spotlight-image img {
  transform: scale(1.03);
}
.sv-spotlight-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sv-spotlight-body h2 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0.75rem 0 0.5rem;
}
@media (min-width: 768px) {
  .sv-spotlight-body h2 { font-size: 1.75rem; }
}
.sv-spotlight-body .sv-post-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
}
.sv-spotlight-badge {
  display: inline-block;
  background: var(--sv-gold);
  color: var(--sv-navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
}
.sv-spotlight-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--sv-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.sv-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.sv-cat-btn {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sv-gray);
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  transition: all 0.2s;
}
.sv-cat-btn:hover, .sv-cat-btn.active {
  background: var(--sv-gold);
  color: var(--sv-navy);
  border-color: var(--sv-gold);
}

.sv-post-card {
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sv-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.sv-post-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.sv-post-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--sv-navy-mid);
}
.sv-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.sv-post-card:hover .sv-post-card-image img {
  transform: scale(1.03);
}
.sv-post-card-body {
  padding: 1.25rem;
}
.sv-post-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.sv-post-card-body time {
  font-size: 0.8rem;
  color: var(--sv-gray-dim);
}
.sv-post-excerpt {
  font-size: 0.88rem;
  color: var(--sv-gray-dim);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.sv-post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.sv-post-author {
  font-size: 0.8rem;
  color: var(--sv-gold-soft);
  font-weight: 600;
}
.sv-post-meta time {
  font-size: 0.8rem;
  color: var(--sv-gray-dim);
}
.sv-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.sv-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(242,178,51,0.12);
  color: var(--sv-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Pagination */
.sv-pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2.5rem;
}
.sv-page-btn {
  padding: 0.5rem 0.9rem;
  border-radius: var(--sv-radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sv-gray);
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  transition: all 0.2s;
}
.sv-page-btn:hover, .sv-page-btn.active {
  background: var(--sv-gold);
  color: var(--sv-navy);
  border-color: var(--sv-gold);
}

/* ---------- Blog post ---------- */
.sv-article-header {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, var(--sv-navy-light) 0%, var(--sv-navy) 100%);
}
.sv-article-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-top: 0.75rem;
  max-width: 800px;
}
.sv-post-hero-img {
  margin-top: 2rem;
  border-radius: var(--sv-radius-lg);
  box-shadow: var(--sv-shadow);
  max-width: 800px;
}
.sv-article-body {
  padding: 3rem 0;
}
.sv-article-content {
  max-width: 760px;
}
.sv-article-content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.sv-article-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.sv-article-content p {
  margin-bottom: 1rem;
}
.sv-article-content ul, .sv-article-content ol {
  margin-bottom: 1rem;
}
.sv-article-content li {
  margin-bottom: 0.3rem;
}
.sv-article-content blockquote {
  border-left: 3px solid var(--sv-gold);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--sv-surface);
  border-radius: 0 var(--sv-radius) var(--sv-radius) 0;
  font-style: italic;
  color: var(--sv-white);
}
.sv-article-content hr {
  border: none;
  height: 1px;
  background: var(--sv-border);
  margin: 2rem 0;
}
.sv-article-content img {
  border-radius: var(--sv-radius);
  margin: 1.5rem 0;
}
.sv-article-content code {
  background: var(--sv-surface);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}
.sv-article-footer {
  padding: 2rem 0 4rem;
  border-top: 1px solid var(--sv-border);
}
.sv-article-cta {
  padding: 1.5rem;
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-lg);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.sv-article-cta a { font-weight: 700; }

/* ---------- Contact form ---------- */
.sv-contact-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, var(--sv-navy-light) 0%, var(--sv-navy) 100%);
}
.sv-contact-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
}
.sv-contact-sub {
  font-size: 1.1rem;
  margin-top: 0.75rem;
  color: var(--sv-gray);
  max-width: 550px;
}
.sv-contact-form {
  padding: 2rem 0 4rem;
}
.sv-form {
  max-width: 640px;
}
.sv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .sv-form-row { grid-template-columns: 1fr; }
}
.sv-form-group {
  margin-bottom: 1rem;
}
.sv-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sv-white);
  margin-bottom: 0.35rem;
}
.sv-required { color: var(--sv-gold); }
.sv-form-group input,
.sv-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--sv-radius);
  border: 1px solid var(--sv-border);
  background: var(--sv-surface);
  color: #fff;
  font-family: var(--sv-font);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sv-form-group input::placeholder,
.sv-form-group textarea::placeholder {
  color: var(--sv-gray-dim);
}
.sv-form-group input:focus,
.sv-form-group textarea:focus {
  outline: none;
  border-color: var(--sv-gold);
  box-shadow: 0 0 0 3px rgba(242,178,51,0.15);
}
.sv-micro {
  font-size: 0.8rem;
  color: var(--sv-gray-dim);
  margin-top: 0.75rem;
}

/* ---------- Footer ---------- */
.sv-footer {
  background: var(--sv-navy-light);
  border-top: 1px solid var(--sv-border);
  padding-top: 3rem;
}
.sv-footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 700px) {
  .sv-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.sv-footer-logo { height: 28px; margin-bottom: 0.75rem; }
.sv-footer-tagline {
  font-size: 0.85rem;
  color: var(--sv-gray-dim);
  max-width: 280px;
}
.sv-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 500px) {
  .sv-footer-links { grid-template-columns: 1fr 1fr; }
}
.sv-footer-col h4 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sv-white);
  margin-bottom: 0.75rem;
}
.sv-footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--sv-gray);
  margin-bottom: 0.4rem;
}
.sv-footer-col a:hover { color: #fff; }
.sv-footer-bottom {
  border-top: 1px solid var(--sv-border);
  padding: 1.25rem 0;
}
.sv-footer-bottom p {
  font-size: 0.8rem;
  color: var(--sv-gray-dim);
  text-align: center;
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES (from WordPress)
   ========================================================================== */

/* ---------- Training / Briefing ---------- */
.sv-training-hero {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(180deg, var(--sv-navy-light) 0%, var(--sv-navy) 100%);
}
.sv-training-h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.sv-training-sub {
  font-size: 1.05rem;
  color: var(--sv-gray);
  max-width: 650px;
}
.sv-training-cta { margin-top: 1.5rem; }
.sv-section-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}
.sv-briefing, .sv-briefing-details {
  padding: 3rem 0;
}
.sv-briefing-grid, .sv-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.sv-detail h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.sv-detail ul {
  color: var(--sv-gray);
  font-size: 0.93rem;
}
.sv-detail li { margin-bottom: 0.3rem; }

/* ---------- Media ---------- */
.sv-media-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, var(--sv-navy-light) 0%, var(--sv-navy) 100%);
}
.sv-media-list { padding: 2rem 0 4rem; }
.sv-media-section { margin-bottom: 3rem; }
.sv-media-section-header { margin-bottom: 1.5rem; }
.sv-media-section-title {
  font-size: 1.4rem;
  font-weight: 800;
}
.sv-media-section-sub {
  margin-top: 0.3rem;
  color: var(--sv-gray);
  font-size: 0.95rem;
}
.sv-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}
.sv-media-card {
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-lg);
  overflow: hidden;
}
.sv-media-video-inner {
  position: relative;
  padding-bottom: 56.25%;
}
.sv-media-video-inner iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.sv-media-body { padding: 1.25rem; }
.sv-media-title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.sv-media-text {
  font-size: 0.9rem;
  color: var(--sv-gray);
  margin-bottom: 0.75rem;
}
.sv-media-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sv-gold);
}

/* ---------- About ---------- */
.sv-about-page { }
.sv-about-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, var(--sv-navy-light) 0%, var(--sv-navy) 100%);
}
.sv-about-overline {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-gold);
  margin-bottom: 0.5rem;
}
.sv-about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
}
.sv-about-lead {
  font-size: 1.1rem;
  margin-top: 0.75rem;
  color: var(--sv-gray);
  max-width: 650px;
}
.sv-about-founder { padding: 3rem 0; }
.sv-about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 700px) {
  .sv-about-grid { grid-template-columns: 1fr; text-align: center; }
}
.sv-about-img {
  border-radius: var(--sv-radius-lg);
  box-shadow: var(--sv-shadow);
}
.sv-about-photo figcaption {
  font-size: 0.82rem;
  color: var(--sv-gray-dim);
  margin-top: 0.5rem;
  text-align: center;
}
.sv-about-copy h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.sv-about-copy p {
  margin-bottom: 1rem;
}
.sv-about-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.sv-about-list li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.93rem;
}
.sv-about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sv-gold);
}
.sv-about-pillars { padding: 3rem 0; background: var(--sv-navy-light); }
.sv-pillars-header { text-align: center; margin-bottom: 2rem; }
.sv-pillars-sub {
  color: var(--sv-gray);
  max-width: 500px;
  margin: 0.5rem auto 0;
}

/* ---------- Book page ---------- */
.sv-book-page { padding: 3rem 0; }
.sv-book-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.sv-book-overline {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sv-gold);
}
.sv-book-page .sv-book-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 0.5rem;
}
.sv-book-subtitle {
  color: var(--sv-gray);
  max-width: 600px;
  margin: 0.75rem auto 0;
  font-size: 1rem;
}
.sv-book-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .sv-book-layout { grid-template-columns: 1fr; text-align: center; }
}
.sv-book-cover-wrap { margin-bottom: 1.5rem; }
.sv-book-cover-wrap .sv-book-cover {
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow);
}
.sv-book-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sv-btn-book-main {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 999px;
  background: var(--sv-gold);
  color: var(--sv-navy);
  font-weight: 800;
}
.sv-btn-book-main:hover { filter: brightness(1.05); color: var(--sv-navy); }
.sv-btn-book-ghost {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--sv-border);
  color: var(--sv-gray);
  font-weight: 600;
  font-size: 0.9rem;
}
.sv-btn-book-ghost:hover { background: var(--sv-surface-hover); color: #fff; }
.sv-book-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sv-white);
  margin-bottom: 1rem;
}
.sv-book-copy p { margin-bottom: 1rem; }
.sv-book-page .sv-book-bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.sv-book-page .sv-book-bullets li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 0.93rem;
}
.sv-book-page .sv-book-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sv-gold);
}
.sv-book-meta dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.3rem 1rem;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}
.sv-book-meta dt {
  font-weight: 700;
  color: var(--sv-white);
}
.sv-book-meta dd { color: var(--sv-gray); }

/* Excerpt + Author + Endorsements + CTA sections */
.hh-excerpt, .hh-author, .hh-endorse, .hh-cta {
  padding: 3rem 0;
}
.hh-wrap {
  max-width: var(--sv-max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.hh-h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.hh-excerpt p { margin-bottom: 0.75rem; }
.hh-note { font-size: 0.9rem; color: var(--sv-gray-dim); }
.hh-note a { font-weight: 600; }
.hh-author { background: var(--sv-navy-light); }
.hh-author-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 600px) {
  .hh-author-grid { grid-template-columns: 1fr; text-align: center; }
}
.hh-author-photo img {
  border-radius: var(--sv-radius-lg);
  box-shadow: var(--sv-shadow);
}
.hh-author-bio p { margin-bottom: 0.75rem; }
.hh-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.hh-quote {
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-lg);
  padding: 1.5rem;
}
.hh-quote blockquote {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sv-white);
  font-style: italic;
}
.hh-quote figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--sv-gray-dim);
}
.hh-cta { background: var(--sv-navy-light); }
.hh-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hh-cta-title { margin-bottom: 0.25rem; }
.hh-cta-text { color: var(--sv-gray); }
.hh-cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hh-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.hh-btn-primary {
  background: var(--sv-gold);
  color: var(--sv-navy);
}
.hh-btn-primary:hover { filter: brightness(1.05); color: var(--sv-navy); }
.hh-btn-outline {
  border: 1px solid var(--sv-border);
  color: var(--sv-white);
}
.hh-btn-outline:hover { background: var(--sv-surface-hover); }

/* ---------- Privacy ---------- */
.sv-privacy-hero { padding: 4rem 0 2rem; background: linear-gradient(180deg, var(--sv-navy-light) 0%, var(--sv-navy) 100%); }
.sv-privacy-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; }
.sv-privacy-meta { font-size: 0.88rem; color: var(--sv-gray-dim); margin-top: 0.5rem; }
.sv-privacy-intro { margin-top: 0.75rem; max-width: 650px; }
.sv-privacy-content { padding: 2rem 0 4rem; }
.sv-privacy-article { max-width: 760px; }
.sv-privacy-article h2 { font-size: 1.3rem; margin-top: 2rem; margin-bottom: 0.5rem; }
.sv-privacy-article h3 { font-size: 1.1rem; margin-top: 1.25rem; margin-bottom: 0.5rem; }
.sv-privacy-article p { margin-bottom: 0.75rem; }
.sv-privacy-article ul { margin-bottom: 1rem; }
.sv-privacy-article li { margin-bottom: 0.25rem; }
.sv-privacy-link { color: var(--sv-gold); font-weight: 600; }
.sv-privacy-cta { margin-top: 2rem; }

/* ---------- Cyber survey (inline from WP) ---------- */
.sv-cyber-survey-wrapper {
  max-width: 980px;
  margin: 2rem auto 3rem;
  padding: clamp(22px, 4vw, 40px);
  background: linear-gradient(180deg, var(--sv-navy-light) 0%, var(--sv-navy) 100%);
  border: 1px solid var(--sv-border);
  border-radius: 24px;
  box-shadow: var(--sv-shadow);
  color: var(--sv-white);
}
.sv-cyber-survey-wrapper h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: #fff;
  margin-bottom: 0.35rem;
}
.sv-cyber-survey-wrapper p {
  line-height: 1.65;
  color: var(--sv-gray);
  max-width: 72ch;
  margin: 0.5rem 0 0;
}
.sv-cyber-survey-wrapper hr {
  border: 0;
  height: 1px;
  background: var(--sv-border);
  margin: 1.25rem 0 1rem;
}
.sv-cyber-survey-wrapper .sv-field-group {
  margin: 1rem 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  max-width: 560px;
}
.sv-cyber-survey-wrapper label { color: #fff; }
.sv-cyber-survey-wrapper input[type="email"] {
  margin-top: 0.5rem;
  width: min(460px, 100%);
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--sv-border);
  background: var(--sv-surface);
  color: #fff;
  font-size: 0.95rem;
}
.sv-cyber-survey-wrapper input[type="email"]::placeholder { color: var(--sv-gray-dim); }
.sv-cyber-survey-wrapper input[type="email"]:focus {
  outline: none;
  border-color: rgba(242,178,51,0.85);
  box-shadow: 0 0 0 3px rgba(242,178,51,0.20);
}
.sv-cyber-survey-wrapper p strong { color: #fff; }
.sv-likert-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0.75rem 0 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--sv-border);
  background: var(--sv-surface);
  overflow: hidden;
}
.sv-likert-table thead th {
  background: rgba(0,0,0,0.18);
  color: rgba(233,237,241,0.95);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sv-border);
}
.sv-likert-table th, .sv-likert-table td {
  padding: 0.65rem 0.55rem;
  text-align: center;
  font-size: 0.93rem;
  color: var(--sv-gray);
}
.sv-likert-table th:first-child, .sv-likert-table td:first-child {
  text-align: left;
  width: 56%;
  color: rgba(233,237,241,0.95);
}
.sv-likert-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.03); }
.sv-likert-table tbody tr + tr td { border-top: 1px solid var(--sv-border-light); }
.sv-cyber-survey-wrapper input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--sv-gold);
  cursor: pointer;
}
.sv-cyber-survey-wrapper button[type="submit"] {
  background: var(--sv-gold);
  color: var(--sv-navy);
  border: none;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
  font-size: 1rem;
  font-family: var(--sv-font);
}
.sv-cyber-survey-wrapper button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.30);
}
#sv-survey-status { color: var(--sv-gray) !important; }
.sv-survey-result {
  margin-top: 1.25rem;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--sv-border);
  background: var(--sv-surface);
}
.sv-survey-result h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.35rem; }
#sv-score-tips {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}
#sv-score-tips li::marker { color: var(--sv-gold); }

@media (max-width: 820px) {
  .sv-likert-table, .sv-likert-table thead, .sv-likert-table tbody,
  .sv-likert-table th, .sv-likert-table td, .sv-likert-table tr { display: block; }
  .sv-likert-table thead { display: none; }
  .sv-likert-table { border: 0; background: transparent; }
  .sv-likert-table tr {
    background: var(--sv-surface);
    border: 1px solid var(--sv-border);
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 12px;
  }
  .sv-likert-table td:first-child { width: 100%; font-weight: 800; margin-bottom: 10px; }
  .sv-likert-table td {
    border: 0;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(20% - 6px);
    margin-right: 6px;
    border-radius: 12px;
    background: rgba(0,0,0,0.16);
  }
}

/* ---------- Score result page ---------- */
.sv-culture-result {
  max-width: 800px;
  margin: 2rem auto 3rem;
  padding: 2rem 1.5rem 2.5rem;
  background: var(--sv-navy-light);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-lg);
}
.sv-culture-hero h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.sv-culture-hero p { margin-bottom: 1rem; }
.sv-score-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  margin-top: 0.5rem;
}
.sv-score-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sv-gray-dim);
}
.sv-score-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.sv-score-band {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sv-gray);
}
.sv-culture-result section { margin-top: 1.75rem; }
.sv-culture-result h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.sv-culture-next ul { margin-top: 0.5rem; padding-left: 1.3rem; }
.sv-culture-next li { margin-bottom: 0.4rem; }
.sv-score-link { margin-top: 1.2rem; font-size: 0.95rem; }
.sv-score-link a { color: var(--sv-gold); font-weight: 500; }
.sv-score-link a:hover { text-decoration: underline; }
.sv-band-grid { display: grid; gap: 0.9rem; }
@media (min-width: 720px) { .sv-band-grid { grid-template-columns: repeat(3, 1fr); } }
.sv-band {
  background: var(--sv-surface);
  border-radius: 12px;
  padding: 0.9rem;
  border: 1px solid var(--sv-border);
  font-size: 0.9rem;
}
.sv-band h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.sv-band-high { border-left: 4px solid var(--sv-green); }
.sv-band-mid { border-left: 4px solid var(--sv-gold); }
.sv-band-low { border-left: 4px solid var(--sv-red); }
.sv-culture-cta { text-align: left; margin-top: 2rem; }
.sv-culture-cta p { margin-bottom: 0.8rem; }
.sv-button {
  display: inline-block;
  background: var(--sv-gold);
  color: var(--sv-navy);
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
}
.sv-button:hover { filter: brightness(1.05); color: var(--sv-navy); }

/* ---------- Vulnerability page ---------- */
.sv-vuln-page { padding: 2.5rem 1.5rem 3rem; }
.sv-vuln-inner { max-width: 960px; margin: 0 auto; }
.sv-vuln-hero { margin-bottom: 2rem; }
.sv-vuln-overline {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  color: var(--sv-gray-dim);
  margin-bottom: 0.4rem;
}
.sv-vuln-hero h1 { font-size: 2.1rem; margin-bottom: 0.6rem; }
.sv-vuln-score-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
}
.sv-vuln-score-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sv-gray-dim); }
.sv-vuln-score-value { font-size: 1.3rem; font-weight: 700; color: #fff; }
.sv-vuln-score-band { font-size: 0.95rem; font-weight: 500; color: var(--sv-gray); }
.sv-vuln-pill-mature { border-color: var(--sv-green); }
.sv-vuln-pill-developing { border-color: var(--sv-gold); }
.sv-vuln-pill-atrisk { border-color: var(--sv-red); }
.sv-vuln-section { margin-top: 1.8rem; }
.sv-vuln-section h2 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.sv-vuln-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) { .sv-vuln-grid { grid-template-columns: repeat(3, 1fr); } }
.sv-vuln-card {
  background: var(--sv-surface);
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid var(--sv-border);
  font-size: 0.95rem;
}
.sv-vuln-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.sv-vuln-card ul { padding-left: 1.1rem; }
.sv-vuln-card li { margin-bottom: 0.35rem; }
.sv-vuln-cta { margin-top: 2.2rem; }
.sv-vuln-cta p { margin-bottom: 0.8rem; }

/* ---------- Utilities ---------- */
.wp-block-separator { border: none; height: 1px; background: var(--sv-border); margin: 2rem 0; }
.has-alpha-channel-opacity { opacity: 0.5; }

/* ---------- Scroll animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .sv-card-clean, .sv-post-card, .sv-media-card, .sv-band, .sv-vuln-card, .hh-quote {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .sv-card-clean.visible, .sv-post-card.visible, .sv-media-card.visible,
  .sv-band.visible, .sv-vuln-card.visible, .hh-quote.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
