
:root {
  --bg-top: #ec2752;
  --bg-bottom: #bf0a83;
  --curve: #ff304d;
  --card: rgba(233, 170, 190, 0.72);
  --text: #2f2f2f;
  --muted: #5b5660;
  --accent: #ff4d0a;
  --accent-hover: #e94709;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(98, 8, 66, 0.22);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background:
    radial-gradient(140% 95% at 18% 115%, rgba(255, 255, 255, 0.10) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  position: relative;
  overflow: hidden;
}

body::before {
  content: "";
  position: absolute;
  inset: auto -15% -24% -10%;
  height: 65vh;
  background: var(--curve);
  border-top-left-radius: 55% 100%;
  border-top-right-radius: 20% 40%;
  transform: rotate(6deg);
  opacity: 0.95;
  z-index: 0;
}

.page {
  width: min(100%, 760px);
  position: relative;
  z-index: 1;
}

.card {
  background: var(--card);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 34px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  text-align: center;
  margin-bottom: 26px;
}

.brand img {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.pill {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 28px;
  padding: 6px;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  display: flex;
  gap: 8px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
}

.pill span {
  flex: 1;
  text-align: center;
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 0.96rem;
  color: var(--text);
  white-space: nowrap;
}

.pill .active {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.15;
  text-align: center;
  color: #2c2430;
}

.intro {
  margin: 0 auto 26px;
  max-width: 610px;
  text-align: center;
  font-size: 1.03rem;
  line-height: 1.65;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.box {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(81, 31, 57, 0.09);
}

.box h2 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  color: #2c2430;
}

.box p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

.cta-link,
.mail-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  word-break: break-word;
}

.cta-link:hover,
.mail-link:hover {
  text-decoration: underline;
}

.actions {
  display: flex;
  justify-content: center;
  margin: 8px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 14px 26px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 20px rgba(255, 77, 10, 0.24);
}

.button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.support {
  margin: 0;
  text-align: center;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--muted);
}

.footer {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 720px) {
  body {
    padding: 20px 16px;
  }

  .card {
    padding: 24px 18px 22px;
    border-radius: 22px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .pill {
    max-width: 100%;
  }

  .pill span {
    font-size: 0.9rem;
    padding: 10px 8px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }
}
