:root {
  --navy: #07182C;
  --slate: #0D2238;
  --slate-2: #173149;
  --teal: #17324A;
  --teal-bright: #B8872F;
  --gold: #D5A937;
  --gold-soft: #EDC65B;
  --cream: #F5F0E6;
  --paper: #FCFAF5;
  --text: #07182C;
  --muted: #526170;
  --surface: #FFFFFF;
  --surface-2: #EAE4D8;
  --field: #FFFFFF;
  --line: rgba(15, 26, 35, .14);
  --line-strong: rgba(15, 26, 35, .24);
  --header-bg: rgba(7, 24, 44, .97);
  --shadow: 0 24px 70px rgba(15, 26, 35, .14);
  --shadow-soft: 0 14px 42px rgba(15, 26, 35, .09);
  --radius: 24px;
  --container: 1240px;
  color-scheme: light;
}

html[data-theme="mid"] {
  --cream: #13283A;
  --paper: #173149;
  --text: #F5F2EC;
  --muted: #B9C5CA;
  --surface: #203D55;
  --surface-2: #29465C;
  --field: #10283D;
  --line: rgba(245, 242, 236, .14);
  --line-strong: rgba(245, 242, 236, .24);
  --header-bg: rgba(7, 24, 44, .97);
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --shadow-soft: 0 14px 42px rgba(0, 0, 0, .22);
  color-scheme: dark;
}

html[data-theme="dark"] {
  --cream: #04101F;
  --paper: #07182C;
  --text: #F5F2EC;
  --muted: #AAB6BD;
  --surface: #0D2238;
  --surface-2: #0A1C30;
  --field: #061426;
  --line: rgba(245, 242, 236, .12);
  --line-strong: rgba(245, 242, 236, .22);
  --header-bg: rgba(7, 24, 44, .97);
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
  --shadow-soft: 0 14px 48px rgba(0, 0, 0, .34);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .95rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background .3s ease, color .3s ease;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 64px), var(--container)); 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: 16px; top: -70px; z-index: 999; padding: 11px 14px; border-radius: 8px; background: var(--gold); color: var(--navy); font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 60; background: var(--header-bg); border-bottom: 1px solid rgba(245, 240, 230, .12); backdrop-filter: blur(16px); transition: background .25s ease, box-shadow .25s ease, border-color .25s ease; }
.site-header.scrolled, .site-header.work-header { background: var(--header-bg); border-bottom-color: rgba(245, 240, 230, .16); box-shadow: 0 8px 35px rgba(0, 0, 0, .12); }
.nav-wrap { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand > img { filter: drop-shadow(0 5px 12px rgba(15, 26, 35, .14)); }
.brand-lockup { display: block; width: 189px; height: 60px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.12rem; letter-spacing: -.025em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 21px; }
.site-nav > a:not(.button) { color: #CBD5DC; text-decoration: none; font-size: .89rem; font-weight: 700; }
.site-nav > a:hover, .site-nav > a.nav-active { color: #FFFFFF; }
.nav-active { position: relative; }
.nav-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; background: var(--gold); }
.nav-toggle { display: none; padding: 8px; border: 0; background: transparent; color: #F5F0E6; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; }

.theme-switcher { display: inline-flex; gap: 3px; padding: 3px; border: 1px solid rgba(245, 240, 230, .18); border-radius: 999px; background: #0D2238; }
.theme-switcher button { display: grid; place-items: center; width: 30px; height: 30px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: #CBD5DC; cursor: pointer; transition: background .18s ease, color .18s ease, transform .18s ease; }
.theme-switcher button:hover { color: #FFFFFF; transform: translateY(-1px); }
.theme-switcher button.active { background: var(--gold); color: var(--navy); box-shadow: 0 4px 12px rgba(15, 26, 35, .15); }

.button { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 46px; padding: 0 20px; border: 1px solid var(--navy); border-radius: 999px; background: var(--navy); color: #FFFFFF; text-decoration: none; font-weight: 800; letter-spacing: -.01em; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
html[data-theme="dark"] .button:not(.button-gold), html[data-theme="mid"] .button:not(.button-gold) { border-color: var(--gold); background: var(--gold); color: var(--navy); }
.button:hover { transform: translateY(-2px); background: var(--teal); border-color: var(--teal); box-shadow: 0 10px 24px rgba(15, 26, 35, .16); }
html[data-theme="dark"] .button:hover, html[data-theme="mid"] .button:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.button-small { min-height: 38px; padding-inline: 16px; font-size: .82rem; }
.site-nav > .button { border-color: var(--gold); background: var(--gold); color: var(--navy); }
.site-nav > .button:hover { border-color: var(--gold-soft); background: var(--gold-soft); }
.button-gold { border-color: var(--gold); background: linear-gradient(135deg, var(--gold-soft), #C99C2E); color: var(--navy); }
.button-gold:hover { border-color: #E9CC79; background: linear-gradient(135deg, #E9CC79, var(--gold)); }
.button-light { border-color: #FFFFFF; background: #FFFFFF; color: var(--navy); }
.text-link { font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.hero { min-height: 640px; padding: 106px 0 54px; display: grid; align-items: center; overflow: hidden; background: radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 34%); }
.hero-grid { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 54px; }
.eyebrow { margin: 0 0 13px; color: var(--teal-bright); font-size: .7rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow-light { color: #A4D0CC; }
h1, h2, h3 { margin-top: 0; line-height: 1.07; letter-spacing: -.045em; }
h1 { max-width: 720px; margin-bottom: 19px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.5rem, 5.7vw, 5.7rem); font-weight: 500; }
h1 em { color: var(--gold); font-style: normal; }
h2 { margin-bottom: 15px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.15rem, 3.8vw, 3.65rem); font-weight: 500; }
h3 { margin-bottom: 9px; font-size: 1.25rem; letter-spacing: -.025em; }
.hero-lede { max-width: 700px; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.13rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin: 25px 0 23px; }
.proof-list { display: flex; flex-wrap: wrap; gap: 12px 27px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .88rem; font-weight: 700; }
.proof-list li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--teal-bright); vertical-align: 1px; }

.hero-visual { min-height: 450px; display: grid; place-items: center; }
.compass-card { position: relative; width: min(100%, 560px); min-height: 440px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(245, 240, 230, .13); border-radius: 30px; background: radial-gradient(circle at 50% 42%, #102B47 0%, #07182C 68%); box-shadow: var(--shadow); }
.hero-compass-logo { display: block; width: min(78%, 360px); height: auto; }
.grid-lines { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(circle at 50% 45%, #000 0, transparent 80%); }
.orbit { position: absolute; left: 50%; top: 49%; translate: -50% -50%; border: 1px solid rgba(164, 208, 204, .26); border-radius: 50%; }
.orbit-a { width: 390px; height: 390px; }
.orbit-b { width: 285px; height: 285px; border-style: dashed; animation: orbit-spin 34s linear infinite; }
.compass-ring { position: absolute; left: 50%; top: 49%; translate: -50% -50%; width: 220px; height: 220px; border: 1px solid rgba(224, 192, 106, .38); border-radius: 50%; background: radial-gradient(circle at 50% 32%, rgba(70, 122, 120, .45), rgba(15, 26, 35, .94) 66%); box-shadow: 0 0 90px rgba(46, 74, 79, .44), inset 0 0 45px rgba(255, 255, 255, .04); }
.compass-ring > span { position: absolute; left: 50%; top: 18px; translate: -50% 0; color: var(--gold-soft); font-family: Georgia, serif; font-size: 1.1rem; font-weight: 700; }
.needle { position: absolute; left: 50%; bottom: 50%; width: 3px; height: 72px; transform-origin: 50% 100%; border-radius: 999px; }
.needle-gold { background: linear-gradient(var(--gold-soft), var(--gold)); transform: rotate(24deg); box-shadow: 0 0 16px rgba(212, 175, 55, .45); }
.needle-teal { height: 58px; background: linear-gradient(#8BB7B2, var(--teal-bright)); transform: rotate(204deg); }
.compass-ring::after { content: ""; position: absolute; left: 50%; top: 50%; translate: -50% -50%; width: 13px; height: 13px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 7px rgba(212, 175, 55, .14); }
.node { position: absolute; z-index: 3; display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 18px; background: rgba(23, 48, 57, .86); color: #F5F2EC; font-size: .86rem; font-weight: 850; box-shadow: 0 18px 45px rgba(0, 0, 0, .24); backdrop-filter: blur(12px); }
.node-1 { left: 68px; top: 72px; }
.node-2 { right: 62px; top: 106px; color: var(--gold-soft); }
.node-3 { left: 92px; bottom: 76px; color: #A4D0CC; }
.node-4 { right: 74px; bottom: 66px; }
.platform-line { position: absolute; left: 16%; right: 16%; bottom: 28px; height: 1px; background: linear-gradient(90deg, transparent, rgba(224, 192, 106, .54), transparent); }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.trust-strip { border-block: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 45%, transparent); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid span { padding: 16px 15px; border-right: 1px solid var(--line); color: var(--muted); text-align: center; font-size: .71rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.trust-grid span:last-child { border-right: 0; }

.section { padding: 76px 0; }
section[id] { scroll-margin-top: 70px; }
.section-soft { background: var(--cream); }
.section-heading { max-width: 860px; margin-bottom: 34px; }
.section-heading > p:not(.eyebrow) { max-width: 710px; color: var(--muted); font-size: 1rem; }
.section-heading.narrow { max-width: 720px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-grid article { min-height: 255px; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); transition: transform .2s ease, border-color .2s ease; }
.service-grid article:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--gold) 55%, var(--line)); }
.service-grid b { margin-bottom: 36px; color: var(--teal-bright); font-size: .69rem; letter-spacing: .14em; }
.service-grid p { color: var(--muted); }
.service-grid a { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); color: var(--text); text-decoration: none; font-size: .79rem; font-weight: 850; }
.service-grid a:hover { color: var(--teal-bright); }

.engagements-section { background: var(--cream); }
.engagements-heading { max-width: none; display: grid; grid-template-columns: 1.05fr .8fr; gap: 80px; align-items: end; }
.engagements-heading > p { margin: 0 0 15px; }
.engagement-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.engagement-card { min-height: 400px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.engagement-card-featured { border-color: rgba(213, 169, 55, .55); background: linear-gradient(145deg, #0B2035, #173A55); color: #FFFFFF; box-shadow: 0 24px 70px rgba(7, 24, 44, .22); }
.engagement-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.engagement-label { display: block; margin-bottom: 36px; color: var(--teal-bright); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.engagement-card-featured .engagement-label { color: var(--gold-soft); }
.engagement-price { flex: 0 0 auto; color: #C5D1D8; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.engagement-price strong { display: block; margin-top: 2px; color: #FFFFFF; font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; font-weight: 500; letter-spacing: -.03em; text-align: right; text-transform: none; }
.engagement-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 2.4vw, 2.25rem); font-weight: 500; }
.engagement-card > p { max-width: 620px; margin: 2px 0 19px; color: var(--muted); }
.engagement-card-featured > p { color: #C9D4DA; }
.engagement-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 24px; margin: 0 0 28px; padding: 19px 0 0; border-top: 1px solid var(--line); list-style: none; color: var(--muted); font-size: .84rem; font-weight: 700; }
.engagement-card-featured ul { border-color: rgba(255, 255, 255, .16); color: #DCE4E8; }
.engagement-card li::before { content: "✓"; margin-right: 8px; color: var(--teal-bright); font-weight: 900; }
.engagement-card-featured li::before { color: var(--gold-soft); }
.engagement-card .button, .engagement-card > .text-link { align-self: flex-start; margin-top: auto; }
.engagement-card > .text-link { padding-top: 16px; border-top: 1px solid var(--line); width: 100%; font-size: .83rem; }
.engagement-details { display: grid; grid-template-columns: .9fr 1.1fr; gap: 20px; margin-top: 20px; }
.timeline-panel, .faq-panel { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.timeline-panel h3, .faq-panel h3 { max-width: 520px; margin-bottom: 24px; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-weight: 500; }
.timeline-table { border-top: 1px solid var(--line); }
.timeline-table > div { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.timeline-table span { color: var(--muted); }
.timeline-table strong { color: var(--text); font-size: .86rem; }
.faq-panel details { border-top: 1px solid var(--line); }
.faq-panel details:last-child { border-bottom: 1px solid var(--line); }
.faq-panel summary { position: relative; padding: 16px 34px 16px 0; color: var(--text); font-weight: 800; cursor: pointer; list-style: none; }
.faq-panel summary::-webkit-details-marker { display: none; }
.faq-panel summary::after { content: "+"; position: absolute; right: 3px; top: 13px; color: var(--teal-bright); font-size: 1.2rem; font-weight: 500; }
.faq-panel details[open] summary::after { content: "–"; }
.faq-panel details p { margin: -2px 35px 18px 0; color: var(--muted); font-size: .9rem; }

.work-preview-section { padding-top: 62px; background: var(--cream); }
.work-preview-heading { max-width: none; display: grid; grid-template-columns: 1.05fr .8fr; gap: 80px; align-items: end; }
.work-preview-heading > div:last-child p { color: var(--muted); }
.work-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.work-preview-grid > a { min-height: 260px; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); text-decoration: none; box-shadow: var(--shadow-soft); transition: transform .2s ease, border-color .2s ease; }
.work-preview-grid > a:hover { transform: translateY(-5px); border-color: var(--gold); }
.work-preview-grid span { color: var(--teal-bright); font-size: .69rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.work-preview-grid h3 { margin-top: 30px; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.work-preview-grid p { color: var(--muted); }
.work-preview-grid strong { margin-top: auto; color: var(--text); font-size: .82rem; }

.section-deep { background: linear-gradient(135deg, var(--navy), #0E2940 70%, #153A50); color: #FFFFFF; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 65px; align-items: start; }
.section-deep h2 { color: #FFFFFF; }
.large-copy { max-width: 610px; color: #C4D0D6; font-size: 1.15rem; }
.difference-list { display: grid; }
.difference-list > div { display: grid; grid-template-columns: 40px 1fr; gap: 0 14px; padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, .15); }
.difference-list > div:first-child { border-top: 1px solid rgba(255, 255, 255, .15); }
.difference-list span { grid-row: span 2; padding-top: 5px; color: var(--gold-soft); font-size: .7rem; font-weight: 900; letter-spacing: .11em; }
.difference-list h3 { margin: 0 0 6px; color: #FFFFFF; }
.difference-list p { margin: 0; color: #B8C6CE; }

.global-card { display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: center; padding: 46px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); }
.global-card > div:first-child > p:not(.eyebrow), .global-card li { color: var(--muted); }
.global-card ul { display: grid; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.global-card li::before { content: "↗"; margin-right: 10px; color: var(--gold); font-weight: 900; }
.global-graphic { position: relative; min-height: 320px; overflow: hidden; border-radius: 23px; background: linear-gradient(145deg, #07182C, #173A55); }
.globe { position: absolute; left: 50%; top: 50%; translate: -50% -50%; width: 255px; height: 255px; border: 1px solid rgba(164, 208, 204, .34); border-radius: 50%; background: radial-gradient(circle at 36% 30%, rgba(70, 122, 120, .68), rgba(15, 26, 35, .92) 68%); box-shadow: 0 0 70px rgba(46, 74, 79, .5); }
.globe::before, .globe::after { content: ""; position: absolute; inset: 19%; border: 1px solid rgba(245, 242, 236, .18); border-radius: 50%; }
.globe::after { inset: 0 44%; }
.pin { position: absolute; width: 12px; height: 12px; border: 3px solid var(--gold-soft); border-radius: 50%; background: var(--navy); box-shadow: 0 0 0 7px rgba(212, 175, 55, .13); }
.pin-1 { left: 29%; top: 37%; }.pin-2 { left: 54%; top: 31%; }.pin-3 { right: 23%; bottom: 28%; }
.route { position: absolute; height: 1px; transform-origin: 0 0; background: linear-gradient(90deg, rgba(224, 192, 106, .8), transparent); }
.route-1 { left: 30%; top: 39%; width: 150px; transform: rotate(-8deg); }.route-2 { left: 55%; top: 34%; width: 135px; transform: rotate(47deg); }

.partner-section { padding-top: 24px; }
.partner-card { display: grid; grid-template-columns: .93fr 1.07fr; gap: 58px; padding: 46px; border-radius: 28px; background: linear-gradient(135deg, #0D2238, #173A55); color: #FFFFFF; }
.partner-card h2 { color: #FFFFFF; }
.partner-card > div:first-child > p:not(.eyebrow) { color: #C5D5D7; font-size: 1.08rem; }
.partner-points { display: grid; align-content: start; }
.partner-points > div { padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.partner-points > div:first-child { border-top: 1px solid rgba(255, 255, 255, .16); }
.partner-points strong { font-size: 1rem; }
.partner-points p { margin: 7px 0 0; color: #C2D1D3; }
.partner-points .button { justify-self: start; margin-top: 28px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 38px 0 0; padding: 0; list-style: none; }
.process-grid li { padding: 25px 18px 10px 0; border-top: 2px solid var(--text); }
.process-grid li > span { display: inline-block; margin-bottom: 30px; color: var(--teal-bright); font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.process-grid p { color: var(--muted); font-size: .92rem; }

.contact-section { padding-top: 68px; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: start; }
.contact-intro { position: sticky; top: 125px; }
.large-contact-copy { max-width: 560px; color: var(--muted); font-size: 1.1rem; }
.contact-expectations { display: grid; margin-top: 26px; border-top: 1px solid var(--line); }
.contact-expectations > div { display: grid; grid-template-columns: 38px 1fr; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-expectations span { color: var(--teal-bright); font-size: .71rem; font-weight: 900; letter-spacing: .12em; }
.contact-expectations p { margin: 0; color: var(--muted); font-size: .9rem; }
.contact-expectations strong { color: var(--text); }
.contact-panel { padding: 30px; border: 1px solid var(--line); border-radius: 25px; background: var(--surface); box-shadow: var(--shadow); }
.contact-form { position: relative; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 18px; }
.form-field { display: grid; gap: 8px; }
.form-field-full { grid-column: 1 / -1; }
.form-field[hidden] { display: none !important; }
.form-field label { color: var(--text); font-size: .8rem; font-weight: 800; letter-spacing: .015em; }
.form-field label span { color: #C95D50; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 13px; background: var(--field); color: var(--text); outline: none; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.form-field input, .form-field select { min-height: 46px; padding: 0 13px; }
.form-field textarea { min-height: 125px; padding: 12px 13px; resize: vertical; line-height: 1.5; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal-bright); box-shadow: 0 0 0 4px rgba(70, 122, 120, .18); }
.form-field input::placeholder, .form-field textarea::placeholder { color: color-mix(in srgb, var(--muted) 82%, transparent); }
.turnstile-field { min-width: 0; margin-top: 3px; }
.turnstile-widget { min-height: 65px; }
.turnstile-field p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.4; }
.honeypot { position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-actions { display: flex; align-items: center; gap: 22px; margin-top: 25px; }
.form-actions p { max-width: 330px; margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.45; }
.form-actions .button:disabled { cursor: wait; opacity: .62; transform: none; }
.form-status { min-height: 25px; margin-top: 18px; font-size: .89rem; font-weight: 700; }
.form-status.success { color: #3D8A69; }.form-status.error { color: #C65C52; }
.contact-email-fallback { margin: 12px 0 0; color: var(--muted); font-size: .82rem; }
.contact-email-fallback a { color: var(--text); font-weight: 800; text-underline-offset: 3px; }

.site-footer { padding: 50px 0 25px; background: #061425; color: #FFFFFF; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 35px; padding-bottom: 38px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid p, .footer-links a, .footer-bottom { color: #AAB8C4; }
.footer-links { display: grid; align-content: start; gap: 11px; text-align: right; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: #FFFFFF; text-decoration: underline; }
.footer-bottom { display: grid; grid-template-columns: .6fr 1.4fr; gap: 40px; padding-top: 26px; border-top: 1px solid rgba(245, 240, 230, .14); font-size: .71rem; }

.scroll-top { position: fixed; right: 24px; bottom: 24px; z-index: 70; display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%; background: var(--gold); color: var(--navy); box-shadow: 0 14px 32px rgba(15, 26, 35, .25); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease, background .2s ease; }
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-soft); transform: translateY(-2px); }
.scroll-top:focus-visible { outline: 3px solid rgba(212, 175, 55, .5); outline-offset: 3px; }
.scroll-top svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Selected work page */
.work-page { background: var(--paper); }
.work-hero { position: relative; overflow: hidden; padding: 120px 0 0; background: linear-gradient(135deg, #07182C, #0E2940 70%, #153A50); color: #FFFFFF; }
.work-hero::before { content: ""; position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000, transparent 92%); }
.work-hero-glow { position: absolute; border-radius: 50%; filter: blur(15px); pointer-events: none; }
.work-hero-glow-one { width: 640px; height: 640px; right: -180px; top: -210px; background: radial-gradient(circle, rgba(213, 169, 55, .18), transparent 68%); }
.work-hero-glow-two { width: 520px; height: 520px; left: -180px; bottom: -220px; background: radial-gradient(circle, rgba(212, 175, 55, .18), transparent 70%); }
.work-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.05fr; gap: 58px; align-items: center; min-height: 510px; padding-bottom: 50px; }
.work-hero-copy h1 { max-width: 690px; margin-bottom: 20px; color: #FFFFFF; font-size: clamp(3.1rem, 5vw, 5.2rem); }
.work-hero-copy > p:not(.eyebrow) { max-width: 660px; color: #C4D0D8; font-size: 1.02rem; }
.work-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin: 26px 0; }
.text-link-light { color: #F6F8FA; }
.confidentiality-note { display: grid; grid-template-columns: 25px 1fr; gap: 10px; max-width: 650px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .14); color: #9FB0BC; }
.confidentiality-note span { color: var(--gold-soft); }.confidentiality-note p { margin: 0; font-size: .83rem; }
.work-hero-art { position: relative; min-height: 440px; display: grid; place-items: center; transform: scale(.88); }
.work-hero-art .orbit { translate: none; left: auto; top: auto; }
.orbit-one { width: 460px; height: 460px; }
.orbit-two { width: 345px; height: 345px; border-style: dashed; animation: orbit-spin 30s linear infinite; }
.orbit-three { width: 230px; height: 230px; border-color: rgba(224, 192, 106, .34); }
.north-core { position: relative; z-index: 3; display: grid; place-items: center; width: 215px; height: 215px; border: 1px solid rgba(237, 198, 91, .48); border-radius: 50%; background: radial-gradient(circle at 50% 30%, rgba(23, 58, 85, .82), rgba(7, 24, 44, .96) 66%); box-shadow: 0 0 90px rgba(213, 169, 55, .16), inset 0 0 50px rgba(255, 255, 255, .03); text-align: center; }
.north-core img { width: 82px; margin-bottom: 4px; border-radius: 50%; }.north-core strong { font-family: Georgia, serif; font-size: 1.25rem; font-weight: 500; }.north-core span { color: #A4B7C2; font-size: .71rem; letter-spacing: .09em; text-transform: uppercase; }
.orbit-card { position: absolute; z-index: 4; display: grid; min-width: 190px; padding: 15px 17px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 15px; background: rgba(17, 40, 58, .86); box-shadow: 0 18px 48px rgba(0, 0, 0, .22); backdrop-filter: blur(12px); }
.orbit-card span { color: var(--gold-soft); font-size: .65rem; font-weight: 900; letter-spacing: .12em; }.orbit-card strong { margin: 3px 0 1px; font-size: .91rem; }.orbit-card small { color: #9FB2BF; font-size: .72rem; }
.orbit-card-one { top: 36px; left: 0; }.orbit-card-two { top: 85px; right: -16px; }.orbit-card-three { bottom: 54px; left: -12px; }.orbit-card-four { right: 2px; bottom: 24px; }
.work-proof-band { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255, 255, 255, .13); }
.work-proof-band > div { min-height: 88px; padding: 18px 23px; border-right: 1px solid rgba(255, 255, 255, .13); }.work-proof-band > div:last-child { border-right: 0; }
.work-proof-band strong { display: block; margin-bottom: 4px; color: #FFFFFF; font-size: 1rem; }.work-proof-band span { color: #91A5B3; font-size: .77rem; }
.work-intro-section { padding-bottom: 38px; }
.work-section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 58px; align-items: end; }.work-section-heading h2 { margin-bottom: 0; }.work-section-heading > p { color: var(--muted); font-size: 1rem; }
.case-study { padding: 58px 0 76px; }.case-study-light { background: var(--paper); }.case-study-dark { background: var(--navy); color: #FFFFFF; }
.case-study-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: 52px; align-items: start; }.case-study-grid-reverse { grid-template-columns: 1.06fr .94fr; }.case-study-grid-reverse .case-copy { order: 2; }.case-study-grid-reverse .case-visual-column { order: 1; }
.case-kicker { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 19px; }.case-kicker span { padding: 7px 10px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--muted); font-size: .67rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }.case-study-dark .case-kicker span { border-color: rgba(255, 255, 255, .18); color: #A9C2CA; }
.case-pseudonym { margin: 0 0 13px; color: var(--teal-bright); font-size: .75rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }.case-study-dark .case-pseudonym { color: var(--gold-soft); }
.case-copy h2 { margin-bottom: 18px; font-size: clamp(2.05rem, 3.5vw, 3.35rem); }.case-summary { max-width: 670px; color: var(--muted); font-size: .98rem; }.case-study-dark .case-summary { color: #BDC9D1; }
.case-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 27px 0 23px; padding: 21px 0; border-block: 1px solid var(--line); }.case-study-dark .case-details-grid { border-color: rgba(255, 255, 255, .15); }.case-details-grid h3 { margin-bottom: 7px; font-size: 1rem; }.case-details-grid p { margin: 0; color: var(--muted); font-size: .84rem; }.case-study-dark .case-details-grid p { color: #AEBDC7; }
.outcome-list { display: grid; margin: 0; padding: 0; list-style: none; }.outcome-list li { display: grid; grid-template-columns: 34px 1fr; gap: 11px; padding: 13px 0; border-bottom: 1px solid var(--line); }.case-study-dark .outcome-list li { border-color: rgba(255, 255, 255, .13); }.outcome-list li > span { color: var(--teal-bright); font-size: .65rem; font-weight: 900; letter-spacing: .09em; }.case-study-dark .outcome-list li > span { color: var(--gold-soft); }.outcome-list strong { font-size: .9rem; }.outcome-list p { margin: 2px 0 0; color: var(--muted); font-size: .8rem; }.case-study-dark .outcome-list p { color: #9FB0BC; }
.feedback-card { margin-top: 22px; padding: 19px 21px; border-left: 4px solid var(--gold); border-radius: 0 17px 17px 0; background: var(--surface); box-shadow: var(--shadow-soft); }.feedback-card-dark { background: rgba(255, 255, 255, .055); }.feedback-label { margin: 0 0 7px; color: var(--gold); font-size: .64rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }.feedback-card blockquote { margin: 0; font-family: Georgia, serif; font-size: 1rem; line-height: 1.45; }.feedback-card > span { display: block; margin-top: 8px; color: var(--muted); font-size: .72rem; }.feedback-card-dark > span { color: #9FB0BC; }
.case-visual-column { position: sticky; top: 115px; }.case-browser { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 24px; background: var(--navy); box-shadow: var(--shadow); }.case-browser-dark { border-color: rgba(255, 255, 255, .17); box-shadow: 0 30px 90px rgba(0, 0, 0, .35); }.browser-bar { display: flex; align-items: center; gap: 7px; min-height: 42px; padding: 0 16px; background: #F7F8F9; color: #62727E; font-size: .67rem; }.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: #B5C0C7; }.browser-bar i:first-child { background: #D4776E; }.browser-bar i:nth-child(2) { background: #D9AF5D; }.browser-bar i:nth-child(3) { background: #67A588; }.browser-bar span { margin-left: 8px; }.case-browser img { display: block; width: 100%; height: auto; }
.case-capabilities { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 17px; }.case-capabilities span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--muted); font-size: .67rem; font-weight: 700; }.case-capabilities-dark span { border-color: rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .05); color: #B7C7D1; }
.demo-trigger { margin-top: 16px; padding: 0; border: 0; background: transparent; color: var(--text); font: inherit; font-size: .82rem; font-weight: 850; cursor: pointer; }.demo-trigger:hover { text-decoration: underline; text-underline-offset: 5px; }.demo-trigger-light { color: #FFFFFF; }
.live-demo-section { position: relative; overflow: hidden; background: #102338; color: #FFFFFF; }.live-demo-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 15%, rgba(70, 122, 120, .28), transparent 34%), radial-gradient(circle at 88% 78%, rgba(212, 175, 55, .15), transparent 30%); }.live-demo-section .container { position: relative; z-index: 1; }.live-demo-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 52px; align-items: end; margin-bottom: 32px; }.live-demo-heading h2 { margin-bottom: 0; color: #FFFFFF; }.live-demo-heading > p { color: #B3C1CA; }.live-demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.live-demo-card { display: grid; grid-template-columns: 56px 1fr; gap: 17px; min-height: 220px; padding: 24px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 20px; background: rgba(255, 255, 255, .055); color: #FFFFFF; text-decoration: none; transition: transform .2s ease, border-color .2s ease, background .2s ease; }.live-demo-card:hover { transform: translateY(-5px); border-color: rgba(224, 192, 106, .5); background: rgba(255, 255, 255, .075); }.live-demo-icon { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid rgba(224, 192, 106, .42); border-radius: 15px; background: rgba(212, 175, 55, .12); color: var(--gold-soft); font-family: Georgia, serif; font-size: 1.2rem; }.live-label { color: #8FB7B1; font-size: .64rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }.live-demo-card h3 { margin: 7px 0 8px; color: #FFFFFF; font-family: Georgia, serif; font-size: 1.45rem; font-weight: 500; }.live-demo-card p { color: #B4C2CB; font-size: .84rem; }.live-demo-card strong { display: inline-block; margin-top: 9px; color: var(--gold-soft); font-size: .78rem; }
.feedback-section { background: var(--cream); }.feedback-heading { max-width: 790px; margin-bottom: 30px; }.feedback-heading > p:not(.eyebrow) { color: var(--muted); }.feedback-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.feedback-grid article { position: relative; min-height: 220px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }.feedback-mark { display: block; height: 43px; color: var(--gold); font-family: Georgia, serif; font-size: 4rem; line-height: 1; }.feedback-grid p { font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.45; }.feedback-grid strong { position: absolute; left: 25px; bottom: 22px; color: var(--teal-bright); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.work-cta-section { padding: 44px 0; background: #0B1826; }.work-cta-card { display: flex; justify-content: space-between; align-items: center; gap: 42px; padding: 46px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 26px; background: linear-gradient(125deg, rgba(70, 122, 120, .25), rgba(255, 255, 255, .035)); color: #FFFFFF; }.work-cta-card h2 { margin-bottom: 10px; color: #FFFFFF; }.work-cta-card p:not(.eyebrow) { max-width: 700px; margin: 0; color: #B6C4CD; }.work-cta-card .button { flex: 0 0 auto; }.work-footer { background: #08131E; color: #FFFFFF; }.work-footer .brand-copy small, .work-footer .footer-grid p, .work-footer .footer-links a, .work-footer .footer-bottom { color: #9EAFBA; }.work-footer .footer-bottom { border-color: rgba(255, 255, 255, .14); }

/* Representative workflow modals */
.workflow-modal { width: min(1040px, calc(100% - 30px)); max-height: calc(100vh - 30px); padding: 0; border: 0; border-radius: 26px; background: var(--paper); color: var(--text); box-shadow: 0 40px 120px rgba(0, 0, 0, .45); }.workflow-modal::backdrop { background: rgba(5, 13, 22, .78); backdrop-filter: blur(8px); }.modal-close { position: absolute; top: 16px; right: 17px; z-index: 4; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--text); font-size: 1.6rem; cursor: pointer; }.workflow-modal-grid { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 570px; }.workflow-modal-copy { padding: 58px 45px; border-right: 1px solid var(--line); }.workflow-modal-copy h2 { font-size: clamp(2.3rem, 4vw, 3.8rem); }.workflow-modal-copy > p:not(.eyebrow) { color: var(--muted); }.workflow-stage { display: grid; place-items: center; padding: 55px 42px; background: var(--surface-2); }.workflow-step-list { display: grid; gap: 8px; margin-top: 32px; }.workflow-step-list button { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 8px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; background: transparent; color: var(--muted); text-align: left; font-size: .85rem; cursor: pointer; }.workflow-step-list button span { color: var(--teal-bright); font-size: .67rem; font-weight: 900; }.workflow-step-list button.active { border-color: var(--teal-bright); background: color-mix(in srgb, var(--teal) 15%, var(--surface)); color: var(--text); }
.workflow-window { width: 100%; max-width: 530px; padding: 0 0 25px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow); }.workflow-window-head { display: flex; align-items: center; gap: 7px; height: 46px; padding: 0 15px; background: #10263A; color: #DBE5EA; }.workflow-window-head > span { width: 8px; height: 8px; border-radius: 50%; background: #6C8190; }.workflow-window-head strong { margin-left: 8px; font-size: .75rem; }.workflow-status { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 25px 27px 17px; }.workflow-status span { padding: 6px 9px; border-radius: 999px; background: var(--surface-2); color: var(--muted); font-size: .66rem; font-weight: 900; text-transform: uppercase; }.workflow-status strong { text-align: right; font-size: .94rem; }.workflow-progress { height: 6px; margin: 0 27px; overflow: hidden; border-radius: 999px; background: var(--surface-2); }.workflow-progress i { display: block; width: 25%; height: 100%; background: linear-gradient(90deg, var(--teal-bright), var(--gold)); transition: width .35s ease; }.workflow-content { min-height: 190px; margin: 22px 27px; padding: 25px; border: 1px solid var(--line); border-radius: 15px; background: var(--field); color: var(--muted); }.workflow-window > .button { margin-left: 27px; }
.packet-options { display: grid; gap: 11px; margin-top: 28px; }.packet-options label { display: flex; align-items: center; gap: 10px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 10px; font-size: .84rem; }.packet-options input { accent-color: var(--teal-bright); }.packet-preview { width: min(100%, 500px); padding: 26px; border-radius: 20px; background: var(--surface); box-shadow: var(--shadow); }.packet-cover { display: grid; min-height: 185px; padding: 30px; border-radius: 14px; background: linear-gradient(135deg, #10263A, var(--teal)); color: #FFFFFF; }.packet-cover span { color: var(--gold-soft); font-size: .67rem; font-weight: 900; letter-spacing: .15em; }.packet-cover strong { align-self: end; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }.packet-cover small { color: #BDD0D4; }.packet-pages { display: flex; flex-wrap: wrap; gap: 7px; min-height: 100px; padding: 20px 0; }.packet-pages span { padding: 8px 10px; border-radius: 8px; background: var(--surface-2); color: var(--muted); font-size: .69rem; }.packet-status { margin: 13px 0 0; color: var(--muted); font-size: .74rem; }
.diagnostic-console { width: min(100%, 500px); padding: 28px; border-radius: 20px; background: #10263A; color: #FFFFFF; box-shadow: 0 23px 65px rgba(13, 27, 42, .25); }.diagnostic-console > div { display: flex; justify-content: space-between; gap: 25px; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }.diagnostic-console span { color: #C1CED6; font-size: .85rem; }.diagnostic-console strong { color: #8597A3; font-size: .77rem; }.diagnostic-console strong.pass { color: #8BC5AC; }.diagnostic-console strong.warn { color: #E0BD79; }.diagnostic-console p { margin: 22px 0 0; color: #C6D2DA; font-size: .84rem; }

/* Privacy page */
.privacy-main { padding-top: 150px; min-height: 72vh; }.privacy-article { max-width: 780px; }.privacy-article h1 { font-size: clamp(3rem, 8vw, 5.4rem); }.privacy-article h2 { margin-top: 42px; font-size: 2rem; }.privacy-article p { color: var(--muted); }.privacy-article strong { color: var(--text); }

/* Dense layout: keep the story moving without oversized cards or empty space. */
body { line-height: 1.48; }
.nav-wrap { min-height: 64px; }
h1 { font-size: clamp(3.2rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3vw, 2.85rem); }
h3 { font-size: 1.12rem; }
.hero { min-height: 540px; padding: 88px 0 42px; }
.hero-grid { gap: 38px; }
.hero-visual { min-height: 390px; }
.compass-card { max-width: 510px; min-height: 390px; }
.hero-actions { margin: 20px 0; }
.trust-grid span { padding-block: 12px; }

.section { padding: 52px 0; }
.section-heading { margin-bottom: 24px; }
.section-heading > p:not(.eyebrow) { margin-bottom: 0; }

.service-grid { gap: 14px; }
.service-grid article {
  min-height: 0;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-content: start;
  padding: 19px 20px;
  border-radius: 18px;
}
.service-grid b { margin: 3px 0 0; }
.service-grid h3 { margin: 0; }
.service-grid p {
  grid-column: 1 / -1;
  margin: 10px 0 13px;
  font-size: .88rem;
  line-height: 1.42;
}
.service-grid a {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 11px;
}

.work-preview-section { padding-top: 48px; }
.work-preview-heading { gap: 45px; }
.work-preview-grid { gap: 14px; }
.work-preview-grid > a { min-height: 0; padding: 20px; border-radius: 18px; }
.work-preview-grid h3 { margin: 14px 0 8px; font-size: 1.35rem; }
.work-preview-grid p { margin: 0 0 18px; font-size: .86rem; line-height: 1.42; }

.split { gap: 48px; }
.difference-list > div { padding: 12px 0; }
.large-copy, .large-contact-copy { font-size: 1rem; }
.global-card { gap: 38px; padding: 32px; border-radius: 22px; }
.global-card ul { margin-top: 18px; }
.global-graphic { min-height: 255px; }
.globe { width: 205px; height: 205px; }
.partner-section { padding-top: 12px; }
.partner-card { gap: 40px; padding: 32px; border-radius: 22px; }
.partner-card > div:first-child > p:not(.eyebrow) { font-size: .96rem; }
.partner-points > div { padding: 11px 0; }
.partner-points .button { margin-top: 18px; }
.process-grid { margin-top: 26px; gap: 14px; }
.process-grid li { padding-top: 17px; }
.process-grid li > span { margin-bottom: 17px; }

.contact-section { padding-top: 48px; }
.contact-grid { gap: 42px; }
.contact-expectations { margin-top: 20px; }
.contact-expectations > div { padding: 10px 0; }
.contact-panel { padding: 24px; border-radius: 20px; }
.form-grid { gap: 12px 15px; }
.form-field { gap: 5px; }
.form-field input, .form-field select { min-height: 42px; }
.form-field textarea { min-height: 105px; }
.form-actions { margin-top: 18px; }
.site-footer { padding-top: 38px; }

.work-hero { padding-top: 92px; }
.work-hero-grid { gap: 42px; min-height: 440px; padding-bottom: 36px; }
.work-hero-copy h1 { font-size: clamp(2.8rem, 4.3vw, 4.35rem); }
.work-hero-copy > p:not(.eyebrow) { font-size: .96rem; }
.work-hero-actions { margin: 20px 0; }
.work-hero-art { min-height: 370px; transform: scale(.76); }
.work-proof-band > div { min-height: 70px; padding: 13px 18px; }
.work-intro-section { padding-bottom: 26px; }
.work-section-heading { gap: 42px; }
.case-study { padding: 42px 0 52px; }
.case-study-grid { gap: 38px; }
.case-copy h2 { font-size: clamp(1.85rem, 2.8vw, 2.75rem); }
.case-details-grid { margin: 20px 0 16px; padding: 16px 0; }
.outcome-list li { padding: 10px 0; }
.feedback-card { margin-top: 16px; padding: 15px 18px; }
.case-capabilities { margin-top: 12px; }
.demo-trigger { margin-top: 11px; }
.live-demo-heading { margin-bottom: 23px; }
.live-demo-card { min-height: 0; padding: 19px; }
.feedback-heading { margin-bottom: 22px; }
.feedback-grid article { min-height: 180px; padding: 20px; }
.feedback-mark { height: 34px; font-size: 3.2rem; }
.feedback-grid p { font-size: .96rem; }
.feedback-grid strong { left: 20px; bottom: 17px; }
.work-cta-section { padding: 30px 0; }
.work-cta-card { padding: 32px; }

@media (max-width: 1080px) {
  .site-nav { gap: 14px; }
  .hero-grid, .split, .global-card, .partner-card, .contact-grid, .engagements-heading, .work-preview-heading, .work-hero-grid, .case-study-grid, .case-study-grid-reverse, .work-section-heading, .live-demo-heading { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }.hero-visual { min-height: 500px; }.service-grid { grid-template-columns: 1fr 1fr; }.split, .partner-card { gap: 45px; }.global-card { gap: 35px; }.contact-intro { position: static; }.work-preview-heading { gap: 18px; }.work-hero-grid { gap: 25px; }.work-hero-art { min-height: 560px; }.work-proof-band { grid-template-columns: 1fr 1fr; }.work-proof-band > div:nth-child(2) { border-right: 0; }.work-proof-band > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .13); }.case-study-grid-reverse .case-copy, .case-study-grid-reverse .case-visual-column { order: initial; }.case-visual-column { position: static; }.live-demo-heading { gap: 10px; }
  .engagements-heading { gap: 10px; }.engagement-details { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .brand-lockup { width: 164px; height: 52px; }
  .nav-wrap > *, .hero-grid > *, .hero-copy, .section-heading, .trust-grid span { min-width: 0; }
  .nav-toggle { display: block; flex: 0 0 auto; }
  .site-nav { position: absolute; top: 70px; left: 15px; right: 15px; display: none; flex-direction: column; align-items: stretch; padding: 20px; border: 1px solid rgba(245, 240, 230, .15); border-radius: 20px; background: #0D2238; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }.site-nav .theme-switcher { align-self: flex-start; }.site-nav .button { margin-top: 6px; }.nav-active::after { display: none; }
  .hero { min-height: auto; padding: 88px 0 38px; }.hero-grid { gap: 24px; }h1 { max-width: 100%; font-size: clamp(2.45rem, 11vw, 3.4rem); overflow-wrap: break-word; }.hero-visual { display: none; }
  .hero-lede, .section-heading > p { max-width: 100%; }
  .hero-actions .button { max-width: 100%; min-height: 44px; padding: 10px 18px; white-space: normal; text-align: center; }
  .hero-actions { align-items: flex-start; flex-direction: column; }.trust-grid { grid-template-columns: 1fr 1fr; }.trust-grid span:nth-child(2) { border-right: 0; }.trust-grid span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-grid span { padding-inline: 8px; font-size: .62rem; letter-spacing: .05em; overflow-wrap: anywhere; }
  .section { padding: 40px 0; }.service-grid, .engagement-grid, .engagement-details, .work-preview-grid { grid-template-columns: 1fr; }.service-grid article { min-height: auto; }.service-grid b { margin: 3px 0 0; }.engagement-card, .timeline-panel, .faq-panel { min-height: 0; padding: 24px 20px; }.engagement-card-top { display: block; }.engagement-label { margin-bottom: 24px; }.engagement-price { display: block; margin: -14px 0 25px; }.engagement-price strong { text-align: left; }.engagement-card ul { grid-template-columns: 1fr; }.global-card, .partner-card, .work-cta-card { padding: 24px 20px; }.global-graphic { display: none; }.process-grid { grid-template-columns: 1fr 1fr; }.process-grid li > span { margin-bottom: 12px; }
  .contact-panel { padding: 27px 20px; }.form-grid { grid-template-columns: 1fr; }.form-field-full { grid-column: auto; }.form-actions { align-items: flex-start; flex-direction: column; }.form-actions .button { width: 100%; }
  .footer-grid, .footer-bottom { grid-template-columns: 1fr; }.footer-links { text-align: left; }.scroll-top { right: 15px; bottom: 15px; width: 44px; height: 44px; }
  .work-hero { padding-top: 82px; }.work-hero-grid > * { min-width: 0; }.work-hero-copy { max-width: 100%; }.work-hero-copy h1 { font-size: clamp(2.4rem, 10vw, 3.4rem); }.work-hero-art { display: none; }.work-proof-band { grid-template-columns: 1fr 1fr; }.work-proof-band > div { min-height: auto; border-right: 1px solid rgba(255, 255, 255, .13); border-bottom: 1px solid rgba(255, 255, 255, .13); }.case-study { padding: 38px 0; }.case-study-grid { gap: 24px; }.case-details-grid { grid-template-columns: 1fr; }.case-browser { border-radius: 17px; }.live-demo-grid, .feedback-grid { grid-template-columns: 1fr; }.live-demo-card { grid-template-columns: 1fr; min-height: auto; }.work-cta-card { align-items: flex-start; flex-direction: column; }.workflow-modal { width: calc(100% - 16px); max-height: calc(100vh - 16px); overflow-y: auto; border-radius: 20px; }.workflow-modal-grid { grid-template-columns: 1fr; }.workflow-modal-copy { padding: 36px 21px 22px; border-right: 0; border-bottom: 1px solid var(--line); }.workflow-stage { padding: 23px 16px; }
}

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

/* Growth landing pages */
.quickscan-card { border-color: color-mix(in srgb, var(--gold) 58%, var(--line)); background: linear-gradient(145deg, var(--surface), color-mix(in srgb, var(--gold) 8%, var(--surface))); }
.solution-hero { padding: 138px 0 72px; background: radial-gradient(circle at 86% 16%, rgba(213, 169, 55, .16), transparent 32%), var(--paper); }
.solution-hero-grid { display: grid; grid-template-columns: 1.08fr .72fr; gap: 70px; align-items: center; }
.solution-hero h1 { max-width: 820px; font-size: clamp(3.1rem, 5.4vw, 5.4rem); }
.solution-hero-copy > p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.15rem); }
.solution-panel { padding: 30px; border: 1px solid rgba(213, 169, 55, .4); border-radius: 24px; background: linear-gradient(145deg, #0B2035, #173A55); color: #FFFFFF; box-shadow: var(--shadow); }
.solution-panel .eyebrow { color: var(--gold-soft); }
.solution-panel h2 { font-size: clamp(1.8rem, 3vw, 2.55rem); }
.solution-panel p { color: #C9D4DA; }
.solution-panel ul { display: grid; gap: 11px; margin: 23px 0 27px; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; color: #DCE4E8; font-size: .86rem; font-weight: 700; }
.solution-panel li::before { content: "✓"; margin-right: 9px; color: var(--gold-soft); }
.solution-proof { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); background: var(--cream); }
.solution-proof div { padding: 23px; border-right: 1px solid var(--line); text-align: center; }
.solution-proof div:last-child { border-right: 0; }
.solution-proof strong { display: block; margin-bottom: 4px; color: var(--text); font-family: Georgia, serif; font-size: 1.15rem; font-weight: 500; }
.solution-proof span { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.problem-grid, .deliverable-grid, .industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-grid article, .deliverable-grid article, .industry-grid article { padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-soft); }
.problem-grid span, .deliverable-grid span, .industry-grid span { display: block; margin-bottom: 24px; color: var(--teal-bright); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.problem-grid p, .deliverable-grid p, .industry-grid p { margin-bottom: 0; color: var(--muted); }
.solution-split { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.solution-steps { margin: 0; padding: 0; list-style: none; counter-reset: solution-step; }
.solution-steps li { counter-increment: solution-step; display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.solution-steps li::before { content: "0" counter(solution-step); color: var(--teal-bright); font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.solution-steps strong { display: block; margin-bottom: 5px; font-size: 1rem; }
.solution-steps p { margin: 0; color: var(--muted); }
.solution-band { padding: 46px 0; background: #07182C; color: #FFFFFF; }
.solution-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 45px; }
.solution-band h2 { max-width: 780px; margin-bottom: 10px; color: #FFFFFF; }
.solution-band p { max-width: 760px; margin: 0; color: #B9C6CE; }
.solution-band .button { flex: 0 0 auto; }
.solution-faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; }
.solution-faq details { padding: 17px 0; border-bottom: 1px solid var(--line); }
.solution-faq summary { cursor: pointer; color: var(--text); font-weight: 850; }
.solution-faq details p { color: var(--muted); }
.solution-related { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.solution-related a { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text); text-decoration: none; font-size: .78rem; font-weight: 800; }
.solution-related a:hover { border-color: var(--gold); }

@media (max-width: 1080px) {
  .solution-hero-grid, .solution-split, .solution-faq { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 820px) {
  .solution-hero { padding: 102px 0 45px; }
  .solution-hero h1 { font-size: clamp(2.6rem, 11vw, 4rem); }
  .solution-proof, .problem-grid, .deliverable-grid, .industry-grid { grid-template-columns: 1fr; }
  .solution-proof div { border-right: 0; border-bottom: 1px solid var(--line); }
  .solution-proof div:last-child { border-bottom: 0; }
  .solution-band-inner { align-items: flex-start; flex-direction: column; }
  .solution-band .button { width: 100%; }
}

/* Insights and long-form technical articles */
.blog-hero { padding: 158px 0 78px; overflow: hidden; background: radial-gradient(circle at 78% 20%, rgba(213, 169, 55, .16), transparent 28%), linear-gradient(135deg, #07182C, #0D2942 70%, #15384E); color: #FFFFFF; }
.blog-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.blog-hero h1 { max-width: 850px; margin-bottom: 24px; color: #FFFFFF; font-size: clamp(3rem, 5.7vw, 5.6rem); line-height: .98; }
.blog-hero p:not(.eyebrow) { max-width: 720px; margin: 0; color: #C7D3DA; font-size: clamp(1rem, 1.4vw, 1.15rem); }
.blog-signal { position: relative; min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; padding: 35px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: rgba(6, 20, 36, .45); box-shadow: 0 30px 90px rgba(0,0,0,.25); }
.blog-signal::before, .blog-signal::after { content: ""; position: absolute; width: 120px; height: 120px; border: 1px solid rgba(213,169,55,.22); border-radius: 50%; }
.blog-signal::before { right: -26px; top: -34px; }.blog-signal::after { left: -38px; bottom: -42px; }
.blog-signal > span { color: var(--gold-soft); font-size: .68rem; font-weight: 900; letter-spacing: .18em; }
.blog-signal > span:last-child { align-self: flex-end; }
.signal-line { position: relative; z-index: 1; display: grid; grid-template-columns: 15px 1fr 15px 1fr 15px; align-items: center; }
.signal-line i { width: 15px; height: 15px; border: 3px solid var(--gold); border-radius: 50%; background: #07182C; box-shadow: 0 0 0 8px rgba(213,169,55,.08); }
.signal-line b { height: 2px; background: linear-gradient(90deg, var(--gold), rgba(213,169,55,.25), var(--gold)); }
.blog-topics { border-bottom: 1px solid var(--line); background: var(--cream); }
.blog-topics .container { display: grid; grid-template-columns: repeat(5, 1fr); }
.blog-topics span { padding: 17px 12px; border-right: 1px solid var(--line); color: var(--muted); text-align: center; font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.blog-topics span:last-child { border-right: 0; }
.blog-listing { background: var(--paper); }
.blog-section-heading { display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: end; margin-bottom: 38px; }
.blog-section-heading h2 { max-width: 720px; margin-bottom: 0; }
.blog-section-heading > p { margin: 0; color: var(--muted); }
.featured-post { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 540px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); }
.featured-post-visual { min-height: 500px; display: grid; place-items: center; padding: 45px; overflow: hidden; background: radial-gradient(circle at 50% 50%, #173A55, #07182C 69%); }
.featured-post-copy { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(32px, 5vw, 60px); }
.post-meta { display: flex; flex-wrap: wrap; gap: 9px 18px; color: var(--muted); font-size: .68rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.post-meta span:first-child { color: var(--teal-bright); }
.featured-post h2 { margin: 28px 0 20px; font-size: clamp(2.1rem, 3.7vw, 3.75rem); line-height: 1.02; }
.featured-post h2 a { color: var(--text); text-decoration: none; }
.featured-post h2 a:hover { color: var(--teal-bright); }
.featured-post-copy > p { color: var(--muted); font-size: 1.02rem; }
.featured-post-copy ul { display: grid; gap: 9px; margin: 22px 0 32px; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; color: var(--muted); font-size: .82rem; font-weight: 750; }
.featured-post-copy li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 10px; border-radius: 50%; background: var(--gold); }
.system-map { position: relative; width: min(100%, 430px); aspect-ratio: 1; }
.system-map::before { content: ""; position: absolute; inset: 11%; border: 1px dashed rgba(255,255,255,.16); border-radius: 50%; }
.map-node { position: absolute; z-index: 2; min-width: 92px; padding: 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; background: #102C45; color: #FFFFFF; text-align: center; font-size: .72rem; font-weight: 850; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.map-node small { color: #AFC1CC; font-weight: 600; }.map-salesforce { left: 50%; top: 50%; min-width: 130px; padding: 21px; translate: -50% -50%; border-color: rgba(213,169,55,.55); background: #193A50; }.map-flow { left: 0; top: 14%; }.map-apex { right: 0; top: 14%; }.map-event { left: 0; bottom: 9%; }.map-erp { right: 0; bottom: 9%; }
.map-path { position: absolute; z-index: 1; width: 36%; height: 1px; background: linear-gradient(90deg, rgba(213,169,55,.25), var(--gold)); transform-origin: left center; }.path-one { left: 21%; top: 29%; rotate: 34deg; }.path-two { left: 50%; top: 50%; rotate: -34deg; }.path-three { left: 21%; bottom: 25%; rotate: -28deg; }.path-four { left: 51%; top: 52%; rotate: 28deg; }
.map-alert { position: absolute; z-index: 3; right: 10%; top: 44%; display: grid; place-items: center; width: 36px; height: 36px; border: 3px solid #07182C; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: 1rem; }
.blog-principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.blog-principles > div { padding: 28px; border-right: 1px solid var(--line); }.blog-principles > div:last-child { border-right: 0; }
.blog-principles strong { color: var(--teal-bright); font-size: .67rem; letter-spacing: .12em; }.blog-principles h3 { margin: 18px 0 7px; }.blog-principles p { margin: 0; color: var(--muted); font-size: .85rem; }
.blog-cta-section { background: var(--paper); padding-top: 0; }
.blog-cta { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; padding: 48px; border-radius: 28px; background: linear-gradient(135deg, #07182C, #12334C); color: #FFFFFF; }
.blog-cta h2 { margin: 0; color: #FFFFFF; }.blog-cta > div:last-child p { color: #BDCAD1; }.blog-cta .button { margin-top: 8px; }

.article-hero { padding: 142px 0 78px; background: radial-gradient(circle at 83% 17%, rgba(213,169,55,.15), transparent 27%), linear-gradient(135deg, #07182C, #0E2B44); color: #FFFFFF; }
.article-hero-inner { max-width: 1040px; }
.article-back { display: inline-flex; gap: 8px; margin-bottom: 42px; color: #C6D1D8; text-decoration: none; font-size: .78rem; font-weight: 800; }.article-back:hover { color: var(--gold-soft); }
.post-meta-light { color: #AFC0CA; }.post-meta-light span:first-child { color: var(--gold-soft); }
.article-hero h1 { max-width: 990px; margin: 25px 0 24px; color: #FFFFFF; font-size: clamp(3.1rem, 6.5vw, 6.4rem); line-height: .96; }
.article-deck { max-width: 850px; color: #C5D0D7; font-size: clamp(1.08rem, 1.8vw, 1.3rem); }
.article-byline { display: flex; align-items: center; gap: 13px; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }.article-byline img { border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: rgba(255,255,255,.05); }.article-byline strong, .article-byline span { display: block; }.article-byline strong { font-size: .84rem; }.article-byline span { margin-top: 3px; color: #AFC0CA; font-size: .72rem; }
.article-layout { display: grid; grid-template-columns: 210px minmax(0, 800px); gap: clamp(50px, 8vw, 110px); justify-content: center; padding-top: 72px; padding-bottom: 95px; }
.article-toc { position: sticky; top: 112px; align-self: start; display: grid; gap: 11px; padding-left: 18px; border-left: 2px solid var(--line); }
.article-toc strong { margin-bottom: 7px; color: var(--text); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }.article-toc a { color: var(--muted); text-decoration: none; font-size: .76rem; font-weight: 700; }.article-toc a:hover { color: var(--teal-bright); }
.article-content { min-width: 0; }.article-content > section { scroll-margin-top: 115px; margin-top: 75px; }.article-content > section:first-of-type { margin-top: 58px; }
.article-content p { color: var(--muted); font-size: 1.02rem; line-height: 1.78; }.article-content h2 { margin: 11px 0 24px; font-size: clamp(2.35rem, 4.8vw, 4rem); line-height: 1.03; }.article-content h3 { margin: 42px 0 13px; font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
.article-content code { padding: .12em .34em; border: 1px solid var(--line); border-radius: 5px; background: var(--surface-2); color: var(--text); font-size: .88em; }
.article-lead { color: var(--text) !important; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.3rem, 2.5vw, 1.68rem) !important; line-height: 1.52 !important; }
.article-section-number { margin-bottom: 0 !important; color: var(--teal-bright) !important; font-size: .68rem !important; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.confidentiality-banner { display: grid; grid-template-columns: 30px 1fr; gap: 13px; padding: 20px 22px; border: 1px solid color-mix(in srgb, var(--gold) 48%, var(--line)); border-radius: 15px; background: color-mix(in srgb, var(--gold) 7%, var(--surface)); }.confidentiality-banner > span { color: var(--teal-bright); font-size: 1.2rem; }.confidentiality-banner p { margin: 0; font-size: .79rem; line-height: 1.55; }.confidentiality-banner strong { color: var(--text); }
.article-facts { display: grid; grid-template-columns: 1fr 1fr; margin: 34px 0; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }.article-facts div { padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.article-facts div:nth-child(2n) { border-right: 0; }.article-facts div:nth-last-child(-n+2) { border-bottom: 0; }.article-facts span, .article-facts strong { display: block; }.article-facts span { margin-bottom: 8px; color: var(--teal-bright); font-size: .64rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }.article-facts strong { font-size: .9rem; }
.article-list { display: grid; gap: 11px; margin: 24px 0; padding: 0; list-style: none; }.article-list li { padding: 13px 16px 13px 39px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); color: var(--muted); font-size: .91rem; }.article-list li::before { content: ""; float: left; width: 7px; height: 7px; margin: 8px 0 0 -21px; border-radius: 50%; background: var(--gold); }.article-list strong { color: var(--text); }
.transaction-figure { margin: 38px 0; padding: 25px; overflow: hidden; border-radius: 18px; background: #07182C; color: #FFFFFF; }.figure-heading { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 25px; padding-bottom: 17px; border-bottom: 1px solid rgba(255,255,255,.13); }.figure-heading span { color: var(--gold-soft); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }.figure-heading strong { font-size: .82rem; }.timeline-row { display: grid; grid-template-columns: 84px 1fr auto 1fr auto 1fr auto; align-items: center; gap: 8px; margin: 12px 0; }.timeline-label { color: #AFC0CA; font-size: .66rem; font-weight: 850; }.timeline-row i { height: 1px; background: rgba(255,255,255,.25); }.timeline-row b { padding: 7px 8px; border-radius: 7px; background: #16344C; color: #FFFFFF; font-size: .61rem; white-space: nowrap; }.timeline-row em { color: #B9C7CF; font-size: .6rem; font-style: normal; }.timeline-row .timeline-warn { background: #745717; color: #FFE6A2; }.timeline-row .timeline-danger { background: #C99031; }.transaction-figure > p { margin: 24px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.13); color: #BFCBD2; font-size: .75rem; line-height: 1.55; }
.article-callout { margin: 40px 0; padding: 32px; border-left: 5px solid var(--gold); border-radius: 0 18px 18px 0; background: var(--surface); box-shadow: var(--shadow-soft); }.article-callout h3 { margin: 0 0 10px; }.article-callout p:last-child { margin-bottom: 0; }
.root-cause-list { display: grid; gap: 12px; margin: 30px 0; padding: 0; list-style: none; }.root-cause-list li { display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }.root-cause-list li > span { color: var(--teal-bright); font-size: .67rem; font-weight: 900; letter-spacing: .1em; }.root-cause-list strong { display: block; margin-bottom: 4px; }.root-cause-list p { margin: 0; font-size: .88rem; line-height: 1.55; }
.code-sample { margin: 28px 0; padding: 24px; overflow-x: auto; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: #061426; color: #E7EDF0; box-shadow: 0 18px 40px rgba(0,0,0,.16); }.code-sample code { padding: 0; border: 0; background: transparent; color: inherit; font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: .78rem; line-height: 1.7; }.code-sample span { color: #86A5B5; }
.verification-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin: 30px 0; }.verification-grid > div { padding: 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }.verification-grid strong { display: block; color: var(--teal-bright); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }.verification-grid p { margin: 8px 0 0; font-size: .84rem; line-height: 1.55; }
.practice-block { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 28px 0; border-top: 1px solid var(--line); }.practice-block > span { padding-top: 6px; color: var(--teal-bright); font-size: .67rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }.practice-block h3 { margin: 0 0 8px; }.practice-block p { margin: 0; }
.article-content blockquote { margin: 46px 0; padding: 38px; border: 0; border-radius: 19px; background: linear-gradient(135deg, #0B2136, #153A52); }.article-content blockquote p { margin: 0; color: #FFFFFF; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.35; }
.reference-list { display: grid; gap: 9px; padding-left: 20px; }.reference-list a { color: var(--text); font-weight: 750; text-underline-offset: 3px; }.reference-list a:hover { color: var(--teal-bright); }
.article-end-card { margin-top: 70px; padding: 42px; border-radius: 22px; background: linear-gradient(135deg, #07182C, #12354E); color: #FFFFFF; }.article-end-card h2 { margin: 0 0 14px; color: #FFFFFF; }.article-end-card > p:not(.eyebrow) { color: #C1CDD4; }.article-end-card .button { margin-top: 10px; }
.next-read { padding: 45px 0; border-block: 1px solid var(--line); background: var(--cream); }.next-read .container { display: grid; grid-template-columns: 130px 1fr auto; gap: 40px; align-items: center; }.next-read .container > span, .next-read p { color: var(--teal-bright); font-size: .66rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }.next-read p { margin: 0 0 6px; }.next-read h2 { max-width: 730px; margin: 0; font-size: clamp(1.55rem, 3vw, 2.4rem); }

@media (max-width: 1080px) {
  .blog-hero-grid, .blog-section-heading, .blog-cta { grid-template-columns: 1fr; gap: 35px; }
  .blog-signal { min-height: 220px; }
  .article-layout { grid-template-columns: 170px minmax(0, 760px); gap: 45px; }
}

@media (max-width: 820px) {
  .blog-hero { padding: 116px 0 52px; }.blog-hero h1 { font-size: clamp(2.75rem, 12vw, 4.5rem); }.blog-signal { display: none; }
  .blog-topics .container { grid-template-columns: 1fr 1fr; }.blog-topics span { border-bottom: 1px solid var(--line); }.blog-topics span:nth-child(2n) { border-right: 0; }.blog-topics span:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .featured-post { grid-template-columns: 1fr; }.featured-post-visual { min-height: 380px; padding: 27px; }.featured-post-copy { padding: 30px 23px; }.featured-post h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .blog-principles { grid-template-columns: 1fr; }.blog-principles > div { border-right: 0; border-bottom: 1px solid var(--line); }.blog-principles > div:last-child { border-bottom: 0; }.blog-cta { padding: 32px 24px; }
  .article-hero { padding: 112px 0 52px; }.article-hero h1 { font-size: clamp(2.75rem, 12vw, 4.5rem); }.article-back { margin-bottom: 28px; }
  .article-layout { display: block; padding-top: 40px; padding-bottom: 65px; }.article-toc { display: none; }.article-content > section { margin-top: 58px; }.article-content h2 { font-size: clamp(2.05rem, 10vw, 3.25rem); }
  .article-facts, .verification-grid { grid-template-columns: 1fr; }.article-facts div { border-right: 0; }.article-facts div:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .transaction-figure { margin-inline: -5px; padding: 19px 15px; }.figure-heading { align-items: flex-start; flex-direction: column; }.timeline-row { grid-template-columns: 70px 1fr auto; }.timeline-row i:nth-of-type(n+2), .timeline-row b:nth-of-type(n+2), .timeline-row em { display: none; }
  .practice-block { grid-template-columns: 1fr; gap: 8px; }.article-content blockquote { padding: 28px 23px; }.article-end-card { padding: 30px 23px; }
  .next-read .container { grid-template-columns: 1fr; gap: 13px; }.next-read .text-link { margin-top: 8px; }
}
