:root {
  --color-violet: #342e87;
  --color-card-accent: #e25829;
  --bg-color-card-accent: #faece8;
  --bg-color-page: #f8f7ff;
  --bg-color-card: #fff;
  --color-text: #1e1e1e;
  --color-text-muted: #5d5c74;
  --border-color: #dedde8;
  --card-shadow: 0 18px 50px rgba(40, 35, 92, 0.09);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--bg-color-page);
  color: var(--color-text);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.site-shell {
  width: min(1080px, calc(100% - 48px));
  margin: auto;
}

.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(52, 46, 135, 0.12);
}

.brand-logo {
  display: block;
  width: 176px;
}

main {
  padding: 30px 0 72px;
}

.hero {
  margin-bottom: 34px;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.intro-text {
  max-width: 720px;
  margin-top: 0px;
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.intro-text strong {
  color: var(--color-violet);
  font-weight: 800;
}

.support-grid {
  display: grid;
  gap: 16px;
}

.support-card {
  --accent-color: var(--color-card-accent);
  --accent-soft: var(--bg-color-card-accent);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  background: var(--bg-color-card);
  box-shadow: var(--card-shadow);
}

.support-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -105px;
  right: 80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: 0.72;
}

.card-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--accent-soft);
}

.card-mark i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 7px rgba(190, 78, 37, 0.13);
}

.card-copy {
  min-width: 0;
}

.section-title {
  color: var(--color-text-muted);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
}

.profile-name {
  color: var(--color-text);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.card-links {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.card-link {
  padding: 13px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(226, 88, 41, 0.12);
  border-radius: 14px;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.card-link::after {
  content: "➤";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-color-card);
  color: var(--accent-color);
  font-size: 0.72rem;
}

.card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(226, 88, 41, 0.35);
  box-shadow: 0 10px 24px rgba(226, 88, 41, 0.1);
}

.card-link:focus-visible {
  outline: 3px solid rgba(226, 88, 41, 0.2);
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .site-shell {
    width: calc(100% - 28px);
  }

  .site-header {
    min-height: 84px;
  }

  .brand-logo {
    width: 150px;
  }

  main {
    padding: 40px 0 52px;
  }

  .hero {
    margin-bottom: 26px;
  }

  .support-card {
    grid-template-columns: 1fr;
    padding: 21px 19px;
    gap: 16px;
  }

  .card-mark {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-link {
    transition: none;
  }
}