:root {
  --navy-dark: #002b43;
  --navy: #1f3a5f;
  --blue: #273e62;
  --teal: #1fa79a;
  --teal-bright: #2ec4b6;
  --paper: #f4f4f2;
  --white: #ffffff;
  --text: #111827;
  --muted: #5d6b79;
  --line: #d7dee8;
  --shadow: 0 16px 42px rgba(0, 43, 67, 0.12);
}
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
body { margin: 0; font-family: Aptos, Arial, sans-serif; color: var(--text); background: var(--paper); line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(0,43,67,.1); backdrop-filter: blur(12px); }
.topbar-inner { width: min(1240px, calc(100% - 32px)); margin: 0 auto; min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 245px; }
.brand img { width: 58px; height: 46px; object-fit: contain; }
.brand span { display: grid; gap: 1px; }
.brand strong { color: var(--navy-dark); font-size: 18px; }
.brand em { color: var(--muted); font-size: 12px; font-style: normal; }
.nav { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.nav-link { font-size: 14px; color: var(--muted); }
.nav-link.active, .nav-link:hover { color: var(--navy-dark); }
.hero { background: var(--navy-dark); color: var(--white); padding: 92px 0 76px; border-bottom: 5px solid var(--teal); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) 380px; gap: 48px; align-items: center; }
.eyebrow { color: var(--teal-bright); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 800; margin-bottom: 12px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.02; margin-bottom: 20px; letter-spacing: 0; overflow-wrap: anywhere; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.1; color: var(--navy-dark); margin-bottom: 14px; letter-spacing: 0; }
h3 { color: var(--navy-dark); font-size: 21px; line-height: 1.2; }
.lede, .hero p { font-size: 19px; color: rgba(255,255,255,.86); max-width: 780px; overflow-wrap: anywhere; }
.hero-actions, .form-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border-radius: 8px; font-weight: 800; border: 1px solid transparent; }
.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 12px 28px rgba(31,167,154,.25); }
.btn-secondary { background: var(--white); color: var(--navy-dark); border-color: var(--line); }
.hero-panel { background: var(--white); color: var(--navy-dark); border-radius: 8px; padding: 24px; box-shadow: var(--shadow); display: grid; gap: 12px; }
.hero-panel span { color: var(--teal); font-size: 12px; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
.hero-panel strong { display: block; border: 1px solid var(--line); border-left: 5px solid var(--teal); padding: 13px 14px; border-radius: 8px; font-size: 18px; background: var(--paper); }
.hero-panel p { color: var(--muted); margin: 6px 0 0; }
.section { padding: 82px 0; }
.section-soft { background: #eaf0f4; }
.section-navy { background: var(--navy-dark); color: var(--white); }
.section-navy h2, .section-navy p { color: var(--white); }
.section-intro { max-width: 900px; margin-bottom: 34px; }
.section-intro p { color: var(--muted); font-size: 18px; }
.section-navy .section-intro p, .section-navy p { color: rgba(255,255,255,.82); }
.threat-strip, .comparison-grid, .use-case-grid, .deliverable-grid { display: grid; gap: 14px; }
.threat-strip { grid-template-columns: repeat(5, 1fr); margin-bottom: 24px; }
.threat-strip div, .comparison-grid div, .use-case-grid div, .deliverable-grid div { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 18px; box-shadow: 0 8px 22px rgba(0,43,67,.06); }
.threat-strip span, .offer-card span, .deliverable-grid span { display: block; color: var(--teal); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.threat-strip strong { color: var(--navy-dark); line-height: 1.25; }
.visual-frame { position: relative; margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 12px; box-shadow: var(--shadow); overflow: hidden; }
.visual-frame img { width: 100%; height: auto; border-radius: 6px; }
.animated-flow::after { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 999px; background: var(--teal); top: 33%; left: 48%; opacity: .85; box-shadow: 0 0 0 10px rgba(46,196,182,.18); animation: flowPulse 2.1s infinite ease-in-out; }
.shield-pulse::after { content: ""; position: absolute; inset: 24% 35%; border-radius: 50%; border: 2px solid rgba(46,196,182,.3); animation: shieldPulse 3.5s infinite ease-in-out; pointer-events: none; }
@keyframes flowPulse { 0% { transform: translateY(-40px); opacity: 0; } 30% { opacity: .9; } 70% { opacity: .6; } 100% { transform: translateY(70px); opacity: 0; } }
@keyframes shieldPulse { 0%, 100% { transform: scale(.92); opacity: .25; } 50% { transform: scale(1.05); opacity: .75; } }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.comparison-grid { grid-template-columns: 1fr 1fr; }
.comparison-grid div { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: var(--white); }
.comparison-grid span { display: block; color: var(--teal-bright); font-size: 12px; text-transform: uppercase; font-weight: 800; margin-bottom: 8px; }
.comparison-grid .highlight { background: var(--teal); color: var(--navy-dark); }
.comparison-grid .highlight span { color: var(--navy-dark); }
.delivery-model { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding-top: 28px; }
.delivery-line { position: absolute; top: 25px; left: 16%; right: 16%; height: 3px; background: var(--teal); }
.delivery-line::before, .delivery-line::after { content: ""; position: absolute; top: -7px; width: 15px; height: 15px; border-top: 3px solid var(--teal); border-right: 3px solid var(--teal); transform: rotate(45deg); }
.delivery-line::before { left: 33%; }
.delivery-line::after { left: 66%; }
.delivery-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 34px 24px 22px; box-shadow: 0 8px 22px rgba(0,43,67,.08); min-height: 300px; }
.delivery-step { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--teal); color: var(--white); font-size: 23px; font-weight: 900; border: 6px solid var(--paper); z-index: 2; }
.delivery-head { display: grid; grid-template-columns: 82px 1fr; gap: 18px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.delivery-head span:not(.delivery-icon) { color: var(--teal); text-transform: uppercase; font-weight: 900; font-size: 14px; }
.delivery-head h3 { margin: 6px 0 0; font-size: 24px; }
.delivery-icon { width: 82px; height: 82px; border-radius: 50%; background: #e8f5f4; border: 1px solid rgba(31,167,154,.25); position: relative; display: block; }
.delivery-icon::after { position: absolute; inset: 0; display: grid; place-items: center; color: var(--navy-dark); font-weight: 900; font-size: 32px; }
.icon-architecture::after { content: "A"; }
.icon-shield::after { content: "S"; }
.icon-document::after { content: "D"; }
.delivery-card ul { list-style: none; padding: 18px 0 0; margin: 0; display: grid; gap: 9px; }
.delivery-card li { color: var(--navy-dark); font-size: 17px; position: relative; padding-left: 30px; }
.delivery-card li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 900; }
.delivery-metrics { margin: 30px auto 0; width: min(980px, 100%); display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,.85); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.delivery-metrics div { padding: 18px; text-align: center; border-right: 1px solid var(--line); }
.delivery-metrics div:last-child { border-right: 0; }
.delivery-metrics strong { display: block; color: var(--teal); text-transform: uppercase; font-size: 15px; }
.delivery-metrics span { color: var(--navy-dark); font-size: 14px; }
.offer-grid { display: grid; gap: 16px; }
.offer-grid.five { grid-template-columns: repeat(5, 1fr); }
.offer-card, .content-panel, .card-grid article { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 24px; box-shadow: 0 8px 22px rgba(0,43,67,.06); }
.offer-card h3 { font-size: 18px; min-height: 120px; }
.offer-card p, .card-grid p { color: var(--muted); }
.offer-card a { color: var(--teal); font-weight: 800; }
.use-case-grid { grid-template-columns: repeat(3, 1fr); }
.use-case-grid div { font-weight: 800; color: var(--navy-dark); }
.cta-panel { display: flex; justify-content: space-between; align-items: center; gap: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 32px; box-shadow: var(--shadow); margin-bottom: 82px; }
.page-main { padding: 48px 0 80px; }
.page-hero { padding: 34px 0 18px; }
.page-hero h1 { color: var(--navy-dark); max-width: 940px; }
.page-hero p { color: var(--muted); font-size: 19px; max-width: 900px; }
.accordion-grid, .decision-stack, .signal-card-grid { display: grid; gap: 12px; }
details { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; box-shadow: 0 8px 22px rgba(0,43,67,.06); }
summary { cursor: pointer; color: var(--navy-dark); font-weight: 900; list-style: none; display: flex; align-items: center; gap: 12px; }
summary::-webkit-details-marker { display: none; }
details p { margin: 12px 0 0 44px; color: var(--muted); }
.mini-icon, .signal-icon { width: 32px; height: 32px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--teal); color: var(--white); font-weight: 900; flex: 0 0 auto; }
.deliverable-grid { grid-template-columns: repeat(3, 1fr); }
.deliverable-grid div { color: var(--navy-dark); font-weight: 800; border-left: 5px solid var(--teal); }
.deliverable-grid strong { display: block; margin: 6px 0; }
.signal-card-grid { grid-template-columns: repeat(4, 1fr); }
.signal-card-grid div { background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--teal); border-radius: 8px; padding: 24px; box-shadow: var(--shadow); }
.signal-card-grid p { color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.responsive-table { overflow-x: auto; background: var(--white); border-radius: 8px; border: 1px solid var(--line); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th { background: var(--navy-dark); color: var(--white); text-align: left; }
th, td { padding: 16px 18px; border-bottom: 1px solid var(--line); font-size: 16px; }
tbody tr:nth-child(even) { background: #f8fafb; }
td:first-child { color: var(--navy-dark); font-weight: 900; }
.decision-stack div { background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--teal); border-radius: 8px; padding: 16px 18px; font-weight: 800; color: var(--navy-dark); }
.source-panel { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 24px; display: grid; gap: 12px; }
.source-panel a { color: var(--teal); font-weight: 800; overflow-wrap: anywhere; }
.about-hero { display: grid; grid-template-columns: 1.08fr .92fr; gap: 42px; align-items: start; padding-top: 42px; }
.about-hero h1 { color: var(--navy-dark); }
.about-hero p { color: var(--muted); font-size: 18px; }
.about-photo img { border-radius: 8px 8px 0 0; box-shadow: var(--shadow); max-height: 680px; object-fit: cover; width: 100%; }
.cred-strip { background: var(--navy-dark); color: var(--white); border-radius: 0 0 8px 8px; padding: 18px; display: grid; gap: 2px; box-shadow: var(--shadow); }
.cred-strip span { color: rgba(255,255,255,.82); }
.credential-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.credential-row span { background: var(--white); border: 1px solid var(--line); color: var(--navy-dark); border-radius: 8px; padding: 8px 12px; font-weight: 800; }
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 24px; box-shadow: var(--shadow); display: grid; gap: 15px; }
label { display: grid; gap: 8px; color: var(--navy-dark); font-size: 14px; font-weight: 800; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 13px 14px; font: inherit; background: var(--white); color: var(--text); }
.consent { grid-template-columns: 20px 1fr; align-items: start; font-weight: 700; color: var(--text); }
.consent input { width: auto; margin-top: 4px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-warning { border: 1px solid #f2c94c; background: #fff8dc; color: #3b2f00; border-radius: 8px; padding: 13px 14px; }
.form-status { color: var(--navy-dark); font-weight: 800; min-height: 24px; }
.content-panel a { color: var(--teal); font-weight: 800; }
.footer { background: var(--white); border-top: 1px solid var(--line); }
.footer-inner { width: min(1240px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0; display: flex; justify-content: space-between; gap: 24px; color: var(--muted); }
.footer-inner div:first-child { display: grid; gap: 4px; }
.footer-inner strong { color: var(--navy-dark); }
.footer-links { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.footer-links span { color: var(--navy-dark); font-weight: 900; }
.footer-links a { color: var(--teal); font-weight: 800; }
@media (max-width: 1120px) {
  .hero-grid, .two-column, .about-hero, .contact-layout { grid-template-columns: 1fr; }
  .offer-grid.five, .threat-strip, .delivery-model, .signal-card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .deliverable-grid, .use-case-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-line { display: none; }
  .delivery-model { gap: 36px 18px; }
}
@media (max-width: 760px) {
  .topbar-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav { display: none; }
  .hero { padding: 62px 0; }
  .hero-copy, .hero-panel, .lede, .hero p { width: 100%; max-width: min(100%, 342px); }
  .hero h1 { max-width: 342px; }
  h1 { font-size: 36px; }
  .offer-grid.five, .threat-strip, .delivery-model, .delivery-metrics, .card-grid, .deliverable-grid, .use-case-grid, .comparison-grid, .signal-card-grid { grid-template-columns: 1fr; }
  .delivery-metrics div { border-right: 0; border-bottom: 1px solid var(--line); }
  .delivery-metrics div:last-child { border-bottom: 0; }
  .delivery-head { grid-template-columns: 64px 1fr; }
  .delivery-icon { width: 64px; height: 64px; }
  .section { padding: 62px 0; }
  .cta-panel, .footer-inner { flex-direction: column; align-items: flex-start; }
  .container { width: min(100% - 24px, 1180px); }
  .visual-frame { padding: 8px; }
}
