:root {
  --ink: #07111f;
  --ink-soft: #0b1829;
  --panel: #0e1e31;
  --panel-light: #12263b;
  --line: rgba(194, 218, 236, 0.14);
  --line-strong: rgba(194, 218, 236, 0.24);
  --text: #f5f9fc;
  --muted: #9eb0c2;
  --cyan: #4de3ff;
  --cyan-strong: #19c9e8;
  --mint: #79efc3;
  --paper: #f4f8fa;
  --paper-text: #0a1726;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--text); background: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 16px; color: var(--ink); background: var(--cyan); border-radius: 8px; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--cyan); font-size: .75rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 24px; height: 1px; background: currentColor; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, backdrop-filter .25s; }
.site-header.scrolled { background: rgba(7, 17, 31, .88); border-color: var(--line); backdrop-filter: blur(18px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; }
.brand { display: inline-flex; width: 188px; height: 52px; flex: 0 0 auto; align-items: center; overflow: hidden; background: url('/assets/brand/cyberx-logo-white.png') no-repeat left center / contain; }
.brand-mark, .brand-suffix { display: none; }
.brand-name { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.main-nav { display: flex; align-items: center; gap: 34px; color: #c2cfda; font-size: .88rem; font-weight: 600; }
.main-nav > a:not(.button) { position: relative; padding-block: 8px; transition: color .2s; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: 2px; left: 0; height: 1px; background: var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.main-nav > a:not(.button):hover { color: white; }
.main-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 23px; height: 1.5px; margin: 5px auto; background: white; transition: transform .2s, opacity .2s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 22px; border: 1px solid var(--cyan); border-radius: var(--radius-sm); color: var(--ink); background: var(--cyan); box-shadow: 0 10px 35px rgba(77, 227, 255, .13); font-size: .88rem; font-weight: 760; transition: background .2s, border-color .2s, transform .2s, box-shadow .2s; }
.button:hover { background: #87edff; border-color: #87edff; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(77, 227, 255, .22); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: .79rem; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 5px; border-bottom: 1px solid var(--line-strong); color: white; font-size: .88rem; font-weight: 720; transition: color .2s, border-color .2s; }
.text-link:hover { color: var(--cyan); border-color: var(--cyan); }

.hero { position: relative; display: flex; align-items: center; min-height: 790px; padding: 142px 0 84px; overflow: hidden; background: radial-gradient(circle at 82% 25%, rgba(17, 120, 143, .18), transparent 36%), radial-gradient(circle at 25% 85%, rgba(31, 70, 104, .17), transparent 32%), var(--ink); }
.hero::before { content: ""; position: absolute; top: -250px; right: -180px; width: 600px; height: 600px; border: 1px solid rgba(77,227,255,.09); border-radius: 50%; box-shadow: 0 0 0 90px rgba(77,227,255,.025), 0 0 0 180px rgba(77,227,255,.015); }
.hero-grid { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, transparent, black 22%, transparent 93%); }
.hero-layout { position: relative; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr); gap: 74px; align-items: center; }
.hero-copy h1 { max-width: 720px; margin-bottom: 28px; font-size: clamp(3.5rem, 6vw, 6.15rem); font-weight: 690; letter-spacing: -.065em; }
.hero-copy h1 em { color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 655px; margin-bottom: 34px; color: #b7c7d5; font-size: clamp(1.05rem, 1.5vw, 1.24rem); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 22px; margin: 42px 0 0; padding: 25px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .77rem; list-style: none; }
.hero-assurances li { display: flex; align-items: center; gap: 7px; }
.hero-assurances svg { width: 16px; height: 16px; fill: none; stroke: var(--mint); stroke-width: 2; }

.hero-console { position: relative; padding: 1px; border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(77,227,255,.4), rgba(255,255,255,.04) 42%, rgba(255,255,255,.12)); box-shadow: var(--shadow); transform: perspective(1300px) rotateY(-3deg) rotateX(1deg); }
.hero-console::before { content: ""; position: absolute; inset: 14% -9% -12% 10%; z-index: -1; background: rgba(13, 162, 185, .17); filter: blur(70px); }
.console-topbar { display: flex; align-items: center; justify-content: space-between; padding: 17px 21px; border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0; background: #102438; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .71rem; letter-spacing: .05em; text-transform: uppercase; }
.console-status { display: flex; align-items: center; gap: 9px; }
.console-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(121, 239, 195, .1); }
.console-body { padding: 20px; border-radius: 0 0 calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px); background: rgba(8, 22, 37, .96); }
.risk-card { display: flex; align-items: center; justify-content: space-between; min-height: 116px; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(110deg, rgba(255,255,255,.035), transparent); }
.console-label { display: block; margin-bottom: 5px; color: var(--muted); font-size: .72rem; }
.risk-card strong { font-size: 1.35rem; font-weight: 680; }
.risk-ring { display: grid; width: 66px; height: 66px; place-items: center; border: 5px solid rgba(121,239,195,.15); border-top-color: var(--mint); border-right-color: var(--mint); border-radius: 50%; transform: rotate(34deg); }
.risk-ring span { color: var(--mint); font-size: 1.2rem; transform: rotate(-34deg); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-block: 10px; }
.metric { position: relative; min-height: 91px; padding: 15px 14px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.018); }
.metric span { display: block; color: var(--muted); font-size: .66rem; }
.metric strong { display: block; margin-top: 8px; font-size: .78rem; font-weight: 650; }
.bar { position: absolute; right: 12px; bottom: 12px; left: 12px; height: 2px; background: rgba(255,255,255,.08); }
.bar::after { content: ""; display: block; width: var(--value); height: 100%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.bar-92 { --value: 92%; }.bar-86 { --value: 86%; }.bar-95 { --value: 95%; }
.activity-card { padding: 19px 20px 11px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.018); }
.activity-head { display: flex; justify-content: space-between; color: var(--muted); font-size: .66rem; }
.activity-head span:last-child { color: var(--mint); }
.activity-chart { width: 100%; height: 112px; margin-top: 5px; overflow: visible; }
.chart-fill { fill: url(#chartFill); }.chart-line { fill: none; stroke: var(--cyan); stroke-width: 2; vector-effect: non-scaling-stroke; }

.trust-strip { border-block: 1px solid rgba(14,44,56,.08); background: transparent; }
.trust-inner { display: grid; grid-template-columns: 180px 1fr; align-items: center; min-height: 106px; }
.trust-inner p { margin: 0; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.trust-inner ul { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 0; padding: 0; color: #c4d1dc; font-size: .86rem; font-weight: 720; letter-spacing: -.02em; list-style: none; }

.section { padding: 126px 0; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 420px); gap: 80px; align-items: end; margin-bottom: 62px; }
.section-heading h2, .model-copy h2, .cta-panel h2 { margin-bottom: 0; font-size: clamp(2.5rem, 4.2vw, 4.4rem); font-weight: 650; letter-spacing: -.055em; }
.section-heading > p { margin: 0 0 8px; color: var(--muted); line-height: 1.75; }
.solutions { color: var(--paper-text); background: var(--paper); }
.solutions .eyebrow { color: #087f96; }
.solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(7,17,31,.13); border-radius: var(--radius); overflow: hidden; }
.solution-card { position: relative; min-height: 420px; padding: 34px 29px 30px; border-right: 1px solid rgba(7,17,31,.13); background: rgba(255,255,255,.4); transition: color .3s, background .3s, transform .3s; }
.solution-card:last-child { border-right: 0; }
.solution-card::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: var(--cyan-strong); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.solution-card:hover { z-index: 2; color: white; background: #0b2032; transform: translateY(-6px); box-shadow: 0 20px 45px rgba(3,20,32,.16); }
.solution-card:hover::after { transform: scaleX(1); }
.card-number { color: #758694; font-size: .66rem; font-weight: 750; letter-spacing: .1em; }
.card-icon { width: 38px; height: 38px; margin: 68px 0 30px; fill: none; stroke: #0b91aa; stroke-width: 1.4; }
.solution-card:hover .card-icon { stroke: var(--cyan); }
.solution-card h3 { margin-bottom: 18px; font-size: 1.43rem; font-weight: 680; }
.solution-card p { margin-bottom: 26px; color: #5e6e7a; font-size: .91rem; line-height: 1.72; }
.solution-card:hover p { color: #aebfce; }
.card-link { position: absolute; bottom: 31px; color: #087f96; font-size: .77rem; font-weight: 750; }
.solution-card:hover .card-link { color: var(--cyan); }

.operating-model { background: #0a1726; }
.model-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 120px; }
.model-copy { position: sticky; top: 140px; align-self: start; }
.model-copy h2 { margin-bottom: 28px; }
.model-copy > p:not(.eyebrow) { max-width: 480px; margin-bottom: 32px; color: var(--muted); line-height: 1.75; }
.model-steps { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; counter-reset: steps; }
.model-steps li { display: grid; grid-template-columns: 72px 1fr; gap: 28px; padding: 37px 0; border-bottom: 1px solid var(--line); }
.model-steps li > span { color: var(--cyan); font-size: .68rem; font-weight: 780; letter-spacing: .1em; }
.model-steps h3 { margin-bottom: 10px; font-size: 1.36rem; font-weight: 650; }
.model-steps p { margin: 0; color: var(--muted); }

.work { background: var(--ink); }
.work-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 24px; }
.work-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-soft); }
.work-primary { grid-row: span 2; }
.work-visual { position: relative; display: grid; min-height: 230px; place-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.work-primary .work-visual { min-height: 440px; }
.visual-cybercont { background: radial-gradient(circle at 30% 20%, rgba(77,227,255,.2), transparent 35%), linear-gradient(145deg, #0a2538, #07121e); }
.visual-cybercont > span { position: absolute; top: 42px; left: 42px; font-size: 1.1rem; font-weight: 800; letter-spacing: -.04em; }.visual-cybercont > span span { color: var(--cyan); }
.mock-window { position: absolute; right: -40px; bottom: -35px; width: 82%; height: 78%; padding: 22px; border: 1px solid rgba(255,255,255,.17); border-radius: 18px 0 0; background: rgba(13, 32, 48, .88); box-shadow: -25px -25px 70px rgba(0,0,0,.24); transform: rotate(-4deg); }
.mock-window i { display: inline-block; width: 7px; height: 7px; margin-right: 4px; border-radius: 50%; background: var(--line-strong); }
.mock-window b { display: block; height: 36px; margin-top: 20px; border-radius: 7px; background: linear-gradient(90deg, rgba(77,227,255,.15), rgba(255,255,255,.03)); }
.mock-window b:nth-of-type(2) { width: 72%; }.mock-window b:nth-of-type(3) { width: 87%; }
.visual-nexum { background: linear-gradient(135deg, #15273d, #102d33); }
.visual-nexum > span, .visual-noc > span { font-size: 1rem; font-weight: 800; letter-spacing: .15em; }
.people { position: absolute; right: 40px; bottom: 30px; display: flex; }
.people i { width: 44px; height: 44px; margin-left: -10px; border: 3px solid #14303b; border-radius: 50%; background: linear-gradient(145deg, #6ae4d4, #2b7080); }
.visual-noc { background: radial-gradient(circle at 65% 48%, rgba(77,227,255,.2), transparent 28%), #091c2c; }
.radar { position: absolute; right: 35px; width: 120px; height: 120px; border: 1px solid rgba(77,227,255,.2); border-radius: 50%; box-shadow: 0 0 0 22px rgba(77,227,255,.035), 0 0 0 44px rgba(77,227,255,.02); }
.radar::before, .radar::after { content: ""; position: absolute; background: rgba(77,227,255,.15); }.radar::before { top: 50%; right: 0; left: 0; height: 1px; }.radar::after { top: 0; bottom: 0; left: 50%; width: 1px; }.radar i { position: absolute; top: 28px; left: 72px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 15px var(--cyan); }
.work-content { padding: 26px 30px 30px; }
.tag { color: var(--cyan); font-size: .65rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.work-content h3 { margin: 9px 0 10px; font-size: 1.55rem; font-weight: 660; }
.work-content p { margin: 0; color: var(--muted); font-size: .9rem; }
.section-action { display: flex; justify-content: flex-end; margin-top: 34px; }

.final-cta { padding-top: 40px; }
.cta-panel { position: relative; padding: 86px 8%; overflow: hidden; border: 1px solid rgba(77,227,255,.25); border-radius: var(--radius-lg); background: linear-gradient(120deg, #0d3a4b, #0a2033 66%, #0d2939); box-shadow: var(--shadow); }
.cta-glow { position: absolute; top: -180px; right: -120px; width: 480px; height: 480px; border: 1px solid rgba(77,227,255,.15); border-radius: 50%; box-shadow: 0 0 0 55px rgba(77,227,255,.035), 0 0 0 110px rgba(77,227,255,.02); }
.cta-panel > *:not(.cta-glow) { position: relative; }
.cta-panel h2 { max-width: 780px; margin-bottom: 26px; }
.cta-panel > p:not(.eyebrow) { max-width: 640px; color: #b9cad5; }
.cta-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button-light { color: #07111f; background: white; border-color: white; box-shadow: none; }
.button-light:hover { color: #07111f; }
.cta-actions > a:last-child { color: #d7e3ea; font-size: .87rem; font-weight: 650; }

.site-footer { padding-top: 90px; background: #050d17; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr .8fr 1fr; gap: 70px; padding-bottom: 70px; }
.footer-brand p { max-width: 290px; margin-top: 24px; color: var(--muted); font-size: .86rem; }
.footer-grid h2 { margin-bottom: 22px; color: #718497; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a { display: block; width: max-content; margin-bottom: 10px; color: #c3d0da; font-size: .84rem; transition: color .2s; }
.footer-grid a:hover { color: var(--cyan) !important; }
.footer-grid address { color: var(--muted); font-size: .8rem; font-style: normal; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 84px; border-top: 1px solid var(--line); color: #718497; font-size: .73rem; }
.footer-bottom p { margin: 0; }.footer-bottom div { display: flex; gap: 24px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero-layout { grid-template-columns: 1fr 430px; gap: 35px; }
  .hero-copy h1 { font-size: clamp(3.3rem, 6.2vw, 5.2rem); }
  .main-nav { gap: 22px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-card:nth-child(2) { border-right: 0; }.solution-card:nth-child(-n+2) { border-bottom: 1px solid rgba(7,17,31,.13); }
  .model-layout { gap: 70px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }.footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .main-nav { position: absolute; top: 82px; right: 0; left: 0; display: flex; height: calc(100dvh - 82px); flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 24px; padding: 64px max(32px, calc((100vw - var(--container)) / 2)); overflow-y: auto; background: #050d17; visibility: hidden; opacity: 0; transform: translateY(-10px); transition: opacity .2s, transform .2s, visibility .2s; }
  .main-nav.open { visibility: visible; opacity: 1; transform: none; }
  .main-nav > a:not(.button) { font-size: 1.5rem; }
  .hero { min-height: 0; padding-top: 132px; }
  .hero-layout { grid-template-columns: 1fr; gap: 60px; }
  .hero-console { width: min(100%, 590px); margin-inline: auto; transform: none; }
  .trust-inner { grid-template-columns: 1fr; gap: 18px; padding-block: 26px; }.trust-inner ul { flex-wrap: wrap; justify-content: flex-start; }
  .section { padding: 92px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 45px; }
  .model-layout { grid-template-columns: 1fr; }.model-copy { position: static; }
  .work-grid { grid-template-columns: 1fr 1fr; }.work-primary { grid-column: span 2; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 580px) {
  .brand { width: 154px; height: 44px; }
  .header-inner { min-height: 72px; }
  .main-nav { top: 72px; height: calc(100dvh - 72px); padding-top: 48px; }
  .hero { padding: 112px 0 60px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-assurances { display: grid; gap: 12px; }
  .hero-console { border-radius: 20px; }
  .console-body { padding: 12px; }.console-topbar { padding: 14px; }.risk-card { padding: 18px; }.metric { padding-inline: 10px; }.metric strong { font-size: .68rem; }
  .trust-inner ul { gap: 12px 22px; font-size: .78rem; }
  .section-heading h2, .model-copy h2, .cta-panel h2 { font-size: clamp(2.3rem, 12vw, 3.3rem); }
  .solutions-grid { grid-template-columns: 1fr; }.solution-card { min-height: 355px; border-right: 0; border-bottom: 1px solid rgba(7,17,31,.13); }.solution-card:last-child { border-bottom: 0; }.card-icon { margin-top: 44px; }
  .model-steps li { grid-template-columns: 42px 1fr; gap: 14px; }
  .work-grid { grid-template-columns: 1fr; }.work-primary { grid-column: auto; }.work-primary .work-visual { min-height: 320px; }
  .cta-panel { padding: 62px 26px; }.cta-actions { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }.footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 18px; padding-block: 24px; }.footer-bottom div { flex-wrap: wrap; gap: 12px 20px; }
}

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

/* Internal pages */
.inner-header { background: rgba(7,17,31,.94); border-color: var(--line); backdrop-filter: blur(18px); }
.page-hero { position: relative; padding: 190px 0 105px; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 82% 35%, rgba(77,227,255,.12), transparent 30%), var(--ink); }
.page-hero::after { content: ""; position: absolute; top: 90px; right: 8%; width: 280px; height: 280px; border: 1px solid rgba(77,227,255,.1); border-radius: 50%; box-shadow: 0 0 0 55px rgba(77,227,255,.025), 0 0 0 110px rgba(77,227,255,.015); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumbs { display: flex; gap: 9px; margin-bottom: 32px; color: #718497; font-size: .72rem; }
.breadcrumbs a:hover { color: var(--cyan); }
.page-hero h1 { max-width: 860px; margin-bottom: 28px; font-size: clamp(3.1rem, 6vw, 6rem); font-weight: 670; letter-spacing: -.065em; }
.page-hero h1 em { color: var(--cyan); font-style: normal; }
.page-hero .lead { max-width: 720px; margin-bottom: 34px; color: #b7c7d5; font-size: 1.17rem; line-height: 1.75; }
.content-section { padding: 105px 0; color: var(--paper-text); background: var(--paper); }
.content-section.dark { color: var(--text); background: #0a1726; }
.content-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; }
.content-intro { position: sticky; top: 130px; align-self: start; }
.content-intro h2 { margin-bottom: 24px; font-size: clamp(2.2rem, 4vw, 3.7rem); font-weight: 660; }
.content-intro p { color: #61717d; }.dark .content-intro p { color: var(--muted); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature-item { min-height: 190px; padding: 28px; border: 1px solid rgba(7,17,31,.13); border-radius: var(--radius); background: rgba(255,255,255,.48); }
.dark .feature-item { border-color: var(--line); background: rgba(255,255,255,.02); }
.feature-item > span { display: inline-grid; width: 34px; height: 34px; margin-bottom: 28px; place-items: center; border-radius: 50%; color: #06788e; background: rgba(25,201,232,.12); font-size: .7rem; font-weight: 800; }
.dark .feature-item > span { color: var(--cyan); }
.feature-item h3 { margin-bottom: 11px; font-size: 1.17rem; font-weight: 670; }
.feature-item p { margin: 0; color: #63727e; font-size: .87rem; }.dark .feature-item p { color: var(--muted); }
.wide-copy { max-width: 820px; margin-inline: auto; text-align: center; }.wide-copy h2 { margin-bottom: 24px; font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 650; }.wide-copy p { color: var(--muted); font-size: 1.05rem; }
.simple-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; text-align: left; }
.simple-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.02); }.simple-card h3 { margin-bottom: 12px; }.simple-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.contact-copy h1 { font-size: clamp(3rem, 6vw, 5.7rem); }.contact-copy > p { color: var(--muted); font-size: 1.05rem; }
.contact-details { margin-top: 42px; padding-top: 30px; border-top: 1px solid var(--line); }.contact-details a, .contact-details address { display: block; margin-bottom: 13px; color: #c8d5df; font-style: normal; }
.contact-form { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--ink-soft); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.field-full { grid-column: span 2; }
.field label { display: block; margin-bottom: 8px; color: #becbd5; font-size: .78rem; font-weight: 650; }
.field input, .field textarea, .field select { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 9px; color: white; background: rgba(255,255,255,.025); outline: none; }.field textarea { min-height: 126px; resize: vertical; }.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(77,227,255,.08); }.field select option { color: #111; }
.form-note { margin: 16px 0 22px; color: #718497; font-size: .72rem; }.form-note a { color: var(--cyan); text-decoration: underline; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--mint); font-size: .8rem; }
.article-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }.article-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-soft); }.article-card time { color: #718497; font-size: .69rem; }.article-card h2 { margin: 18px 0 14px; font-size: 1.35rem; }.article-card p { color: var(--muted); font-size: .87rem; }
@media (max-width: 820px) { .page-hero { padding: 145px 0 80px; }.content-layout, .contact-layout { grid-template-columns: 1fr; gap: 55px; }.content-intro { position: static; }.simple-grid, .article-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .page-hero h1 { font-size: 2.9rem; }.feature-list, .simple-grid, .article-list, .form-grid { grid-template-columns: 1fr; }.field-full { grid-column: auto; }.contact-form { padding: 24px; } }

/* Homepage business direction */
.home-v2 {
  --cyan: #58b9c8;
  --cyan-strong: #267f91;
  --mint: #83c6b7;
  --paper: #f3f5f3;
  --paper-text: #10202b;
  background: #07151f;
}
.home-v2 .site-header.scrolled { background: rgba(7,21,31,.96); }
.home-v2 .button { border-color: #4fb6c8; background: #4fb6c8; box-shadow: none; }
.home-v2 .button:hover { border-color: #72c7d5; background: #72c7d5; box-shadow: 0 10px 24px rgba(32,103,117,.18); }
.home-v2 .hero { min-height: 760px; padding: 156px 0 100px; background: #07151f; }
.home-v2 .hero::before { display: none; }
.home-v2 .hero-grid { opacity: .16; background-image: linear-gradient(90deg, rgba(204,224,232,.12) 1px, transparent 1px); background-size: calc(100% / 6) 100%; mask-image: linear-gradient(to bottom, transparent 5%, black 20%, black 80%, transparent); }
.home-v2 .hero-layout { grid-template-columns: minmax(0,1.08fr) minmax(390px,.72fr); gap: 92px; }
.home-v2 .hero-copy h1 { max-width: 760px; margin-bottom: 30px; font-size: clamp(3.35rem,5.4vw,5.15rem); font-weight: 610; letter-spacing: -.058em; }
.home-v2 .hero-copy h1 em { color: #9ed5de; font-style: normal; }
.home-v2 .hero-lead { max-width: 700px; color: #b8c6ce; font-size: 1.08rem; }
.home-v2 .hero-assurances { color: #9babb4; }
.home-v2 .eyebrow { color: #79bdc9; }
.executive-panel { align-self: stretch; display: flex; min-height: 490px; flex-direction: column; justify-content: space-between; padding: 42px; border-radius: 8px; color: #12242e; background: #eef1ed; box-shadow: 0 28px 65px rgba(0,0,0,.2); }
.panel-kicker { max-width: 310px; margin: 0; font-size: 1.45rem; font-weight: 650; line-height: 1.25; letter-spacing: -.025em; }
.executive-list { margin-block: 30px; border-top: 1px solid rgba(16,32,43,.15); }
.executive-list > div { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid rgba(16,32,43,.15); }
.executive-list span { padding-top: 2px; color: #66808d; font-size: .67rem; font-weight: 750; }
.executive-list p { margin: 0; color: #536871; font-size: .78rem; line-height: 1.45; }
.executive-list strong { display: block; margin-bottom: 3px; color: #10202b; font-size: .98rem; font-weight: 680; }
.executive-footer { display: flex; justify-content: space-between; gap: 20px; color: #5e737c; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.home-v2 .trust-strip { border-color: rgba(14,44,56,.08); background: transparent; }
.home-v2 .trust-inner { grid-template-columns: 170px 1fr; min-height: 128px; }
.home-v2 .trust-inner > p { color: #78909c; line-height: 1.4; }
.partner-logos { display: grid !important; grid-template-columns: repeat(7,1fr); gap: 28px !important; }
.partner-logos li { display: grid; height: 42px; place-items: center; }
.partner-logos img { width: 100%; height: 32px; object-fit: contain; opacity: 1; filter: none; transition: opacity .2s, filter .2s, transform .2s; }
.partner-logos li:hover img { opacity: 1; filter: none; }

.home-v2 .section { padding: 112px 0; }
.home-v2 .section-heading h2, .home-v2 .model-copy h2, .home-v2 .clients-copy h2, .home-v2 .cta-panel h2 { font-weight: 610; letter-spacing: -.045em; }
.home-v2 .solutions { background: #f3f5f3; }
.home-v2 .solutions .eyebrow { color: #277f8f; }
.home-v2 .solutions-grid { grid-template-columns: repeat(2,1fr); gap: 14px; border: 0; border-radius: 0; overflow: visible; }
.home-v2 .solution-card { min-height: 310px; padding: 31px 34px; border: 1px solid #d9dfdd !important; border-radius: 8px; background: #fafbf9; }
.home-v2 .solution-card::after { display: none; }
.home-v2 .solution-card:hover { color: #10202b; border-color: #aac2c4 !important; background: #fff; transform: translateY(-3px); box-shadow: 0 14px 35px rgba(22,47,57,.08); }
.home-v2 .card-icon { margin: 42px 0 26px; stroke: #287d8c; }
.home-v2 .solution-card:hover .card-icon { stroke: #287d8c; }
.home-v2 .solution-card p, .home-v2 .solution-card:hover p { max-width: 460px; color: #62717a; }
.home-v2 .card-link, .home-v2 .solution-card:hover .card-link { color: #267f91; }

.clients { border-top: 1px solid rgba(255,255,255,.08); background: #0c202c; }
.clients-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: center; }
.clients-copy h2 { margin-bottom: 25px; font-size: clamp(2.5rem,4vw,4rem); }
.clients-copy > p:last-child { max-width: 450px; color: #9fb0b9; }
.client-logos { display: grid; grid-template-columns: repeat(3,1fr); margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.1); border-left: 1px solid rgba(255,255,255,.1); list-style: none; }
.client-logos li { display: grid; min-height: 125px; padding: 24px; place-items: center; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.client-logos img { width: 100%; height: 64px; object-fit: contain; opacity: .78; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.client-logos li:hover img { opacity: 1; filter: none; }

.home-v2 .operating-model { background: #f3f5f3; color: #10202b; }
.home-v2 .model-copy > p:not(.eyebrow), .home-v2 .model-steps p { color: #62717a; }
.home-v2 .model-steps { border-color: #d5ddda; }
.home-v2 .model-steps li { border-color: #d5ddda; }
.home-v2 .model-steps li > span { color: #277f8f; }
.home-v2 .model-copy .text-link { color: #10202b; border-color: #b7c3c1; }

.home-v2 .work { background: #e8edeb; color: #10202b; }
.home-v2 .work .section-heading > p { color: #62717a; }
.business-cases { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.business-cases .work-card { min-height: 330px; padding: 30px; border-color: #d2dbd8; border-radius: 8px; background: #f8faf8; }
.case-topline { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid #d4ddda; color: #708088; font-size: .66rem; font-weight: 730; letter-spacing: .08em; text-transform: uppercase; }
.business-cases .work-content { padding: 70px 0 0; }
.business-cases .work-content h3 { font-size: 1.8rem; }
.business-cases .work-content p { color: #63727a; }
.home-v2 .work .text-link { color: #10202b; border-color: #b6c3c0; }

.home-v2 .final-cta { background: #e8edeb; }
.home-v2 .cta-panel { border: 1px solid #cbd9d7; border-radius: 8px; color: #10202b; background: #dce7e5; box-shadow: none; }
.home-v2 .cta-glow { display: none; }
.home-v2 .cta-panel > p:not(.eyebrow) { color: #536a72; }
.home-v2 .button-light { color: white; border-color: #102b37; background: #102b37; }
.home-v2 .button-light:hover { color: white; border-color: #1b4554; background: #1b4554; }
.home-v2 .cta-actions > a:last-child { color: #36515b; }

@media (max-width:1050px) {
  .home-v2 .hero-layout { grid-template-columns: 1fr 390px; gap: 45px; }
  .home-v2 .hero-copy h1 { font-size: clamp(3rem,5.6vw,4.45rem); }
  .partner-logos { gap: 17px !important; }
  .clients-layout { gap: 50px; }
  .business-cases { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width:820px) {
  .home-v2 .hero { padding-top: 130px; }
  .home-v2 .hero-layout { grid-template-columns: 1fr; }
  .executive-panel { min-height: auto; }
  .home-v2 .trust-inner { grid-template-columns: 1fr; }
  .partner-logos { grid-template-columns: repeat(4,1fr); }
  .clients-layout { grid-template-columns: 1fr; }
  .business-cases { grid-template-columns: 1fr; }
}
@media (max-width:580px) {
  .home-v2 .hero-copy h1 { font-size: clamp(2.7rem,12vw,3.55rem); }
  .executive-panel { padding: 28px; }
  .executive-footer { flex-direction: column; gap: 6px; }
  .partner-logos { grid-template-columns: repeat(2,1fr); gap: 18px 24px !important; }
  .home-v2 .solutions-grid { grid-template-columns: 1fr; }
  .home-v2 .solution-card { min-height: 330px; }
  .client-logos { grid-template-columns: repeat(2,1fr); }
  .client-logos li { min-height: 105px; padding: 18px; }
  .home-v2 .cta-panel { padding-inline: 28px; }
}

/* Image-led hero and interactive service catalogue */
.home-v2 .hero { position: relative; min-height: 790px; isolation: isolate; background: #06141d; }
.home-v2 .hero::after { content: ""; position: absolute; inset: 0; z-index: 1; display: block; background: linear-gradient(90deg, rgba(4,15,23,.98) 0%, rgba(4,15,23,.92) 35%, rgba(4,15,23,.52) 64%, rgba(4,15,23,.16) 100%), linear-gradient(0deg, rgba(4,15,23,.38), transparent 52%); pointer-events: none; }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; transform: scale(1.045) translate3d(var(--hero-x,0),var(--hero-y,0),0); transition: transform .9s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.home-v2 .hero-grid { z-index: 2; opacity: .1; }
.home-v2 .hero-layout { z-index: 3; grid-template-columns: 1fr; }
.home-v2 .hero-copy { max-width: 760px; }
.home-v2 .hero-copy h1 { max-width: 760px; font-size: clamp(3.5rem,5.4vw,5.25rem); text-wrap: balance; }
.home-v2 .hero-lead { max-width: 670px; }
.home-v2 .hero-assurances { max-width: 650px; }

.service-accordion { border-top: 1px solid #ccd5d2; }
.service-category { border-bottom: 1px solid #ccd5d2; }
.service-trigger { display: grid; width: 100%; grid-template-columns: 64px minmax(0,1fr) 92px 30px; gap: 22px; align-items: center; padding: 27px 6px; border: 0; color: #10202b; background: transparent; text-align: left; cursor: pointer; transition: background .2s, padding .2s; }
.service-trigger:hover { padding-inline: 18px; background: rgba(255,255,255,.55); }
.service-index { color: #688089; font-size: .68rem; font-weight: 760; letter-spacing: .1em; }
.service-heading strong { display: block; margin-bottom: 5px; font-size: 1.22rem; font-weight: 660; letter-spacing: -.02em; }
.service-heading small { display: block; color: #6a7980; font-size: .78rem; font-weight: 450; }
.service-count { color: #6b7b82; font-size: .68rem; font-weight: 700; text-align: right; text-transform: uppercase; }
.service-toggle { position: relative; width: 24px; height: 24px; justify-self: end; border: 1px solid #aebbb8; border-radius: 50%; }
.service-toggle::before, .service-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 1px; background: #2b5762; transform: translate(-50%,-50%); transition: transform .25s; }
.service-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.service-category.open .service-toggle::after { transform: translate(-50%,-50%) rotate(0); }
.service-content { max-height: 0; padding: 0 6px; overflow: hidden; opacity: 0; transition: max-height .5s cubic-bezier(.2,.7,.2,1), opacity .3s, padding .4s; }
.service-category.open .service-content { max-height: 960px; padding: 5px 6px 34px 92px; opacity: 1; }
.service-content ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 34px; margin: 0 0 25px; padding: 0; border-top: 1px solid #d8dfdd; list-style: none; counter-reset: service-items; }
.service-content li { position: relative; min-height: 58px; padding: 18px 10px 15px 30px; border-bottom: 1px solid #d8dfdd; color: #394d55; font-size: .84rem; counter-increment: service-items; transition: color .2s, padding-left .2s; }
.service-content li::before { content: counter(service-items,decimal-leading-zero); position: absolute; top: 19px; left: 0; color: #789098; font-size: .58rem; font-weight: 760; }
.service-content li:hover { padding-left: 34px; color: #16758a; }
.service-content > a { color: #1d7183; font-size: .78rem; font-weight: 730; }
.service-content > a:hover { color: #10202b; }

@media (max-width:820px) {
  .home-v2 .hero { min-height: 780px; }
  .home-v2 .hero::after { background: linear-gradient(90deg,rgba(4,15,23,.98),rgba(4,15,23,.78)),linear-gradient(0deg,rgba(4,15,23,.55),transparent); }
  .hero-media img { object-position: 60% center; }
  .service-trigger { grid-template-columns: 42px minmax(0,1fr) 30px; gap: 14px; }
  .service-count { display: none; }
  .service-category.open .service-content { padding-left: 56px; }
}
@media (max-width:580px) {
  .home-v2 .hero { min-height: 760px; padding-top: 126px; }
  .home-v2 .hero::after { background: linear-gradient(90deg,rgba(4,15,23,.97),rgba(4,15,23,.74)),linear-gradient(0deg,rgba(4,15,23,.72),transparent); }
  .hero-media img { object-position: 64% center; transform: scale(1.08) translate3d(var(--hero-x,0),var(--hero-y,0),0); }
  .home-v2 .hero-copy h1 { font-size: clamp(2.75rem,12.2vw,3.6rem); }
  .service-trigger { grid-template-columns: 34px minmax(0,1fr) 26px; padding-block: 23px; }
  .service-heading strong { font-size: 1.03rem; }
  .service-heading small { font-size: .7rem; }
  .service-category.open .service-content { padding: 0 0 28px 48px; }
  .service-content ul { grid-template-columns: 1fr; }
  .service-content li { min-height: 54px; }
}

/* Business capability matrix */
.capability-matrix { display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); gap: 14px; }
.capability-tile { position: relative; display: flex; min-height: 330px; flex-direction: column; padding: 32px; overflow: hidden; border: 1px solid #d3dcda; border-radius: 8px; color: #10202b; background: #f9faf8; transition: border-color .25s, transform .25s, box-shadow .25s; }
.capability-tile:nth-child(1) { grid-column: span 7; background: #e3eceb; }.capability-tile:nth-child(2) { grid-column: span 5; }.capability-tile:nth-child(3),.capability-tile:nth-child(4),.capability-tile:nth-child(5) { grid-column: span 4; }.capability-tile:nth-child(6),.capability-tile:nth-child(7) { grid-column: span 6; }
.capability-tile::before { content: ""; position: absolute; top: -76px; right: -76px; width: 170px; height: 170px; border: 1px solid rgba(35,112,127,.12); border-radius: 50%; box-shadow: 0 0 0 25px rgba(35,112,127,.035); transition: transform .4s; }
.capability-tile:hover { z-index: 1; border-color: #93b5b8; transform: translateY(-4px); box-shadow: 0 18px 40px rgba(19,48,57,.09); }
.capability-tile:hover::before { transform: scale(1.14); }
.capability-index { color: #51727c; font-size: .63rem; font-weight: 770; letter-spacing: .1em; text-transform: uppercase; }
.capability-tile h3 { max-width: 390px; margin: 56px 0 16px; font-size: clamp(1.45rem,2.2vw,2.05rem); font-weight: 640; }
.capability-tile p { max-width: 470px; margin-bottom: 24px; color: #607078; font-size: .87rem; }
.capability-tile ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 28px; padding: 0; list-style: none; }
.capability-tile li { padding: 5px 9px; border: 1px solid #c8d4d2; border-radius: 100px; color: #587078; font-size: .62rem; font-weight: 650; }
.capability-tile footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid #d2dcda; color: #587078; font-size: .65rem; font-weight: 720; letter-spacing: .07em; text-transform: uppercase; }
.capability-tile footer b { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: white; background: #173d49; font-size: .8rem; transition: transform .25s; }.capability-tile:hover footer b { transform: rotate(45deg); }
.tile-cloud { background: #f3efe8; }.tile-development { background: #eef2f4; }.tile-ai { background: #e9efeb; }.tile-support { background: #edf0ea; }
.capability-action { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 28px; }.capability-action > span { color: #6a7a81; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

/* Technology logo carousel */
.logo-marquee { min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); }
.logo-track { display: flex; width: max-content; animation: logo-scroll 30s linear infinite; }
.logo-marquee:hover .logo-track,.logo-marquee:focus-within .logo-track { animation-play-state: paused; }
.logo-marquee .partner-logos { display: flex !important; flex: 0 0 auto; grid-template-columns: none; gap: 0 !important; padding-right: 30px; }
.logo-marquee .partner-logos li { width: 150px; height: 46px; flex: 0 0 150px; padding-inline: 20px; }
.logo-marquee .partner-logos img { max-width: 118px; height: 30px; }
@keyframes logo-scroll { to { transform: translateX(-50%); } }

/* Equal visual footprint for client marks */
.client-logos li { min-height: 132px; overflow: hidden; }
.client-logos img { width: 170px; height: 62px; max-width: 100%; object-fit: contain; transform-origin: center; }
.client-logos li:nth-child(4) img { transform: scale(1.08); }
.client-logos li:nth-child(5) img { transform: scale(1.55); }
.client-logos li:nth-child(6) img { transform: scale(1.04); }

/* Dedicated portfolio */
.portfolio-page { color: var(--text); background: #07151f; }
.portfolio-hero { padding-bottom: 88px; }
.portfolio-hero h1 { max-width: 980px; }
.portfolio-stats { display: grid; max-width: 820px; grid-template-columns: repeat(3,1fr); gap: 0; margin: 55px 0 0; border-block: 1px solid var(--line); }
.portfolio-stats div { padding: 24px 26px 24px 0; border-right: 1px solid var(--line); }.portfolio-stats div:not(:first-child) { padding-left: 26px; }.portfolio-stats div:last-child { border-right: 0; }
.portfolio-stats dt { margin-bottom: 4px; color: var(--cyan); font-size: 1.7rem; font-weight: 680; }.portfolio-stats dd { margin: 0; color: var(--muted); font-size: .72rem; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; }
.portfolio-catalog { background: #f3f5f3; }
.portfolio-catalog .section-heading h2 { color: #10202b; }.portfolio-catalog .section-heading > p { color: #61717a; }.portfolio-catalog .eyebrow { color: #277f8f; }
.portfolio-page .service-category { scroll-margin-top: 105px; }
.portfolio-projects { color: #10202b; background: #e8edeb; }
.portfolio-projects .section-heading > p { color: #61717a; }
.project-showcase { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid #c9d3d0; border-left: 1px solid #c9d3d0; }
.project-showcase article { position: relative; min-height: 330px; padding: 34px; overflow: hidden; border-right: 1px solid #c9d3d0; border-bottom: 1px solid #c9d3d0; background: rgba(255,255,255,.28); transition: background .25s; }.project-showcase article:hover { background: rgba(255,255,255,.72); }
.project-showcase article::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 190px; height: 190px; border: 1px solid rgba(38,127,145,.13); border-radius: 50%; }
.project-showcase article > span { color: #71858c; font-size: .63rem; font-weight: 740; letter-spacing: .1em; text-transform: uppercase; }
.project-showcase strong { display: block; margin: 85px 0 14px; font-size: 2rem; font-weight: 640; }.project-showcase p { max-width: 420px; color: #607078; }.project-showcase b { position: absolute; bottom: 33px; color: #267f91; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }
.portfolio-page .final-cta { background: #e8edeb; }

@media (max-width:820px) {
  .capability-tile:nth-child(n) { grid-column: span 6; }
  .capability-tile:nth-child(1) { grid-column: span 12; }
  .home-v2 .trust-inner { gap: 12px; }
  .logo-marquee .partner-logos li { width: 138px; flex-basis: 138px; }
}
@media (max-width:580px) {
  .capability-tile:nth-child(n) { grid-column: span 12; }
  .capability-tile { min-height: 310px; padding: 27px; }
  .capability-tile h3 { margin-top: 46px; }
  .capability-action { align-items: flex-start; flex-direction: column; }
  .client-logos img { width: 135px; height: 52px; }
  .portfolio-stats { grid-template-columns: 1fr; }.portfolio-stats div,.portfolio-stats div:not(:first-child) { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }.portfolio-stats div:last-child { border-bottom: 0; }
  .project-showcase { grid-template-columns: 1fr; }.project-showcase article { min-height: 290px; }.project-showcase strong { margin-top: 62px; }
}
@media (prefers-reduced-motion:reduce) {
  .logo-track { animation: none; }
  .logo-marquee { overflow-x: auto; mask-image: none; }
  .logo-marquee .partner-logos[aria-hidden="true"] { display: none !important; }
}

/* Cleaner corporate hierarchy: remove blog-like section labels */
.home-v2 main > .section .eyebrow,
.portfolio-page main .eyebrow,
.contact-page main .eyebrow { display: none; }

/* Image-led capability blocks */
.capability-tile.tile-security { background: linear-gradient(180deg,rgba(4,20,29,.24),rgba(4,20,29,.93)),url('/assets/solutions/01-protecao.webp') center / cover; }
.capability-tile.tile-cloud { background: linear-gradient(180deg,rgba(4,20,29,.22),rgba(4,20,29,.92)),url('/assets/hero/cyberx-data-center.webp') center / cover; }
.capability-tile.tile-network { background: linear-gradient(180deg,rgba(4,20,29,.22),rgba(4,20,29,.94)),url('/assets/solutions/03-conectividade.webp') center / cover; }
.capability-tile.tile-development { background: linear-gradient(180deg,rgba(4,20,29,.2),rgba(4,20,29,.94)),url('/assets/solutions/04-transformacao.webp') center / cover; }
.capability-tile.tile-recovery { background: linear-gradient(180deg,rgba(4,20,29,.2),rgba(4,20,29,.95)),url('/assets/solutions/05-recuperacao.webp') center / cover; }
.capability-tile.tile-ai { background: linear-gradient(180deg,rgba(4,20,29,.22),rgba(4,20,29,.94)),url('/assets/capabilities/network.webp') 70% center / cover; }
.capability-tile.tile-support { background: linear-gradient(180deg,rgba(4,20,29,.2),rgba(4,20,29,.94)),url('/assets/pages/contact-bg.webp') 58% center / cover; }
.capability-tile { color: #fff; border-color: rgba(255,255,255,.2); }
.capability-tile::before { display: none; }
.capability-tile .capability-index { color: #9fd9e2; }
.capability-tile p { color: #d1dde1; }
.capability-tile li { position: relative; padding: 0 10px 0 0; border: 0; border-radius: 0; color: #577078; font-size: .67rem; }
.capability-tile li + li { padding-left: 11px; }
.capability-tile li + li::before { content: ""; position: absolute; top: 4px; bottom: 4px; left: 0; width: 1px; background: #b7c6c4; }
.capability-tile li { color: #d5e0e3; }
.capability-tile li + li::before { background: rgba(255,255,255,.35); }
.capability-tile footer { color: #c7d6db; border-color: rgba(255,255,255,.26); }
.capability-tile footer b { color: #09202a; background: #9edce6; }

/* Client brands as an independent showcase rather than a logo table */
.clients { color: #10202b; background: #e8edeb; }
.clients-layout { display: block; }
.clients-copy { display: grid; grid-template-columns: minmax(0,.85fr) minmax(280px,.55fr); gap: 90px; align-items: end; margin-bottom: 52px; }
.clients-copy h2 { max-width: 600px; margin: 0; }
.clients-copy > p:last-child { margin: 0 0 8px; color: #62737b; }
.client-logos { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); gap: 0; margin: 0; padding: 0; overflow: hidden; border: 1px solid rgba(10,44,56,.12); border-radius: 9px; background: #0d2531; box-shadow: 0 18px 45px rgba(19,45,54,.1); }
.client-logos li { display: grid; min-width: 0; min-height: 142px; padding: 25px 18px; place-items: center; border-right: 1px solid rgba(255,255,255,.1); background: transparent; transition: background .25s; }
.client-logos li:last-child { border-right: 0; }
.client-logos li:hover { background: #153642; }
.client-logos img { width: 145px; height: 58px; opacity: .86; }
.client-logos li:nth-child(1) img { transform: scale(1.18); }
.client-logos li:nth-child(2) img { transform: scale(1.32); }
.client-logos li:nth-child(3) img { transform: scale(1); }
.client-logos li:nth-child(4) img { transform: scale(1.1); }
.client-logos li:nth-child(5) img { transform: scale(1.9); }
.client-logos li:nth-child(6) img { transform: scale(1.02); }
.client-logos li:nth-child(7) img { transform: scale(.86); }

/* Photographic project showcase */
.business-cases .work-card { position: relative; display: flex; min-height: 410px; flex-direction: column; isolation: isolate; color: #fff; border-color: rgba(255,255,255,.16); background-position: center; background-size: cover; }
.business-cases .work-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg,rgba(4,17,25,.2),rgba(4,17,25,.94)); transition: background .3s; }
.business-cases .work-card:nth-child(1) { background-image: url('/assets/projects/cybercont.webp'); background-position: center; }
.business-cases .work-card:nth-child(2) { background-image: url('/assets/projects/nexum.webp'); background-position: center; }
.business-cases .work-card:nth-child(3) { background-image: url('/assets/projects/cybernoc.webp'); background-position: center 58%; }
.business-cases .work-card:nth-child(4) { background-image: url('/assets/projects/node.jpg'); background-position: center; }
.business-cases .work-card:hover::before { background: linear-gradient(180deg,rgba(4,17,25,.08),rgba(4,17,25,.88)); }
.business-cases .case-topline { color: #bcd0d7; border-color: rgba(255,255,255,.25); }
.business-cases .work-content { margin-top: auto; padding-top: 90px; }
.business-cases .work-content h3 { color: #fff; }
.business-cases .work-content p { color: #d3dfe3; }
.visual-cybercont { background: linear-gradient(180deg,rgba(4,17,25,.12),rgba(4,17,25,.68)),url('/assets/projects/cybercont.webp') center / cover; }
.visual-nexum { background: linear-gradient(180deg,rgba(4,17,25,.12),rgba(4,17,25,.7)),url('/assets/projects/nexum.webp') center / cover; }
.visual-noc { background: linear-gradient(180deg,rgba(4,17,25,.12),rgba(4,17,25,.72)),url('/assets/projects/cybernoc.webp') center 58% / cover; }
.visual-node { background: linear-gradient(180deg,rgba(4,17,25,.08),rgba(4,17,25,.68)),url('/assets/projects/node.jpg') center / cover; }

.home-v2 .hero .eyebrow { display: none; }

/* Editorial newsroom */
.news-home { color: #10202b; background: #f3f5f3; }
.news-home .section-heading { align-items: center; }
.news-grid,.news-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.news-card { position: relative; display: flex; min-height: 470px; flex-direction: column; overflow: hidden; border: 1px solid #d4ddda; border-radius: 9px; color: #10202b; background: #fff; transition: transform .25s,box-shadow .25s; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(18,47,58,.1); }
.news-card-media { position: relative; height: 235px; overflow: hidden; background: #102733; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.news-card:hover .news-card-media img { transform: scale(1.035); }
.news-card-body { display: flex; flex: 1; flex-direction: column; padding: 27px; }
.news-meta { display: flex; justify-content: space-between; gap: 18px; color: #647780; font-size: .66rem; font-weight: 720; letter-spacing: .06em; text-transform: uppercase; }
.news-card h3 { margin: 23px 0 13px; font-size: 1.42rem; font-weight: 650; line-height: 1.22; }
.news-card p { margin: 0 0 25px; color: #64747b; font-size: .86rem; }
.news-card .text-link { width: max-content; margin-top: auto; color: #1d7081; }
.news-index-page { background: #07151f; }
.news-index-hero { padding-bottom: 82px; }
.news-carousel { position: relative; overflow: hidden; }
.news-carousel-track { display: flex; gap: 18px; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.news-carousel .news-card { min-width: calc((100% - 18px)/2); }
.carousel-controls { display: flex; justify-content: flex-end; gap: 9px; margin-top: 24px; }
.carousel-control { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid #bdcac7; border-radius: 50%; color: #173946; background: transparent; cursor: pointer; }
.news-archive { color: #10202b; background: #edf1ef; }
.news-article { color: #10202b; background: #f4f6f4; }
.article-hero { padding: 160px 0 68px; color: #fff; background: #07151f; }
.article-hero h1 { max-width: 970px; margin: 24px 0; font-size: clamp(2.8rem,5.4vw,5.5rem); line-height: .98; }
.article-cover { width: min(calc(100% - 40px),1180px); max-height: 660px; margin: -1px auto 0; object-fit: cover; border-radius: 9px; }
.article-body { width: min(calc(100% - 40px),780px); margin: 0 auto; padding: 82px 0 110px; }
.article-body p { margin: 0 0 1.45em; color: #465b64; font-size: 1.06rem; line-height: 1.85; }
.article-body h2 { margin: 2em 0 .7em; font-size: 2rem; }
.article-video { aspect-ratio: 16/9; width: 100%; margin: 36px 0; border: 0; border-radius: 8px; }
@media(max-width:820px){.news-grid,.news-list{grid-template-columns:1fr 1fr}.news-carousel .news-card{min-width:calc((100% - 18px)/2)}}
@media(max-width:580px){.news-grid,.news-list{grid-template-columns:1fr}.news-carousel .news-card{min-width:100%}.news-card{min-height:430px}.article-cover{width:calc(100% - 32px)}}

/* Uniform photographic direction across solution pages */
.solution-page .page-hero { min-height:720px; display:flex; align-items:center; padding-block:150px 90px; background-position:center; background-size:cover; }
.solution-page .page-hero::after { display:none; }
.solution-page .page-hero .container { width:min(calc(100% - 40px),var(--container)); }
.security-solution .page-hero { background-image:linear-gradient(90deg,rgba(4,14,23,.97),rgba(4,14,23,.73),rgba(4,14,23,.28)),url('/assets/solutions/01-protecao.webp'); }
.cloud-solution .page-hero { background-image:linear-gradient(90deg,rgba(4,14,23,.97),rgba(4,14,23,.72),rgba(4,14,23,.24)),url('/assets/hero/cyberx-data-center.webp'); }
.development-solution .page-hero { background-image:linear-gradient(90deg,rgba(4,14,23,.97),rgba(4,14,23,.72),rgba(4,14,23,.24)),url('/assets/solutions/04-transformacao.webp'); }
.managed-solution .page-hero { background-image:linear-gradient(90deg,rgba(4,14,23,.97),rgba(4,14,23,.76),rgba(4,14,23,.3)),url('/assets/pages/contact-bg.webp'); }
.solution-page .content-section { background:#eef2f0; }
.solution-page .feature-item { min-height:210px; border-radius:9px; background:#f9fbfa; transition:transform .25s,box-shadow .25s; }
.solution-page .feature-item:hover { transform:translateY(-3px); box-shadow:0 15px 34px rgba(17,47,57,.08); }
@media(max-width:580px){.solution-page .page-hero{min-height:650px;background-position:58% center}}

/* Professional editorial article */
.editorial-article { color:#10202b; background:#f2f5f3; }
.editorial-article .inner-header { background:rgba(6,19,29,.97); }
.editorial-hero { position:relative; padding:158px 0 78px; overflow:hidden; color:#fff; background:linear-gradient(135deg,#07151f,#0b2532); }
.editorial-hero.has-cover { background-position:center; background-size:cover; }
.editorial-hero.has-cover::after { content:""; position:absolute; inset:0; z-index:0; background:linear-gradient(90deg,rgba(4,18,28,.97),rgba(4,18,28,.78),rgba(4,18,28,.4)); }
.editorial-hero-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.editorial-hero.has-cover .container { position:relative; z-index:1; }
.editorial-hero .container { max-width:1050px; }
.editorial-hero .breadcrumbs { margin-bottom:42px; }
.editorial-kicker { display:flex; gap:18px; color:#83cbd6; font-size:.68rem; font-weight:760; letter-spacing:.09em; text-transform:uppercase; }
.editorial-kicker span+span { position:relative; padding-left:18px; color:#8fa4ad; }
.editorial-kicker span+span::before { content:""; position:absolute; top:5px; bottom:5px; left:0; width:1px; background:rgba(255,255,255,.24); }
.editorial-hero h1 { max-width:980px; margin:28px 0 26px; font-size:clamp(3.2rem,6vw,6.25rem); font-weight:610; line-height:.98; letter-spacing:-.058em; }
.editorial-deck { max-width:760px; margin-bottom:42px; color:#b9c9cf; font-size:1.15rem; line-height:1.7; }
.editorial-byline { display:grid; grid-template-columns:46px 1fr auto; gap:14px; align-items:center; padding-top:28px; border-top:1px solid rgba(255,255,255,.14); }
.author-avatar { display:grid; width:46px; height:46px; place-items:center; border:1px solid rgba(255,255,255,.2); border-radius:50%; color:#06202b; background:#7dceda; font-weight:800; }
.editorial-byline strong,.editorial-byline span { display:block; }
.editorial-byline span { color:#849aa4; font-size:.72rem; }
.editorial-source { min-width:190px; padding-left:28px; border-left:1px solid rgba(255,255,255,.14); }
.editorial-source small { display:block; color:#718995; font-size:.62rem; text-transform:uppercase; }
.editorial-source a,.editorial-source span { color:#d6e3e7; font-size:.76rem; }
.article-cover-wrap { width:min(calc(100% - 40px),1180px); margin:0 auto; padding-top:46px; }
.editorial-article .article-cover { display:block; width:100%; max-height:650px; margin:0; border-radius:10px; box-shadow:0 28px 70px rgba(16,42,50,.14); }
.article-layout { display:grid; grid-template-columns:minmax(0,760px) minmax(240px,300px); gap:90px; align-items:start; padding-block:82px 120px; }
.editorial-article .article-body { width:auto; margin:0; padding:0; }
.editorial-article .article-body>p:first-of-type { color:inherit; font-size:inherit; line-height:inherit; }
.editorial-article .article-body>p:first-of-type::first-letter { float:none; margin:0; color:inherit; font:inherit; line-height:inherit; }
.editorial-article .article-body p { color:#435b64; font-size:1.04rem; line-height:1.92; }
.editorial-article .article-body h2 { margin:2.1em 0 .75em; color:#102b36; font-size:2.05rem; font-weight:630; }
.article-aside { position:sticky; top:120px; display:grid; gap:0; border-top:2px solid #2b7d8c; }
.article-aside>div { padding:24px 0; border-bottom:1px solid #cfd9d6; }
.article-aside span { display:block; margin-bottom:8px; color:#71848c; font-size:.64rem; font-weight:760; letter-spacing:.09em; text-transform:uppercase; }
.article-aside strong { font-size:1.05rem; }
.article-aside p { margin:10px 0 0; color:#65777e; font-size:.78rem; }
.article-aside a:not(.button) { color:#1d7081; font-size:.82rem; }
.article-aside .button { margin-top:26px; color:#fff; border-color:#113744; background:#113744; }
.article-reference { margin-top:42px; padding:24px; border-left:3px solid #4cb5c5; background:#e6eeeb; }
.article-reference span { display:block; color:#71848c; font-size:.64rem; letter-spacing:.08em; text-transform:uppercase; }
.article-reference a { color:#1c6e7e; font-weight:700; }
.article-cta { padding:80px 0; color:#fff; background:#09202c; }
.article-cta .container { display:flex; align-items:end; justify-content:space-between; gap:50px; }
.article-cta span { color:#78bdc9; font-size:.65rem; font-weight:760; letter-spacing:.1em; }
.article-cta h2 { max-width:760px; margin:15px 0 0; font-size:clamp(2.4rem,4vw,4.2rem); font-weight:600; }
@media(max-width:820px){.article-layout{grid-template-columns:1fr;gap:55px}.article-aside{position:static}.editorial-byline{grid-template-columns:46px 1fr}.editorial-source{grid-column:2;padding:15px 0 0;border-left:0}.article-cta .container{align-items:flex-start;flex-direction:column}}
@media(max-width:580px){.editorial-hero{padding:120px 0 58px}.editorial-hero h1{font-size:2.9rem}.editorial-deck{font-size:1rem}.article-cover-wrap{width:calc(100% - 32px);padding-top:26px}.article-layout{padding-block:58px 90px}}

/* Horizontal capability showcase */
.capability-carousel{position:relative}.capability-controls{display:flex;align-items:center;justify-content:space-between;margin:0 0 18px;color:#61747c;font-size:.7rem;font-weight:750;letter-spacing:.07em;text-transform:uppercase}.capability-controls>div{display:flex;gap:7px}.capability-controls button{display:grid;width:42px;height:42px;padding:0;place-items:center;border:1px solid #c5d2cf;border-radius:50%;color:#173d49;background:#fff;font-size:1rem;cursor:pointer;transition:.2s}.capability-controls button:hover{color:#fff;border-color:#173d49;background:#173d49}.capability-carousel .capability-matrix{display:grid;grid-auto-columns:calc((100% - 28px)/3);grid-auto-flow:column;grid-template-columns:none;gap:14px;padding:2px 2px 22px;overflow-x:auto;overscroll-behavior-inline:contain;scroll-behavior:smooth;scroll-snap-type:x mandatory;scrollbar-width:none}.capability-carousel .capability-matrix::-webkit-scrollbar{display:none}.capability-carousel .capability-tile:nth-child(n){grid-column:auto;min-height:390px;scroll-snap-align:start}.capability-carousel .capability-tile h3{margin-top:48px;font-size:1.65rem}.capability-progress{height:2px;margin-top:4px;background:#d6dfdc;overflow:hidden}.capability-progress i{display:block;width:20%;height:100%;background:#24788a;transform-origin:left;transition:width .2s}.capability-action{margin-top:24px}
@media(max-width:980px){.capability-carousel .capability-matrix{grid-auto-columns:calc((100% - 14px)/2)}}
@media(max-width:620px){.capability-controls>span{display:none}.capability-controls{justify-content:flex-end}.capability-carousel .capability-matrix{grid-auto-columns:88%}.capability-carousel .capability-tile:nth-child(n){min-height:370px}}
.solutions.capability-scroll-story{min-height:calc(100vh + var(--capability-scroll-distance,0px));padding-block:0}.solutions.capability-scroll-story>.container{position:sticky;top:0;display:flex;min-height:100vh;flex-direction:column;justify-content:center;padding-block:104px 54px}.solutions.capability-scroll-story .capability-matrix{scroll-behavior:auto;scroll-snap-type:none}.solutions.capability-scroll-story .capability-controls>span::after{display:none;content:""}@media(max-height:760px) and (min-width:821px){.solutions.capability-scroll-story>.container{padding-block:86px 28px}.solutions.capability-scroll-story .section-heading{margin-bottom:24px}.solutions.capability-scroll-story .capability-tile:nth-child(n){min-height:340px}.solutions.capability-scroll-story .capability-tile h3{margin-top:34px}}

/* Rich article blocks */
.editorial-article .article-body figure{margin:42px 0}.editorial-article .article-body figure img{display:block;width:100%;height:auto;border-radius:10px}.editorial-article .article-body figcaption{margin-top:10px;color:#74878f;font-size:.76rem}.editorial-article .article-body blockquote{margin:38px 0;padding:5px 0 5px 26px;border-left:3px solid #55b7c7;color:#244753;font-size:1.25rem;line-height:1.65}.editorial-article .article-body pre{max-width:100%;margin:34px 0;padding:24px;overflow:auto;border-radius:10px;color:#d8eef2;background:#071923;font:14px/1.75 ui-monospace,SFMono-Regular,Consolas,monospace}.editorial-article .article-body :not(pre)>code{padding:2px 5px;border-radius:4px;color:#17677a;background:#e8f2f1}.editorial-article .article-body li{margin-bottom:8px;color:#435b64;line-height:1.8}.article-video{position:relative;margin:40px 0;padding-top:56.25%;overflow:hidden;border-radius:10px;background:#071923}.article-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

.site-header .brand>img { display:none; }
.news-index-page .site-header { background:rgba(6,18,29,.96); border-color:rgba(255,255,255,.1); backdrop-filter:blur(18px); }
.news-index-page .news-carousel { border-radius:10px; }
.news-index-page .carousel-controls { align-items:center; justify-content:space-between; }
.news-index-page .carousel-controls::before { content:none; display:none; }
@media(max-width:820px){.news-index-page .main-nav{background:#06151f}.news-index-page .news-carousel .news-card{min-width:calc((100% - 18px)/2)}}
@media(max-width:580px){.news-index-page .news-carousel .news-card{min-width:100%}.news-index-page .carousel-controls::before{content:"Últimas notícias"}}

/* Magazine-style featured news carousel and discovery */
.news-index-page .news-carousel-track { display:block; transform:none!important; }
.featured-news { position:relative; min-height:610px; overflow:hidden; border-radius:11px; color:#fff; background-position:center; background-size:cover; box-shadow:0 24px 60px rgba(15,43,53,.16); }
.featured-news::after { content:""; position:absolute; inset:0; z-index:0; background:linear-gradient(90deg,rgba(3,13,21,.92),rgba(3,13,21,.6),rgba(3,13,21,.22)); }
.featured-news-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.featured-news-content { position:relative; z-index:1; max-width:760px; padding:90px 70px 150px; }
.featured-news-content>span { display:inline-block; padding:6px 9px; color:#07151f; background:#75cfdd; font-size:.62rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.featured-news-content h2 { margin:24px 0 17px; font-size:clamp(2.5rem,4.6vw,4.9rem); font-weight:620; line-height:1; }
.featured-news-content p { max-width:650px; color:#cedade; font-size:1rem; }
.featured-news-content>div { display:flex; align-items:center; gap:25px; margin-top:27px; font-size:.73rem; }
.featured-news-content time { color:#9db0b8; }
.featured-news-content a { padding-bottom:4px; border-bottom:1px solid rgba(255,255,255,.5); font-weight:720; }
.featured-thumbs { position:absolute; right:0; bottom:0; left:0; z-index:2; display:grid; grid-template-columns:repeat(3,1fr); padding:0 28px; background:linear-gradient(0deg,rgba(2,10,16,.97),rgba(2,10,16,.78)); }
.featured-thumbs button { display:grid; min-width:0; grid-template-columns:48px 1fr; gap:12px; align-items:center; padding:18px 14px; border:0; border-top:3px solid transparent; border-radius:0; color:#b9c8ce; background:transparent; text-align:left; cursor:pointer; }
.featured-thumbs button.active { color:#fff; border-color:#68c8d8; background:rgba(255,255,255,.08); }
.featured-thumbs img { width:48px; height:48px; border-radius:50%; object-fit:cover; }
.featured-thumbs span { overflow:hidden; font-size:.72rem; font-weight:730; line-height:1.35; text-overflow:ellipsis; white-space:nowrap; }
.news-filters { display:grid; grid-template-columns:minmax(0,1fr) 310px; gap:18px; margin:-18px 0 40px; padding:22px; border:1px solid rgba(66,112,122,.2); border-radius:14px; background:linear-gradient(135deg,#f8faf9,#eef4f2); box-shadow:0 16px 38px rgba(15,50,60,.07); }
.news-filters label>span { display:block; margin:0 0 8px 2px; color:#526d77; font-size:.64rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.news-filters .filter-control{position:relative}.news-filters .filter-control>svg{position:absolute;z-index:2;top:50%;left:16px;width:19px;height:19px;fill:none;stroke:#347b89;stroke-width:1.8;stroke-linecap:round;transform:translateY(-50%);pointer-events:none}.news-filters input,.news-filters select { width:100%; min-height:54px; padding:12px 46px; border:1px solid #c6d5d2; border-radius:10px; color:#17313b; background:#fff; outline:none; box-shadow:0 3px 9px rgba(13,48,59,.03);transition:border-color .2s,box-shadow .2s,transform .2s}.news-filters select{appearance:none;-webkit-appearance:none;padding-right:48px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23347b89' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center}.news-filters input:hover,.news-filters select:hover{border-color:#8fb7bd}.news-filters input:focus,.news-filters select:focus { border-color:#3b95a5; box-shadow:0 0 0 4px rgba(59,149,165,.12),0 8px 20px rgba(13,48,59,.06); }
.news-empty { grid-column:1/-1; padding:50px; text-align:center; color:#687b83; }
@media(max-width:820px){.featured-news{min-height:580px}.featured-news-content{padding:70px 40px 155px}.featured-thumbs{overflow-x:auto;grid-template-columns:repeat(3,240px)}.news-filters{grid-template-columns:1fr}}
@media(max-width:580px){.featured-news{min-height:620px}.featured-news-content{padding:54px 25px 180px}.featured-news-content h2{font-size:2.45rem}.featured-news-content p{font-size:.88rem}.featured-thumbs{padding-inline:8px;grid-template-columns:repeat(3,210px)}.news-filters{padding:15px}}

/* A tighter capabilities overview: four cards on the first row, three on the second */
@media(min-width:1051px){.capability-tile:nth-child(n){grid-column:span 3;min-height:360px}.capability-tile h3{margin-top:44px;font-size:1.6rem}.capability-tile p{font-size:.81rem}.capability-action{margin-top:22px}.home-v2 .solutions .section-heading{margin-bottom:42px}}

.language-switch { display: inline-flex; min-width: 42px; height: 34px; align-items: center; justify-content: center; margin-left: -8px; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; color: #d9e6eb; font-size: .68rem; font-weight: 780; letter-spacing: .08em; transition: border-color .2s,background .2s; }
.language-switch:hover { border-color: #65c7d7; background: rgba(101,199,215,.1); }

/* New page backgrounds */
.portfolio-page .portfolio-hero { min-height: 720px; display: flex; align-items: center; padding-block: 150px 90px; background: linear-gradient(90deg,rgba(4,14,23,.97) 0%,rgba(4,14,23,.8) 48%,rgba(4,14,23,.34) 100%),linear-gradient(0deg,rgba(4,14,23,.6),transparent 55%),url('/assets/pages/portfolio-bg.webp') center / cover no-repeat; }
.portfolio-page .portfolio-hero::after { display: none; }
.portfolio-page .portfolio-hero .container { width: min(calc(100% - 40px),var(--container)); }
.portfolio-page .portfolio-hero h1 { max-width: 900px; text-shadow: 0 3px 30px rgba(0,0,0,.25); }
.portfolio-page .portfolio-stats { background: rgba(5,18,27,.25); backdrop-filter: blur(5px); }
.contact-page { background: #06131d; }
.contact-page .page-hero { min-height: 100vh; display: flex; align-items: center; padding-block: 145px 70px; background: linear-gradient(90deg,rgba(3,13,21,.96) 0%,rgba(3,13,21,.84) 44%,rgba(3,13,21,.72) 100%),url('/assets/pages/contact-bg.webp') center / cover no-repeat; }
.contact-page .page-hero::after { display: none; }
.contact-page .contact-form { background: rgba(7,22,34,.88); backdrop-filter: blur(16px); }
.contact-page .contact-copy > p { color: #c1ced5; }
.contact-page .contact-details { border-color: rgba(255,255,255,.18); }

@media (max-width:820px) {
  .clients-copy { grid-template-columns: 1fr; gap: 22px; }
  .client-logos { grid-template-columns: repeat(3,1fr); }
  .client-logos li { min-height: 125px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .client-logos li:nth-child(3n) { border-right: 0; }
  .client-logos li:nth-child(n+7) { border-bottom: 0; }
  .client-logos li:last-child { grid-column: 1 / -1; border-right: 0; }
  .main-nav .language-switch { margin-left: 0; }
  .portfolio-page .portfolio-hero { min-height: 680px; background-position: 58% center; }
}
@media (max-width:580px) {
  .capability-tile { min-height: 360px; }
  .clients-copy { margin-bottom: 28px; }
  .client-logos { grid-template-columns: repeat(2,1fr); }
  .client-logos li { min-height: 112px; }
  .client-logos li:nth-child(n) { border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
  .client-logos li:nth-child(2n) { border-right: 0; }
  .client-logos li:nth-child(n+7) { border-bottom: 0; }
  .contact-page .page-hero { background-position: 58% center; }
  .contact-page .contact-form { backdrop-filter: blur(9px); }
}

/* HTTP error system */
.error-page{min-height:100vh;color:#eaf3f5;background:#061722;overflow:hidden}.error-page::before{content:"";position:fixed;inset:0;pointer-events:none;background:linear-gradient(rgba(113,190,204,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(113,190,204,.035) 1px,transparent 1px);background-size:54px 54px;mask-image:linear-gradient(to bottom,black,transparent 88%)}.error-header,.error-footer{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;width:min(calc(100% - 48px),1440px);margin:auto}.error-header{height:94px;border-bottom:1px solid rgba(255,255,255,.1)}.error-header .brand{color:#fff}.error-header>a:last-child{color:#9cb0b8;font-size:.75rem;font-weight:700;letter-spacing:.06em;text-decoration:none;text-transform:uppercase}.error-header>a:last-child span{margin-left:8px;color:#75c9d8}.error-main{position:relative;display:grid;min-height:calc(100vh - 174px);place-items:center;padding:70px 24px}.error-content{position:relative;z-index:1;width:min(100%,850px);text-align:center}.error-code{display:inline-flex;align-items:flex-start;gap:7px;color:#78cfde}.error-code span{margin-top:20px;padding:4px 7px;border:1px solid rgba(120,207,222,.4);border-radius:3px;font:700 .56rem/1 ui-monospace,monospace;letter-spacing:.12em}.error-code strong{font-size:clamp(6.5rem,15vw,12rem);font-weight:600;letter-spacing:-.09em;line-height:.8;text-shadow:0 0 70px rgba(78,190,209,.18)}.error-label{margin:34px 0 16px;color:#6abac8;font-size:.65rem;font-weight:800;letter-spacing:.2em}.error-content h1{max-width:760px;margin:0 auto;color:#fff;font-size:clamp(2rem,5vw,4.25rem);font-weight:600;letter-spacing:-.045em;line-height:1.05}.error-copy{max-width:590px;margin:25px auto 34px;color:#96aab2;font-size:1rem;line-height:1.75}.error-actions{display:flex;align-items:center;justify-content:center;gap:25px}.error-actions .button{display:inline-flex;gap:22px}.error-actions>a:last-child{color:#b7c7cd;font-size:.78rem;font-weight:700;text-decoration:none}.error-status{display:flex;align-items:center;justify-content:center;gap:10px;margin-top:68px;color:#738b94;font-size:.61rem;letter-spacing:.08em;text-transform:uppercase}.error-status i{width:7px;height:7px;border-radius:50%;background:#52d6a0;box-shadow:0 0 0 5px rgba(82,214,160,.1)}.error-status b{color:#a4b8bf}.error-orbit{position:absolute;width:min(70vw,760px);aspect-ratio:1;border:1px solid rgba(96,188,204,.08);border-radius:50%}.error-orbit::before,.error-orbit::after,.error-orbit i{content:"";position:absolute;inset:13%;border:1px solid rgba(96,188,204,.07);border-radius:50%}.error-orbit::after{inset:29%}.error-orbit i:nth-child(1){top:5%;left:50%;width:8px;height:8px;border:0;background:#6bc3d2;box-shadow:0 0 25px #6bc3d2}.error-orbit i:nth-child(2){inset:auto 9% 23% auto;width:5px;height:5px;border:0;background:#df8358}.error-orbit i:nth-child(3){inset:31% auto auto 11%;width:4px;height:4px;border:0;background:#fff}.error-footer{height:80px;border-top:1px solid rgba(255,255,255,.08);color:#57717b;font-size:.59rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase}
@media(max-width:620px){.error-header,.error-footer{width:calc(100% - 32px)}.error-header{height:78px}.error-main{min-height:calc(100vh - 142px);padding-block:50px}.error-actions{flex-direction:column;gap:18px}.error-status{margin-top:48px}.error-footer{height:64px}.error-orbit{width:105vw}.error-code strong{font-size:7rem}}

.news-home .section-action .text-link{color:#123b48;border-color:#8fa6aa}.news-home .section-action .text-link:hover{color:#176f80;border-color:#176f80}.editorial-article .article-body figure.align-left{float:left;width:48%;margin:12px 34px 24px 0}.editorial-article .article-body figure.align-right{float:right;width:48%;margin:12px 0 24px 34px}.editorial-article .article-body figure.align-center{width:86%;margin:42px auto}.editorial-article .article-body>p[style*="text-align"]{max-width:none}.editorial-article .article-body::after{content:"";display:block;clear:both}@media(max-width:680px){.editorial-article .article-body figure.align-left,.editorial-article .article-body figure.align-right,.editorial-article .article-body figure.align-center{float:none;width:100%;margin:30px 0}}
.editorial-article .article-body img{display:block;height:auto;max-width:100%;margin:38px auto;border-radius:10px}.editorial-article .article-body img.article-image-small{width:40%}.editorial-article .article-body img.article-image-medium{width:70%}.editorial-article .article-body img.article-image-large{width:88%}.editorial-article .article-body img.article-image-full{width:100%}.contact-form select{appearance:none;-webkit-appearance:none;padding-right:48px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2363c5d5' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center}.contact-form select:hover{border-color:rgba(99,197,213,.65)}@media(max-width:680px){.editorial-article .article-body img.article-image-small,.editorial-article .article-body img.article-image-medium,.editorial-article .article-body img.article-image-large{width:100%}}
.editorial-article .ql-font-georgia{font-family:Georgia,serif}.editorial-article .ql-font-arial{font-family:Arial,sans-serif}.editorial-article .ql-font-courier{font-family:"Courier New",monospace}.editorial-article .ql-size-large{font-size:1.35em}.editorial-article .ql-size-huge{font-size:1.75em}.editorial-article .ql-align-center{text-align:center}.editorial-article .ql-align-right{text-align:right}.editorial-article .ql-align-justify{text-align:justify}.editorial-article iframe.ql-video{display:block;width:100%;min-height:430px;margin:38px 0;border:0;border-radius:10px}.editorial-article .ql-code-block-container{margin:34px 0;padding:22px;border-radius:10px;color:#d8eef2;background:#071923;font:14px/1.75 ui-monospace,Consolas,monospace}.editorial-article .ql-code-block{white-space:pre-wrap}

/* Consistent news media, titles and editorial heroes */
.news-card{height:520px;min-height:520px}.news-card-media{height:auto;aspect-ratio:16/9;flex:0 0 auto}.news-card-media img{display:block;object-position:center}.news-card h3{display:-webkit-box;min-height:3.66em;max-height:3.66em;overflow:hidden;font-size:1.34rem;line-height:1.22;-webkit-box-orient:vertical;-webkit-line-clamp:3}.news-card p{display:-webkit-box;max-height:4.5em;overflow:hidden;line-height:1.5;-webkit-box-orient:vertical;-webkit-line-clamp:3}.featured-news{height:620px;min-height:620px}.featured-news-bg{object-position:center}.featured-news-content h2{display:-webkit-box;max-height:3em;overflow:hidden;font-size:clamp(2.5rem,4.2vw,4.5rem);line-height:1;-webkit-box-orient:vertical;-webkit-line-clamp:3}.editorial-hero{display:flex;height:700px;min-height:700px;align-items:flex-end;padding:140px 0 72px}.editorial-hero .container{width:100%}.editorial-hero h1{display:-webkit-box;max-height:3.8em;overflow:hidden;font-size:clamp(3rem,5.2vw,5.4rem);line-height:.95;-webkit-box-orient:vertical;-webkit-line-clamp:4}.editorial-article .article-cover{height:620px;max-height:none;object-fit:cover;object-position:center}@media(max-width:820px){.news-card{height:500px;min-height:500px}.featured-news{height:580px;min-height:580px}.editorial-hero{height:650px;min-height:650px}.editorial-article .article-cover{height:460px}}@media(max-width:580px){.news-card{height:470px;min-height:470px}.news-card h3{font-size:1.18rem}.featured-news{height:620px;min-height:620px}.editorial-hero{height:620px;min-height:620px;padding:120px 0 58px}.editorial-hero h1{font-size:2.65rem}.editorial-article .article-cover{height:320px}}

/* Editorial controls, long titles and page-specific heroes */
.editorial-article .ql-font-verdana{font-family:Verdana,sans-serif}.editorial-article .ql-font-trebuchet{font-family:"Trebuchet MS",sans-serif}.editorial-article .ql-font-tahoma{font-family:Tahoma,sans-serif}.editorial-article .ql-font-times{font-family:"Times New Roman",serif}.editorial-article .ql-font-garamond{font-family:Garamond,serif}.editorial-article .article-body img.article-image-left{float:left;margin:12px 34px 26px 0}.editorial-article .article-body img.article-image-center{float:none;margin:38px auto}.editorial-article .article-body img.article-image-right{float:right;margin:12px 0 26px 34px}.editorial-article .article-body::after{content:"";display:block;clear:both}.editorial-hero{height:auto;min-height:720px;align-items:flex-end;padding:155px 0 64px}.editorial-hero h1{display:block;max-width:1080px;max-height:none;overflow:visible;font-size:clamp(2.8rem,4.45vw,4.85rem);line-height:1;letter-spacing:-.052em;-webkit-line-clamp:unset}.editorial-deck{max-width:900px}.privacy-page .page-hero,.news-index-page .news-index-hero,.cases-page .page-hero{position:relative;min-height:680px;display:flex;align-items:center;padding:145px 0 86px;background-position:center;background-size:cover;background-repeat:no-repeat}.privacy-page .page-hero{background-image:linear-gradient(90deg,rgba(3,14,24,.96),rgba(3,19,31,.74),rgba(3,19,31,.35)),url('/assets/pages/privacy-bg.jpg')}.news-index-page .news-index-hero{background-image:linear-gradient(90deg,rgba(3,14,24,.94),rgba(3,19,31,.7),rgba(3,19,31,.3)),url('/assets/pages/news-bg.jpg')}.cases-page .page-hero{background-image:linear-gradient(90deg,rgba(3,14,24,.95),rgba(3,19,31,.72),rgba(3,19,31,.28)),url('/assets/pages/cases-bg.jpg')}.privacy-page .page-hero::after,.news-index-page .news-index-hero::after,.cases-page .page-hero::after{display:none}.privacy-page .page-hero .container,.news-index-page .news-index-hero .container,.cases-page .page-hero .container{width:min(calc(100% - 40px),var(--container));position:relative;z-index:1}.privacy-page .page-hero :is(h1,.lead,.breadcrumbs *),.news-index-page .news-index-hero :is(h1,.lead,.breadcrumbs *),.cases-page .page-hero :is(h1,.lead,.breadcrumbs *){color:#fff}.button-light{color:#061722!important;border-color:#63c5d5!important;background:#63c5d5!important;box-shadow:0 8px 24px rgba(99,197,213,.18)}.button-light:hover{color:#fff!important;border-color:#247e8e!important;background:#247e8e!important}@media(max-width:820px){.editorial-hero{height:auto;min-height:650px;padding-top:135px}.editorial-hero h1{font-size:clamp(2.7rem,8vw,4.2rem)}}@media(max-width:580px){.editorial-hero{height:auto;min-height:620px;padding:118px 0 52px}.editorial-hero h1{font-size:2.45rem;line-height:1.03}.editorial-article .article-body img.article-image-left,.editorial-article .article-body img.article-image-right{float:none;width:100%!important;margin:28px 0}.privacy-page .page-hero,.news-index-page .news-index-hero,.cases-page .page-hero{min-height:580px;padding:120px 0 65px}}

/* Article rating and SEO sharing */
.client-logos img,.client-logos li:hover img{opacity:1;filter:none}.client-logos li:hover img{opacity:1}

/* Automatic client logo carousel */
.client-marquee{--client-card:190px;min-width:0;overflow:hidden;border:0;border-radius:0;background:transparent;box-shadow:none;mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);outline:0}.client-marquee:focus-visible{box-shadow:0 0 0 3px rgba(99,197,213,.35)}.client-track{display:flex;width:max-content;animation:client-logo-scroll 30s linear infinite;will-change:transform}.client-marquee:hover .client-track,.client-marquee:focus .client-track{animation-play-state:paused}.client-marquee .client-logos{display:flex!important;width:max-content;flex:0 0 auto;grid-template-columns:none!important;margin:0;padding:0;overflow:visible;border:0;border-radius:0;background:transparent;box-shadow:none}.client-marquee .client-logos li,.client-marquee .client-logos li:last-child{display:grid;width:var(--client-card);min-width:var(--client-card);height:118px;min-height:118px;grid-column:auto;padding:18px 20px;place-items:center;border:0;background:transparent}.client-marquee .client-logos img{width:145px;height:64px;max-width:100%;object-fit:contain}.client-marquee .client-logos li:nth-child(1) img{transform:scale(1.18)}.client-marquee .client-logos li:nth-child(2) img{transform:scale(1.32)}.client-marquee .client-logos li:nth-child(3) img{transform:scale(1)}.client-marquee .client-logos li:nth-child(4) img{transform:scale(1.1)}.client-marquee .client-logos li:nth-child(5) img{transform:scale(1.9)}.client-marquee .client-logos li:nth-child(6) img{transform:scale(1.02)}.client-marquee .client-logos li:nth-child(7) img{transform:scale(.86)}@keyframes client-logo-scroll{to{transform:translateX(-50%)}}@media(max-width:820px){.client-marquee{--client-card:170px}}@media(max-width:580px){.client-marquee{--client-card:150px;mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent)}.client-marquee .client-logos li,.client-marquee .client-logos li:last-child{height:104px;min-height:104px;padding:14px 15px}.client-marquee .client-logos img{width:125px;height:56px}.client-track{animation-duration:25s}}@media(prefers-reduced-motion:reduce){.client-track{animation:none}.client-marquee{overflow-x:auto;mask-image:none}.client-marquee .client-logos[aria-hidden="true"]{display:none!important}}
.author-avatar{overflow:hidden}.author-avatar img{display:block;width:100%;height:100%;object-fit:cover;border-radius:inherit}
.article-engagement{display:grid;grid-template-columns:1fr 1fr;gap:1px;margin:70px 0 10px;overflow:hidden;border:1px solid #d3dfdc;border-radius:12px;background:#d3dfdc}.rating-panel,.share-panel{padding:30px;background:#f8faf9}.engagement-kicker{display:block;margin-bottom:8px;color:#56808a;font-size:.58rem;font-weight:850;letter-spacing:.15em}.article-engagement h2{margin:0 0 20px!important;color:#173642!important;font-size:1.15rem!important;line-height:1.25!important}.rating-stars{display:flex;gap:5px}.rating-stars button{display:grid;width:38px;height:38px;padding:0;place-items:center;border:0;border-radius:6px;color:#9cb0b4;background:transparent!important;cursor:pointer;transition:.18s}.rating-stars svg{width:28px;height:28px;fill:transparent!important;stroke:currentColor;stroke-width:1.7;transition:.18s}.rating-stars button:hover,.rating-stars button.preview,.rating-stars button.active{color:#d69b35;background:transparent!important}.rating-stars button.preview svg,.rating-stars button.active svg{fill:transparent!important;stroke:currentColor;transform:scale(1.05)}.rating-stars button:focus-visible,.share-actions :is(a,button):focus-visible{outline:2px solid #26798a;outline-offset:2px}.rating-stars button:disabled{cursor:wait;opacity:.65}.rating-panel>p,.share-panel>p{min-height:18px;margin:13px 0 0!important;color:#71858d!important;font-size:.69rem!important;line-height:1.45!important}.rating-feedback{color:#287966!important}.share-actions{display:flex;flex-wrap:wrap;gap:8px}.share-actions :is(a,button){display:grid;width:42px;height:42px;padding:0;place-items:center;border:1px solid #cdd9d6;border-radius:50%;color:#365965;background:#fff;text-decoration:none;cursor:pointer;transition:.18s}.share-actions :is(a,button):hover{color:#fff;border-color:#1c7181;background:#1c7181;transform:translateY(-2px)}.share-actions svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.share-actions [data-share="facebook"] svg path{fill:currentColor;stroke:none}.share-actions [hidden]{display:none}@media(max-width:760px){.article-engagement{grid-template-columns:1fr}.rating-panel,.share-panel{padding:25px}.rating-stars button{width:36px;height:36px}.share-actions :is(a,button){width:40px;height:40px}}

/* Latest polish: clean logos, article cover as hero, business cases */
.client-marquee .client-logos a,.logo-marquee .partner-logos a{display:grid;width:100%;height:100%;place-items:center;text-decoration:none}
.logo-marquee,.client-marquee{background:transparent!important;box-shadow:none!important}
.logo-marquee .partner-logos li,.client-marquee .client-logos li{background:transparent!important;border-color:transparent!important}
.logo-marquee .partner-logos img,.client-marquee .client-logos img{filter:none!important;mix-blend-mode:normal}
.article-cover-wrap{display:none!important}
.rating-stars button,.rating-stars button:hover,.rating-stars button.preview,.rating-stars button.active{background:transparent!important;box-shadow:none!important}
.rating-stars button.preview svg,.rating-stars button.active svg{fill:transparent!important}
.cases-page .work{background:linear-gradient(180deg,#f3f7f5,#e9efed)}
.cases-page .work-grid{grid-template-columns:1.15fr .85fr .85fr;align-items:stretch}
.cases-page .work-card{position:relative;overflow:hidden;border:1px solid rgba(18,62,74,.12);border-radius:18px;background:#fff;box-shadow:0 22px 55px rgba(10,45,56,.08)}
.cases-page .work-card::after{content:"";position:absolute;inset:auto 24px 24px;height:1px;background:linear-gradient(90deg,#63c5d5,transparent)}
.cases-page .work-visual{min-height:260px;border-radius:0;background-position:center;background-size:cover}
.cases-page .work-content{padding:28px 30px 34px}
.cases-page .work-content .tag{display:inline-flex;margin-bottom:13px;padding:7px 10px;border:1px solid rgba(99,197,213,.38);border-radius:999px;color:#176d7d;background:#eef8f7;font-size:.62rem;font-weight:850;letter-spacing:.08em;text-transform:uppercase}
.cases-page .work-content h2{margin:0 0 12px;color:#0b2531;font-size:clamp(1.55rem,2vw,2.25rem)}
.cases-page .work-content p{color:#5e737b;line-height:1.68}
.cases-page .work-card.work-primary{grid-row:span 2}
.cases-page .work-card.work-primary .work-visual{min-height:420px}
@media(max-width:980px){.cases-page .work-grid{grid-template-columns:1fr}.cases-page .work-card.work-primary{grid-row:auto}.cases-page .work-card.work-primary .work-visual{min-height:300px}}
.client-marquee .client-logos img{filter:brightness(0) saturate(100%) invert(8%) sepia(20%) saturate(1066%) hue-rotate(168deg) brightness(92%) contrast(91%)!important;opacity:1!important}
.newsletter-section{position:relative;overflow:hidden;background:#081722}.newsletter-section::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 18% 20%,rgba(77,227,255,.16),transparent 34%),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px);background-size:auto,72px 72px,72px 72px}.newsletter-panel{position:relative;display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.55fr);gap:44px;align-items:center;padding:56px;border:1px solid rgba(99,197,213,.2);border-radius:24px;background:linear-gradient(135deg,rgba(12,34,47,.96),rgba(9,25,37,.92));box-shadow:0 28px 80px rgba(0,0,0,.22)}.newsletter-panel h2{max-width:760px;margin:0;color:#fff;font-size:clamp(2rem,3.5vw,3.4rem);line-height:1.05;letter-spacing:-.05em}.newsletter-panel p{max-width:680px;color:#a9bdc6}.newsletter-form{display:grid;gap:11px;padding:22px;border:1px solid rgba(255,255,255,.12);border-radius:18px;background:rgba(255,255,255,.06);backdrop-filter:blur(16px)}.newsletter-form label{color:#d8e8ec;font-size:.68rem;font-weight:850;letter-spacing:.06em;text-transform:uppercase}.newsletter-form small{color:#87a2aa;text-transform:none}.newsletter-form input{height:52px;padding:0 15px;border:1px solid rgba(255,255,255,.15);border-radius:11px;color:#fff;background:#101d27;outline:0}.newsletter-form input:focus{border-color:#63c5d5;box-shadow:0 0 0 4px rgba(99,197,213,.12)}.newsletter-form button{height:52px;border-radius:11px;color:#071923;background:#63c5d5;font-weight:900}.newsletter-form [data-newsletter-public-status]{min-height:18px;margin:0;color:#9fc5cd;font-size:.72rem}@media(max-width:860px){.newsletter-panel{grid-template-columns:1fr;padding:32px}.newsletter-form{padding:18px}}

/* Diagnostic conversion section */
.diagnostic-section{position:relative;overflow:hidden;background:#e8efed;color:#10202b}
.diagnostic-panel{display:grid;grid-template-columns:minmax(0,.92fr) minmax(380px,.8fr);gap:46px;align-items:start;padding:48px;border:1px solid rgba(23,72,84,.14);border-radius:28px;background:linear-gradient(135deg,#f9fcfb,#edf5f3);box-shadow:0 28px 80px rgba(9,41,53,.1)}
.diagnostic-copy h2{max-width:720px;margin:0 0 18px;color:#0b1e2a;font-size:clamp(2rem,3.1vw,3.25rem);line-height:1.05;letter-spacing:-.045em}
.diagnostic-copy p:not(.eyebrow){max-width:640px;color:#61747c;line-height:1.75}
.diagnostic-benefits{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}.diagnostic-benefits span{padding:10px 13px;border:1px solid rgba(23,72,84,.16);border-radius:999px;color:#176d7d;background:#fff;font-size:.72rem;font-weight:850;letter-spacing:.06em;text-transform:uppercase}
.diagnostic-form{display:grid;gap:18px;padding:24px;border:1px solid #cddbd8;border-radius:22px;background:#fff;box-shadow:0 20px 55px rgba(10,45,56,.08)}
.diagnostic-contact{display:grid;grid-template-columns:1fr 1fr;gap:12px}.diagnostic-form label{display:grid;gap:7px;color:#526b74;font-size:.68rem;font-weight:850;letter-spacing:.07em;text-transform:uppercase}.diagnostic-form input,.diagnostic-form select{width:100%;height:48px;padding:0 13px;border:1px solid #c7d7d4;border-radius:12px;color:#10202b;background:#f8fbfa;outline:0}.diagnostic-form input:focus,.diagnostic-form select:focus{border-color:#63c5d5;box-shadow:0 0 0 4px rgba(99,197,213,.16)}
.diagnostic-questions{display:grid;gap:12px}.diagnostic-question{display:grid;grid-template-columns:1fr 112px;gap:14px;align-items:center;padding:14px;border:1px solid #d6e3e0;border-radius:16px;background:#f6faf9}.diagnostic-question strong{color:#10202b;font-size:.92rem}.diagnostic-question span{color:#6b7e86;font-size:.76rem;line-height:1.45}.diagnostic-question select{height:42px;background:#fff}
.diagnostic-result{display:grid;gap:8px;padding:16px;border-radius:16px;background:#0d2531;color:#dce8ec}.diagnostic-result strong{color:#63c5d5;font-size:1.9rem}.diagnostic-result b{color:#fff}.diagnostic-result small{color:#a9bdc6;line-height:1.55}
.diagnostic-form button{height:52px;border-radius:13px;color:#071923;background:#63c5d5;font-weight:900}.diagnostic-form [data-diagnostic-status]{min-height:20px;margin:0;color:#176d7d;font-size:.8rem;line-height:1.55}
@media(max-width:900px){.diagnostic-panel{grid-template-columns:1fr;padding:28px}.diagnostic-contact{grid-template-columns:1fr}.diagnostic-question{grid-template-columns:1fr}}

/* Guided diagnostic experience */
.diagnostic-section{background:linear-gradient(180deg,#eef4f2 0%,#f8fbfa 100%)}
.diagnostic-panel{position:relative;grid-template-columns:minmax(0,1fr) minmax(320px,.62fr);align-items:center;overflow:hidden;padding:0;border:1px solid rgba(16,29,39,.1);border-radius:30px;background:#fff;box-shadow:0 30px 90px rgba(16,29,39,.1)}
.diagnostic-panel::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 14% 18%,rgba(99,217,238,.18),transparent 32%),linear-gradient(90deg,rgba(16,29,39,.035) 1px,transparent 1px);background-size:auto,74px 74px;pointer-events:none}
.diagnostic-copy{position:relative;z-index:1;padding:54px}
.diagnostic-copy h2{max-width:760px;font-size:clamp(2.1rem,4vw,4.25rem);line-height:.98;letter-spacing:-.065em}
.diagnostic-copy p:not(.eyebrow){max-width:620px;color:#526973;font-size:1rem;line-height:1.75}
.diagnostic-benefits span{border-color:#d8e5e8;color:#18313d;background:#f7fafb}
.diagnostic-open{display:inline-flex;align-items:center;gap:12px;margin-top:28px;padding:16px 22px;border:0;border-radius:15px;color:#fff;background:#101d27;font-weight:950;box-shadow:0 20px 44px rgba(16,29,39,.2);transition:transform .18s,box-shadow .18s,background .18s}
.diagnostic-open:hover{background:#172b39;box-shadow:0 24px 54px rgba(16,29,39,.28);transform:translateY(-2px)}
.diagnostic-data-note{display:block;max-width:560px;margin-top:16px;color:#7a8e96;font-size:.76rem;line-height:1.6}
.diagnostic-preview{position:relative;z-index:1;display:grid;gap:14px;padding:42px 42px 42px 0}
.diagnostic-preview-card{padding:20px;border:1px solid #dbe8e8;border-radius:20px;background:#f8fbfb;box-shadow:0 14px 36px rgba(16,29,39,.06);transform:translateX(0)}
.diagnostic-preview-card.active{color:#fff;border-color:#101d27;background:linear-gradient(135deg,#101d27,#183847);box-shadow:0 20px 50px rgba(16,29,39,.18)}
.diagnostic-preview-card:nth-child(2){transform:translateX(22px)}.diagnostic-preview-card:nth-child(3){transform:translateX(44px)}
.diagnostic-preview-card span{display:inline-grid;width:34px;height:34px;margin-bottom:18px;place-items:center;border-radius:11px;color:#071923;background:#63d9ee;font-size:.7rem;font-weight:950}
.diagnostic-preview-card strong{display:block;color:inherit;font-size:1.05rem}.diagnostic-preview-card small{display:block;margin-top:8px;color:inherit;opacity:.72;line-height:1.55}
.diagnostic-modal{width:min(980px,calc(100% - 32px));max-height:min(90vh,860px);padding:0;overflow:hidden;border:0;border-radius:26px;background:transparent;box-shadow:0 38px 120px rgba(2,13,20,.38)}
.diagnostic-modal::backdrop{background:rgba(4,14,21,.68);backdrop-filter:blur(6px)}
.diagnostic-modal-card{position:relative;display:grid;max-height:min(90vh,860px);overflow:auto;border:1px solid #d8e5e5;border-radius:26px;background:#fff}
.diagnostic-modal-close{position:absolute;top:18px;right:18px;z-index:2;display:grid;width:40px;height:40px;place-items:center;border:1px solid #dce8e8;border-radius:12px;color:#49616b;background:#f7fafb;font-size:1.35rem;line-height:1}
.diagnostic-modal-heading{padding:38px 42px 24px;border-bottom:1px solid #e2ecec;background:linear-gradient(135deg,#f9fcfc,#eef6f5)}
.diagnostic-modal-heading h3{max-width:760px;margin:8px 0 12px;color:#10202b;font-size:clamp(1.55rem,3vw,2.55rem);line-height:1.05;letter-spacing:-.045em}
.diagnostic-modal-heading p:not(.eyebrow){max-width:760px;margin:0;color:#5f747d;line-height:1.7}
.diagnostic-modal .diagnostic-form{padding:28px 42px 38px;border:0;border-radius:0;box-shadow:none}
.diagnostic-modal .diagnostic-contact{padding-bottom:8px;border-bottom:1px solid #e5eeee}
.diagnostic-modal .diagnostic-question{grid-template-columns:minmax(0,1fr) minmax(260px,.52fr);padding:17px;border-color:#dce8e8;background:#fbfdfd}
.diagnostic-modal .diagnostic-question strong{font-size:.96rem}.diagnostic-modal .diagnostic-question select{height:46px;border-radius:12px}
.diagnostic-modal .diagnostic-form button[type="submit"]{height:54px;color:#fff;background:linear-gradient(135deg,#101d27,#1a3948);box-shadow:0 18px 40px rgba(16,29,39,.18)}
.diagnostic-storage-note{display:block;color:#7c8f97;font-size:.72rem;line-height:1.6}.diagnostic-storage-note strong{color:#10202b}
body:has(.diagnostic-modal[open]){overflow:hidden}
@media(max-width:900px){.diagnostic-panel{grid-template-columns:1fr}.diagnostic-copy{padding:34px}.diagnostic-preview{padding:0 28px 34px}.diagnostic-preview-card,.diagnostic-preview-card:nth-child(2),.diagnostic-preview-card:nth-child(3){transform:none}.diagnostic-modal .diagnostic-question{grid-template-columns:1fr}.diagnostic-modal-heading,.diagnostic-modal .diagnostic-form{padding-inline:24px}}

/* Diagnostic modal refinement */
.diagnostic-copy h2{
  max-width:640px;
  font-size:clamp(2.15rem,3.15vw,3.35rem);
  line-height:1.03;
  letter-spacing:-.055em;
}
.diagnostic-copy p:not(.eyebrow){max-width:590px}
.diagnostic-data-note{display:none!important}
.diagnostic-modal{
  width:min(900px,calc(100% - 34px));
  max-height:min(88vh,820px);
}
.diagnostic-modal-card{
  max-height:min(88vh,820px);
  background:#f8fbfa;
}
.diagnostic-modal-heading{
  padding:30px 36px 22px;
  background:linear-gradient(135deg,#ffffff,#eef6f5);
}
.diagnostic-modal-heading h3{
  max-width:620px;
  margin:6px 0 10px;
  font-size:clamp(1.45rem,2.15vw,2rem);
  line-height:1.08;
  letter-spacing:-.035em;
}
.diagnostic-modal-heading p:not(.eyebrow){
  max-width:720px;
  color:#5b7079;
  font-size:.92rem;
  line-height:1.65;
}
.diagnostic-modal .diagnostic-form{
  display:grid;
  gap:18px;
  padding:24px 36px 30px;
  background:#f8fbfa;
}
.diagnostic-modal .diagnostic-progress{
  display:flex;
  align-items:center;
  gap:8px;
  width:100%;
  min-height:0;
  padding:0;
  border:0;
  border-radius:0;
  color:#10202b;
  background:transparent;
  box-shadow:none;
}
.diagnostic-modal .diagnostic-progress-icon{
  display:none;
}
.diagnostic-modal .diagnostic-progress strong{
  color:#10202b;
  font-size:.84rem;
  font-weight:900;
  line-height:1.2;
}
.diagnostic-modal .diagnostic-progress small{
  margin-left:4px;
  color:#5d737c;
  font-size:.78rem;
  font-weight:700;
}
.diagnostic-modal .diagnostic-progress-track{
  display:none;
}
.diagnostic-modal .diagnostic-contact{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  padding:18px;
  border:1px solid #dbe8e5;
  border-radius:18px;
  background:#fff;
}
.diagnostic-modal .diagnostic-form label{
  gap:8px;
  margin:0;
  color:#5b737d;
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.08em;
}
.diagnostic-modal .diagnostic-form input,
.diagnostic-modal .diagnostic-form select{
  height:46px;
  margin:0;
  border:1px solid #cbdcda;
  border-radius:12px;
  background:#fbfdfc;
  color:#10202b;
  font-size:.84rem;
  font-weight:650;
}
.diagnostic-modal .diagnostic-form input:focus,
.diagnostic-modal .diagnostic-form select:focus{
  border-color:#63c5d5;
  box-shadow:0 0 0 4px rgba(99,197,213,.15);
}
.diagnostic-modal .diagnostic-questions{
  display:grid;
  gap:10px;
}
.diagnostic-modal .diagnostic-question{
  display:grid;
  grid-template-columns:42px minmax(0,1fr) minmax(150px,190px);
  gap:14px;
  align-items:center;
  padding:15px 16px;
  border:1px solid #dbe8e5;
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(16,29,39,.035);
}
.diagnostic-question-index{
  display:grid;
  width:34px;
  height:34px;
  place-items:center;
  border:1px solid #63c5d5;
  border-radius:11px;
  color:#176d7d;
  background:transparent;
  font-size:.7rem;
  font-weight:950;
}
.diagnostic-question-copy{
  display:grid;
  gap:4px;
  min-width:0;
}
.diagnostic-modal .diagnostic-question strong{
  color:#10202b;
  font-size:.9rem;
  line-height:1.2;
  letter-spacing:-.02em;
}
.diagnostic-modal .diagnostic-question .diagnostic-question-copy>span{
  color:#667d86;
  font-size:.76rem;
  font-weight:650;
  line-height:1.45;
  letter-spacing:0;
  text-transform:none;
}
.diagnostic-modal .diagnostic-question select{
  width:100%;
  height:42px;
  padding:0 12px;
  border-radius:12px;
  background:#f8fbfa;
  font-size:.78rem;
  font-weight:850;
}
.diagnostic-modal .diagnostic-form button[type="submit"]{
  height:52px;
  border:0;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(135deg,#101d27,#173848);
  box-shadow:0 18px 40px rgba(16,29,39,.16);
}
.diagnostic-modal .diagnostic-prev,
.diagnostic-modal .diagnostic-next{
  border:0!important;
  outline:0;
  box-shadow:none;
}
.diagnostic-modal .diagnostic-prev:hover,
.diagnostic-modal .diagnostic-next:hover{
  border:0!important;
  box-shadow:none;
}
.diagnostic-storage-note{
  display:none!important;
}
@media(max-width:760px){
  .diagnostic-copy h2{font-size:clamp(2rem,10vw,2.65rem)}
  .diagnostic-modal .diagnostic-contact,
  .diagnostic-modal .diagnostic-question{grid-template-columns:1fr}
  .diagnostic-question-index{width:max-content;padding:0 11px}
}

/* Business projects page */
.cases-executive{color:#10202b;background:linear-gradient(180deg,#f3f7f5 0%,#e8efed 100%)}
.cases-executive .section-heading{display:grid;grid-template-columns:minmax(0,.95fr) minmax(280px,.55fr);gap:40px;align-items:end;margin-bottom:32px}
.cases-executive .section-heading h2{max-width:760px;margin:0;color:#0b1e2a;font-size:clamp(2.2rem,4vw,4.4rem);line-height:1;letter-spacing:-.06em}
.cases-executive .section-heading>p:last-child{max-width:470px;margin:0;color:#61747c;line-height:1.8}
.cases-metrics{display:grid;grid-template-columns:repeat(3,1fr);margin:0 0 28px;border:1px solid #cddbd8;border-radius:18px;background:rgba(255,255,255,.58);backdrop-filter:blur(10px)}
.cases-metrics article{display:grid;gap:5px;padding:24px 28px;border-right:1px solid #cddbd8}.cases-metrics article:last-child{border-right:0}.cases-metrics strong{color:#176d7d;font-size:2rem;line-height:1}.cases-metrics span{color:#61747c;font-size:.68rem;font-weight:850;letter-spacing:.08em;text-transform:uppercase}
.case-board{display:grid;grid-template-columns:1.18fr .82fr;gap:18px}.case-board article{overflow:hidden;border:1px solid rgba(23,72,84,.14);border-radius:22px;background:#fff;box-shadow:0 24px 70px rgba(9,41,53,.1);transition:transform .25s,border-color .25s,box-shadow .25s}.case-board article:hover{border-color:rgba(99,197,213,.55);box-shadow:0 30px 80px rgba(9,41,53,.14);transform:translateY(-3px)}
.case-feature{grid-row:span 2;display:grid;grid-template-rows:minmax(330px,.95fr) auto}.case-tile{display:grid;grid-template-columns:.92fr 1fr;min-height:300px}.case-board .case-tile:nth-of-type(4){grid-column:1/-1;grid-template-columns:.52fr 1fr;min-height:260px}.case-photo{min-height:260px;background-size:cover;background-position:center}.case-feature .case-photo{min-height:390px}.case-copy{display:grid;align-content:start;gap:13px;padding:30px}.case-copy span{color:#1c8598;font-size:.62rem;font-weight:900;letter-spacing:.11em;text-transform:uppercase}.case-copy h2{margin:0;color:#0d2230;font-size:clamp(1.7rem,2.7vw,2.75rem);line-height:1.02;letter-spacing:-.045em}.case-copy p{margin:0;color:#61747c;line-height:1.75}.case-copy ul{display:grid;gap:8px;margin:10px 0 0;padding:0;list-style:none}.case-copy li{position:relative;padding-left:18px;color:#2f4852;font-size:.84rem}.case-copy li::before{content:"";position:absolute;left:0;top:.68em;width:7px;height:7px;border-radius:50%;background:#63c5d5}.case-copy b{align-self:end;margin-top:14px;color:#176d7d;font-size:.68rem;letter-spacing:.08em;text-transform:uppercase}
.cases-cta{background:#e8efed}.cases-cta .cta-panel{position:relative;overflow:hidden;border:1px solid rgba(99,197,213,.22);background:linear-gradient(135deg,#071923,#0f3947);box-shadow:0 28px 80px rgba(6,26,36,.18)}.cases-cta .cta-panel::after{content:"";position:absolute;right:-100px;top:-130px;width:360px;height:360px;border:1px solid rgba(99,197,213,.18);border-radius:50%}.cases-cta .cta-panel>span{position:relative;color:#77d2de;font-size:.66rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase}.cases-cta .cta-panel h2,.cases-cta .cta-panel p,.cases-cta .cta-actions{position:relative}
@media(max-width:980px){.cases-executive .section-heading,.case-board,.case-tile{grid-template-columns:1fr}.case-feature{grid-row:auto}.cases-metrics{grid-template-columns:1fr}.cases-metrics article{border-right:0;border-bottom:1px solid #cddbd8}.cases-metrics article:last-child{border-bottom:0}.case-feature .case-photo,.case-photo{min-height:280px}}

/* Harmonized typography scale */
:root{--title-tight:-.042em;--title-soft:-.032em}
h1,h2,h3{line-height:1.08;letter-spacing:var(--title-soft)}
.hero-copy h1,.home-v2 .hero-copy h1{max-width:720px;font-size:clamp(2.85rem,4.45vw,4.55rem);line-height:1.02;letter-spacing:var(--title-tight)}
.hero-lead,.home-v2 .hero-lead{max-width:660px;font-size:clamp(1rem,1.15vw,1.12rem)}
.section{padding:104px 0}
.section-heading{grid-template-columns:minmax(0,.95fr) minmax(280px,410px);gap:56px;margin-bottom:46px}
.section-heading h2,.model-copy h2,.clients-copy h2,.cta-panel h2,.home-v2 .section-heading h2,.home-v2 .model-copy h2,.home-v2 .clients-copy h2,.home-v2 .cta-panel h2{font-size:clamp(2.05rem,3.05vw,3.35rem);line-height:1.06;letter-spacing:var(--title-tight)}
.section-heading>p{font-size:.96rem;line-height:1.72}
.home-v2 .solutions .section-heading{align-items:center;margin-bottom:34px}
.home-v2 .solutions .section-heading h2{max-width:760px}
.clients-copy h2{max-width:540px}
.newsletter-panel h2{font-size:clamp(1.85rem,2.8vw,2.85rem);line-height:1.08;letter-spacing:var(--title-tight)}
.page-hero h1,.portfolio-page .portfolio-hero h1,.privacy-page .page-hero h1,.news-index-page .news-index-hero h1,.cases-page .page-hero h1,.contact-copy h1{max-width:820px;font-size:clamp(2.55rem,4.2vw,4.35rem);line-height:1.04;letter-spacing:var(--title-tight)}
.page-hero .lead{max-width:680px;font-size:clamp(1rem,1.22vw,1.1rem)}
.content-intro h2,.wide-copy h2{font-size:clamp(1.95rem,2.8vw,3rem);line-height:1.08;letter-spacing:var(--title-tight)}
.featured-news-content h2{font-size:clamp(2rem,3.55vw,3.65rem);line-height:1.04}
.news-card h3{font-size:1.22rem;line-height:1.25}
.editorial-hero{min-height:650px;padding:138px 0 58px}
.editorial-hero h1{max-width:980px;font-size:clamp(2.45rem,3.75vw,4.15rem);line-height:1.04;letter-spacing:var(--title-tight)}
.editorial-deck{max-width:820px;font-size:1.06rem}
.article-cta h2{font-size:clamp(2rem,3vw,3.25rem);line-height:1.08}
.cases-executive .section-heading h2{font-size:clamp(2rem,3.05vw,3.35rem);line-height:1.06;letter-spacing:var(--title-tight)}
.case-copy h2{font-size:clamp(1.55rem,2.25vw,2.25rem)}
.solution-page .page-hero{min-height:650px}
@media(max-width:1020px){.hero-copy h1,.home-v2 .hero-copy h1{font-size:clamp(2.65rem,7vw,4rem)}.section-heading{grid-template-columns:1fr;gap:18px}.section{padding:86px 0}.page-hero h1,.contact-copy h1{font-size:clamp(2.45rem,7vw,3.85rem)}}
@media(max-width:580px){.hero-copy h1,.home-v2 .hero-copy h1{font-size:clamp(2.25rem,11vw,3.05rem);letter-spacing:-.035em}.section{padding:72px 0}.section-heading h2,.model-copy h2,.clients-copy h2,.cta-panel h2,.home-v2 .section-heading h2,.home-v2 .model-copy h2,.home-v2 .clients-copy h2,.home-v2 .cta-panel h2{font-size:clamp(1.85rem,9vw,2.55rem);line-height:1.08}.page-hero h1,.portfolio-page .portfolio-hero h1,.privacy-page .page-hero h1,.news-index-page .news-index-hero h1,.cases-page .page-hero h1,.contact-copy h1{font-size:clamp(2.05rem,10vw,2.85rem);line-height:1.07}.editorial-hero h1{font-size:clamp(2rem,9.5vw,2.75rem);line-height:1.08}.featured-news-content h2{font-size:2.15rem}.newsletter-panel h2{font-size:2rem}}

/* News UX refinements - 2026-06-30 */
.editorial-hero{min-height:620px!important;padding:138px 0 58px!important;}
.editorial-hero .container{max-width:1120px!important;}
.editorial-hero h1{max-width:900px!important;margin:22px 0 22px!important;font-size:clamp(2.35rem,3.75vw,4.15rem)!important;line-height:1.04!important;letter-spacing:-.045em!important;text-wrap:balance;}
.editorial-deck{max-width:780px!important;font-size:clamp(1rem,1.2vw,1.13rem)!important;line-height:1.7!important;}
.editorial-byline{max-width:940px!important;}
.news-hero-featured{min-height:0!important;padding:132px 0 70px!important;background:#edf1ef!important;color:#10202b!important;}
.news-hero-featured::after{display:none!important;}
.news-hero-featured .container{display:grid;gap:28px;}
.news-hero-featured .breadcrumbs,.news-hero-featured .breadcrumbs *{color:#526b74!important;}
.news-hero-intro{max-width:780px;}
.news-hero-intro>span{display:block;margin-bottom:12px;color:#247e8e;font-size:.68rem;font-weight:850;letter-spacing:.13em;text-transform:uppercase;}
.news-hero-intro h1{max-width:740px;margin:0 0 14px;font-size:clamp(2.45rem,4.2vw,4.7rem);line-height:1.02;letter-spacing:-.055em;color:#10202b;}
.news-hero-intro h1 em{color:#247e8e;font-style:normal;}
.news-hero-intro .lead{max-width:680px;margin:0;color:#5d737c;font-size:1.05rem;line-height:1.7;}
.news-hero-carousel .featured-news{height:560px;min-height:560px;border-radius:18px;box-shadow:0 28px 75px rgba(16,45,56,.18);}
.news-hero-carousel .featured-news-content{padding:70px 64px 138px;}
.news-hero-carousel .featured-news-content h2{max-width:760px;font-size:clamp(2.1rem,3.7vw,4rem);line-height:1.04;letter-spacing:-.045em;}
.news-hero-carousel .featured-news-content p{max-width:650px;}
.hero-carousel-controls{justify-content:flex-end;margin-top:0;}
.hero-carousel-controls .carousel-control{background:#fff;box-shadow:0 10px 28px rgba(16,45,56,.09);}
@media(max-width:820px){.editorial-hero{min-height:560px!important;padding:124px 0 52px!important}.editorial-hero h1{font-size:clamp(2.15rem,7vw,3.45rem)!important}.news-hero-carousel .featured-news{height:580px;min-height:580px}.news-hero-carousel .featured-news-content{padding:58px 34px 150px}.news-hero-intro h1{font-size:clamp(2.25rem,8vw,3.6rem)}}
@media(max-width:580px){.editorial-hero{min-height:540px!important;padding:112px 0 46px!important}.editorial-hero h1{font-size:clamp(1.95rem,9vw,2.65rem)!important;line-height:1.08!important}.news-hero-featured{padding:112px 0 52px!important}.news-hero-carousel .featured-news{height:620px;min-height:620px;border-radius:14px}.news-hero-carousel .featured-news-content{padding:45px 24px 168px}.news-hero-carousel .featured-news-content h2{font-size:2.1rem}.news-hero-intro .lead{font-size:.98rem}}

/* News hero correction - carousel inside the original hero, not replacing it */
.news-index-page .news-hero-featured{
  position:relative!important;
  min-height:880px!important;
  display:flex!important;
  align-items:flex-start!important;
  padding:145px 0 86px!important;
  overflow:hidden!important;
  color:#fff!important;
  background-image:linear-gradient(90deg,rgba(3,14,24,.96),rgba(3,19,31,.78),rgba(3,19,31,.36)),url('/assets/pages/news-bg.jpg')!important;
  background-position:center!important;
  background-size:cover!important;
  background-repeat:no-repeat!important;
  border-bottom:1px solid rgba(255,255,255,.08)!important;
}
.news-index-page .news-hero-featured::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:radial-gradient(circle at 78% 18%,rgba(99,197,213,.16),transparent 32%),linear-gradient(180deg,rgba(3,14,24,.08),rgba(3,14,24,.72));
  pointer-events:none;
}
.news-index-page .news-hero-featured::after{display:none!important;}
.news-index-page .news-hero-featured .container{
  position:relative!important;
  z-index:1!important;
  width:min(calc(100% - 40px),var(--container))!important;
  display:grid!important;
  gap:34px!important;
}
.news-index-page .news-hero-featured .breadcrumbs,
.news-index-page .news-hero-featured .breadcrumbs *{color:rgba(226,241,245,.78)!important;}
.news-index-page .news-hero-intro{max-width:820px!important;}
.news-index-page .news-hero-intro>span{color:#75d8e7!important;}
.news-index-page .news-hero-intro h1{
  max-width:780px!important;
  color:#fff!important;
  font-size:clamp(2.65rem,4.35vw,4.9rem)!important;
  line-height:1.02!important;
  letter-spacing:-.055em!important;
}
.news-index-page .news-hero-intro h1 em{color:#63c5d5!important;}
.news-index-page .news-hero-intro .lead{
  max-width:700px!important;
  color:#c0d0d6!important;
}
.news-index-page .news-hero-carousel{
  width:100%!important;
  margin-top:10px!important;
}
.news-index-page .news-hero-carousel .featured-news{
  height:520px!important;
  min-height:520px!important;
  border:1px solid rgba(255,255,255,.11)!important;
  border-radius:18px!important;
  background:#06141d!important;
  box-shadow:0 30px 85px rgba(0,0,0,.28)!important;
}
.news-index-page .news-hero-carousel .featured-news::after{
  background:linear-gradient(90deg,rgba(3,13,21,.94),rgba(3,13,21,.64),rgba(3,13,21,.25))!important;
}
.news-index-page .news-hero-carousel .featured-news-content{
  padding:62px 64px 132px!important;
}
.news-index-page .news-hero-carousel .featured-news-content h2{
  max-width:760px!important;
  color:#fff!important;
  font-size:clamp(2rem,3.25vw,3.65rem)!important;
  line-height:1.05!important;
  letter-spacing:-.045em!important;
}
.news-index-page .news-hero-carousel .featured-news-content p{color:#d6e2e5!important;}
.news-index-page .hero-carousel-controls{
  position:relative!important;
  z-index:2!important;
  margin-top:-18px!important;
}
.news-index-page .hero-carousel-controls .carousel-control{
  color:#dff7fb!important;
  border-color:rgba(255,255,255,.22)!important;
  background:rgba(7,21,31,.72)!important;
  backdrop-filter:blur(10px);
  box-shadow:0 14px 36px rgba(0,0,0,.22)!important;
}
.news-index-page .hero-carousel-controls .carousel-control:hover{
  color:#061722!important;
  border-color:#63c5d5!important;
  background:#63c5d5!important;
}
@media(max-width:820px){
  .news-index-page .news-hero-featured{min-height:860px!important;padding:128px 0 72px!important;}
  .news-index-page .news-hero-carousel .featured-news{height:560px!important;min-height:560px!important;}
  .news-index-page .news-hero-carousel .featured-news-content{padding:50px 34px 150px!important;}
}
@media(max-width:580px){
  .news-index-page .news-hero-featured{min-height:880px!important;padding:112px 0 58px!important;}
  .news-index-page .news-hero-intro h1{font-size:clamp(2.1rem,10vw,2.85rem)!important;}
  .news-index-page .news-hero-carousel .featured-news{height:610px!important;min-height:610px!important;border-radius:14px!important;}
  .news-index-page .news-hero-carousel .featured-news-content{padding:42px 24px 170px!important;}
  .news-index-page .news-hero-carousel .featured-news-content h2{font-size:2.05rem!important;}
}

/* News index final hero carousel: the hero itself is the active article */
.news-index-page .news-hero-featured{
  position:relative!important;
  min-height:760px!important;
  display:flex!important;
  align-items:flex-end!important;
  padding:135px 0 54px!important;
  overflow:hidden!important;
  color:#fff!important;
  background-color:#06131d!important;
  background-image:var(--news-hero-bg,linear-gradient(90deg,rgba(3,14,24,.96),rgba(3,19,31,.78),rgba(3,19,31,.36)),url('/assets/pages/news-bg.jpg'))!important;
  background-position:center!important;
  background-size:cover!important;
  background-repeat:no-repeat!important;
  border-bottom:1px solid rgba(255,255,255,.08)!important;
  transition:background-image .45s ease, background-position .45s ease!important;
}
.news-index-page .news-hero-featured::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(circle at 78% 18%,rgba(99,197,213,.18),transparent 31%),
    linear-gradient(90deg,rgba(3,14,24,.84),rgba(3,19,31,.58) 56%,rgba(3,19,31,.2)),
    linear-gradient(180deg,rgba(3,14,24,.05),rgba(3,14,24,.76));
  pointer-events:none;
}
.news-index-page .news-hero-featured::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  z-index:0;
  height:42%;
  background:linear-gradient(180deg,transparent,rgba(3,14,24,.86));
  display:block!important;
  pointer-events:none;
}
.news-index-page .news-hero-featured .container{
  position:relative!important;
  z-index:1!important;
  width:min(calc(100% - 40px),var(--container))!important;
  display:grid!important;
  gap:26px!important;
}
.news-index-page .news-hero-featured .breadcrumbs,
.news-index-page .news-hero-featured .breadcrumbs *{color:rgba(226,241,245,.78)!important;}
.news-index-page .news-hero-intro{
  max-width:870px!important;
  min-height:360px!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:flex-end!important;
}
.news-index-page .news-hero-intro>span{
  display:inline-flex!important;
  width:max-content!important;
  max-width:100%!important;
  margin-bottom:18px!important;
  padding:8px 10px!important;
  color:#061722!important;
  background:#75d8e7!important;
  font-size:.66rem!important;
  font-weight:900!important;
  letter-spacing:.11em!important;
  text-transform:uppercase!important;
}
.news-index-page .news-hero-intro h1{
  max-width:850px!important;
  margin:0 0 18px!important;
  color:#fff!important;
  font-size:clamp(2.45rem,4.25vw,4.75rem)!important;
  line-height:1.02!important;
  letter-spacing:-.055em!important;
  text-wrap:balance!important;
}
.news-index-page .news-hero-intro .lead{
  max-width:720px!important;
  margin:0!important;
  color:#d2dde1!important;
  font-size:clamp(.98rem,1.25vw,1.14rem)!important;
  line-height:1.68!important;
}
.news-hero-meta{
  display:flex!important;
  flex-wrap:wrap!important;
  align-items:center!important;
  gap:18px!important;
  margin-top:24px!important;
  color:#b6c8ce!important;
  font-size:.82rem!important;
  font-weight:800!important;
}
.news-hero-meta a{
  color:#fff!important;
  border-bottom:1px solid rgba(117,216,231,.55)!important;
  padding-bottom:4px!important;
}
.news-hero-meta a:hover{color:#75d8e7!important;}
.news-hero-footer{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  gap:18px!important;
  align-items:end!important;
  margin-top:18px!important;
}
.news-hero-thumbs{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:12px!important;
  align-items:stretch!important;
}
.news-hero-thumbs button{
  min-width:0!important;
  display:flex!important;
  align-items:center!important;
  gap:12px!important;
  padding:13px!important;
  color:#eaf8fb!important;
  text-align:left!important;
  border:1px solid rgba(255,255,255,.13)!important;
  border-top:2px solid rgba(255,255,255,.18)!important;
  border-radius:16px!important;
  background:rgba(7,21,31,.62)!important;
  box-shadow:0 18px 38px rgba(0,0,0,.18)!important;
  backdrop-filter:blur(13px)!important;
  cursor:pointer!important;
  transition:transform .2s ease,border-color .2s ease,background .2s ease!important;
}
.news-hero-thumbs button:hover,
.news-hero-thumbs button.active{
  transform:translateY(-2px)!important;
  border-color:rgba(117,216,231,.78)!important;
  border-top-color:#75d8e7!important;
  background:rgba(12,52,67,.72)!important;
}
.news-hero-thumbs img{
  flex:0 0 54px!important;
  width:54px!important;
  height:54px!important;
  border-radius:999px!important;
  object-fit:cover!important;
  border:1px solid rgba(255,255,255,.2)!important;
}
.news-hero-thumbs span{
  min-width:0!important;
  display:-webkit-box!important;
  overflow:hidden!important;
  color:inherit!important;
  font-size:.82rem!important;
  font-weight:900!important;
  line-height:1.25!important;
  -webkit-box-orient:vertical!important;
  -webkit-line-clamp:2!important;
}
.news-index-page .hero-carousel-controls{
  display:flex!important;
  justify-content:flex-end!important;
  gap:10px!important;
  margin:0!important;
}
.news-index-page .hero-carousel-controls .carousel-control{
  width:48px!important;
  height:48px!important;
  color:#eaf8fb!important;
  border:1px solid rgba(255,255,255,.25)!important;
  background:rgba(7,21,31,.66)!important;
  box-shadow:0 18px 36px rgba(0,0,0,.18)!important;
  backdrop-filter:blur(12px)!important;
}
.news-index-page .hero-carousel-controls .carousel-control:hover{
  color:#061722!important;
  border-color:#75d8e7!important;
  background:#75d8e7!important;
}
@media(max-width:900px){
  .news-index-page .news-hero-featured{min-height:760px!important;padding:126px 0 44px!important;}
  .news-hero-footer{grid-template-columns:1fr!important;}
  .news-hero-thumbs{grid-template-columns:repeat(3,minmax(220px,1fr))!important;overflow-x:auto!important;padding-bottom:6px!important;scroll-snap-type:x proximity!important;}
  .news-hero-thumbs button{scroll-snap-align:start!important;}
  .news-index-page .hero-carousel-controls{justify-content:flex-start!important;}
}
@media(max-width:580px){
  .news-index-page .news-hero-featured{min-height:720px!important;padding:112px 0 36px!important;}
  .news-index-page .news-hero-intro{min-height:330px!important;}
  .news-index-page .news-hero-intro h1{font-size:clamp(2rem,10vw,2.7rem)!important;line-height:1.06!important;}
  .news-index-page .news-hero-intro .lead{font-size:.95rem!important;}
  .news-hero-thumbs{grid-template-columns:repeat(3,240px)!important;}
}

/* News hero title standardization */
.news-index-page .news-hero-intro h1{
  min-height:4.16em!important;
  max-height:4.16em!important;
  display:-webkit-box!important;
  overflow:hidden!important;
  font-size:clamp(2.55rem,3.85vw,4.1rem)!important;
  line-height:1.04!important;
  letter-spacing:-.048em!important;
  -webkit-box-orient:vertical!important;
  -webkit-line-clamp:4!important;
}
@media(max-width:900px){
  .news-index-page .news-hero-intro h1{
    min-height:4.32em!important;
    max-height:4.32em!important;
    font-size:clamp(2.25rem,7vw,3.2rem)!important;
    line-height:1.08!important;
  }
}
@media(max-width:580px){
  .news-index-page .news-hero-intro h1{
    min-height:4.4em!important;
    max-height:4.4em!important;
    font-size:clamp(1.92rem,8.8vw,2.5rem)!important;
    line-height:1.1!important;
  }
}

/* News hero editorial composition refinement */
.news-index-page .news-hero-featured{
  min-height:780px!important;
  padding:126px 0 48px!important;
  background-position:center 42%!important;
}
.news-index-page .news-hero-featured .container{
  min-height:606px!important;
  display:grid!important;
  grid-template-rows:auto minmax(0,1fr) auto!important;
  gap:22px!important;
}
.news-index-page .news-hero-featured .breadcrumbs{
  margin-bottom:0!important;
}
.news-index-page .news-hero-intro{
  align-self:center!important;
  max-width:min(880px,72vw)!important;
  min-height:auto!important;
  padding:18px 0 10px!important;
  justify-content:center!important;
}
.news-index-page .news-hero-intro>span{
  margin-bottom:16px!important;
  box-shadow:0 12px 32px rgba(0,0,0,.18)!important;
}
.news-index-page .news-hero-intro h1{
  max-width:860px!important;
  min-height:auto!important;
  max-height:none!important;
  margin:0 0 20px!important;
  font-size:clamp(2.45rem,3.65vw,3.95rem)!important;
  line-height:1.055!important;
  letter-spacing:-.043em!important;
  text-wrap:balance!important;
}
.news-index-page .news-hero-intro .lead{
  max-width:680px!important;
  color:rgba(226,239,243,.86)!important;
  font-size:clamp(1rem,1.08vw,1.12rem)!important;
  line-height:1.72!important;
}
.news-hero-meta{
  margin-top:22px!important;
}

/* Campaign landing pages and conversion tools */
.campaign-page{background:#07131d;color:#e7f5f8}
.campaign-builder-section{padding:clamp(48px,7vw,96px) 0;background:var(--campaign-bg,#f3f8f8);color:var(--campaign-text,#101d27)}
.campaign-builder-block{background:var(--builder-block-bg,#fff)}
.campaign-builder-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:18px;align-items:stretch}.campaign-builder-block{grid-column:span 4;display:flex;flex-direction:column;justify-content:space-between;gap:14px;min-height:210px;padding:28px;border-radius:var(--campaign-radius,26px);background:#fff;color:var(--campaign-text,#101d27);box-shadow:0 18px 55px rgba(16,29,39,.09)}.campaign-builder-block h3{margin:0;font-size:clamp(1.15rem,2vw,1.8rem);line-height:1.05}.campaign-builder-block p:not(.eyebrow){margin:0;color:#55717b;line-height:1.65}.campaign-builder-block .eyebrow{margin:0;color:var(--campaign-accent,#63c5d5)}.campaign-builder-block ul{margin:0;padding-left:18px;color:#55717b;line-height:1.8}.campaign-builder-benefits{grid-column:span 5}.campaign-builder-cta{grid-column:span 7;min-height:170px;flex-direction:row;align-items:flex-end;background:linear-gradient(135deg,#102732,#163c4a);color:#fff}.campaign-builder-cta p:not(.eyebrow){color:#bdd3d6}.campaign-builder-cta .button{flex:none}.campaign-builder-image{grid-column:span 7;padding:0;overflow:hidden}.campaign-builder-image img{width:100%;height:100%;min-height:220px;object-fit:cover}.campaign-builder-image div{padding:0 28px 28px}.campaign-builder-metrics{grid-column:span 7}.campaign-builder-metrics>div{display:flex;gap:12px;flex-wrap:wrap}.campaign-builder-metrics strong{padding:12px 16px;border-radius:10px;background:#e8f7f7;color:#0f7180;font-size:1.2rem}.campaign-builder-text{grid-column:span 5}.campaign-builder-block .button{background:var(--campaign-accent,#63c5d5);color:#071923;border:0}.campaign-builder-block .button:hover{filter:brightness(1.05);transform:translateY(-2px)}
@media(max-width:800px){.campaign-builder-block,.campaign-builder-benefits,.campaign-builder-cta,.campaign-builder-image,.campaign-builder-metrics,.campaign-builder-text{grid-column:1/-1}.campaign-builder-cta{flex-direction:column;align-items:flex-start}}
.campaign-page .inner-header{background:rgba(7,19,29,.74);backdrop-filter:blur(14px)}
.campaign-hero{position:relative;min-height:760px;display:flex;align-items:flex-end;overflow:hidden;padding:150px 0 84px;border-bottom:1px solid rgba(255,255,255,.08);background:#07131d}
.campaign-hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;opacity:.52;filter:saturate(.9) contrast(1.08)}
.campaign-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 76% 16%,rgba(99,197,213,.18),transparent 30%),linear-gradient(90deg,rgba(3,13,22,.96),rgba(3,18,29,.75) 58%,rgba(3,18,29,.42)),linear-gradient(180deg,rgba(3,13,22,.06),rgba(3,13,22,.88));z-index:1}
.campaign-hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,410px);gap:48px;align-items:end}
.campaign-hero h1{max-width:860px;margin:0 0 22px;color:#fff;font-size:clamp(2.65rem,4.5vw,5rem);line-height:1.02;letter-spacing:-.055em;text-wrap:balance}
.campaign-hero p:not(.eyebrow){max-width:720px;margin:0 0 30px;color:#d2e0e4;font-size:clamp(1rem,1.18vw,1.16rem);line-height:1.75}
.campaign-hero .eyebrow{color:#75d8e7}
.campaign-hero aside{display:grid;gap:18px;padding:28px;border:1px solid rgba(255,255,255,.14);border-radius:22px;background:rgba(8,28,39,.68);box-shadow:0 24px 75px rgba(0,0,0,.28);backdrop-filter:blur(14px)}
.campaign-hero aside strong{color:#fff;font-size:1.18rem;line-height:1.35}
.campaign-hero aside ul{display:grid;gap:10px;margin:0;padding:0;list-style:none}
.campaign-hero aside li{position:relative;padding-left:21px;color:#c5d9de;font-size:.9rem;line-height:1.5}
.campaign-hero aside li::before{content:"";position:absolute;left:0;top:.58em;width:8px;height:8px;border-radius:50%;background:#63c5d5;box-shadow:0 0 0 5px rgba(99,197,213,.13)}
.campaign-page .diagnostic-section{background:#e8efed}
@media(max-width:900px){.campaign-hero{min-height:720px;padding:128px 0 64px}.campaign-hero-grid{grid-template-columns:1fr;gap:34px}.campaign-hero aside{max-width:520px}.campaign-hero h1{font-size:clamp(2.25rem,7vw,3.7rem)}}
@media(max-width:580px){.campaign-hero{min-height:680px;padding:112px 0 52px}.campaign-hero h1{font-size:clamp(2rem,10vw,2.8rem);line-height:1.07}.campaign-hero aside{padding:22px}}

/* Generated landing pages — clean conversion layout */
.campaign-page .diagnostic-section{
  padding:clamp(72px,8vw,118px) 0!important;
  background:linear-gradient(180deg,#eef5f3 0%,#f8fbfa 100%)!important;
  color:#101d27!important;
}
.campaign-page .diagnostic-section .container{
  max-width:1180px!important;
}
.campaign-page .diagnostic-section .section-heading{
  max-width:720px!important;
  margin:0 0 30px!important;
}
.campaign-page .diagnostic-section .section-heading h2{
  max-width:680px!important;
  color:#101d27!important;
  font-size:clamp(2rem,3.25vw,3.65rem)!important;
  line-height:1.02!important;
  letter-spacing:-.06em!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic{
  display:grid!important;
  gap:18px!important;
  width:min(100%,920px)!important;
  margin:0!important;
  padding:24px!important;
  border:1px solid rgba(16,29,39,.1)!important;
  border-radius:26px!important;
  background:#fff!important;
  box-shadow:0 34px 90px rgba(16,29,39,.12)!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-contact{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:12px!important;
  padding:0 0 18px!important;
  border-bottom:1px solid #e0ecee!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic label{
  color:#5d7480!important;
  font-size:.64rem!important;
  font-weight:900!important;
  letter-spacing:.08em!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic input{
  height:46px!important;
  border:1px solid #d3e2e5!important;
  border-radius:12px!important;
  background:#f9fcfc!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-questions{
  display:grid!important;
  gap:12px!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-question{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(360px,.9fr)!important;
  gap:18px!important;
  align-items:center!important;
  min-height:0!important;
  padding:16px!important;
  border:1px solid #dce9ec!important;
  border-radius:18px!important;
  background:linear-gradient(135deg,#fbfdfd,#f5faf9)!important;
  box-shadow:none!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-step-head{
  display:grid!important;
  grid-template-columns:46px minmax(0,1fr)!important;
  gap:12px!important;
  align-items:center!important;
  margin:0!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-step-head>span{
  display:grid!important;
  width:46px!important;
  height:46px!important;
  place-items:center!important;
  border:1px solid #dce9ec!important;
  border-radius:15px!important;
  color:#176d7d!important;
  background:#eef8f8!important;
  font-family:inherit!important;
  font-size:.78rem!important;
  font-weight:950!important;
  letter-spacing:0!important;
  line-height:1!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-step-head h4{
  margin:0!important;
  color:#10202b!important;
  font-size:.96rem!important;
  font-weight:950!important;
  line-height:1.15!important;
  letter-spacing:-.02em!important;
  text-transform:none!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-step-head p{
  max-width:460px!important;
  margin:4px 0 0!important;
  color:#637982!important;
  font-size:.75rem!important;
  line-height:1.45!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-rating-panel{
  display:block!important;
  min-width:0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-rating-panel>label{
  display:none!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-options{
  display:grid!important;
  grid-template-columns:repeat(5,minmax(0,1fr))!important;
  gap:8px!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option{
  min-width:0!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option span{
  display:grid!important;
  min-height:72px!important;
  place-items:center!important;
  padding:10px 6px!important;
  border:1px solid #d9e8eb!important;
  border-radius:14px!important;
  color:#657a83!important;
  background:#fff!important;
  text-align:center!important;
  box-shadow:none!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option span i{
  width:14px!important;
  height:14px!important;
  margin:0 0 6px!important;
  border:1px solid #9db4bc!important;
  border-radius:50%!important;
  background:transparent!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option strong{
  color:inherit!important;
  font-size:.62rem!important;
  font-weight:950!important;
  letter-spacing:-.01em!important;
  line-height:1.1!important;
  text-transform:uppercase!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option small{
  display:none!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option input:checked+span{
  border-color:#63c5d5!important;
  color:#0d5e6c!important;
  background:#edfafa!important;
  box-shadow:0 10px 26px rgba(99,197,213,.16)!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option input:checked+span i{
  border-color:#63c5d5!important;
  box-shadow:inset 0 0 0 4px #fff!important;
  background:#63c5d5!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic button[type="submit"]{
  height:54px!important;
  margin-top:2px!important;
  border:0!important;
  border-radius:15px!important;
  color:#071923!important;
  background:linear-gradient(135deg,#63c5d5,#79e6c8)!important;
  box-shadow:0 18px 36px rgba(99,197,213,.18)!important;
  font-weight:950!important;
  transition:transform .2s ease,box-shadow .2s ease!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic button[type="submit"]:hover{
  transform:translateY(-2px)!important;
  box-shadow:0 24px 48px rgba(99,197,213,.24)!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic [data-diagnostic-status]{
  min-height:0!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-result{
  margin-top:8px!important;
  border-radius:18px!important;
}
@media(max-width:920px){
  .campaign-page .diagnostic-form.is-campaign-diagnostic{
    padding:18px!important;
  }
  .campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-contact,
  .campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-question{
    grid-template-columns:1fr!important;
  }
  .campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-options{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option:last-child{
    grid-column:1 / -1!important;
  }
}
@media(max-width:560px){
  .campaign-page .diagnostic-section{
    padding:54px 0 76px!important;
  }
  .campaign-page .diagnostic-section .section-heading h2{
    font-size:clamp(1.9rem,9vw,2.55rem)!important;
  }
}

/* Generated landing pages — balanced multiple-choice cards */
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-question{
  grid-template-columns:1fr!important;
  gap:14px!important;
  padding:22px!important;
  border-color:#e6eff1!important;
  background:#fbfdfd!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-step-head{
  grid-template-columns:1fr!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-step-head>span{
  display:none!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-step-head h4{
  font-size:.82rem!important;
  letter-spacing:.04em!important;
  text-transform:uppercase!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-step-head p{
  max-width:720px!important;
  font-size:.74rem!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-options{
  display:grid!important;
  grid-template-columns:repeat(5,minmax(0,1fr))!important;
  gap:10px!important;
  width:100%!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option>span{
  width:100%!important;
  min-height:82px!important;
  padding:8px 6px!important;
  align-content:start!important;
  justify-items:center!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  transition:transform .18s ease,border-color .18s ease,background .18s ease,box-shadow .18s ease!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option:hover>span{
  transform:none!important;
  border-color:transparent!important;
  box-shadow:none!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option span i{
  width:24px!important;
  height:24px!important;
  margin:0 auto 12px!important;
  display:block!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option strong{
  font-size:.68rem!important;
  line-height:1.1!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option small{
  display:block!important;
  margin-top:5px!important;
  color:#71868e!important;
  font-size:.6rem!important;
  font-weight:750!important;
  line-height:1.2!important;
  text-transform:none!important;
}
.campaign-page .diagnostic-form.is-campaign-diagnostic .diagnostic-score-option input:checked+span small{
  color:#176d7d!important;
}
/* CyberX product pages and diagnostic stability patch */
.product-page{
  min-height:100vh;
  color:#eaf3f5;
  background:#07151f;
}
.product-page .site-header{
  background:rgba(7,21,31,.82);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(16px);
}
.product-page main{overflow:hidden}
.product-hero{
  position:relative;
  isolation:isolate;
  display:flex;
  align-items:center;
  min-height:720px;
  padding:150px 0 92px;
  overflow:hidden;
  background:#07151f;
}
.product-hero-bg{
  position:absolute;
  inset:0;
  z-index:-3;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.78;
}
.product-hero::before,
.product-hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}
.product-hero::before{
  z-index:-2;
  background:
    radial-gradient(circle at 72% 18%,rgba(94,222,238,.18),transparent 34%),
    linear-gradient(90deg,rgba(4,14,23,.98) 0%,rgba(4,14,23,.82) 44%,rgba(4,14,23,.28) 100%);
}
.product-hero::after{
  z-index:-1;
  background:linear-gradient(0deg,rgba(4,14,23,.95) 0%,transparent 42%,rgba(4,14,23,.28) 100%);
}
.product-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(270px,360px);
  gap:clamp(2rem,6vw,5rem);
  align-items:end;
}
.product-kicker{
  display:block;
  margin-bottom:16px;
  color:#65d4e6;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.product-hero h1{
  max-width:920px;
  margin:0 0 22px;
  color:#fff;
  font-size:clamp(2.55rem,5vw,5.5rem);
  line-height:.96;
  letter-spacing:-.065em;
}
.product-hero p{
  max-width:720px;
  margin:0;
  color:#c7d7de;
  font-size:clamp(1rem,1.3vw,1.16rem);
  line-height:1.75;
}
.product-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  align-items:center;
  margin-top:30px;
}
.product-actions .text-link{
  color:#c9edf4;
  font-weight:850;
  text-decoration:none;
}
.product-hero aside{
  padding:28px;
  border:1px solid rgba(101,212,230,.24);
  border-radius:26px;
  color:#eefbff;
  background:rgba(7,21,31,.64);
  box-shadow:0 26px 80px rgba(0,0,0,.26);
  backdrop-filter:blur(16px);
}
.product-hero aside strong{
  display:block;
  margin-bottom:16px;
  font-size:1.05rem;
}
.product-hero aside ul{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}
.product-hero aside li{
  position:relative;
  padding-left:18px;
  color:#c5d8df;
}
.product-hero aside li::before{
  content:"";
  position:absolute;
  left:0;
  top:.68em;
  width:7px;
  height:7px;
  border-radius:999px;
  background:#65d4e6;
  box-shadow:0 0 18px rgba(101,212,230,.75);
}
.product-section,
.product-proof{
  color:#10202b;
  background:#eef4f2;
}
.product-section{padding:108px 0 94px}
.product-proof{padding:100px 0;background:#f8fbfa}
.product-columns{
  display:grid;
  grid-template-columns:minmax(260px,.76fr) minmax(0,1.24fr);
  gap:clamp(2rem,5vw,4.5rem);
  align-items:start;
}
.product-columns h2,
.product-proof h2{
  margin:0 0 18px;
  color:#10202b;
  font-size:clamp(2rem,4vw,4rem);
  line-height:1;
  letter-spacing:-.06em;
}
.product-columns p{
  color:#4f6670;
  font-size:1.05rem;
  line-height:1.75;
}
.product-feature-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.product-feature-grid article,
.product-steps article{
  padding:28px;
  border:1px solid #d7e5e2;
  border-radius:26px;
  background:#fff;
  box-shadow:0 22px 60px rgba(16,29,39,.08);
}
.product-feature-grid h3,
.product-steps h3{
  margin:0 0 10px;
  color:#10202b;
  font-size:1.2rem;
  letter-spacing:-.025em;
}
.product-feature-grid p,
.product-steps p{
  margin:0;
  color:#536b74;
  line-height:1.65;
}
.product-steps{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:34px;
}
.product-steps span{
  display:inline-flex;
  margin-bottom:38px;
  color:#0b7488;
  font-size:.78rem;
  font-weight:950;
  letter-spacing:.12em;
}
.product-page .final-cta{
  background:#eef4f2;
}
.product-page .cta-panel{
  border:1px solid rgba(101,212,230,.22);
  background:linear-gradient(135deg,#0c3441,#10202b);
  box-shadow:0 34px 90px rgba(16,29,39,.18);
}
.product-page .cta-panel h2{max-width:760px}
@media(max-width:900px){
  .product-hero{min-height:auto;padding:122px 0 76px}
  .product-hero-grid,
  .product-columns,
  .product-feature-grid,
  .product-steps{grid-template-columns:1fr}
  .product-hero aside{margin-top:8px}
}
/* Diagnostic modal — stable executive layout override */
.diagnostic-modal .diagnostic-form[data-diagnostic-guided]{
  gap:18px!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-question{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:18px!important;
  align-items:stretch!important;
  width:100%!important;
  padding:22px 24px!important;
  border:1px solid #d9e8e6!important;
  border-radius:18px!important;
  background:#fff!important;
  box-shadow:0 18px 50px rgba(16,29,39,.045)!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-contact[hidden],
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-question[hidden],
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-progress[hidden],
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-prev[hidden],
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-next[hidden],
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-submit[hidden]{
  display:none!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-step-head{
  display:grid!important;
  grid-template-columns:34px minmax(0,1fr)!important;
  gap:14px!important;
  align-items:start!important;
  min-width:0!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-step-head>span{
  display:grid!important;
  width:34px!important;
  height:34px!important;
  place-items:center!important;
  border:0!important;
  border-radius:10px!important;
  color:#0b6e7c!important;
  background:#e8f8f8!important;
  font-size:.72rem!important;
  font-weight:900!important;
  letter-spacing:0!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-step-head h4{
  margin:0!important;
  color:#0f2430!important;
  font-size:clamp(.95rem,1.4vw,1.08rem)!important;
  line-height:1.18!important;
  letter-spacing:-.025em!important;
  text-transform:none!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-step-head p{
  max-width:640px!important;
  margin:5px 0 0!important;
  color:#607780!important;
  font-size:.82rem!important;
  font-weight:500!important;
  line-height:1.5!important;
  letter-spacing:0!important;
  text-transform:none!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-rating-panel{
  display:grid!important;
  gap:13px!important;
  min-width:0!important;
  width:100%!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-rating-panel>label{
  margin:0!important;
  color:#627982!important;
  font-size:.68rem!important;
  font-weight:900!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-options{
  display:grid!important;
  grid-template-columns:repeat(5,minmax(92px,1fr))!important;
  gap:10px!important;
  width:100%!important;
  min-width:0!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-option{
  position:relative!important;
  display:block!important;
  min-width:0!important;
  margin:0!important;
  cursor:pointer!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-option input{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  opacity:0!important;
  cursor:pointer!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-option>span{
  display:grid!important;
  min-height:86px!important;
  place-items:center!important;
  align-content:center!important;
  justify-items:center!important;
  gap:6px!important;
  padding:12px 8px!important;
  border:0!important;
  border-radius:16px!important;
  color:#5f737c!important;
  background:#f5faf9!important;
  box-shadow:inset 0 0 0 1px #dcebea!important;
  text-align:center!important;
  transition:background .18s ease,box-shadow .18s ease,color .18s ease,transform .18s ease!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-option:hover>span{
  transform:translateY(-1px)!important;
  color:#17313b!important;
  background:#eef8f7!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-option span i{
  display:block!important;
  width:20px!important;
  height:20px!important;
  margin:0!important;
  border:2px solid #adc0c5!important;
  border-radius:50%!important;
  background:#fff!important;
  box-shadow:none!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-option strong{
  display:block!important;
  margin:0!important;
  color:inherit!important;
  font-size:.68rem!important;
  font-weight:950!important;
  line-height:1.05!important;
  letter-spacing:.005em!important;
  text-transform:uppercase!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-option small{
  display:block!important;
  margin:0!important;
  color:inherit!important;
  opacity:.8!important;
  font-size:.6rem!important;
  font-weight:750!important;
  line-height:1.15!important;
  text-transform:none!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-option input:checked+span{
  color:#0b6572!important;
  background:#e7fbf8!important;
  box-shadow:inset 0 0 0 2px #63c5d5,0 14px 30px rgba(99,197,213,.16)!important;
}
.diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-option input:checked+span i{
  border-color:#63c5d5!important;
  background:radial-gradient(circle at center,#63c5d5 0 42%,#fff 44% 100%)!important;
}
@media(max-width:760px){
  .diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-options{
    grid-template-columns:1fr!important;
  }
  .diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-option>span{
    min-height:58px!important;
    grid-template-columns:24px 1fr auto!important;
    justify-items:start!important;
    text-align:left!important;
  }
  .diagnostic-modal .diagnostic-form[data-diagnostic-guided] .diagnostic-score-option small{
    justify-self:end!important;
  }
}
