:root {
  --bg: #e7e7e7;
  --card: #f4f4f4;
  --card-dark: #d9d9d9;
  --text: #242424;
  --muted: #6b6b6b;
  --line: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, #f6f6f6 0, transparent 38rem),
    linear-gradient(135deg, #d3d3d3, var(--bg));
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 24px;
  padding: 24px 24px 12px;
}

.card {
  width: min(100%, 520px);
  padding: clamp(32px, 7vw, 64px);
  text-align: center;
  /*border: 10px solid var(--line); Umrandung*/
  border-radius: 36px;
  background: linear-gradient(145deg, var(--card), var(--card-dark));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card-logo {
  width: auto;
  padding: 10px clamp(8px, 2vw, 16px);
  /*border: 10px solid var(--line); Umrandung*/
  border-radius: 18px;
  background: linear-gradient(145deg, var(--card), var(--card-dark));
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2vw, 24px);
  flex-wrap: wrap;
}

.card-logo h2 {
  flex-basis: 100%;
  margin: 0 0 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  color: var(--muted);
}

.card-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 150px;
  min-width: 0;
}

.card-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(22px, 5vw, 38px);
  object-fit: contain;
}

.card-logo a:nth-of-type(1) {
  flex-basis: 126px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(88, 96, 100, 0.42);
}

.card-logo a:nth-of-type(3) {
  flex-basis: 190px;
}

.card-logo a:nth-of-type(2) img,
.card-logo a:nth-of-type(3) img {
  height: 30px;
  max-width: none;
}

.card-logo a:nth-of-type(1) img {
  height: 27px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}

.social-card {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--card), var(--card-dark));
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.social-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.social-card a:hover,
.social-card a:focus-visible {
  background: rgba(255, 255, 255, 0.58);
  outline: none;
}

.social-card svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.card h2 {
  margin: 0;
  font-size: clamp(1.6rem, 5vw, 2.55rem);
  line-height: 1.05;
}

.company-focus {
  margin: 10px 0 26px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.company-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 0;
  text-align: left;
}

.company-details div {
  min-width: 0;
}

.company-details dt {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.company-details dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.company-details a {
  color: inherit;
  text-decoration: none;
}

.clickable {
  color: cadetblue;
  text-decoration: underline;
}

.clickable:hover {
  color: #5ebcd6;
}

.company-details a:hover,
.company-details a:focus-visible {
  text-decoration: underline;
}

.card > p:last-child {
  max-width: 28rem;
  margin: 22px auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 560px) {
  .company-details {
    grid-template-columns: 1fr;
  }
}

.card-logo > p:last-child {
  max-width: 90%;
  color: var(--muted);
}

@media (max-width: 760px) {
  .social-card {
    position: static;
    justify-self: center;
    margin-top: -8px;
  }
}
