:root {
  --bg: #f5f7fc;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-border: rgba(118, 145, 210, 0.18);
  --text: #132238;
  --muted: #63738b;
  --hero-start: #2351cc;
  --hero-end: #4d78ec;
  --blue-surface: #eef4ff;
  --blue-border: #bed4ff;
  --mint-surface: #ecfff5;
  --mint-border: #bde8cf;
  --sand-surface: #fff9ef;
  --sand-border: #f0d6a1;
  --shadow: 0 24px 60px rgba(30, 56, 117, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(96, 132, 232, 0.25), transparent 26%),
    radial-gradient(circle at top right, rgba(80, 194, 164, 0.16), transparent 24%),
    linear-gradient(180deg, #eef4ff 0%, #f8fafc 34%, #f4f8ff 100%);
}

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

.page-shell {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 28px 36px;
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--hero-start), var(--hero-end)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  box-shadow: var(--shadow);
}

.hero__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero__logo {
  width: min(245px, 100%);
  height: auto;
  padding: 10px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 28px rgba(18, 39, 93, 0.18);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero__badge--secondary {
  background: rgba(10, 25, 74, 0.2);
}

.hero h1 {
  width: min(680px, 100%);
  margin: 20px 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.hero p {
  width: min(620px, 100%);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.hero__chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.content {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.panel {
  padding: 26px;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(22, 35, 74, 0.08);
  backdrop-filter: blur(10px);
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #3d5ab0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.card-list {
  display: grid;
  gap: 14px;
}

.link-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid transparent;
  border-radius: 22px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(25, 47, 100, 0.1);
}

.link-card--blue {
  background: var(--blue-surface);
  border-color: var(--blue-border);
}

.link-card--mint {
  background: var(--mint-surface);
  border-color: var(--mint-border);
}

.link-card--sand {
  background: var(--sand-surface);
  border-color: var(--sand-border);
}

.link-card__icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #3363ec, #1c49bc);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.link-card--mint .link-card__icon {
  background: linear-gradient(135deg, #11956a, #0d7e59);
}

.link-card--sand .link-card__icon {
  background: linear-gradient(135deg, #d78b1d, #b86e09);
}

.link-card__content {
  display: grid;
  gap: 5px;
}

.link-card__content strong {
  font-size: 1.15rem;
}

.link-card__content small {
  color: var(--muted);
  font-size: 0.96rem;
}

.link-card__arrow {
  color: #7b89a2;
  font-size: 2rem;
  line-height: 1;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 10px 0;
  color: var(--muted);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  width: 132px;
  height: auto;
  padding: 8px 10px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(118, 145, 210, 0.18);
  box-shadow: 0 12px 24px rgba(22, 35, 74, 0.08);
}

.footer__title,
.footer__subtitle {
  margin: 0;
}

.footer__title {
  color: var(--text);
  font-weight: 800;
}

.footer__subtitle {
  margin-top: 4px;
  font-weight: 600;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(118, 145, 210, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(22, 35, 74, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.footer__social:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgba(22, 35, 74, 0.12);
}

.footer__social svg {
  width: 22px;
  height: 22px;
  fill: #c13584;
}

.footer p {
  margin: 0;
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 960px);
    padding-top: 16px;
  }

  .hero,
  .panel {
    border-radius: 24px;
  }

  .hero {
    padding: 30px 18px 28px;
  }

  .hero__top {
    align-items: flex-start;
  }

  .hero__logo {
    width: min(220px, 100%);
  }

  .panel {
    padding: 20px;
  }

  .link-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .link-card__arrow {
    display: none;
  }

  .footer {
    justify-content: center;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
  }
}
