* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #f24857;
  --magenta: #d8528f;
  --purple: #a661cc;
  --blue: #7b68ee;

  --dark: #101014;
  --text: #151515;
  --soft: #5e6670;
  --card: #f4fafa;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(135deg, var(--pink), var(--magenta), var(--purple), var(--blue));
}

.page {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 1120px;
  background: rgba(244, 250, 250, 0.96);
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.22);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.logo {
  width: 360px;
  max-width: 70%;
}

.status {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--pink);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
  align-items: stretch;
}

.eyebrow {
  color: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.intro {
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--soft);
  margin-bottom: 30px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
}

.button.secondary {
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--border);
}

.info-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
}

.info-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.info-item:first-child {
  padding-top: 0;
}

.info-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-item span {
  display: block;
  color: var(--soft);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.info-item a,
.info-item p {
  color: var(--text);
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
}

.info-item a:hover {
  color: var(--pink);
}

.map-card {
  margin-top: 38px;
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-title {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.map-title h2 {
  font-size: 1.35rem;
}

.map-title a {
  color: var(--pink);
  font-weight: 900;
  text-decoration: none;
}

.map-card iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.partner {
  margin-top: 24px;
  text-align: center;
  color: #ffffff;
}

.partner span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.partner img {
  height: 38px;
  width: auto;
}

@media (max-width: 850px) {
  .hero-card {
    padding: 28px;
    border-radius: 26px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px;
  }

  .logo {
    max-width: 100%;
    width: 320px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .map-title {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 24px 14px;
  }

  .hero-card {
    padding: 22px;
  }

  h1 {
    letter-spacing: -1px;
  }

  .button {
    width: 100%;
  }

  .map-card iframe {
    height: 220px;
  }
}