/* about.css — page-specific styles for the SecuRight About page.
   Externalized from the former inline <head> <style> block to satisfy strict
   CSP (style-src 'self', no unsafe-inline). Shared utilities live in
   tokens.css (.u-*). */

.page-hero { padding: 80px 0 40px; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(52px, 8vw, 112px); line-height: 0.94; letter-spacing: -0.045em; font-weight: 500; margin: 12px 0 0; max-width: 1100px; }
.page-hero h1 em { font-style: normal; color: var(--accent); }

.two-col { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; padding-top: 60px; border-top: 1px solid var(--line); }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.two-col h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.03em; font-weight: 500; margin: 18px 0 0; line-height: 1.05; }
.two-col h2 em { font-style: normal; color: var(--accent); }
.two-col p { font-size: 17px; line-height: 1.55; color: var(--ink-2); }
.two-col p + p { margin-top: 20px; }

/* timeline-of-company */
.company-timeline { margin-top: 120px; }
.ct-row {
  display: grid; grid-template-columns: 140px 1fr 1fr; gap: 40px; align-items: start;
  padding: 36px 0; border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .ct-row { grid-template-columns: 1fr; gap: 12px; } }
.ct-row:first-of-type { border-top: 1px solid var(--ink); }
.ct-when { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; }
.ct-what { font-size: 26px; letter-spacing: -0.02em; font-weight: 500; line-height: 1.1; }
.ct-what em { font-style: normal; color: var(--accent); }
.ct-desc { font-size: 15px; color: var(--ink-2); line-height: 1.55; }

/* sectors */
.sectors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-top: 32px; }
@media (max-width: 900px) { .sectors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .sectors { grid-template-columns: 1fr; } }
.sector { background: var(--bg-raised); padding: 28px 24px; display: flex; flex-direction: column; gap: 8px; min-height: 160px; }
.sector .sk { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.sector .sv { font-size: 20px; letter-spacing: -0.02em; font-weight: 500; margin-top: 2px; }
.sector .sd { font-size: 13px; color: var(--ink-2); line-height: 1.45; margin-top: auto; padding-top: 12px; }

/* dig-in CTA cards */
.about-ctas-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 820px) { .about-ctas-grid { grid-template-columns: 1fr; } }

/* values row */
.values { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); margin-top: 64px; }
@media (max-width: 800px) { .values { grid-template-columns: 1fr; } }
.values > div { padding: 36px 32px 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 800px) { .values > div { border-right: none; } }
.values > div:last-child { border-right: none; }
.values .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.values .v { font-size: 28px; letter-spacing: -0.025em; font-weight: 500; line-height: 1.05; margin: 14px 0 12px; }
.values .v em { font-style: normal; color: var(--accent); }
.values .d { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

.pullquote {
  padding: 80px 40px; margin-top: 80px;
  background: var(--bg-sunken); border: 1px solid var(--line); border-radius: var(--r-xl);
  text-align: center;
}
.pullquote q {
  font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.025em; line-height: 1.15; font-weight: 500;
  display: inline-block; max-width: 900px;
}
.pullquote q::before, .pullquote q::after { content: ""; }
.pullquote .attrib {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 28px;
}

/* section header (same pattern as index.css; no bottom margin here) */
.section-head { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: end; }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; } }

/* page-specific spacing helpers */
.h2-tight { margin-top: 14px; }
.timeline-rows { margin-top: 48px; }
.ct-desc-gap { margin-top: 10px; }
.p-flush { margin-bottom: 0; }
.ct-link { color: var(--accent); border-bottom: 1px solid currentColor; }
.section-pad-btm { padding-bottom: 60px; }
.about-ctas { display: grid; gap: 16px; margin-top: 40px; }
.card-tall { min-height: 200px; }
