/* Ketchum Security — static site */
:root {
  --bg: #07111f;
  --bg-2: #0a1828;
  --ink: #102033;
  --muted: #607086;
  --line: #dce4ec;
  --paper: #f8fafc;
  --white: #ffffff;
  --accent: #19c6b3;
  --accent-2: #70f0df;
  --navy: #0c2741;
  --shadow: 0 24px 70px rgba(7, 17, 31, .12);
  --radius: 20px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; background: var(--white); padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, .90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); min-width: max-content; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  font-size: 13px; font-weight: 850; letter-spacing: .06em;
  border: 1px solid rgba(112,240,223,.7);
  background: linear-gradient(135deg, rgba(25,198,179,.18), rgba(112,240,223,.03));
  border-radius: 10px; color: var(--accent-2);
  box-shadow: inset 0 0 22px rgba(25,198,179,.08);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 15px; letter-spacing: .01em; }
.brand-text small { margin-top: 5px; color: #9db1c7; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 24px; color: #d3dce7; font-size: 14px; }
.nav > a:not(.button):hover { color: var(--white); }
.menu-toggle { display:none; border:0; background:transparent; padding:10px; cursor:pointer; }
.menu-toggle span:not(.sr-only) { display:block; width:24px; height:2px; background:#fff; margin:5px; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 22px; border-radius: 10px;
  background: var(--accent); color: #03110f; font-weight: 800; font-size: 14px;
  border: 1px solid var(--accent); transition: .18s ease;
  box-shadow: 0 10px 30px rgba(25,198,179,.16);
}
.button:hover { transform: translateY(-1px); background: var(--accent-2); border-color: var(--accent-2); }
.button-small { min-height: 42px; padding: 0 16px; font-size: 13px; }
.button-light { background: var(--white); border-color: var(--white); color: var(--bg); box-shadow:none; }
.button-light:hover { background: #edfdfb; border-color:#edfdfb; }

.hero { position: relative; overflow: hidden; background: var(--bg); color: var(--white); padding: 100px 0 90px; }
.hero::before {
  content:""; position:absolute; width:620px; height:620px; border-radius:50%;
  top:-300px; right:-200px; background: radial-gradient(circle, rgba(25,198,179,.15), transparent 67%);
}
.hero-grid {
  position:absolute; inset:0; opacity:.16; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-layout { position:relative; display:grid; grid-template-columns: 1.15fr .85fr; gap:72px; align-items:center; }
.eyebrow, .kicker { font-size: 12px; font-weight:850; letter-spacing:.15em; text-transform:uppercase; }
.eyebrow { color:var(--accent-2); display:flex; gap:10px; align-items:center; }
.eyebrow span { width:28px; height:1px; background:var(--accent); }
.hero h1 { font-size: clamp(44px, 5.3vw, 74px); line-height:1.03; letter-spacing:-.045em; margin:22px 0; max-width:850px; }
.hero-lede { font-size:20px; line-height:1.65; color:#b8c7d8; max-width:720px; margin:0; }
.hero-actions { display:flex; align-items:center; gap:24px; margin-top:34px; flex-wrap:wrap; }
.text-link { color:#dbe6f0; font-weight:700; font-size:14px; }
.text-link span { color:var(--accent-2); }
.trust-row { display:flex; gap:26px; flex-wrap:wrap; margin-top:42px; color:#8fa5bb; font-size:12px; font-weight:700; }
.trust-row span::before { content:"✓"; color:var(--accent); margin-right:7px; }

.hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.11); border-radius:var(--radius);
  padding:26px; box-shadow:0 30px 80px rgba(0,0,0,.22);
}
.panel-topline { display:flex; align-items:center; gap:9px; color:#8fa5bb; font-size:10px; letter-spacing:.14em; font-weight:800; padding-bottom:18px; border-bottom:1px solid rgba(255,255,255,.09); }
.status-dot { width:8px; height:8px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 5px rgba(25,198,179,.1); }
.trigger-list { display:grid; }
.trigger-item { display:grid; grid-template-columns:42px 1fr; gap:14px; padding:20px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.trigger-item:last-child { border-bottom:0; padding-bottom:0; }
.trigger-icon { width:34px; height:34px; display:grid; place-items:center; border-radius:8px; background:rgba(25,198,179,.09); color:var(--accent-2); font-size:10px; font-weight:900; }
.trigger-item strong { font-size:15px; }
.trigger-item p { color:#9fb2c6; margin:4px 0 0; font-size:13px; line-height:1.5; }

.problem-strip { background:#edfdfb; border-bottom:1px solid #ccefe9; color:#17413f; }
.problem-strip .container { padding-top:20px; padding-bottom:20px; }
.problem-strip p { margin:0; font-size:14px; }

.section { padding: 100px 0; }
.section-dark { background:var(--bg-2); color:var(--white); }
.section-heading { display:grid; grid-template-columns:1.35fr .65fr; gap:70px; align-items:end; margin-bottom:48px; }
.kicker { color:#0b887d; display:block; margin-bottom:12px; }
.section-dark .kicker { color:var(--accent-2); }
.section-heading h2, .two-col h2, .about-section h2, .cta-section h2 {
  font-size: clamp(34px, 4vw, 50px); line-height:1.12; letter-spacing:-.035em; margin:0;
}
.section-heading p { margin:0; color:var(--muted); }
.section-dark .section-heading p { color:#9fb2c6; }
.lead { font-size:19px; color:#42546a; }

.cards { display:grid; grid-template-columns:repeat(2, 1fr); gap:18px; }
.service-card {
  position:relative; padding:34px; border:1px solid var(--line); border-radius:var(--radius);
  background:var(--white); box-shadow:0 12px 45px rgba(7,17,31,.04); transition:.2s ease;
}
.service-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); border-color:#c3d1de; }
.service-card.featured { border-color:rgba(25,198,179,.48); background:linear-gradient(180deg,#fff,#f6fffd); }
.service-badge { position:absolute; top:22px; right:22px; color:#087c71; background:#dff9f5; padding:6px 9px; border-radius:999px; font-size:9px; font-weight:900; letter-spacing:.12em; }
.service-number { font-size:11px; font-weight:900; color:#0b887d; letter-spacing:.13em; margin-bottom:20px; }
.service-card h3 { font-size:24px; line-height:1.2; letter-spacing:-.02em; margin:0 0 12px; }
.service-card > p { color:var(--muted); }
.service-card ul { list-style:none; padding:0; margin:22px 0; }
.service-card li { position:relative; padding:7px 0 7px 22px; color:#42546a; font-size:14px; }
.service-card li::before { content:""; position:absolute; left:0; top:16px; width:8px; height:8px; border:2px solid var(--accent); border-radius:2px; }
.service-card a { color:#087c71; font-weight:800; font-size:14px; }

.framework-grid { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid rgba(255,255,255,.11); border-radius:var(--radius); overflow:hidden; }
.framework { min-height:150px; padding:28px; display:flex; flex-direction:column; justify-content:flex-end; border-right:1px solid rgba(255,255,255,.1); border-bottom:1px solid rgba(255,255,255,.1); background:rgba(255,255,255,.025); }
.framework:nth-child(3n) { border-right:0; }
.framework:nth-last-child(-n+3) { border-bottom:0; }
.framework strong { font-size:18px; margin-bottom:8px; }
.framework span { color:#94a9bf; font-size:13px; line-height:1.5; }
.framework-note { margin:22px 0 0; color:#8299b0; font-size:12px; max-width:900px; }

.two-col { display:grid; grid-template-columns:.9fr 1.1fr; gap:90px; align-items:start; }
.industry-list { border-top:1px solid var(--line); }
.industry-list div { display:grid; grid-template-columns:52px 1fr; gap:10px; align-items:center; min-height:74px; border-bottom:1px solid var(--line); }
.industry-list span { color:#0b887d; font-size:11px; font-weight:900; }
.industry-list strong { font-size:17px; }

.process-section { background:var(--paper); }
.process { list-style:none; display:grid; grid-template-columns:repeat(4,1fr); gap:0; padding:0; margin:0; border-top:1px solid #ccd8e3; }
.process li { padding:28px 24px 0 0; position:relative; }
.process li::before { content:""; width:8px; height:8px; background:var(--accent); border-radius:50%; position:absolute; top:-4px; left:0; box-shadow:0 0 0 6px var(--paper); }
.process span { color:#0b887d; font-size:11px; font-weight:900; }
.process h3 { font-size:21px; margin:12px 0 8px; }
.process p { font-size:14px; color:var(--muted); margin:0; max-width:240px; }

.about-section { background:#fff; }
.about-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:80px; align-items:center; }
.about-card {
  min-height:430px; padding:38px; border-radius:var(--radius); background:var(--bg); color:var(--white);
  position:relative; overflow:hidden; display:flex; flex-direction:column; justify-content:space-between;
  box-shadow:var(--shadow);
}
.about-card::after { content:""; position:absolute; width:340px; height:340px; right:-130px; bottom:-130px; border:1px solid rgba(112,240,223,.20); border-radius:50%; box-shadow:0 0 0 50px rgba(112,240,223,.025),0 0 0 100px rgba(112,240,223,.02); }
.monogram { font-size:44px; font-weight:900; color:var(--accent-2); letter-spacing:-.05em; }
.about-card small { color:#8fa5bb; display:block; font-weight:800; letter-spacing:.15em; margin-bottom:10px; }
.about-card strong { font-size:30px; line-height:1.15; letter-spacing:-.03em; }
.about-section p:not(.lead) { color:var(--muted); }
.about-points { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:30px; }
.about-points div { border-top:2px solid #dce5ed; padding-top:14px; }
.about-points strong, .about-points span { display:block; }
.about-points strong { font-size:14px; }
.about-points span { margin-top:6px; font-size:12px; color:var(--muted); }

.faq-section { background:var(--paper); }
.faq { max-width:900px; }
.faq details { border-bottom:1px solid #d7e0e8; }
.faq summary { cursor:pointer; list-style:none; padding:24px 42px 24px 0; font-weight:800; font-size:17px; position:relative; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; position:absolute; right:0; top:18px; color:#0b887d; font-size:28px; font-weight:400; }
.faq details[open] summary::after { content:"–"; }
.faq p { margin:0 0 24px; color:var(--muted); max-width:780px; }

.cta-section { padding:85px 0; background:linear-gradient(135deg,#0b756e,#0a9388); color:var(--white); }
.cta-inner { display:grid; grid-template-columns:1.15fr .85fr; gap:70px; align-items:center; }
.cta-section .kicker { color:#c9fff7; }
.cta-section p { color:#d8fffa; max-width:720px; }
.cta-actions { display:flex; flex-direction:column; gap:14px; align-items:flex-start; }
.cta-actions span { font-size:12px; color:#c4f4ee; }

.footer { background:#050c15; color:#93a7bc; padding:62px 0 22px; }
.footer-grid { display:grid; grid-template-columns:1.4fr .8fr .7fr 1fr; gap:48px; }
.footer-grid > div { display:flex; flex-direction:column; align-items:flex-start; gap:9px; }
.footer-grid strong { color:#fff; font-size:13px; margin-bottom:6px; }
.footer-grid a, .footer-grid span, .footer-grid p { font-size:12px; }
.footer-grid a:hover { color:#fff; }
.footer-brand { margin-bottom:10px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); margin-top:42px; padding-top:20px; display:flex; justify-content:space-between; gap:20px; font-size:11px; }

.reveal { opacity:0; transform:translateY(14px); transition:opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity:1; transform:none; }

.privacy-shell { background:var(--paper); min-height:100vh; }
.privacy-main { padding:78px 0 110px; }
.privacy-main article { max-width:800px; background:#fff; padding:48px; border:1px solid var(--line); border-radius:var(--radius); box-shadow:0 16px 50px rgba(7,17,31,.05); }
.privacy-main h1 { font-size:44px; letter-spacing:-.04em; margin:0 0 10px; }
.privacy-main h2 { margin-top:34px; }
.privacy-main p, .privacy-main li { color:var(--muted); }
.back-link { color:#087c71; font-weight:800; display:inline-block; margin-bottom:25px; }

@media (max-width: 900px) {
  .nav { display:none; position:absolute; left:0; right:0; top:78px; padding:18px 20px 24px; background:#07111f; flex-direction:column; align-items:stretch; border-top:1px solid rgba(255,255,255,.08); }
  .nav.open { display:flex; }
  .menu-toggle { display:block; }
  .hero { padding:75px 0 70px; }
  .hero-layout, .section-heading, .two-col, .about-grid, .cta-inner { grid-template-columns:1fr; gap:42px; }
  .hero h1 { font-size:48px; }
  .cards { grid-template-columns:1fr; }
  .framework-grid { grid-template-columns:repeat(2,1fr); }
  .framework:nth-child(3n) { border-right:1px solid rgba(255,255,255,.1); }
  .framework:nth-child(2n) { border-right:0; }
  .framework:nth-last-child(-n+3) { border-bottom:1px solid rgba(255,255,255,.1); }
  .framework:nth-last-child(-n+2) { border-bottom:0; }
  .process { grid-template-columns:repeat(2,1fr); gap:34px 20px; }
  .about-card { min-height:320px; }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 600px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  .section { padding:76px 0; }
  .hero h1 { font-size:41px; }
  .hero-lede { font-size:17px; }
  .hero-actions { align-items:stretch; flex-direction:column; }
  .hero-actions .button { width:100%; }
  .framework-grid { grid-template-columns:1fr; }
  .framework { border-right:0 !important; border-bottom:1px solid rgba(255,255,255,.1) !important; }
  .framework:last-child { border-bottom:0 !important; }
  .process { grid-template-columns:1fr; }
  .about-points { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
  .service-card { padding:28px 24px; }
  .privacy-main article { padding:28px 22px; }
}

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