:root {
  --ink: #07111d;
  --ink-2: #0a1928;
  --paper: #f3f4ef;
  --paper-2: #e7e9e2;
  --white: #ffffff;
  --muted: #9ba9b5;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #2ed7f3;
  --cyan-2: #8cecff;
  --amber: #f3b33d;
  --max: 1240px;
  --pad: clamp(22px, 4vw, 64px);
  --radius: 8px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
::selection { color: var(--ink); background: var(--cyan-2); }

.shell { width: min(100%, calc(var(--max) + var(--pad) * 2)); margin: 0 auto; padding-inline: var(--pad); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 14px; color: var(--ink); background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled { background: rgba(4, 13, 23, .86); border-color: var(--line); backdrop-filter: blur(20px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 740; letter-spacing: -.045em; }
.brand-mark { width: 31px; height: 31px; fill: currentColor; }
.brand-mark .brand-spark { fill: var(--cyan); }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 36px); font-size: 13px; font-weight: 560; }
.primary-nav > a:not(.nav-cta) { color: rgba(255,255,255,.72); transition: color .2s ease; }
.primary-nav > a:not(.nav-cta):hover { color: var(--white); }
.nav-cta { display: inline-flex; align-items: center; gap: 18px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.32); border-radius: 3px; transition: color .2s, background .2s, border-color .2s; }
.nav-cta:hover { color: var(--ink); background: var(--cyan-2); border-color: var(--cyan-2); }
.menu-toggle { display: none; border: 0; background: none; color: inherit; width: 42px; height: 42px; padding: 9px; }
.menu-toggle > span:not(.sr-only) { display: block; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s, opacity .25s; }

.hero {
  min-height: min(960px, 100svh);
  color: var(--white);
  background: #04101b;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 12, 22, .98) 0%, rgba(3, 16, 28, .9) 32%, rgba(3, 13, 24, .25) 67%, rgba(2, 8, 14, .05) 100%), linear-gradient(0deg, rgba(3,11,18,.9), transparent 45%), url('/assets/vinglabs-hero.webp') center / cover no-repeat; transform: scale(1.015); animation: heroIn 1.8s var(--ease) both; }
.hero-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(108, 228, 255, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(108, 228, 255, .2) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, black, transparent 68%); }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 700px) 1fr; align-items: end; gap: 40px; padding-top: 150px; padding-bottom: 170px; }
.hero-copy { align-self: center; }
.eyebrow, .kicker { margin: 0 0 24px; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; line-height: 1.3; font-weight: 700; }
.eyebrow { color: rgba(255,255,255,.72); display: flex; align-items: center; gap: 11px; }
.eyebrow > span { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px rgba(46,215,243,.8); }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(53px, 6.5vw, 95px); line-height: .94; letter-spacing: -.068em; font-weight: 620; }
.hero h1 em { color: var(--cyan-2); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lede { max-width: 610px; margin: 32px 0 0; color: #c5d0d8; font-size: clamp(17px, 1.65vw, 21px); line-height: 1.58; letter-spacing: -.018em; }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 40px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; padding: 0 20px; border-radius: 3px; font-size: 13px; font-weight: 700; transition: transform .2s var(--ease), background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--cyan-2); }
.button-primary:hover { background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 16px; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 650; }
.text-link span { color: var(--cyan); }
.hero-signal { width: min(100%, 330px); align-self: end; justify-self: end; margin-bottom: 5px; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.66); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.signal-top { display: flex; align-items: center; gap: 9px; }
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 1.8s infinite; }
.signal-time { margin-left: auto; }
.signal-line { height: 42px; display: flex; align-items: center; overflow: hidden; }
.signal-line span { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); animation: signal 2.8s linear infinite; transform-origin: left; }
.signal-meta { display: flex; justify-content: space-between; color: rgba(255,255,255,.36); }
.hero-sectors { position: absolute; z-index: 2; left: 50%; bottom: 0; transform: translateX(-50%); min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.16); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.42); }
.hero-sectors > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px 38px; color: rgba(255,255,255,.7); }

.section { padding: clamp(96px, 11vw, 160px) 0; }
.section-heading { max-width: 830px; margin-bottom: 64px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.kicker { color: #547080; }
.section-heading h2, .deployment h2, .principles h2, .contact h2 { margin: 0; font-size: clamp(43px, 5.2vw, 74px); line-height: .98; letter-spacing: -.058em; font-weight: 590; }
.section-heading > p:last-child, .split-heading > p { margin: 26px 0 0; max-width: 680px; color: #53636e; font-size: 17px; line-height: 1.65; }
.split-heading > p { margin: 0; }

.platform { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.product-card { min-height: 610px; padding: clamp(26px, 3.6vw, 48px); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative; border-radius: var(--radius); }
.product-noesis { color: var(--white); background: var(--ink-2); }
.product-athena { color: var(--ink); background: #d8e5e6; }
.product-topline { display: flex; justify-content: space-between; align-items: center; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; opacity: .66; }
.product-state { display: inline-flex; align-items: center; gap: 7px; }
.product-state i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.product-athena .product-state i { background: #0b8ea4; box-shadow: none; }
.product-symbol { width: 64%; aspect-ratio: 1; align-self: center; position: relative; border: 1px solid rgba(87, 231, 255, .2); border-radius: 50%; background: radial-gradient(circle, rgba(46,215,243,.15), transparent 63%); box-shadow: inset 0 0 40px rgba(46,215,243,.06); }
.product-symbol::before, .product-symbol::after { content: ""; position: absolute; inset: 17%; border: 1px solid rgba(87,231,255,.22); border-radius: 50%; }
.product-symbol::after { inset: 34%; background: rgba(46,215,243,.05); }
.focus { position: absolute; width: 23%; height: 23%; border-color: var(--cyan); border-style: solid; z-index: 2; }
.f1 { top: 19%; left: 19%; border-width: 1px 0 0 1px; }
.f2 { top: 19%; right: 19%; border-width: 1px 1px 0 0; }
.f3 { left: 19%; bottom: 19%; border-width: 0 0 1px 1px; }
.f4 { right: 19%; bottom: 19%; border-width: 0 1px 1px 0; }
.scan { position: absolute; left: 15%; right: 15%; top: 50%; height: 1px; z-index: 4; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: scan 3s ease-in-out infinite; }
.athena-chart { height: 240px; margin: 15px 0; position: relative; display: flex; align-items: flex-end; border-bottom: 1px solid rgba(7,17,29,.16); }
.chart-bars { position: absolute; inset: 0; display: flex; align-items: end; gap: 9px; }
.chart-bars i { flex: 1; height: 30%; background: rgba(7,17,29,.075); }
.chart-bars i:nth-child(2n) { height: 47%; }.chart-bars i:nth-child(3n) { height: 63%; }.chart-bars i:nth-child(5n) { height: 78%; }.chart-bars i:nth-child(7n) { height: 91%; }
.athena-chart svg { width: 100%; height: 74%; position: relative; z-index: 2; overflow: visible; }
.athena-chart path { fill: none; stroke: #087b91; stroke-width: 3; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 5px rgba(8,123,145,.3)); }
.product-label { margin: 0 0 10px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; letter-spacing: .18em; color: var(--cyan); }
.product-athena .product-label { color: #087b91; }
.product-card h3 { max-width: 500px; margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: 1.02; letter-spacing: -.045em; font-weight: 590; }
.product-card > div > p:last-child { max-width: 520px; margin: 18px 0 0; line-height: 1.55; font-size: 15px; opacity: .67; }
.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 28px 0 0; }
.tag-list li { padding: 8px 11px; border: 1px solid currentColor; border-radius: 30px; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; opacity: .5; }

.capabilities { color: var(--white); background: var(--ink); }
.capabilities .kicker { color: var(--cyan); }
.capabilities .section-heading > p:last-child { color: #93a4b1; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-card { min-height: 490px; padding: 28px 26px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s, transform .3s var(--ease); }
.capability-card:hover { background: rgba(46,215,243,.055); transform: translateY(-5px); }
.cap-number { color: #647583; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.cap-icon { width: 72px; height: 72px; margin: 58px 0; position: relative; color: var(--cyan); }
.cap-eye { border: 1px solid currentColor; border-radius: 70% 0 70% 0; transform: rotate(-45deg); }
.cap-eye i { position: absolute; inset: 21px; border: 1px solid currentColor; border-radius: 50%; background: rgba(46,215,243,.12); }
.cap-chip { border: 1px solid currentColor; box-shadow: inset 0 0 18px rgba(46,215,243,.13); }
.cap-chip::before, .cap-chip::after { content: ""; position: absolute; left: 12px; right: 12px; height: 1px; background: currentColor; box-shadow: 0 10px currentColor, 0 20px currentColor; top: 15px; opacity: .55; }
.cap-chip::after { transform: rotate(90deg); }
.cap-chip i { position: absolute; inset: 23px; border: 1px solid currentColor; }
.cap-data { display: flex; align-items: end; gap: 8px; }
.cap-data i { width: 16px; height: 45%; background: rgba(46,215,243,.28); border-top: 1px solid currentColor; }.cap-data i:nth-child(2){height:74%}.cap-data i:nth-child(3){height:100%}
.cap-screen { border: 1px solid currentColor; }
.cap-screen::before { content: ""; position: absolute; left: 10px; right: 10px; bottom: 15px; height: 22px; border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: skewY(-19deg); }
.cap-screen i { position: absolute; width: 26px; height: 1px; left: 23px; bottom: -10px; background: currentColor; }
.capability-card h3 { margin: 0; font-size: 22px; letter-spacing: -.035em; }
.capability-card > p { min-height: 94px; margin: 16px 0 26px; color: #93a4b1; font-size: 14px; line-height: 1.55; }
.capability-card ul { list-style: none; padding: 22px 0 0; margin: auto 0 0; border-top: 1px solid var(--line); color: #bbc7ce; font-size: 11px; line-height: 2; }
.capability-card li::before { content: "+"; color: var(--cyan); margin-right: 8px; }

.deployment { padding: clamp(86px, 9vw, 134px) 0; color: var(--white); background: #071522; }
.deployment-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(48px, 7vw, 100px); align-items: center; }
.deployment-visual { min-height: 590px; position: relative; overflow: hidden; border-radius: var(--radius); background: #050d16; }
.deployment-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,13,22,.75), transparent 44%); pointer-events: none; }
.deployment-visual img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; }
.image-readout { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 21px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.62); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 8px; letter-spacing: .12em; }
.readout-line { flex: 1; height: 1px; background: rgba(255,255,255,.24); }
.deployment-copy .kicker { color: var(--cyan); }
.deployment-copy h2 { font-size: clamp(40px, 4.6vw, 65px); }
.large-copy { margin: 28px 0 40px; color: #9fb0bd; font-size: 17px; line-height: 1.63; }
.deployment-list { margin: 0; }
.deployment-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.deployment-list dt { color: var(--cyan); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.deployment-list dd { margin: 0; }
.deployment-list strong, .deployment-list span { display: block; }
.deployment-list strong { margin-bottom: 5px; font-size: 14px; }
.deployment-list span { color: #8294a1; font-size: 12px; line-height: 1.5; }

.industries { background: var(--paper); }
.industry-list { border-top: 1px solid #bdc4c2; }
.industry-row { min-height: 130px; display: grid; grid-template-columns: 58px 1fr 1.4fr 30px; gap: 30px; align-items: center; border-bottom: 1px solid #bdc4c2; transition: padding .25s var(--ease), background .25s; }
.industry-row:hover { padding-inline: 14px; background: rgba(255,255,255,.55); }
.industry-row > span { color: #708087; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.industry-row h3 { margin: 0; font-size: clamp(22px, 2vw, 31px); letter-spacing: -.04em; font-weight: 570; }
.industry-row p { margin: 0; color: #65737b; font-size: 14px; line-height: 1.55; }
.industry-row i { color: #7c8b92; font-style: normal; }

.approach { background: #e4e6df; }
.approach-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 0; border-top: 1px solid #aeb7b4; border-left: 1px solid #aeb7b4; }
.approach-grid li { min-height: 310px; padding: 26px; border-right: 1px solid #aeb7b4; border-bottom: 1px solid #aeb7b4; }
.approach-grid span { color: #547080; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.approach-grid h3 { margin: 104px 0 16px; font-size: 25px; letter-spacing: -.04em; }
.approach-grid p { margin: 0; color: #5c6c74; font-size: 13px; line-height: 1.58; }

.principles { padding: clamp(100px, 12vw, 170px) 0; color: var(--white); background: #08111b; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 10vw, 150px); }
.principles-copy { position: sticky; top: 130px; align-self: start; }
.principles-copy .kicker { color: var(--cyan); }
.principle-list > div { display: grid; grid-template-columns: 50px 1fr; gap: 15px; padding: 35px 0; border-top: 1px solid var(--line); }
.principle-list span { color: var(--cyan); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.principle-list p { margin: 0; color: #95a6b2; font-size: 17px; line-height: 1.65; }
.principle-list strong { color: var(--white); font-weight: 560; }

.contact { min-height: 670px; position: relative; overflow: hidden; display: grid; place-items: center; color: var(--ink); background: var(--cyan-2); }
.contact-inner { position: relative; z-index: 2; text-align: center; padding-block: 100px; }
.contact .kicker { color: #275b66; }
.contact h2 { font-size: clamp(52px, 7.2vw, 104px); }
.contact p:not(.kicker) { margin: 26px auto 36px; max-width: 560px; color: #285461; font-size: 17px; line-height: 1.6; }
.button-light { min-width: min(100%, 280px); color: var(--white); background: var(--ink); }
.button-light:hover { background: #153044; }
.contact-orbit { position: absolute; border: 1px solid rgba(7,17,29,.14); border-radius: 50%; }
.orbit-one { width: 680px; height: 680px; left: -180px; bottom: -360px; }
.orbit-two { width: 900px; height: 900px; right: -420px; top: -570px; }
.contact::before, .contact::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.contact::before { top: 19%; left: 17%; box-shadow: 0 0 0 8px rgba(7,17,29,.07); }
.contact::after { right: 15%; bottom: 18%; box-shadow: 0 0 0 8px rgba(7,17,29,.07); }

.site-footer { padding: 80px 0 30px; color: var(--white); background: #050d15; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 60px; align-items: start; }
.footer-brand { font-size: 25px; }
.footer-inner > p { margin: 8px 0 0; justify-self: end; color: #8294a1; font-size: 13px; }
.footer-links { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 20px 38px; padding: 36px 0 58px; border-top: 1px solid var(--line); color: #a7b5be; font-size: 12px; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: #5e707d; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes heroIn { from { transform: scale(1.06); opacity: .2; } to { transform: scale(1.015); opacity: 1; } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.75); } }
@keyframes signal { 0% { transform: scaleX(.1) translateX(-40%); opacity: .25; } 50% { transform: scaleX(1) translateX(0); opacity: 1; } 100% { transform: scaleX(.1) translateX(900%); opacity: .2; } }
@keyframes scan { 0%,100% { transform: translateY(-74px); opacity: .3; } 50% { transform: translateY(74px); opacity: 1; } }

@media (max-width: 1020px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-signal { display: none; }
  .capability-grid, .approach-grid { grid-template-columns: 1fr 1fr; }
  .deployment-grid { grid-template-columns: 1fr; }
  .deployment-visual, .deployment-visual img { min-height: 480px; }
}

@media (max-width: 780px) {
  .header-inner { min-height: 70px; }
  .header-inner > .brand { position: relative; z-index: 2; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; padding: 110px var(--pad) 40px; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; color: var(--white); background: rgba(4,13,23,.98); transform: translateX(100%); visibility: hidden; transition: transform .35s var(--ease), visibility .35s; }
  .primary-nav.open { transform: translateX(0); visibility: visible; }
  .primary-nav > a:not(.nav-cta) { padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 25px; }
  .nav-cta { margin-top: 32px; justify-content: space-between; font-size: 16px; }
  .hero { min-height: 900px; }
  .hero-bg { background-position: 65% center; }
  .hero-grid { display: none; }
  .hero-content { align-items: center; padding-top: 118px; padding-bottom: 180px; }
  .hero h1 { font-size: clamp(50px, 15vw, 78px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-sectors { align-items: flex-start; flex-direction: column; justify-content: center; }
  .hero-sectors > div { justify-content: flex-start; gap: 10px 22px; }
  .split-heading, .product-grid, .principles-grid { grid-template-columns: 1fr; }
  .split-heading { gap: 28px; }
  .product-card { min-height: 560px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: auto; }
  .cap-icon { margin: 50px 0 45px; }
  .capability-card > p { min-height: auto; }
  .industry-row { grid-template-columns: 38px 1fr 20px; padding: 25px 0; }
  .industry-row p { grid-column: 2; }
  .industry-row i { grid-column: 3; grid-row: 1; }
  .principles-copy { position: static; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > p { justify-self: start; }
}

@media (min-width: 781px) and (max-height: 760px) {
  .hero-content { padding-top: 112px; padding-bottom: 112px; }
  .hero h1 { font-size: clamp(54px, 5.6vw, 76px); }
  .hero-lede { margin-top: 24px; font-size: 17px; }
  .hero-actions { margin-top: 28px; }
  .hero-sectors { min-height: 74px; }
}

@media (max-width: 540px) {
  .section { padding: 88px 0; }
  .section-heading { margin-bottom: 44px; }
  .product-card { min-height: 520px; padding: 26px 22px; }
  .product-symbol { width: 68%; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-grid li { min-height: 250px; }
  .approach-grid h3 { margin-top: 74px; }
  .deployment-visual, .deployment-visual img { min-height: 360px; }
  .deployment-visual img { object-position: center; }
  .principle-list > div { grid-template-columns: 34px 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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