@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/space-grotesk-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/assets/inter-tight-latin-ext-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/assets/inter-tight-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue: #2846e8;
  --blue-bright: #6684ff;
  --ink: #071027;
  --ink-2: #0c1733;
  --paper: #f3f6fb;
  --white: #ffffff;
  --line: rgba(7, 16, 39, .13);
  --shell: min(92vw, 1480px);
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Space Grotesk", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; height: auto; }
.hero h1, .section-head h2, .capabilities h2, .story-copy h2, .contact h2, .company-copy > strong, .principles h3, .story-mark > span { font-family: "Inter Tight", "Space Grotesk", Arial, sans-serif; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(92px, 10vw, 168px); }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 12px 16px; color: var(--white); background: var(--ink); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #89a0ff; outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  color: var(--ink);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(7,16,39,.1);
  backdrop-filter: blur(16px);
  transition: color .35s, background .35s, box-shadow .35s, height .35s;
}
.site-header.is-scrolled {
  height: 80px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border-color: rgba(7,16,39,.09);
  box-shadow: 0 14px 36px rgba(7,16,39,.08);
  backdrop-filter: blur(15px);
}
.header-shell { height: 100%; display: grid; grid-template-columns: minmax(250px, 340px) 1fr auto; align-items: center; gap: 30px; }
.brand { width: clamp(230px, 21vw, 322px); position: relative; z-index: 102; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 2.3vw, 44px); }
.desktop-nav a { position: relative; padding-block: 12px; font-size: .86rem; font-weight: 650; letter-spacing: .075em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 5px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav .language-link { padding: 7px 9px; border: 1px solid currentColor; font-size: .76rem; white-space: nowrap; }
.desktop-nav .language-link::after { display: none; }
.header-cta { min-height: 48px; display: inline-flex; align-items: center; gap: 22px; padding: 0 20px; color: var(--white); background: var(--blue); border: 1px solid var(--blue); font-size: .8rem; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; transition: color .25s, background .25s, border-color .25s; }
.header-cta:hover, .site-header.is-scrolled .header-cta:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.menu-toggle { display: none; position: relative; z-index: 102; width: 48px; height: 48px; padding: 0; color: currentColor; border: 1px solid currentColor; background: transparent; cursor: pointer; }
.menu-toggle span { position: absolute; left: 14px; width: 18px; height: 1px; background: currentColor; transition: transform .3s, top .3s; }
.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 27px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 99; inset: 0; padding: calc(var(--header-h) + 44px) 4vw 46px; color: var(--ink); background: var(--white); overflow-y: auto; }
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: grid; grid-template-columns: 48px 1fr; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: clamp(1.8rem, 7vw, 3.6rem); font-weight: 520; letter-spacing: -.04em; }
.mobile-menu nav span { align-self: start; padding-top: .45em; color: var(--blue); font-size: .72rem; letter-spacing: .08em; }
.mobile-contact { display: flex; flex-wrap: wrap; gap: 16px 30px; margin-top: 42px; font-weight: 550; }

.hero { position: relative; min-height: 100svh; color: var(--white); background: var(--ink); overflow: hidden; }
.hero-media, .hero-frame, .hero-grid, .hero-shade { position: absolute; inset: 0; }
.hero-frame { opacity: 0; background-image: var(--hero-image); background-position: center; background-size: cover; transform: scale(1.035); transition: opacity 1s ease, transform 8s ease; }
.hero-frame.is-active { opacity: 1; transform: scale(1); }
.hero-grid { z-index: 1; opacity: .34; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 12.5vw 12.5vw; mask-image: linear-gradient(to bottom, rgba(0,0,0,.4), transparent 76%); }
.hero-shade { z-index: 2; background: linear-gradient(90deg, rgba(3,8,24,.93) 0%, rgba(3,9,27,.76) 42%, rgba(3,9,27,.23) 74%, rgba(3,9,27,.56) 100%), linear-gradient(180deg, rgba(2,7,20,.18) 0%, rgba(2,7,20,.06) 56%, rgba(2,7,20,.88) 100%); }
.hero-content { position: relative; z-index: 3; min-height: 100svh; display: flex; align-items: center; padding-top: calc(var(--header-h) + 44px); padding-bottom: 146px; }
.hero-copy { width: min(1120px, 78vw); }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 25px; font-size: .76rem; font-weight: 650; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; background: var(--blue-bright); }
.hero h1 { max-width: 1100px; margin: 0; font-size: clamp(3.2rem, 6.7vw, 7.4rem); font-weight: 500; line-height: .91; letter-spacing: -.045em; text-wrap: balance; }
.hero h1 em { color: #aec0ff; font-style: normal; font-weight: 400; }
.hero-lead { max-width: 760px; margin: 34px 0 0; color: rgba(255,255,255,.82); font-size: clamp(1.02rem, 1.34vw, 1.28rem); line-height: 1.65; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { min-height: 58px; display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; padding: 0 24px; border: 1px solid transparent; font-size: .84rem; font-weight: 650; letter-spacing: .05em; text-transform: uppercase; transition: color .25s, background .25s, border-color .25s, transform .25s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); border-color: var(--blue); }
.button-primary:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-ghost { color: var(--white); background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.5); backdrop-filter: blur(7px); }
.button-ghost:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.hero-switcher { position: absolute; right: 0; top: 50%; display: grid; gap: 12px; transform: translateY(-50%); }
.hero-switcher button { position: relative; width: 118px; display: grid; grid-template-columns: 28px 1fr; gap: 10px; padding: 10px 0 10px 15px; color: rgba(255,255,255,.52); border: 0; border-left: 1px solid rgba(255,255,255,.3); background: transparent; text-align: left; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: color .25s, border-color .25s; }
.hero-switcher button::before { content: ""; position: absolute; left: -1px; top: 0; bottom: 0; width: 2px; background: var(--blue-bright); transform: scaleY(0); transform-origin: bottom; transition: transform .35s; }
.hero-switcher button.is-active { color: var(--white); border-color: transparent; }
.hero-switcher button.is-active::before { transform: scaleY(1); }
.hero-switcher span { color: var(--blue-bright); font-size: .62rem; }
.hero-bottom { position: absolute; z-index: 4; inset: auto 0 0; border-top: 1px solid rgba(255,255,255,.2); }
.hero-bottom-inner { min-height: 76px; display: grid; grid-template-columns: repeat(3, 1fr) auto; align-items: center; gap: 24px; color: rgba(255,255,255,.74); font-size: .73rem; font-weight: 550; letter-spacing: .08em; text-transform: uppercase; }
.hero-bottom-inner a { color: var(--white); display: flex; gap: 28px; }

.expertise-strip { color: var(--white); background: var(--blue); overflow: hidden; }
.expertise-track { width: max-content; min-height: 72px; display: flex; align-items: center; gap: 28px; padding-inline: 3vw; animation: strip-drift 32s linear infinite alternate; }
.expertise-track span { font-size: .85rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.expertise-track i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.56); }
.expertise-strip:hover .expertise-track, .expertise-strip:focus-within .expertise-track { animation-play-state: paused; }
@keyframes strip-drift { to { transform: translateX(calc(-100% + 100vw)); } }

.companies { background: var(--paper); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .6fr); align-items: end; gap: clamp(50px, 10vw, 180px); margin-bottom: clamp(54px, 7vw, 96px); }
.section-kicker { color: var(--blue); }
.section-head h2, .capabilities h2, .story-copy h2, .contact h2 { margin: 0; font-size: clamp(3rem, 6.4vw, 7.2rem); font-weight: 500; line-height: .94; letter-spacing: -.045em; }
.section-head h2 span, .story-copy h2 span { color: var(--blue); font-weight: 400; }
.section-intro { margin: 0 0 8px; font-size: clamp(1.03rem, 1.35vw, 1.25rem); line-height: 1.7; }
.company-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: clamp(460px, 31vw, 500px); gap: 16px; }
.company-card { position: relative; min-width: 0; min-height: 0; height: 100%; display: block; color: var(--white); background: var(--ink); overflow: hidden; isolation: isolate; }
.company-image, .company-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.company-image { z-index: -2; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.25,1), filter .5s; }
.company-shade { z-index: -1; background: linear-gradient(180deg, rgba(2,8,24,.14), rgba(2,8,24,.26) 38%, rgba(2,8,24,.94) 100%); }
.company-card:hover .company-image { transform: scale(1.04); filter: saturate(1.1); }
.company-index { position: absolute; top: 25px; left: 28px; color: rgba(255,255,255,.72); font-size: .68rem; letter-spacing: .12em; }
.company-copy { position: absolute; inset: auto 30px 30px; display: flex; flex-direction: column; align-items: flex-start; }
.company-logo { max-width: 230px; max-height: 62px; width: auto; height: auto; object-fit: contain; object-position: left bottom; margin-bottom: 22px; filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 4px rgba(255,255,255,.9)) drop-shadow(0 2px 5px rgba(0,0,0,.25)); }
.company-logo.logo-stu { width: clamp(280px, 27vw, 330px); max-width: calc(100% - 12px); max-height: none; padding: 0; background: none; border: 0; border-radius: 0; filter: brightness(0) invert(1) drop-shadow(0 3px 10px rgba(0,0,0,.4)); }
.logo-service { max-height: 76px; }
.logo-panter { max-width: 90px; max-height: 100px; }
.company-logo.logo-rvm { width: clamp(290px, 31vw, 360px); max-width: calc(100% - 12px); max-height: none; filter: drop-shadow(0 2px 6px rgba(0,0,0,.55)); }
.company-copy strong { max-width: 530px; font-size: clamp(1.45rem, 2.3vw, 2.45rem); font-weight: 500; line-height: 1.1; letter-spacing: -.025em; }
.company-copy .logo-stu + strong { max-width: none; padding-right: 0; white-space: nowrap; }
.company-copy small { margin-top: 12px; color: rgba(255,255,255,.68); font-size: .76rem; line-height: 1.5; letter-spacing: .055em; text-transform: uppercase; }
.company-copy-text b { margin-bottom: 22px; color: var(--white); font-size: 1.65rem; letter-spacing: .03em; }
.company-rvm .company-image { object-position: center 58%; }
.company-arrow { position: absolute; right: 27px; top: 24px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.48); font-size: 1.2rem; transition: color .25s, background .25s, transform .25s; }
.company-card:hover .company-arrow { color: var(--ink); background: var(--white); transform: rotate(8deg); }

.capabilities { position: relative; color: var(--white); background: var(--ink); overflow: hidden; }
.capabilities-backdrop { position: absolute; left: -2vw; bottom: -10vw; color: rgba(255,255,255,.027); font-size: 42vw; font-weight: 700; line-height: .7; letter-spacing: -.11em; pointer-events: none; }
.capabilities-layout { position: relative; display: grid; grid-template-columns: minmax(330px, .75fr) minmax(520px, 1.2fr); gap: clamp(60px, 9vw, 160px); align-items: start; }
.section-kicker-light { color: #9cb1ff; }
.capabilities h2 span, .contact h2 span { color: #9cb1ff; font-weight: 400; }
.capabilities-copy { position: sticky; top: 130px; }
.capabilities-copy > p:last-child { max-width: 560px; margin: 34px 0 0; color: rgba(255,255,255,.7); font-size: 1.08rem; line-height: 1.7; }
.capability-list { display: grid; }
.capability-list a { min-height: 112px; display: grid; grid-template-columns: 50px 1fr minmax(120px, .32fr) 24px; align-items: center; gap: 18px; border-top: 1px solid rgba(255,255,255,.16); transition: padding .3s, color .3s; }
.capability-list a:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.capability-list a:hover { padding-inline: 14px; color: #b7c6ff; }
.capability-list span { color: var(--blue-bright); font-size: .68rem; letter-spacing: .1em; }
.capability-list strong { font-size: clamp(1.1rem, 1.65vw, 1.55rem); font-weight: 470; letter-spacing: -.025em; }
.capability-list small { color: rgba(255,255,255,.52); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.capability-list b { font-size: 1.2rem; font-weight: 400; }

.group-story { background: var(--white); }
.story-layout { display: grid; grid-template-columns: .7fr 1.1fr; gap: clamp(60px, 12vw, 190px); align-items: start; }
.story-mark { min-height: 430px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; color: var(--white); background: var(--blue); }
.story-mark span { font-size: clamp(5rem, 12vw, 12rem); font-weight: 500; line-height: .78; letter-spacing: -.07em; }
.story-mark small { font-size: .78rem; line-height: 1.5; letter-spacing: .08em; text-transform: uppercase; }
.story-copy { padding-top: 12px; }
.story-lead { margin: 42px 0 20px; font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.46; letter-spacing: -.02em; }
.story-copy > p:not(.section-kicker):not(.story-lead) { max-width: 760px; color: #4c5569; font-size: 1.03rem; line-height: 1.8; }
.text-link { display: inline-flex; gap: 34px; align-items: center; margin-top: 22px; padding-bottom: 8px; border-bottom: 1px solid currentColor; color: var(--blue); font-size: .82rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(80px, 9vw, 140px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles article { min-height: 280px; padding: 30px clamp(20px, 3vw, 48px) 34px; border-right: 1px solid var(--line); }
.principles article:first-child { padding-left: 0; }
.principles article:last-child { border: 0; }
.principles span { color: var(--blue); font-size: .68rem; letter-spacing: .1em; }
.principles h3 { margin: 58px 0 16px; font-size: clamp(1.55rem, 2.4vw, 2.3rem); font-weight: 500; letter-spacing: -.025em; }
.principles p { margin: 0; color: #596174; font-size: .96rem; line-height: 1.65; }

.contact { position: relative; min-height: 770px; display: flex; align-items: center; color: var(--white); background: var(--ink); overflow: hidden; }
.contact-media, .contact-shade { position: absolute; inset: 0; }
.contact-media { background: url("/assets/hero-automation.jpg") center / cover; }
.contact-shade { background: linear-gradient(90deg, rgba(4,10,28,.96) 0%, rgba(4,10,28,.88) 52%, rgba(4,10,28,.33) 100%); }
.contact-inner { position: relative; padding-block: 115px; }
.contact h2 { max-width: 1000px; }
.contact-inner > p:not(.section-kicker) { max-width: 690px; margin: 30px 0 0; color: rgba(255,255,255,.75); font-size: 1.06rem; line-height: 1.75; }
.contact-details { max-width: 1100px; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; border-top: 1px solid rgba(255,255,255,.22); }
.contact-details > * { padding: 24px 24px 24px 0; display: grid; gap: 8px; border-right: 1px solid rgba(255,255,255,.22); }
.contact-details > *:not(:first-child) { padding-left: 24px; }
.contact-details > *:last-child { border: 0; }
.contact-details small { color: rgba(255,255,255,.53); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.contact-details strong { font-size: clamp(.95rem, 1.4vw, 1.2rem); font-weight: 500; }

.site-footer { padding-top: 76px; color: var(--ink); background: var(--paper); }
.footer-top { display: flex; justify-content: space-between; align-items: end; gap: 30px; padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.footer-brand { display: block; width: min(450px, 42vw); }
.footer-top p { max-width: 350px; margin: 0; color: #586174; text-align: right; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 44px; padding-block: 56px 70px; }
.footer-links > div { display: grid; align-content: start; gap: 13px; }
.footer-links small { margin-bottom: 9px; color: var(--blue); font-size: .68rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a, .footer-links span { width: fit-content; color: #424b5f; font-size: .92rem; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { min-height: 70px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 34px; border-top: 1px solid var(--line); color: #72798a; font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-credit { letter-spacing: .02em; text-transform: none; }
.footer-credit a { color: #424b5f; font-weight: 700; transition: color .2s; }
.footer-credit a:hover, .footer-credit a:focus-visible { color: var(--blue); }
.footer-bottom > span:last-child { color: var(--blue); font-weight: 700; }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.25,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --shell: min(92vw, 980px); }
  .header-shell { grid-template-columns: 260px 1fr auto; }
  .desktop-nav { display: none; }
  .header-cta { justify-self: end; }
  .menu-toggle { display: block; }
  .hero-copy { width: min(840px, 85vw); }
  .hero-switcher { display: none; }
  .hero-bottom-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-bottom-inner span:nth-child(3) { display: none; }
  .company-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 460px; }
  .capabilities-layout { grid-template-columns: 1fr; }
  .capabilities-copy { position: static; }
}

@media (max-width: 760px) {
  :root { --shell: 90vw; --header-h: 78px; }
  .section { padding-block: 86px; }
  .site-header.is-scrolled { height: 72px; }
  .header-shell { grid-template-columns: 1fr auto; gap: 18px; }
  .brand { width: min(64vw, 250px); }
  .header-cta { display: none; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero { min-height: max(760px, 100svh); }
  .hero-frame { background-position: 62% center; }
  .hero-frame[data-hero-frame="1"] { background-position: 69% center; }
  .hero-frame[data-hero-frame="2"] { background-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,8,24,.92), rgba(3,9,27,.62)), linear-gradient(180deg, rgba(2,7,20,.2), rgba(2,7,20,.88)); }
  .hero-grid { background-size: 25vw 25vw; }
  .hero-content { align-items: flex-end; padding-top: 130px; padding-bottom: 154px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(3rem, 11.6vw, 4.6rem); line-height: .94; letter-spacing: -.042em; }
  .hero h1 br { display: block; }
  .hero-lead { margin-top: 24px; font-size: .99rem; line-height: 1.62; }
  .hero-actions { margin-top: 28px; }
  .button { width: 100%; min-height: 56px; }
  .hero-bottom-inner { min-height: 70px; grid-template-columns: 1fr auto; gap: 12px; }
  .hero-bottom-inner span:nth-child(2), .hero-bottom-inner span:nth-child(3) { display: none; }
  .expertise-track { min-height: 62px; }
  .section-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 44px; }
  .section-head h2, .capabilities h2, .story-copy h2, .contact h2 { font-size: clamp(3rem, 13.4vw, 5rem); }
  .company-grid { grid-template-columns: 1fr; grid-auto-rows: 420px; gap: 12px; }
  .company-copy { inset: auto 22px 24px; }
  .company-logo { max-width: 190px; max-height: 58px; }
  .company-logo.logo-stu { width: min(270px, 100%); max-width: 100%; max-height: none; padding: 0; }
  .company-logo.logo-rvm { width: min(300px, 100%); max-width: 100%; max-height: none; }
  .logo-panter { max-width: 76px; max-height: 88px; }
  .company-copy strong { padding-right: 16px; font-size: 1.65rem; }
  .company-arrow { right: 20px; top: 18px; width: 44px; height: 44px; }
  .capability-list a { min-height: 118px; grid-template-columns: 34px 1fr 20px; gap: 10px; }
  .capability-list small { grid-column: 2; grid-row: 2; margin-top: -34px; }
  .capability-list b { grid-column: 3; grid-row: 1 / span 2; }
  .story-layout { grid-template-columns: 1fr; gap: 52px; }
  .story-mark { min-height: 310px; }
  .principles { grid-template-columns: 1fr; }
  .principles article, .principles article:first-child { min-height: 220px; padding: 26px 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles article:last-child { border-bottom: 0; }
  .principles h3 { margin-top: 44px; }
  .contact { min-height: 800px; }
  .contact-details { grid-template-columns: 1fr; margin-top: 50px; }
  .contact-details > *, .contact-details > *:not(:first-child) { padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .footer-top { display: block; }
  .footer-brand { width: 100%; max-width: 430px; }
  .footer-top p { margin-top: 30px; text-align: left; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 46px 26px; }
  .footer-bottom { min-height: 0; grid-template-columns: 1fr auto; gap: 12px 24px; padding-block: 22px; }
  .footer-credit { grid-column: 1 / -1; grid-row: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
