:root {
  --bg: #050506;
  --bg-soft: #0d0e10;
  --panel: #121316;
  --line: #27292f;
  --text: #f6f3ee;
  --muted: #a7a39c;
  --dim: #706d67;
  --blue: #1738ff;
  --yellow: #e5ff24;
  --orange: #ffb300;
  --red: #f04418;
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 72%, rgba(240, 68, 24, 0.1), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  border-bottom: 1px solid rgba(246, 243, 238, 0.08);
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo-crop {
  position: relative;
  display: block;
  width: 250px;
  height: 76px;
  overflow: hidden;
}

.brand-logo-crop img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 272px;
  height: 272px;
  max-width: none;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.brand > span:last-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  min-width: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.language-switch button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--yellow);
}

main {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

main > section {
  scroll-margin-top: 132px;
}

.hero {
  --hero-video-bleed-top: 122px;
  --hero-video-bleed-bottom: 80px;
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 74px 0 80px;
}

.hero-video {
  position: absolute;
  inset: calc(-1 * var(--hero-video-bleed-top)) calc(50% - 50vw) calc(-1 * var(--hero-video-bleed-bottom));
  z-index: 0;
  overflow: hidden;
  border-radius: 0;
  background: #050506;
}

.hero-video::before,
.hero-video::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero-video::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.96) 0%, rgba(5, 5, 6, 0.82) 30%, rgba(5, 5, 6, 0.26) 62%, rgba(5, 5, 6, 0.74) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.9), transparent 28%, transparent 66%, rgba(5, 5, 6, 0.92));
}

.hero-video::after {
  display: none;
}

.hero-video video {
  position: absolute;
  left: 0;
  top: -18%;
  width: 100%;
  height: 136%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.62;
  filter: saturate(0.82) contrast(1.08);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.section-mark {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.2vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 720;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.button.primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #090909;
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero-logo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  border-left: 1px solid rgba(246, 243, 238, 0.08);
}

.hero-logo::before,
.hero-logo::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(38vw, 430px);
  height: min(38vw, 430px);
  content: "";
  border: 1px solid rgba(246, 243, 238, 0.08);
  transform: translate(-50%, -50%);
}

.hero-logo::after {
  width: min(28vw, 310px);
  height: min(28vw, 310px);
  border-color: rgba(229, 255, 36, 0.16);
}

.hero-logo img {
  position: relative;
  z-index: 1;
  width: min(31vw, 350px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.55));
}

.intro {
  padding: 32px 0 72px;
  border-top: 1px solid rgba(246, 243, 238, 0.08);
}

.intro p {
  max-width: 920px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 3.2vw, 2.8rem);
  line-height: 1.08;
}

.split-section,
.process,
.model-section,
.contact,
.imprint-page {
  padding: clamp(56px, 7vw, 92px) 0;
  border-top: 1px solid rgba(246, 243, 238, 0.08);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 92px);
}

.steps p,
.contact p {
  margin-bottom: 0;
  color: var(--muted);
}

.offer-section {
  display: block;
  padding: clamp(52px, 6vw, 78px) 0;
  border-top: 1px solid rgba(246, 243, 238, 0.08);
}

.offer-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.offer-heading .section-mark {
  margin-bottom: 0;
}

.offer-section h2 {
  max-width: 760px;
}

.offer-section.compact h2 {
  margin-bottom: 0;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(28px, 4vw, 42px);
  background: var(--line);
  border: 1px solid var(--line);
}

.service-matrix article {
  min-height: 150px;
  padding: clamp(20px, 2.5vw, 28px);
  background: rgba(18, 19, 22, 0.92);
}

.service-matrix p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.offer-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(28px, 4vw, 46px);
  background: var(--line);
  border: 1px solid var(--line);
}

.offer-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card-grid article {
  min-height: 210px;
  padding: clamp(26px, 3.4vw, 38px);
  background: rgba(18, 19, 22, 0.96);
}

.offer-card-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.process h2 {
  max-width: 760px;
}

.process {
  padding-bottom: clamp(40px, 5vw, 64px);
}

.process-line {
  margin-top: 36px;
  border-top: 1px solid rgba(246, 243, 238, 0.18);
}

.process-line article {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 96px);
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(246, 243, 238, 0.1);
}

.process-line article:last-child {
  border-bottom: 0;
}

.process-line span {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-line p {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  line-height: 1.24;
}

.model-section {
  min-height: auto;
}

.model-pin {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.model-copy {
  position: relative;
  z-index: 3;
  max-width: 580px;
  padding: 0;
}

.model-copy p:not(.section-mark) {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.model-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.model-media {
  display: flex;
  justify-content: flex-end;
}

.polar-strip {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  margin-top: clamp(42px, 7vw, 76px);
  padding-top: 28px;
  border-top: 1px solid rgba(246, 243, 238, 0.08);
}

.polar-strip-header span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.polar-strip-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.polar-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.polar-panel {
  margin: 0;
  display: grid;
  gap: 8px;
}

.polar-panel img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(246, 243, 238, 0.08);
  border-radius: var(--radius);
  background: #050506;
  opacity: 0.68;
  filter: saturate(0.72) contrast(0.92) brightness(0.8);
}

.polar-panel figcaption {
  color: rgba(246, 243, 238, 0.76);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-image {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #050506;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.model-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  opacity: 0.86;
}

.model-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.08), transparent 42%),
    linear-gradient(180deg, transparent 68%, rgba(5, 5, 6, 0.22));
  pointer-events: none;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  min-height: 460px;
}

.contact h2 {
  max-width: 760px;
}

.contact p {
  max-width: 580px;
  font-size: 1.1rem;
}

.contact-links {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.contact-links a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 740;
}

.contact-links a:first-child {
  border-color: rgba(229, 255, 36, 0.72);
}

.imprint-page {
  min-height: calc(100vh - 188px);
  padding-bottom: clamp(52px, 7vw, 82px);
}

.imprint-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.imprint-page h1 {
  max-width: 680px;
  font-size: clamp(1.8rem, 3.8vw, 3.6rem);
  line-height: 1;
}

.imprint-page address {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 1.05rem;
}

.imprint-contact {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.imprint-contact span {
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.imprint-contact a {
  color: var(--text);
  font-weight: 740;
}

.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(246, 243, 238, 0.08);
  color: var(--dim);
  font-size: 0.82rem;
}

.site-footer a {
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

@media (max-width: 820px) {
  .site-header {
    width: min(100% - 28px, 1160px);
    padding: 16px 0;
    gap: 10px;
  }

  .brand-logo-crop {
    width: 176px;
    height: 58px;
    flex: 0 0 auto;
  }

  .brand-logo-crop img {
    width: 184px;
    height: 184px;
  }

  .nav {
    gap: 12px;
    font-size: 0.78rem;
  }

  .header-actions {
    gap: 12px;
  }

  .language-switch {
    font-size: 0.72rem;
  }

  main {
    width: min(100% - 28px, 1160px);
  }

  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    --hero-video-bleed-top: 90px;
    --hero-video-bleed-bottom: 64px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 0 64px;
  }

  .hero-video {
    inset: 0 calc(50% - 50vw);
    opacity: 0.72;
  }

  .split-section,
  .contact,
  .imprint-content {
    grid-template-columns: 1fr;
  }

  .model-section {
    min-height: auto;
  }

  .model-pin {
    grid-template-columns: 1fr;
  }

  .model-media {
    justify-content: flex-start;
  }

  .polar-strip {
    grid-template-columns: 1fr;
  }

  .polar-stack {
    grid-template-columns: 1fr;
  }

  .offer-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-matrix {
    grid-template-columns: 1fr;
  }

  .offer-card-grid,
  .offer-card-grid.two {
    grid-template-columns: 1fr;
  }

  .process-line article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .model-image {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .nav a:nth-child(2),
  .nav a:nth-child(3),
  .nav a:nth-child(4) {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .actions,
  .button {
    width: 100%;
  }

  .button {
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
    text-align: center;
    white-space: normal;
  }

  .offer-card-grid article {
    padding: 22px;
  }

  .contact-links {
    min-width: 0;
  }

  .model-actions,
  .model-actions .button {
    width: 100%;
  }

  .model-image {
    aspect-ratio: 4 / 5;
    max-width: 360px;
  }
}

@media (max-width: 360px) {
  .site-header {
    width: min(100% - 24px, 1160px);
  }

  .brand-logo-crop {
    width: 170px;
    height: 56px;
  }

  .brand-logo-crop img {
    width: 178px;
    height: 178px;
  }

  .nav {
    margin-left: auto;
  }

  .nav a:first-child {
    display: none;
  }

  .language-switch {
    gap: 4px;
    font-size: 0.68rem;
  }
}
