:root {
  --navy: #0b1f33;
  --navy-2: #12314c;
  --ink: #172431;
  --muted: #66727f;
  --line: #d9e1e7;
  --soft: #f4f7f8;
  --soft-2: #edf4f3;
  --white: #ffffff;
  --accent: #1d6f6b;
  --accent-dark: #145754;
  --accent-soft: #dfeeed;
  --focus: #0d6efd;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(10, 32, 50, 0.11);
  --container: min(1180px, calc(100% - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(13,110,253,.35); outline-offset: 3px; }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 1000; transform: translateY(-160%); background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 96px 0; }
.section--soft { background: var(--soft); }
.section--navy { background: var(--navy); color: var(--white); }
.section--compact { padding: 72px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: .78rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section--navy .eyebrow { color: #7ed0ca; }
.section-title { max-width: 780px; margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.08; letter-spacing: -.035em; color: var(--navy); }
.section--navy .section-title { color: var(--white); }
.section-lead { max-width: 760px; margin: 0 0 38px; font-size: 1.12rem; color: var(--muted); }
.section--navy .section-lead { color: #c7d2db; }
.small-note { color: var(--muted); font-size: .9rem; }
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(217,225,231,.9); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); }
.header-top { background: var(--navy); color: #dbe5ec; font-size: .84rem; }
.header-top__inner { width: var(--container); margin: 0 auto; min-height: 38px; display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
.header-top a { text-decoration: none; }
.header-top a:hover { color: #fff; }
.header-main { width: var(--container); margin: 0 auto; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 280px; }
.brand-mark { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(145deg, var(--navy), var(--accent)); position: relative; box-shadow: 0 8px 18px rgba(11,31,51,.18); }
.brand-mark::before { content: ""; position: absolute; left: 10px; right: 10px; top: 9px; bottom: 9px; border: 2px solid rgba(255,255,255,.9); border-left-width: 5px; transform: skewX(-12deg); }
.brand-name { font-weight: 760; color: var(--navy); font-size: .98rem; line-height: 1.25; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { text-decoration: none; color: #2e3e4c; font-weight: 650; font-size: .9rem; padding: 10px 9px; border-radius: 8px; white-space: nowrap; }
.nav a:hover { background: var(--soft); color: var(--navy); }
.nav .nav-cta { background: var(--accent); color: #fff; padding-inline: 15px; }
.nav .nav-cta:hover { background: var(--accent-dark); color: #fff; }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 20px; height: 2px; background: var(--navy); position: relative; transition: .2s ease; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.hero::after { content: ""; position: absolute; inset: auto -180px -260px auto; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012); }
.hero-grid { min-height: 675px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 78px 0; position: relative; z-index: 1; }
.hero-copy { max-width: 690px; }
.hero .eyebrow { color: #83d5cf; }
.hero h1 { margin: 0; font-size: clamp(3rem, 6vw, 5.5rem); line-height: .98; letter-spacing: -.055em; font-weight: 760; }
.hero p { color: #cbd6df; font-size: 1.16rem; max-width: 650px; margin: 26px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 18px; border-radius: 10px; border: 1px solid transparent; text-decoration: none; font-weight: 740; font-size: .95rem; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: #207b76; }
.btn--secondary { background: #fff; color: var(--navy); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.hero-visual { position: relative; min-height: 520px; }
.hero-photo { width: 100%; height: 520px; object-fit: cover; border-radius: 26px; box-shadow: 0 28px 70px rgba(0,0,0,.28); filter: saturate(.74) contrast(1.05); }
.hero-photo-shade { position: absolute; inset: 0; border-radius: 26px; background: linear-gradient(180deg, rgba(11,31,51,.03), rgba(11,31,51,.3)); pointer-events: none; }
.hero-badge { position: absolute; left: -36px; bottom: 34px; width: min(340px, 86%); padding: 22px; border-radius: 16px; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: var(--shadow); }
.hero-badge strong { display: block; color: var(--navy); font-size: 1.03rem; margin-bottom: 7px; }
.hero-badge p { margin: 0; color: var(--muted); font-size: .92rem; }
.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 26px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 1rem; }
.trust-item span { color: var(--muted); font-size: .9rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 66px; align-items: center; }
.split--top { align-items: start; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.panel--soft { background: var(--soft); }
.kicker-list { display: grid; gap: 14px; padding: 0; margin: 28px 0 0; list-style: none; }
.kicker-list li { display: grid; grid-template-columns: 28px 1fr; gap: 11px; align-items: start; }
.kicker-list .tick { width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); display: inline-flex; align-items: center; justify-content: center; font-weight: 900; font-size: .8rem; margin-top: 2px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.asset-card, .industry-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 28px; min-height: 255px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.asset-card:hover, .industry-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(16,42,61,.08); border-color: #c4d4db; }
.icon-box { width: 48px; height: 48px; border-radius: 12px; background: var(--soft-2); color: var(--accent-dark); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.icon-box svg { width: 25px; height: 25px; stroke: currentColor; stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.asset-card h3, .industry-card h3 { color: var(--navy); font-size: 1.14rem; margin: 0 0 10px; }
.asset-card p, .industry-card p { color: var(--muted); margin: 0; }
.image-panel { position: relative; border-radius: 24px; overflow: hidden; min-height: 460px; background: #dfe7eb; box-shadow: var(--shadow); }
.image-panel img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; position: absolute; inset: 0; filter: saturate(.78); }
.image-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(11,31,51,.54)); }
.image-panel__caption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 26px; color: #fff; }
.image-panel__caption strong { display: block; font-size: 1.1rem; }
.image-panel__caption span { color: #dbe5ea; font-size: .9rem; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; counter-reset: step; }
.process-card { position: relative; border-top: 2px solid var(--accent); background: #fff; padding: 28px 24px 26px; border-radius: 0 0 14px 14px; min-height: 255px; box-shadow: 0 12px 32px rgba(13,35,51,.06); }
.process-card::before { counter-increment: step; content: "0" counter(step); display: block; color: var(--accent); font-weight: 800; letter-spacing: .08em; font-size: .82rem; margin-bottom: 22px; }
.process-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.1rem; }
.process-card p { margin: 0; color: var(--muted); }
.disclaimer { margin-top: 26px; padding: 16px 18px; border-radius: 10px; background: var(--accent-soft); color: #214747; font-size: .92rem; }
.independent-band { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.metric-stack { display: grid; gap: 12px; }
.metric { padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(255,255,255,.045); }
.metric strong { display: block; font-size: 1rem; margin-bottom: 3px; }
.metric span { color: #c5d1da; font-size: .9rem; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 50px; align-items: start; }
.contact-card { border-radius: 20px; background: var(--navy); color: #fff; padding: 34px; position: sticky; top: 130px; }
.contact-card h3 { margin: 0 0 14px; font-size: 1.35rem; }
.contact-card p, .contact-card address { color: #d0dbe3; font-style: normal; }
.contact-links { display: grid; gap: 10px; margin: 24px 0; }
.contact-links a { color: #fff; text-decoration: none; font-weight: 700; }
.contact-meta { border-top: 1px solid rgba(255,255,255,.14); padding-top: 18px; color: #bac8d2; font-size: .9rem; }
.form-card { border: 1px solid var(--line); border-radius: 20px; padding: 34px; background: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
label { font-size: .9rem; font-weight: 720; color: var(--navy); }
input, select, textarea { width: 100%; border: 1px solid #cdd7de; border-radius: 9px; background: #fff; color: var(--ink); padding: 12px 13px; min-height: 46px; }
textarea { min-height: 128px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: 3px solid rgba(29,111,107,.12); }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 20px 0; }
.checkbox input { width: 18px; height: 18px; min-height: 0; margin-top: 3px; }
.checkbox label { font-weight: 500; color: var(--muted); }
.checkbox a { color: var(--accent-dark); }
.form-status { min-height: 24px; margin-top: 12px; color: var(--accent-dark); font-size: .92rem; }
.legal-hero { background: var(--navy); color: #fff; padding: 72px 0 64px; }
.legal-hero h1 { margin: 0 0 14px; font-size: clamp(2.5rem,5vw,4.2rem); letter-spacing: -.04em; line-height: 1.02; }
.legal-hero p { margin: 0; color: #cbd6df; max-width: 760px; }
.legal-content { max-width: 860px; padding: 72px 0 100px; }
.legal-content h2 { color: var(--navy); margin: 38px 0 12px; font-size: 1.45rem; }
.legal-content h3 { color: var(--navy); margin: 28px 0 8px; font-size: 1.08rem; }
.legal-content p, .legal-content li { color: #53606c; }
.legal-content ul { padding-left: 22px; }
.legal-box { border: 1px solid #d4e3e1; background: var(--soft-2); border-radius: 12px; padding: 20px; margin: 24px 0; }
.legal-box strong { color: var(--navy); }
.site-footer { background: #071827; color: #c5d0d9; padding: 62px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 48px; }
.footer-brand { color: #fff; font-weight: 760; font-size: 1.06rem; margin-bottom: 12px; }
.footer-contact { font-size: .9rem; }
.footer-contact a { color: #fff; text-decoration: none; }
.footer-title { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin-bottom: 14px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #c5d0d9; text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; gap: 22px; font-size: .82rem; color: #8fa0ad; }
.footer-bottom a { color: #b9c6cf; text-decoration: none; }
.photo-credit { color: #7f8c96; font-size: .76rem; margin-top: 10px; }
.photo-credit a { color: inherit; }
@media (max-width: 1040px) {
  .header-top { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; left: 20px; right: 20px; top: 82px; flex-direction: column; align-items: stretch; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: 11px 12px; }
  .hero-grid, .split, .independent-band, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 64px; }
  .hero-visual { min-height: 450px; }
  .hero-photo { height: 450px; }
  .hero-badge { left: 22px; }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .contact-card { position: static; }
}
@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .brand { min-width: 0; max-width: calc(100% - 58px); }
  .brand-name { font-size: .84rem; }
  .header-main { min-height: 68px; }
  .nav { top: 74px; left: 14px; right: 14px; }
  .hero-grid { min-height: auto; padding: 56px 0 70px; gap: 38px; }
  .hero h1 { font-size: clamp(2.7rem, 15vw, 4.4rem); }
  .hero p { font-size: 1.02rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-visual { min-height: 380px; }
  .hero-photo { height: 380px; border-radius: 18px; }
  .hero-photo-shade { border-radius: 18px; }
  .hero-badge { left: 14px; right: 14px; bottom: 14px; width: auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .process-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .asset-card, .industry-card { min-height: 0; }
  .image-panel, .image-panel img { min-height: 360px; }
  .form-card, .contact-card, .panel { padding: 24px; }
  .footer-bottom { flex-direction: column; }
  .field--full { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; } }
