:root {
  --bg: #ffffff;
  --bg-accent: #f3f6fc;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #182235;
  --muted: #6f7d95;
  --line: rgba(24, 34, 53, 0.08);
  --accent: #385dff;
  --accent-soft: rgba(56, 93, 255, 0.1);
  --stage-start: #f8faff;
  --stage-end: #edf2fb;
  --shadow: 0 24px 70px rgba(37, 53, 86, 0.08);
  --shadow-hover: 0 28px 84px rgba(37, 53, 86, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 93, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(177, 208, 255, 0.16), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
}

body::before {
  top: 86px;
  right: 8vw;
  width: 220px;
  height: 220px;
  background: rgba(56, 93, 255, 0.06);
}

body::after {
  bottom: 64px;
  left: 6vw;
  width: 260px;
  height: 260px;
  background: rgba(194, 221, 255, 0.14);
}

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

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

.landing-page {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero-logo {
  width: min(100%, 420px);
  margin: 0 auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-copy {
  width: min(100%, 620px);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.link-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(24, 34, 53, 0.06);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96));
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.link-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 93, 255, 0.16);
  box-shadow: var(--shadow-hover);
}

.logo-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: 24px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(123, 167, 255, 0.12), transparent 26%),
    linear-gradient(135deg, var(--stage-start), var(--stage-end));
  border: 1px solid rgba(24, 34, 53, 0.05);
  overflow: hidden;
}

.logo-stage-dark {
  background:
    radial-gradient(circle at top right, rgba(123, 167, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #1b2434, #0f1723);
  border-color: rgba(255, 255, 255, 0.06);
}

.logo-stage img {
  max-height: 72px;
  object-fit: contain;
}

.logo-motionx {
  max-height: 64px;
}

.logo-b2b {
  max-height: 64px;
}

.logo-augustin {
  max-height: 88px;
}

.link-title {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.link-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(24, 34, 53, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 36px rgba(37, 53, 86, 0.05);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(56, 93, 255, 0.12);
  border-radius: 999px;
  background: rgba(56, 93, 255, 0.06);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.footer-link:hover {
  transform: translateY(-2px);
  background: rgba(56, 93, 255, 0.1);
  border-color: rgba(56, 93, 255, 0.18);
}

.footer-link-dark {
  border-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, #1b2434, #0f1723);
  color: #ffffff;
}

.footer-link-dark:hover {
  background: linear-gradient(135deg, #222d40, #131d2b);
  border-color: rgba(255, 255, 255, 0.1);
}

.legal-page {
  width: min(calc(100% - 32px), 920px);
  margin: 0 auto;
  padding: 48px 0 72px;
}

.legal-hero {
  margin-bottom: 28px;
  text-align: center;
}

.legal-logo {
  width: min(100%, 320px);
  margin: 0 auto 20px;
}

.legal-card {
  padding: 28px;
  border: 1px solid rgba(24, 34, 53, 0.06);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96));
  box-shadow: var(--shadow);
}

.legal-title {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
}

.legal-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-section + .legal-section {
  margin-top: 28px;
}

.legal-heading {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.legal-text {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.legal-text + .legal-text {
  margin-top: 10px;
}

.legal-link {
  color: var(--accent);
  font-weight: 700;
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.legal-stand {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .landing-page {
    width: min(calc(100% - 24px), var(--max-width));
    padding-top: 28px;
  }

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

  .site-footer {
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  .landing-page {
    padding-bottom: 32px;
  }

  .hero {
    margin-bottom: 28px;
  }

  .hero-kicker {
    margin-bottom: 16px;
    font-size: 0.74rem;
  }

  .hero-logo {
    width: min(100%, 320px);
  }

  .link-card {
    padding: 16px;
  }

  .logo-stage {
    min-height: 148px;
    padding: 20px;
  }

  .logo-stage img,
  .logo-motionx,
  .logo-b2b,
  .logo-augustin {
    max-height: 56px;
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .legal-page {
    width: min(calc(100% - 24px), 920px);
    padding: 28px 0 40px;
  }

  .legal-card {
    padding: 20px;
  }

  .legal-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}
