* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: #111827;
  background:
    radial-gradient(
      circle at top right,
      rgba(79, 124, 255, 0.14),
      transparent 32%
    ),
    linear-gradient(
      to bottom,
      #f8fbff 0%,
      #f4f7fb 100%
    );
  overflow-x: hidden;
}

.background-orb {
  position: fixed;
  top: -140px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(79, 124, 255, 0.22) 0%,
    rgba(79, 124, 255, 0) 72%
  );
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 100px 28px 80px;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;

  padding: 58px;

  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.08),
    0 10px 30px rgba(15, 23, 42, 0.04);
}

h1 {
  margin: 0;
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -2.4px;
  line-height: 1;
  color: #0f172a;
}

.subtitle {
  margin-top: 22px;
  max-width: 720px;

  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;

  color: #64748b;
}

.section-title {
  margin-top: 46px;
  margin-bottom: 18px;

  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;

  color: #0f172a;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-card {
  text-decoration: none;

  background: rgba(248, 250, 252, 0.74);

  border: 1px solid #e5e7eb;
  border-radius: 22px;

  padding: 20px 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;

  color: #111827;
  font-weight: 700;
  font-size: 15px;
}

.link-card:hover {
  transform: translateY(-2px);

  border-color: rgba(79, 124, 255, 0.35);

  background: rgba(255, 255, 255, 0.92);

  box-shadow:
    0 12px 28px rgba(79, 124, 255, 0.08),
    0 4px 12px rgba(15, 23, 42, 0.04);
}

.link-card span:last-child {
  color: #4f7cff;
  font-size: 18px;
  transition: transform 0.18s ease;
}

.link-card:hover span:last-child {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .container {
    padding: 56px 20px 40px;
  }

  .hero-card {
    padding: 32px 24px;
    border-radius: 28px;
  }

  h1 {
    font-size: 42px;
    letter-spacing: -1.4px;
  }

  .subtitle {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .section-title {
    margin-top: 36px;
    margin-bottom: 16px;
    font-size: 17px;
  }

  .link-card {
    padding: 18px 18px;
    border-radius: 18px;
    font-size: 14px;
  }

  .background-orb {
    width: 280px;
    height: 280px;
    top: -90px;
    right: -70px;
  }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 26px;
  padding: 10px 14px;

  text-decoration: none;

  color: #475569;
  font-size: 14px;
  font-weight: 700;

  background: rgba(248, 250, 252, 0.9);

  border: 1px solid #e5e7eb;
  border-radius: 14px;

  transition: all 0.18s ease;
}

.back-link:hover {
  color: #4f7cff;
  border-color: rgba(79, 124, 255, 0.25);

  transform: translateY(-1px);

  box-shadow: 0 8px 20px rgba(79, 124, 255, 0.08);
}

.legal-card {
  margin-top: 36px;

  background: rgba(248, 250, 252, 0.72);

  border: 1px solid #e5e7eb;
  border-radius: 24px;

  overflow: hidden;
}

.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;

  padding: 22px 24px;

  border-bottom: 1px solid #e5e7eb;
}

.legal-row:last-child {
  border-bottom: none;
}

.legal-label {
  color: #64748b;
  font-weight: 700;
  min-width: 100px;
}

.legal-value {
  color: #111827;
  font-weight: 600;
  text-align: right;
}

@media (max-width: 768px) {
  .legal-row {
    flex-direction: column;
    gap: 10px;

    padding: 18px;
  }

  .legal-value {
    text-align: left;
  }
}