:root {
  color-scheme: dark;
  --ink: #090b0c;
  --ink-2: #111416;
  --ink-3: #171b1d;
  --paper: #e7e4dc;
  --paper-2: #d8d5cd;
  --text: #f2efe8;
  --muted: #a7abad;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.26);
  --dark-line: rgba(9, 11, 12, 0.18);
  --accent: #f2a33b;
  --accent-dark: #c87813;
  --success: #adc784;
  --max: 1520px;
  --pad: clamp(1.25rem, 5vw, 5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .021) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .021) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
  color: var(--text);
  font-family: "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
img { max-width: 100%; }
::selection { background: var(--accent); color: var(--ink); }
.skip-link { position: fixed; z-index: 1000; top: -5rem; left: 1rem; padding: .7rem 1rem; background: var(--accent); color: var(--ink); font-weight: 700; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  width: min(100%, var(--max));
  min-height: 84px;
  transform: translateX(-50%);
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 12, .78);
  backdrop-filter: blur(18px) saturate(125%);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  transition: background .25s ease;
}
.site-header.scrolled { background: rgba(9, 11, 12, .94); }
.brand { display: inline-flex; width: max-content; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; background: var(--accent); color: #171109; font-size: .9rem; font-weight: 900; letter-spacing: -.07em; }
.brand-name { font-size: .7rem; line-height: 1.08; font-weight: 760; letter-spacing: .15em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.15vw, 2.6rem); }
.desktop-nav a { position: relative; padding: 2rem 0; color: #c4c7c7; font-size: .75rem; text-decoration: none; text-transform: uppercase; letter-spacing: .11em; white-space: nowrap; transition: color .2s ease; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 1.55rem; left: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; content: ""; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 1rem; }
.language-switch { display: flex; border: 1px solid var(--line-strong); background: rgba(9, 11, 12, .5); }
.language-switch button { min-width: 39px; min-height: 36px; padding: 0; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); font-size: .72rem; font-weight: 760; cursor: pointer; transition: background .2s ease, color .2s ease; }
.language-switch button:last-child { border-right: 0; }
.language-switch button:hover { color: var(--text); }
.language-switch button.active { background: var(--accent); color: var(--ink); }
.menu-toggle { position: relative; display: none; width: 44px; height: 40px; padding: 0; border: 1px solid var(--line-strong); background: transparent; color: var(--text); cursor: pointer; }
.menu-toggle span { position: absolute; top: 50%; left: 50%; display: block; width: 18px; height: 1px; margin: 0; background: currentColor; transition: transform .2s ease; }
.menu-toggle span:first-child { transform: translate(-50%, -4px); }
.menu-toggle span:last-child { transform: translate(-50%, 4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translate(-50%, 0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translate(-50%, 0) rotate(-45deg); }
.mobile-nav { position: absolute; z-index: 99; top: 84px; right: 0; left: 0; height: calc(100svh - 84px); overflow: auto; padding: 1rem var(--pad) 1.75rem; border-bottom: 1px solid var(--line); background: #0c0e0f; }
.mobile-nav a { display: flex; align-items: center; min-height: 56px; border-bottom: 1px solid var(--line); text-decoration: none; font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; }

main, .site-footer { width: min(100%, var(--max)); margin: 0 auto; border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
.hero { position: relative; min-height: max(760px, 100svh); overflow: hidden; isolation: isolate; }
.hero-image { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.06); }
.hero-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(6, 8, 9, .97) 0%, rgba(6, 8, 9, .92) 30%, rgba(6, 8, 9, .54) 58%, rgba(6, 8, 9, .05) 85%), linear-gradient(0deg, rgba(6,8,9,.75), transparent 36%); }
.hero::after { position: absolute; z-index: -1; inset: 84px 0 0; background: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 12.5% 100%, 100% 20%; mask-image: linear-gradient(90deg, black, transparent 70%); pointer-events: none; content: ""; }
.hero-copy { width: min(920px, 69%); min-height: max(700px, calc(100svh - 84px)); padding: clamp(9rem, 18vh, 13rem) var(--pad) clamp(9rem, 17vh, 12rem); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: .8rem; margin: 0 0 1.8rem; color: var(--accent); font-size: .73rem; font-weight: 760; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow > span:first-child { width: 34px; height: 1px; background: currentColor; }
h1, h2, h3, p { overflow-wrap: break-word; }
html[lang="de"] h1,
html[lang="de"] h2,
html[lang="de"] h3 { overflow-wrap: anywhere; hyphens: auto; }
h1 { max-width: 940px; margin: 0; font-family: "Arial Narrow", "Segoe UI", sans-serif; font-size: clamp(4rem, 7.6vw, 7.65rem); font-weight: 740; letter-spacing: -.066em; line-height: .89; text-wrap: balance; }
html[lang="sk"] h1, html[lang="de"] h1 { font-size: clamp(3.55rem, 6.8vw, 7rem); }
.hero-lede { max-width: 690px; margin: 2.25rem 0 0; color: #c1c5c4; font-size: clamp(1.04rem, 1.42vw, 1.28rem); line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.5rem; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 2.2rem; padding: .85rem 1.25rem; border: 1px solid var(--line-strong); text-decoration: none; font-size: .8rem; font-weight: 760; letter-spacing: .075em; text-transform: uppercase; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { min-width: 220px; border-color: var(--accent); background: var(--accent); color: #171109; }
.button-secondary { background: rgba(9,11,12,.36); backdrop-filter: blur(10px); }
.button-secondary:hover { border-color: var(--accent); }
.hero-readout { position: absolute; right: var(--pad); bottom: 4.25rem; display: flex; border: 1px solid var(--line-strong); background: rgba(9, 11, 12, .72); backdrop-filter: blur(12px); }
.hero-readout span { min-width: 100px; padding: .8rem 1rem; border-right: 1px solid var(--line); font: 760 .77rem/1.2 Consolas, monospace; letter-spacing: .09em; }
.hero-readout span:last-child { border-right: 0; }
.hero-readout b { display: block; margin-bottom: .45rem; color: var(--accent); font-size: .62rem; font-weight: 500; }
.hero-location { position: absolute; right: var(--pad); bottom: 1.4rem; display: flex; align-items: center; gap: .55rem; color: #d0d3d1; font: 650 .68rem/1 Consolas, monospace; letter-spacing: .08em; text-transform: uppercase; }
.hero-location i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px rgba(173,199,132,.75); }
.hero-index { position: absolute; left: 1.15rem; bottom: 1.5rem; color: #777c7d; font: .65rem Consolas, monospace; writing-mode: vertical-rl; }

.section { position: relative; scroll-margin-top: 84px; padding: clamp(5.5rem, 9vw, 9rem) var(--pad); }
.section-heading { display: grid; grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 6rem); align-items: start; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-kicker { gap: .65rem; margin: .45rem 0 0; }
.section-kicker > span:first-child { color: #626768; font-family: Consolas, monospace; }
.section-heading > div { min-width: 0; max-width: 940px; }
.section-heading h2, .software-copy h2, .about-layout h2, .contact-main h2, .legal-hero h1 { margin: 0; font-family: "Arial Narrow", "Segoe UI", sans-serif; font-size: clamp(3rem, 5.4vw, 5.6rem); font-weight: 730; letter-spacing: -.055em; line-height: .95; text-wrap: balance; }
.section-heading > div > p { max-width: 760px; margin: 1.75rem 0 0; color: var(--muted); font-size: 1.05rem; }

.section-services { background: var(--ink-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 310px; padding: 1.6rem 1.8rem 2.1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); transition: background .25s ease, transform .25s ease; }
.service-card:hover { z-index: 1; background: var(--accent); color: var(--ink); transform: translateY(-4px); }
.card-number { color: var(--accent); font: .68rem Consolas, monospace; }
.card-glyph { position: absolute; top: 1.25rem; right: 1.5rem; color: #676d6e; font-size: 1.35rem; font-weight: 200; }
.service-card h3 { max-width: 330px; margin: 7.5rem 0 .85rem; font-size: 1.16rem; line-height: 1.25; letter-spacing: -.015em; text-transform: uppercase; }
.service-card p { max-width: 380px; margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.65; }
.service-card:hover .card-number, .service-card:hover .card-glyph, .service-card:hover p { color: rgba(9,11,12,.76); }

.section-robotics { background: var(--paper); color: var(--ink); }
.section-heading-light .section-kicker { color: var(--accent-dark); }
.section-heading-light .section-kicker > span:first-child { color: #77756f; }
.section-heading-light > div > p { color: #555955; }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--dark-line); }
.platform-card { min-height: 330px; padding: 1.5rem clamp(1.25rem, 2.5vw, 2.5rem) 2.2rem; border-right: 1px solid var(--dark-line); display: flex; flex-direction: column; justify-content: flex-end; transition: background .25s ease; }
.platform-card:last-child { border-right: 0; }
.platform-card:hover { background: #f3f0e8; }
.platform-top { margin-bottom: auto; display: flex; justify-content: space-between; align-items: center; color: #72716c; font: .7rem Consolas, monospace; }
.platform-top i { width: 7px; height: 7px; border: 1px solid var(--accent-dark); border-radius: 50%; }
.platform-card h3 { margin: 0 0 .7rem; font-family: "Arial Narrow", "Segoe UI", sans-serif; font-size: clamp(3rem, 5vw, 5.2rem); letter-spacing: -.06em; line-height: .85; }
.platform-card p { max-width: 370px; margin: 0; color: #4f534f; font-size: .93rem; }
.robotics-lower { display: grid; grid-template-columns: .9fr 1.1fr; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.delivery-panel, .qualification-panel { padding: clamp(2rem, 4vw, 4rem); }
.delivery-panel { border-right: 1px solid var(--dark-line); }
.micro-label { margin: 0; color: #777872; font: 700 .69rem/1.4 Consolas, monospace; letter-spacing: .12em; }
.delivery-panel ol { margin: 2rem 0 0; padding: 0; list-style: none; }
.delivery-panel li { min-height: 54px; display: grid; grid-template-columns: 46px 1fr; align-items: center; border-top: 1px solid var(--dark-line); }
.delivery-panel li:last-child { border-bottom: 1px solid var(--dark-line); }
.delivery-panel li span { color: var(--accent-dark); font: .67rem Consolas, monospace; }
.delivery-panel li b { font-size: .86rem; letter-spacing: .055em; text-transform: uppercase; }
.qualification-panel > p:nth-child(2) { max-width: 650px; margin: 1.5rem 0 0; color: #535753; }
.tag-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2rem; }
.tag-list span { padding: .58rem .75rem; border: 1px solid var(--dark-line); background: rgba(255,255,255,.22); font: 670 .72rem/1.2 Consolas, monospace; letter-spacing: .04em; }

.section-experience { background: #0c0f10; }
.experience-layout { display: grid; grid-template-columns: .78fr 1.22fr; border: 1px solid var(--line); }
.timeline { padding: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--line); }
.timeline div { min-height: 92px; display: grid; grid-template-columns: 125px 1fr; gap: 1rem; align-items: center; border-bottom: 1px solid var(--line); }
.timeline div:last-child { border-bottom: 0; }
.timeline time { color: var(--accent); font: .7rem Consolas, monospace; letter-spacing: .06em; }
.timeline span { color: #d5d6d2; font-size: .9rem; line-height: 1.45; }
.location-panel { padding: clamp(1.5rem, 3.5vw, 3.5rem); background: radial-gradient(circle at 90% 5%, rgba(242,163,59,.1), transparent 26%), #131719; }
.location-head { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; margin-bottom: 2.2rem; }
.location-head > span { color: #777d7f; font: .65rem Consolas, monospace; text-transform: uppercase; }
.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.location-grid div { min-height: 92px; padding: 1.2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.location-grid b { color: var(--accent); font: .72rem Consolas, monospace; }
.location-grid span { color: #cacdcb; font-size: .83rem; line-height: 1.45; }
.confidentiality { margin: 1.5rem 0 0; color: #858a8b; font-size: .79rem; }

.section-software { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(3rem, 7vw, 8rem); align-items: center; min-height: 760px; background: linear-gradient(135deg, #111619, #0b0e0f 62%); }
.software-copy h2 { max-width: 730px; }
.software-copy > p:not(.section-kicker) { max-width: 660px; margin: 1.8rem 0 0; color: var(--muted); font-size: 1.04rem; }
.text-link { min-width: 235px; margin-top: 2.2rem; padding: .8rem 0; border-bottom: 1px solid var(--accent); display: inline-flex; justify-content: space-between; align-items: center; color: var(--accent); text-decoration: none; font-size: .8rem; font-weight: 740; letter-spacing: .08em; text-transform: uppercase; }
.product-console { border: 1px solid var(--line-strong); background: rgba(255,255,255,.025); box-shadow: 24px 24px 0 rgba(0,0,0,.14); }
.console-head { min-height: 54px; padding: 0 1.2rem; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: #8b9091; font: .68rem Consolas, monospace; letter-spacing: .1em; }
.console-screen { min-height: 330px; padding: 3rem; display: grid; place-items: center; text-align: center; }
.console-symbol { position: relative; width: 112px; height: 112px; margin-bottom: 2rem; transform: rotate(45deg); border: 1px solid var(--accent); }
.console-symbol::before, .console-symbol::after { position: absolute; background: var(--accent); content: ""; }
.console-symbol::before { top: 50%; left: -24px; width: 160px; height: 1px; }
.console-symbol::after { top: -24px; left: 50%; width: 1px; height: 160px; }
.console-symbol i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.console-symbol i:nth-child(1) { top: -3px; left: -3px; } .console-symbol i:nth-child(2) { top: -3px; right: -3px; } .console-symbol i:nth-child(3) { right: -3px; bottom: -3px; } .console-symbol i:nth-child(4) { bottom: -3px; left: -3px; }
.console-screen p { max-width: 420px; margin: 0; color: #9ca1a1; font-size: .9rem; }
.console-links { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.console-links a { min-height: 54px; padding: 0 .8rem; border-right: 1px solid var(--line); display: grid; place-items: center; text-align: center; text-decoration: none; color: #c3c6c5; font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; transition: color .2s ease, background .2s ease; }
.console-links a:last-child { border-right: 0; }
.console-links a:hover { background: var(--accent); color: var(--ink); }

.section-about { background: var(--ink-2); }
.about-layout { display: grid; grid-template-columns: 1.23fr .77fr; gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.about-layout h2 { max-width: 850px; }
.about-copy { padding-top: 1.4rem; border-top: 1px solid var(--line); }
.about-copy p { margin: 0 0 1.35rem; color: #b2b6b5; }
.about-copy p:last-child { margin-bottom: 0; }

.section-contact { display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(3rem, 7vw, 8rem); align-items: end; background: var(--accent); color: var(--ink); }
.section-kicker-dark { color: var(--ink); }
.section-kicker-dark > span:first-child { color: rgba(9,11,12,.55); }
.contact-main h2 { max-width: 760px; }
.contact-main > p:not(.section-kicker) { max-width: 650px; margin: 1.6rem 0 0; color: rgba(9,11,12,.72); }
.email-link { max-width: 760px; margin-top: 2.4rem; padding: 1rem 0; border-bottom: 2px solid var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-decoration: none; font-size: clamp(1rem, 2vw, 1.45rem); font-weight: 740; overflow-wrap: anywhere; }
.company-details { margin: 0; padding: 1.5rem 0 0; border-top: 1px solid rgba(9,11,12,.35); font-style: normal; }
.company-details div { display: grid; grid-template-columns: 150px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(9,11,12,.25); }
.company-details span { color: rgba(9,11,12,.58); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.company-details b { font-size: .88rem; line-height: 1.45; }

.site-footer { min-height: 180px; padding: 2.5rem var(--pad); display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; background: #07090a; }
.footer-brand { display: flex; align-items: center; gap: .8rem; font-size: .7rem; font-weight: 750; letter-spacing: .14em; }
.footer-brand .brand-mark { width: 36px; height: 36px; font-size: .75rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.5rem; }
.site-footer nav a { color: #a4a8a8; font-size: .73rem; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; }
.site-footer nav a:hover { color: var(--accent); }
.site-footer > p { grid-column: 1 / -1; align-self: end; margin: 1rem 0 0; color: #696e6f; font-size: .72rem; }

/* Legal and support pages */
.subpage .site-header { position: fixed; }
.subpage main { min-height: calc(100svh - 180px); padding-top: 84px; background: var(--ink-2); }
.legal-hero { position: relative; padding: clamp(5rem, 10vw, 9rem) var(--pad) clamp(4rem, 7vw, 7rem); border-bottom: 1px solid var(--line); overflow: hidden; }
.legal-hero::after { position: absolute; top: 15%; right: 7%; width: min(32vw, 390px); aspect-ratio: 1; border: 1px solid rgba(242,163,59,.26); transform: rotate(45deg); content: ""; }
.legal-hero .section-kicker { margin-bottom: 1.4rem; }
.legal-hero h1 { position: relative; z-index: 1; max-width: 900px; }
.legal-hero > p:last-child { position: relative; z-index: 1; max-width: 740px; margin: 1.8rem 0 0; color: var(--muted); font-size: 1.05rem; }
.legal-content { padding: clamp(4rem, 7vw, 7rem) var(--pad); }
.legal-grid { max-width: 1060px; display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); }
.legal-aside { position: sticky; top: 120px; height: max-content; }
.legal-aside p { margin: 0 0 .6rem; color: #777c7d; font: .68rem Consolas, monospace; letter-spacing: .1em; text-transform: uppercase; }
.legal-aside b { font-size: .85rem; }
.legal-body section { padding: 0 0 2.4rem; margin-bottom: 2.4rem; border-bottom: 1px solid var(--line); }
.legal-body section:last-child { margin-bottom: 0; }
.legal-body h2 { margin: 0 0 1rem; font-size: 1.2rem; letter-spacing: -.01em; }
.legal-body p, .legal-body li { color: #b4b8b7; }
.legal-body p { margin: 0 0 1rem; }
.legal-body ul { margin: 1rem 0 0; padding-left: 1.3rem; }
.legal-body li { margin: .45rem 0; }
.legal-callout { padding: 1.4rem; border-left: 3px solid var(--accent); background: rgba(242,163,59,.07); }
.support-email { display: inline-flex; margin-top: 1rem; padding: .85rem 1.1rem; border: 1px solid var(--accent); color: var(--accent); text-decoration: none; font-weight: 700; overflow-wrap: anywhere; }
.back-link { margin-top: 2.3rem; display: inline-flex; align-items: center; gap: .75rem; color: var(--accent); text-decoration: none; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.js .reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 1160px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-copy { width: min(840px, 78%); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card { min-height: 245px; border-right: 0; border-bottom: 1px solid var(--dark-line); }
  .platform-card:last-child { border-bottom: 0; }
}

@media (max-width: 900px) {
  body { background-size: 48px 48px; }
  .hero-copy { width: 100%; padding-right: 18%; }
  .hero-shade { background: linear-gradient(90deg, rgba(6,8,9,.96), rgba(6,8,9,.77) 62%, rgba(6,8,9,.25)), linear-gradient(0deg, rgba(6,8,9,.82), transparent 45%); }
  .hero-readout { right: var(--pad); }
  .section-heading, .about-layout, .section-contact, .section-software { grid-template-columns: minmax(0, 1fr); }
  .section-heading { gap: 1.5rem; }
  .section-kicker { margin-bottom: .7rem; }
  .experience-layout, .robotics-lower { grid-template-columns: 1fr; }
  .timeline, .delivery-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .section-robotics .delivery-panel { border-bottom-color: var(--dark-line); }
  .section-software { min-height: auto; }
  .product-console { width: min(100%, 680px); }
  .company-details { max-width: 700px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
}

@media (max-width: 680px) {
  :root { --pad: 1.15rem; }
  .site-header { min-height: 74px; }
  .mobile-nav { top: 74px; height: calc(100svh - 74px); }
  .brand-name { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .language-switch button { min-width: 35px; }
  .subpage main { padding-top: 74px; }
  .hero { min-height: 780px; }
  .hero-image { object-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(6,8,9,.95), rgba(6,8,9,.7)), linear-gradient(0deg, rgba(6,8,9,.94) 0%, rgba(6,8,9,.35) 54%); }
  .hero-copy { min-height: 650px; padding: 8rem 1.15rem 10.5rem; }
  .hero-copy > * { min-width: 0; max-width: 100%; }
  h1, html[lang="sk"] h1, html[lang="de"] h1 { font-size: clamp(3.05rem, 15vw, 4.7rem); line-height: .92; }
  html[lang="de"] .hero h1 { font-size: clamp(2.7rem, 11.8vw, 3.5rem); overflow-wrap: normal; hyphens: auto; }
  .hero-lede { font-size: 1rem; }
  .hero-actions, .button { width: 100%; }
  .hero-readout { right: 1.15rem; bottom: 4.5rem; left: 1.15rem; }
  .hero-readout span { min-width: 0; flex: 1; padding: .7rem; }
  .hero-location { right: 1.15rem; bottom: 1.6rem; left: 1.15rem; font-size: .59rem; }
  .hero-index { display: none; }
  .section { padding-block: 5rem; }
  .section-heading h2, .software-copy h2, .about-layout h2, .contact-main h2, .legal-hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .service-card h3 { margin-top: 5.5rem; }
  .platform-card { min-height: 230px; }
  .platform-card h3 { font-size: 3.6rem; }
  .timeline div { min-height: 100px; grid-template-columns: 92px 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-grid div { min-height: 80px; }
  .console-screen { min-height: 290px; padding: 2.2rem 1.3rem; }
  .console-symbol { width: 92px; height: 92px; }
  .console-links { grid-template-columns: 1fr; }
  .console-links a { border-right: 0; border-bottom: 1px solid var(--line); }
  .console-links a:last-child { border-bottom: 0; }
  .email-link { font-size: .92rem; }
  .company-details div { grid-template-columns: 1fr; gap: .3rem; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; gap: .9rem 1.2rem; }
  .site-footer > p { grid-column: 1; }
  .legal-hero { padding-top: 4.5rem; }
  .legal-hero::after { right: -25%; width: 65vw; opacity: .55; }
}
