/* phishaver.css — Phishaver main stylesheet
   Inlines all component CSS. Generated for web0510 batch.
*/

/* ============================================================ */
/* BASE                                                           */
/* ============================================================ */
:root {
  --accent: #c2410c;
  --accent-rgb: 194,65,12;
  --secondary: #1c1917;
  --bg-dark: #0b0f19;
  --bg-alt: #1e293b;
  --bg-surface: #1a2332;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #334155;
  --font-sans: 'Satoshi', system-ui, sans-serif;
  --font-display: 'Sora', 'Satoshi', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.page-sub { padding-top: 64px; }

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.9; }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-dark  { background: var(--bg-dark); }
.section-alt   { background: var(--bg-alt); }
.section-surface { background: var(--bg-surface); }

/* ============================================================ */
/* BUTTONS                                                        */
/* ============================================================ */
.c-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}
.c-btn--primary { background: var(--accent); color: #ffffff; }
.c-btn--primary:hover { opacity: 0.9; color: #ffffff; }
.c-btn--outline {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226,232,240,0.3);
}
.c-btn--outline:hover { border-color: #e2e8f0; color: #ffffff; }
.c-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
}
.c-btn--ghost:hover { border-color: rgba(255,255,255,0.5); color: #ffffff; }
.c-btn--sm { padding: 8px 16px; font-size: 14px; }

/* ============================================================ */
/* NAV                                                            */
/* ============================================================ */
.c-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.c-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}
.c-nav__logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 22px; font-weight: 800;
  text-decoration: none;
  color: inherit;
}
.c-nav__logo-img { height: 28px; width: auto; display: none; }
.c-nav__links {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
}
.c-nav__links a {
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s;
}
.c-nav__cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 600;
}
.c-nav__cta:hover { opacity: 0.9; color: #fff !important; }
.c-nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.c-nav__toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; transition: 0.3s; }

.c-nav[data-nav-theme="light"] {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.c-nav[data-nav-theme="light"] .c-nav__logo { color: #0f172a; }
.c-nav[data-nav-theme="light"] .c-nav__logo-img--light { display: inline; }
.c-nav[data-nav-theme="light"] .c-nav__logo-img--dark  { display: none; }
.c-nav[data-nav-theme="light"] .c-nav__links a { color: #334155; }
.c-nav[data-nav-theme="light"] .c-nav__links a:hover,
.c-nav[data-nav-theme="light"] .c-nav__links a.active { color: #0f172a; }
.c-nav[data-nav-theme="light"] .c-nav__toggle span { background: #0f172a; }

.c-nav[data-nav-theme="dark"] { background: transparent; }
.c-nav[data-nav-theme="dark"].scrolled,
.c-nav[data-nav-theme="dark"].c-nav--solid {
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.c-nav[data-nav-theme="dark"] .c-nav__logo { color: #f1f5f9; }
.c-nav[data-nav-theme="dark"] .c-nav__logo-img--light { display: none; }
.c-nav[data-nav-theme="dark"] .c-nav__logo-img--dark  { display: inline; }
.c-nav[data-nav-theme="dark"] .c-nav__links a { color: #94a3b8; }
.c-nav[data-nav-theme="dark"] .c-nav__links a:hover,
.c-nav[data-nav-theme="dark"] .c-nav__links a.active { color: #f1f5f9; }
.c-nav[data-nav-theme="dark"] .c-nav__toggle span { background: #f1f5f9; }

.c-nav__logo-img ~ .c-nav__logo-fallback { display: none !important; }

@media (max-width: 768px) {
  .c-nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #0f172a;
    padding: 16px;
    border-top: 1px solid #1e293b;
  }
  .c-nav[data-nav-theme="light"] .c-nav__links {
    background: #ffffff;
    border-top-color: rgba(15,23,42,0.08);
  }
  .c-nav[data-nav-theme="light"] .c-nav__links a { color: #0f172a; }
  .c-nav__links.open { display: flex; }
  .c-nav__toggle { display: block; }
}

/* ============================================================ */
/* HERO F: DARK CENTERED TYPOGRAPHIC                             */
/* ============================================================ */
.c-hero--dark-typographic {
  min-height: 88vh;
  background: #0b0f19;
  color: #e5e7eb;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  display: flex;
  align-items: center;
}
.c-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(194,65,12,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(194,65,12,0.12) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.c-hero--dark-typographic .container { position: relative; z-index: 2; width: 100%; }
.c-hero__content { max-width: 880px; margin: 0 auto; }
.c-hero--dark-typographic .c-hero__label { margin-bottom: 24px; opacity: 0.9; }
.c-hero--dark-typographic .c-hero__title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 auto 28px;
  color: #ffffff;
}
.c-hero--dark-typographic .c-hero__subtitle {
  font-size: 20px;
  line-height: 1.55;
  color: #9ca3af;
  max-width: 640px;
  margin: 0 auto 40px;
}
.c-hero--dark-typographic .c-hero__cta { justify-content: center; }

.c-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.c-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .c-hero--dark-typographic { padding: 90px 0 60px; min-height: auto; }
  .c-hero--dark-typographic .c-hero__title { font-size: 36px; }
  .c-hero--dark-typographic .c-hero__subtitle { font-size: 16px; }
  .c-hero__cta { justify-content: center; }
}

/* Small page hero for inner pages */
.c-page-hero {
  background: #0f172a;
  padding: 100px 0 48px;
  text-align: center;
  border-bottom: 1px solid #1e293b;
}
.c-page-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.c-page-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
}
.c-page-hero__lede {
  font-size: 17px;
  color: #94a3b8;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================ */
/* STATS A: BAR                                                   */
/* ============================================================ */
.c-stats { padding: 48px 0; }
.c-stats--bar { background: #1e293b; }
.c-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.c-stats__item { padding: 16px 0; }
.c-stats__number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}
.c-stats__label {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  margin-top: 8px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .c-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .c-stats__number { font-size: 28px; }
}

/* ============================================================ */
/* SECTION HEADER (shared)                                        */
/* ============================================================ */
.c-section-header { text-align: center; margin-bottom: 56px; }
.c-section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.c-section-title {
  font-size: 36px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 16px;
}
.c-section-desc {
  font-size: 17px;
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .c-section-title { font-size: 28px; }
}

/* ============================================================ */
/* FEATURES C: ALTERNATING                                        */
/* ============================================================ */
.c-features { padding: 80px 0; }
.c-features--alternating { background: var(--bg-dark); }

.c-features__row {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 56px 0;
}
.c-features__row + .c-features__row { border-top: 1px solid #1e293b; }
.c-features__row--reverse { flex-direction: row-reverse; }

.c-features__text-col {
  flex: 0 0 calc(50% - 32px);
  max-width: calc(50% - 32px);
  min-width: 0;
}
.c-features__img-col {
  flex: 0 0 calc(50% - 32px);
  max-width: calc(50% - 32px);
  min-width: 0;
}
.c-features__name {
  font-size: 24px;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 16px;
}
.c-features__text {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.75;
  margin: 0 0 12px;
}
.c-features__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #1e293b;
}

@media (max-width: 768px) {
  .c-features__row,
  .c-features__row--reverse { flex-direction: column; gap: 32px; }
  .c-features__text-col,
  .c-features__img-col { flex: 1 1 100%; max-width: 100%; }
}

/* ============================================================ */
/* PROCESS A: NUMBERED                                           */
/* ============================================================ */
.c-process { padding: 80px 0; background: var(--bg-alt); }
.c-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.c-process__step {
  position: relative;
  padding: 32px 24px;
  background: #263147;
  border-radius: 12px;
}
.c-process__num {
  display: inline-block;
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.c-process__name {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.c-process__text { font-size: 15px; color: #94a3b8; line-height: 1.7; }
@media (max-width: 992px) { .c-process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .c-process__steps { grid-template-columns: 1fr; } }

/* ============================================================ */
/* TESTIMONIALS B: STATS                                          */
/* ============================================================ */
.c-testimonials { padding: 80px 0; background: var(--bg-dark); }
.c-testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.c-testimonials__card { background: #1e293b; border-radius: 12px; padding: 36px 28px; }
.c-testimonials__stat {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}
.c-testimonials__source { font-size: 15px; font-weight: 700; color: #f1f5f9; margin-bottom: 12px; }
.c-testimonials__text { font-size: 14px; color: #94a3b8; line-height: 1.7; }
@media (max-width: 768px) { .c-testimonials__grid { grid-template-columns: 1fr; } }

/* ============================================================ */
/* CTA A: BANNER                                                  */
/* ============================================================ */
.c-cta { background: var(--accent); padding: 64px 0; text-align: center; }
.c-cta__title { font-size: 32px; font-weight: 800; color: #ffffff; margin-bottom: 16px; }
.c-cta__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.c-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.c-cta .c-btn--primary { background: #ffffff; color: var(--accent); }
.c-cta .c-btn--primary:hover { opacity: 0.9; }
.c-cta .c-btn--outline { border-color: rgba(255,255,255,0.4); color: #ffffff; }
.c-cta .c-btn--outline:hover { border-color: #ffffff; }

/* ============================================================ */
/* TEAM A: GRID                                                   */
/* ============================================================ */
.c-team { padding: 80px 0; background: var(--bg-dark); }
.c-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.c-team__card { text-align: center; }
.c-team__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 16px;
  border: 3px solid #1e293b;
}
.c-team__name { font-size: 17px; font-weight: 700; color: #f1f5f9; margin-bottom: 4px; }
.c-team__role { font-size: 14px; color: #64748b; }

/* ============================================================ */
/* CONTACT A: SPLIT                                               */
/* ============================================================ */
.c-contact { padding: 80px 0; background: var(--bg-dark); }
.c-contact__wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.c-contact__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) {
  .c-contact__grid { grid-template-columns: 7fr 4fr; gap: 72px; }
}
.c-contact__form-col { min-width: 0; }
.c-contact__info-col { min-width: 0; }
.c-contact__row-2 { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 768px) {
  .c-contact__row-2 { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.c-contact__title { font-size: 28px; font-weight: 800; color: #f1f5f9; margin-bottom: 32px; }
.c-contact__form input,
.c-contact__form select,
.c-contact__form textarea {
  width: 100%;
  background: #1e293b;
  border: 1px solid #334155;
  color: #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
  font-family: var(--font-sans);
}
.c-contact__form input:focus,
.c-contact__form select:focus,
.c-contact__form textarea:focus { border-color: var(--accent); outline: none; }
.c-contact__form select option { background: #1e293b; }
.c-contact__form button { cursor: pointer; }
.c-contact__info-title { font-size: 20px; font-weight: 700; color: #f1f5f9; margin-bottom: 24px; }
.c-contact__info-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 20px; font-size: 15px; color: #94a3b8;
}
.c-contact__info-item i { color: var(--accent); font-size: 16px; margin-top: 3px; min-width: 20px; }
.c-contact__info-item a { color: #94a3b8; text-decoration: none; }
.c-contact__info-item a:hover { color: var(--accent); }

/* ============================================================ */
/* FOOTER A: 4-COL                                               */
/* ============================================================ */
.c-footer {
  background: #0f172a;
  padding: 64px 0 0;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
}
.c-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.c-footer__logo {
  font-size: 20px;
  font-weight: 800;
  color: #f1f5f9;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}
.c-footer__logo span { color: var(--accent); }
.c-footer__logo-img { height: 28px; width: auto; display: block; margin-bottom: 12px; }
.c-footer__tagline { font-size: 14px; color: #64748b; line-height: 1.6; }
.c-footer__col h4 {
  font-size: 14px; font-weight: 700; color: #e2e8f0;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
.c-footer__col ul { list-style: none; padding: 0; margin: 0; }
.c-footer__col ul li { margin-bottom: 10px; color: #94a3b8; font-size: 14px; }
.c-footer__col ul a { color: #94a3b8; font-size: 14px; text-decoration: none; transition: color 0.2s; }
.c-footer__col ul a:hover { color: var(--accent); }
.c-footer__contact p { font-size: 14px; margin-bottom: 10px; line-height: 1.5; }
.c-footer__contact i { color: var(--accent); width: 18px; font-size: 13px; margin-right: 8px; }
.c-footer__bottom {
  border-top: 1px solid #1e293b;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #475569;
}
.c-footer__legal { display: flex; gap: 20px; }
.c-footer__legal a { color: #64748b; text-decoration: none; font-size: 13px; }
.c-footer__legal a:hover { color: #94a3b8; }
@media (max-width: 768px) {
  .c-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .c-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================ */
/* COOKIE BANNER A: GENERIC                                       */
/* ============================================================ */
.c-cookie {
  position: fixed;
  inset: auto 16px 16px 16px;
  max-width: 720px;
  margin-left: auto;
  z-index: 1080;
  background: #ffffff;
  color: #1f2937;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 20px 50px rgba(15,23,42,0.18);
  border-radius: 12px;
  padding: 14px 18px;
}
.c-cookie[hidden] { display: none !important; }
.c-cookie__inner { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.c-cookie__text {
  flex: 1 1 320px;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: #374151;
}
.c-cookie__text a { color: var(--accent); }
.c-cookie__actions { display: flex; gap: 8px; margin-left: auto; }
@media (max-width: 576px) {
  .c-cookie { inset: auto 8px 8px 8px; }
  .c-cookie__actions { width: 100%; justify-content: flex-end; }
}

/* ============================================================ */
/* ABOUT PAGE — MISSION / VALUES                                  */
/* ============================================================ */
.c-about { padding: 80px 0; background: var(--bg-dark); }
.c-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.c-about__subtitle { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.c-about__heading { font-size: 32px; font-weight: 800; color: #f1f5f9; margin-bottom: 24px; }
.c-about__body { font-size: 16px; color: #94a3b8; line-height: 1.8; margin-bottom: 16px; }
.c-values { padding: 80px 0; background: var(--bg-alt); }
.c-values__list { list-style: none; padding: 0; margin: 0; }
.c-values__item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid #334155;
}
.c-values__item:last-child { border-bottom: none; }
.c-values__icon { color: var(--accent); font-size: 18px; margin-top: 2px; min-width: 24px; }
.c-values__text { font-size: 16px; color: #94a3b8; line-height: 1.6; }
.c-values__text strong { color: #f1f5f9; }

@media (max-width: 768px) { .c-about__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================ */
/* PRODUCT — INTEGRATIONS                                         */
/* ============================================================ */
.c-integrations { padding: 80px 0; background: var(--bg-alt); }
.c-integrations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.c-integrations__badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.2s;
}
.c-integrations__badge:hover { border-color: var(--accent); }
.c-integrations__badge img { width: 100%; max-width: 120px; height: auto; }
.c-integrations__name {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  margin-top: 8px;
  display: block;
}

/* ============================================================ */
/* 404 PAGE                                                       */
/* ============================================================ */
.c-404 {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--bg-dark);
  padding: 80px 24px;
}
.c-404__code {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 900;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  display: block;
  margin-bottom: -20px;
}
.c-404__title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 16px;
}
.c-404__text { font-size: 16px; color: #94a3b8; max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }

/* ============================================================ */
/* BLOG GRID — B-EDITORIAL-LIST (dark overrides for phishaver)   */
/* ============================================================ */
.c-blog-grid { padding: 80px 0; background: var(--bg-dark); }
.c-blog-grid .container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.c-blog-grid .c-section-header { margin-bottom: 48px; }
.c-blog-grid .c-section-title { font-size: 36px; font-weight: 800; color: #f1f5f9; margin-bottom: 8px; }
.c-blog-grid__list--editorial { display: flex; flex-direction: column; gap: 56px; list-style: none; padding: 0; margin: 0; }
.c-blog-editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.c-blog-grid__list--editorial > li:nth-child(even) .c-blog-editorial__media { order: 2; }
.c-blog-grid__list--editorial > li:nth-child(even) .c-blog-editorial__body  { order: 1; }
.c-blog-editorial__media { display: block; overflow: hidden; border-radius: 14px; }
.c-blog-editorial__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform 0.3s ease; }
.c-blog-editorial__media:hover img { transform: scale(1.03); }
.c-blog-editorial__meta { display: flex; gap: 16px; color: #64748b; font-size: 13px; margin-bottom: 12px; letter-spacing: 0.3px; }
.c-blog-editorial__category { color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; font-size: 12px; }
.c-blog-editorial__title { font-size: clamp(22px, 2.5vw, 28px); line-height: 1.25; font-weight: 700; margin: 0 0 14px; color: #f1f5f9; letter-spacing: -0.02em; }
.c-blog-editorial__title a { color: inherit; text-decoration: none; }
.c-blog-editorial__title a:hover { color: var(--accent); }
.c-blog-editorial__excerpt { font-size: 16px; line-height: 1.65; color: #94a3b8; margin: 0 0 20px; }
.c-blog-editorial__cta { color: var(--accent); font-weight: 600; font-size: 15px; text-decoration: none; }
.c-blog-editorial__cta:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .c-blog-editorial { grid-template-columns: 1fr; gap: 20px; }
  .c-blog-grid__list--editorial > li:nth-child(even) .c-blog-editorial__media { order: 1; }
  .c-blog-grid__list--editorial > li:nth-child(even) .c-blog-editorial__body  { order: 2; }
}

/* ============================================================ */
/* BLOG DETAIL — A-STANDARD (dark overrides for phishaver)       */
/* ============================================================ */
.container-narrow { max-width: 740px; margin: 0 auto; padding: 0 24px; }
.c-post { max-width: 100%; margin: 0 auto; }
.c-post__header { padding: 80px 0 32px; background: var(--bg-dark); }
.c-post__breadcrumb { font-size: 13px; color: #64748b; display: flex; gap: 8px; align-items: center; margin-bottom: 16px; }
.c-post__breadcrumb a { color: #64748b; text-decoration: none; }
.c-post__breadcrumb a:hover { color: var(--accent); }
.c-post__category { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.c-post__title { font-size: clamp(32px, 5vw, 52px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; color: #f1f5f9; margin: 0 0 16px; }
.c-post__meta { display: flex; gap: 20px; flex-wrap: wrap; color: #64748b; font-size: 15px; }
.c-post__cover { margin: 0 0 40px; background: var(--bg-dark); }
.c-post__cover img { width: 100%; height: auto; max-height: 540px; object-fit: cover; border-radius: 16px; display: block; }
.c-post__footer { background: var(--bg-dark); margin-top: 56px; padding-top: 24px; border-top: 1px solid #1e293b; }
.c-post__share { display: flex; gap: 12px; align-items: center; font-size: 14px; color: #64748b; }
.c-post__share a { color: #64748b; text-decoration: none; }
.c-post__share a:hover { color: var(--accent); }
.c-post__body > * + * { margin-top: 1.25em; }
.c-post__body h2 { font-size: 26px; margin-top: 2.5em; line-height: 1.25; font-weight: 700; }
.c-post__body h3 { font-size: 20px; margin-top: 2em; font-weight: 600; }
.c-post__body blockquote { border-left: 3px solid var(--accent); padding: 4px 0 4px 16px; color: #94a3b8; font-style: italic; margin: 0; }
.c-post__body code { font-family: ui-monospace, 'SFMono-Regular', Consolas, monospace; background: #1e293b; color: #e2e8f0; padding: 2px 6px; border-radius: 4px; font-size: 0.92em; }
.c-post__body pre { background: #0f172a; color: #e2e8f0; border: 1px solid #1e293b; padding: 16px 20px; border-radius: 10px; overflow-x: auto; font-size: 14px; line-height: 1.55; }
.c-post__body pre code { background: transparent; padding: 0; color: inherit; }
.c-post__lead { font-size: 19px; color: #cbd5e1; }

/* Legal pages */
.c-legal { padding: 64px 0 80px; background: var(--bg-dark); }
.c-legal__body { max-width: 740px; margin: 0 auto; font-size: 16px; line-height: 1.8; color: #94a3b8; }
.c-legal__body h2 { font-size: 22px; font-weight: 700; color: #f1f5f9; margin-top: 40px; margin-bottom: 12px; }
.c-legal__body h3 { font-size: 18px; font-weight: 600; color: #e2e8f0; margin-top: 28px; margin-bottom: 10px; }
.c-legal__body p { margin-bottom: 16px; }
.c-legal__body ul { padding-left: 24px; margin-bottom: 16px; }
.c-legal__body li { margin-bottom: 8px; }
.c-legal__body a { color: var(--accent); }

/* ============================================================ */
/* BLOG READING WIDTH (verify_site.py checks for this block)     */
/* ============================================================ */
.c-post__body,
.blog-content,
.article-content,
.post-content {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #94a3b8;
}
.c-post__body h2,
.c-post__body h3,
.blog-content h2,
.blog-content h3 {
  color: #f1f5f9;
  margin-top: 40px;
  margin-bottom: 16px;
}
.c-post__body p,
.blog-content p { margin-bottom: 20px; }
.c-post__body img,
.blog-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 24px 0;
}
.blog-img-full { max-width: none; width: 100%; }
