:root {
  --bg: #f3f6fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #13233f;
  --muted: #5d6e88;
  --line: rgba(27, 56, 103, 0.12);
  --brand: #17b35f;
  --brand-dark: #0d8b48;
  --accent: #1f4f96;
  --shadow: 0 18px 48px rgba(19, 35, 63, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Heebo", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(40, 93, 173, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(23, 179, 95, 0.14), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

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

.page-shell {
  min-height: 100vh;
  padding: 24px 14px 36px;
}

.hero-panel {
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 26px 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-top {
  text-align: center;
}

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

.hero-kicker {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-divider {
  width: 92px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 79, 150, 0.1), rgba(31, 79, 150, 0.95), rgba(23, 179, 95, 0.55));
}

.info-card,
.partner-card {
  margin-top: 18px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.info-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 179, 95, 0.12);
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.info-card h1 {
  margin: 14px 0 10px;
  font-size: 1.78rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.info-card p + p {
  margin-top: 12px;
}

.partner-card h2 {
  margin: 0 0 14px;
  text-align: center;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--accent);
}

.partner-image-wrap {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: inset 0 0 0 1px rgba(31, 79, 150, 0.08);
}

.partner-image {
  width: 100%;
  object-fit: cover;
}

.cta-wrap {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #25d366);
  box-shadow: 0 16px 30px rgba(17, 151, 81, 0.28);
  color: #ffffff;
  font-family: inherit;
  font-size: 1.16rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(17, 151, 81, 0.34);
  filter: saturate(1.05);
}

.cta-button:active {
  transform: translateY(1px) scale(0.995);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(31, 79, 150, 0.24);
  outline-offset: 3px;
}

.cta-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: #ffffff;
  object-fit: cover;
}

@media (min-width: 768px) {
  .page-shell {
    padding: 40px 20px 48px;
  }

  .hero-panel {
    width: min(100%, 560px);
    padding: 34px 24px 36px;
  }

  .info-card,
  .partner-card {
    padding: 22px 20px;
  }

  .info-card h1 {
    font-size: 2.08rem;
  }
}
