:root {
  --color-bg: #020914;
  --color-bg-deep: #01060e;
  --color-panel: rgba(5, 28, 44, 0.72);
  --color-panel-solid: #061b2b;
  --color-panel-light: rgba(8, 42, 60, 0.76);
  --color-text: #f7fafc;
  --color-muted: #91a7b8;
  --color-muted-light: #c4d1db;
  --color-cyan: #11d6df;
  --color-cyan-bright: #38edf0;
  --color-cyan-dark: #063b4a;
  --color-line: rgba(17, 214, 223, 0.2);
  --color-line-strong: rgba(17, 214, 223, 0.52);
  --shadow-panel: 0 24px 70px rgba(0, 4, 12, 0.34);
  --shadow-glow: 0 0 40px rgba(17, 214, 223, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 12%, rgba(3, 78, 109, 0.3), transparent 31rem),
    radial-gradient(circle at 8% 70%, rgba(4, 52, 73, 0.2), transparent 36rem),
    linear-gradient(145deg, #01060e 0%, #020914 48%, #03111f 100%);
  color: var(--color-text);
  font-family:
    "Space Grotesk",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(17, 214, 223, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 214, 223, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--color-muted);
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--color-cyan);
  color: #001019;
  font-weight: 750;
  padding: 10px 14px;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(17, 214, 223, 0.12);
  background: rgba(1, 7, 16, 0.82);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  text-decoration: none;
}

.brand-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(1.28) saturate(1.12) drop-shadow(0 0 12px rgba(17, 214, 223, 0.16));
}

.brand-wordmark {
  font-size: 1.7rem;
  font-weight: 730;
  letter-spacing: -0.04em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  border-radius: var(--radius-sm);
  color: rgba(247, 250, 252, 0.82);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 10px 14px;
  text-decoration: none;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(17, 214, 223, 0.07);
  color: var(--color-cyan-bright);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 20px;
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan-bright);
  padding: 12px 20px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border-color: var(--color-cyan-bright);
  background: rgba(17, 214, 223, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  background: rgba(17, 214, 223, 0.06);
  color: #ffffff;
}

.nav-toggle-line {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 44px 0 76px;
}

.hero::before {
  position: absolute;
  top: -18rem;
  right: -6rem;
  z-index: -2;
  width: 72rem;
  height: 72rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(2, 44, 65, 0.46) 0 26%, rgba(3, 35, 53, 0.3) 42%, transparent 68%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 7, 16, 0.66), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(17, 214, 223, 0.06), transparent 42%);
  content: "";
  pointer-events: none;
}

.hero-shell {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.84fr) minmax(580px, 1.16fr);
  min-height: 640px;
  align-items: center;
  gap: 20px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 590px;
  padding: 22px 0 8px;
}

.eyebrow {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--color-cyan-bright);
  font-size: 0.76rem;
  font-weight: 740;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: var(--color-cyan);
  content: "";
}

.eyebrow-pill {
  border: 1px solid rgba(17, 214, 223, 0.18);
  border-radius: 999px;
  background: rgba(5, 31, 47, 0.66);
  padding: 8px 17px;
}

.eyebrow-pill::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color-cyan);
}

.hero-copy h1 {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(3.45rem, 4.4vw, 4.65rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.hero-copy h1 span {
  background: linear-gradient(90deg, #0fcbd5, #41eff0);
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 32px rgba(17, 214, 223, 0.12);
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: #a6b6c3;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-actions,
.social-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-weight: 720;
  padding: 13px 22px;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.button span,
.card-link span,
.text-link span {
  color: var(--color-cyan-bright);
  font-size: 1.18em;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, #14ced8, #2ce6e8);
  box-shadow: 0 10px 30px rgba(17, 214, 223, 0.18);
  color: #00131c;
}

.button-primary span {
  color: #00131c;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 14px 38px rgba(17, 214, 223, 0.3);
}

.button-secondary {
  border-color: rgba(17, 214, 223, 0.46);
  background: rgba(4, 23, 37, 0.7);
  color: #ffffff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--color-cyan);
  background: rgba(17, 214, 223, 0.08);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.trust-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 9px;
  min-width: 0;
  padding-right: 14px;
}

.trust-point + .trust-point {
  border-left: 1px solid var(--color-line);
  padding-left: 16px;
}

.trust-point > span:last-child {
  display: grid;
  gap: 1px;
}

.trust-point strong {
  color: #dce8ed;
  font-size: 0.86rem;
  font-weight: 650;
  white-space: nowrap;
}

.trust-point small {
  color: #8196a6;
  font-size: 0.72rem;
  white-space: nowrap;
}

.line-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(17, 214, 223, 0.32);
  border-radius: 50%;
  background: rgba(17, 214, 223, 0.06);
  color: var(--color-cyan);
}

.line-icon svg,
.fact-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 640px;
}

.hero-visual::before {
  position: absolute;
  top: 50%;
  left: 51%;
  width: min(44vw, 670px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(17, 214, 223, 0.56);
  border-radius: 50%;
  box-shadow:
    inset 0 0 80px rgba(17, 214, 223, 0.04),
    0 0 80px rgba(17, 214, 223, 0.05);
  content: "";
}

.hero-visual::after {
  position: absolute;
  top: 50%;
  left: 51%;
  width: min(54vw, 820px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(17, 214, 223, 0.08);
  border-radius: 50%;
  content: "";
}

.visual-map {
  position: absolute;
  top: 10%;
  right: -9%;
  width: 48%;
  height: 72%;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(37, 225, 231, 0.78) 1px, transparent 1.4px);
  background-size: 7px 7px;
  clip-path: polygon(30% 0, 70% 6%, 100% 30%, 88% 48%, 100% 72%, 75% 100%, 42% 88%, 18% 62%, 0 35%);
  mask-image: radial-gradient(circle, #000 0 42%, transparent 76%);
}

.eu-seal {
  position: absolute;
  top: 12%;
  right: 3%;
  z-index: 1;
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border: 1px solid rgba(17, 214, 223, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(17, 214, 223, 0.12);
  color: var(--color-cyan-bright);
}

.eu-seal::before {
  position: absolute;
  inset: 13px;
  border: 1px dotted var(--color-cyan);
  border-radius: 50%;
  content: "";
}

.eu-seal span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero-showcase {
  position: absolute;
  right: -11%;
  bottom: -2%;
  z-index: 3;
  display: block;
  width: 118%;
  text-decoration: none;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}

.hero-showcase img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 32px rgba(0, 3, 10, 0.7));
}

.hero-showcase:hover,
.hero-showcase:focus-visible {
  transform: translateY(-4px);
  filter: brightness(1.05);
  outline: none;
}

.fact-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(17, 214, 223, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(5, 33, 50, 0.88), rgba(3, 20, 33, 0.88));
  box-shadow: var(--shadow-panel);
}

.fact-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  min-width: 0;
  padding: 28px 30px;
}

.fact-item + .fact-item {
  border-left: 1px solid var(--color-line);
}

.fact-item > span:last-child {
  display: grid;
  gap: 4px;
}

.fact-icon {
  color: var(--color-cyan);
}

.fact-icon svg {
  width: 28px;
}

.fact-item small {
  color: #8aa5b6;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-item strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 670;
}

.fact-item em {
  color: #8ea1af;
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.45;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-lined {
  border-top: 1px solid rgba(17, 214, 223, 0.1);
  border-bottom: 1px solid rgba(17, 214, 223, 0.1);
  background:
    linear-gradient(135deg, rgba(4, 28, 43, 0.54), rgba(2, 13, 23, 0.34));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.heading-split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 60px;
}

.heading-split > p {
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.section-heading h2,
.trust-copy h2,
.founder-copy h2,
.contact-panel h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  font-weight: 690;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading p,
.trust-copy p,
.founder-copy p,
.contact-panel p {
  font-size: 1.02rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(6, 35, 52, 0.86), rgba(3, 19, 31, 0.78));
  box-shadow: var(--shadow-panel);
  padding: 30px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(17, 214, 223, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(17, 214, 223, 0.04);
  content: "";
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-line-strong);
  box-shadow: var(--shadow-panel), var(--shadow-glow);
}

.product-featured {
  border-color: rgba(17, 214, 223, 0.42);
  background:
    linear-gradient(155deg, rgba(7, 56, 70, 0.88), rgba(3, 21, 34, 0.8));
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tag {
  color: var(--color-cyan-bright);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-number {
  color: rgba(17, 214, 223, 0.34);
  font-size: 2.2rem;
  font-weight: 640;
  line-height: 1;
}

.product-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 670;
  letter-spacing: -0.04em;
}

.product-card p {
  max-width: 34ch;
  margin-bottom: 0;
}

.card-link,
.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.card-link:hover,
.card-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--color-cyan-bright);
  outline: none;
}

.split-layout,
.trust-grid,
.founder-layout,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 72px;
}

.section-heading.align-left {
  margin: 0;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.capability-list article {
  min-height: 220px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(4, 26, 41, 0.62);
  padding: 26px;
}

.capability-list span {
  display: block;
  margin-bottom: 26px;
  color: var(--color-cyan);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.capability-list h3 {
  margin-bottom: 9px;
  color: #ffffff;
  font-size: 1.12rem;
}

.capability-list p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.trust-copy p:last-of-type,
.founder-copy p:last-of-type {
  margin-bottom: 26px;
}

.company-panel {
  border: 1px solid rgba(17, 214, 223, 0.3);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(6, 38, 55, 0.84), rgba(3, 20, 32, 0.82));
  box-shadow: var(--shadow-panel);
  padding: 32px;
}

.company-panel h3 {
  margin-bottom: 18px;
  color: var(--color-cyan-bright);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-panel dl {
  margin: 0;
}

.company-panel div {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 24px;
  padding: 17px 0;
}

.company-panel div + div {
  border-top: 1px solid var(--color-line);
}

.company-panel dt {
  color: #7893a4;
  font-size: 0.78rem;
  font-weight: 690;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.company-panel dd {
  margin: 0;
  color: #eef4f6;
  font-size: 0.93rem;
  font-weight: 610;
}

.founder-layout {
  grid-template-columns: 310px minmax(0, 1fr);
  align-items: center;
}

.founder-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-lg);
  background: var(--color-panel);
  box-shadow: var(--shadow-panel);
}

.founder-image-wrap::after {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -80px 80px rgba(1, 7, 16, 0.34);
  content: "";
}

.founder-image-wrap img {
  width: 100%;
  height: auto;
}

.founder-copy {
  max-width: 750px;
}

.contact-section {
  padding-bottom: 90px;
}

.contact-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 214, 223, 0.4);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 30%, rgba(17, 214, 223, 0.14), transparent 24rem),
    linear-gradient(145deg, rgba(6, 42, 58, 0.9), rgba(3, 19, 31, 0.9));
  box-shadow: var(--shadow-panel), var(--shadow-glow);
  padding: 42px;
}

.contact-panel p {
  max-width: 700px;
  margin-bottom: 0;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  border-top: 1px solid rgba(17, 214, 223, 0.14);
  background: rgba(1, 7, 16, 0.72);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
}

.brand-footer .brand-icon {
  width: 40px;
  height: 40px;
}

.brand-footer .brand-wordmark {
  font-size: 1.3rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer nav a {
  color: #8ca2b1;
  font-size: 0.85rem;
  font-weight: 630;
  text-decoration: none;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--color-cyan-bright);
  outline: none;
}

.copyright {
  margin: 0;
  color: #6f8798;
  font-size: 0.8rem;
}

.simple-page {
  min-height: 100vh;
}

.simple-main {
  padding: 72px 0 110px;
}

.simple-content {
  max-width: 900px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(6, 35, 52, 0.86), rgba(3, 19, 31, 0.82));
  box-shadow: var(--shadow-panel);
  padding: clamp(30px, 6vw, 68px);
}

.simple-content h1 {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.simple-content h2 {
  margin-top: 38px;
  color: #ffffff;
  font-size: 1.3rem;
}

.simple-content a {
  color: var(--color-cyan-bright);
}

.simple-content li + li {
  margin-top: 8px;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-visual::before {
    width: min(82vw, 680px);
  }

  .hero-visual::after {
    width: min(95vw, 820px);
  }

  .hero-showcase {
    right: 50%;
    width: min(104%, 850px);
    transform: translateX(50%);
  }

  .hero-showcase:hover,
  .hero-showcase:focus-visible {
    transform: translateX(50%) translateY(-4px);
  }

  .fact-strip,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }

  .fact-item:nth-child(4) {
    border-top: 1px solid var(--color-line);
  }

  .heading-split,
  .split-layout,
  .trust-grid,
  .founder-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .heading-split {
    gap: 14px;
  }

  .section-heading.align-left {
    max-width: 760px;
  }

  .founder-image-wrap {
    max-width: 310px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-icon {
    width: 43px;
    height: 43px;
  }

  .brand-wordmark {
    font-size: 1.42rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header[data-header] .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 15px;
    left: 15px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--color-line-strong);
    border-radius: var(--radius-md);
    background: rgba(2, 13, 23, 0.98);
    box-shadow: var(--shadow-panel);
    padding: 8px;
  }

  .site-header[data-header].is-open .site-nav {
    display: flex;
  }

  .site-header[data-header] .site-nav a {
    padding: 13px 14px;
  }

  .site-header[data-header] .site-nav .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .simple-page .site-nav {
    gap: 2px;
  }

  .simple-page .site-nav a {
    padding: 8px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 11.5vw, 4.2rem);
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-point + .trust-point {
    border-left: 0;
    padding-left: 0;
  }

  .hero-visual {
    min-height: 460px;
  }

  .eu-seal {
    width: 78px;
    height: 78px;
  }

  .fact-strip,
  .product-grid,
  .capability-list {
    grid-template-columns: 1fr;
  }

  .fact-item + .fact-item,
  .fact-item:nth-child(3),
  .fact-item:nth-child(4) {
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .trust-copy h2,
  .founder-copy h2,
  .contact-panel h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .product-card {
    min-height: 310px;
  }

  .company-panel div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-panel {
    padding: 28px;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand-icon {
    width: 39px;
    height: 39px;
  }

  .brand-wordmark {
    font-size: 1.28rem;
  }

  .simple-page .brand-wordmark {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 11.5vw, 3.5rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-showcase {
    width: 126%;
  }

  .visual-map,
  .eu-seal {
    display: none;
  }

  .fact-item {
    padding: 24px;
  }

  .product-card,
  .company-panel,
  .contact-panel {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
