:root {
  --purple: #7B3FA1;
  --purple-dark: #51266f;
  --pink: #D83F8C;
  --teal: #00A6B3;
  --light: #F4F6FB;
  --dark: #2B2D42;
  --white: #ffffff;
  --line: rgba(43,45,66,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--dark);
  background:
    radial-gradient(circle at 85% 12%, rgba(0,166,179,.12), transparent 26rem),
    radial-gradient(circle at 12% 26%, rgba(216,63,140,.08), transparent 24rem),
    var(--light);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,.72);
  background: rgba(244,246,251,.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  display: block;
  width: clamp(170px, 18vw, 255px);
  height: auto;
}

nav { display: flex; align-items: center; gap: 24px; }
nav a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 650;
}
nav a:hover { color: var(--purple); }
.nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(123,63,161,.2);
  border-radius: 999px;
  background: var(--white);
}

main { overflow: hidden; }

.hero {
  min-height: 690px;
  max-width: 1340px;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 104px) clamp(20px, 5vw, 72px) 42px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
}

.eyebrow, .section-label {
  color: var(--teal);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .18em;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-logo {
  display: block;
  width: min(100%, 680px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(81,38,111,.08));
}

.hero-text {
  max-width: 610px;
  margin: 26px 0 0;
  color: #55596f;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  color: white;
  background: linear-gradient(115deg, var(--purple), var(--pink));
  box-shadow: 0 16px 38px rgba(123,63,161,.18);
}
.secondary {
  background: white;
  border: 1px solid var(--line);
}

.hero-art {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1 / 1.08;
  right: 0;
  bottom: 0;
  z-index: -3;
  border-radius: 46% 54% 42% 58% / 55% 45% 55% 45%;
  background:
    radial-gradient(circle at 70% 20%, rgba(0,166,179,.26), transparent 32%),
    linear-gradient(145deg, #ede5f6 0%, #f9f3fa 42%, #f0ddea 100%);
  transform: rotate(3deg);
}

.hero-art::after {
  content: "";
  position: absolute;
  width: 78%;
  height: 76%;
  right: 3%;
  bottom: 2%;
  z-index: -2;
  border: 2px solid rgba(123,63,161,.17);
  border-radius: 48% 52% 58% 42% / 54% 43% 57% 46%;
  transform: rotate(-5deg);
}

.photo-stage {
  position: relative;
  width: min(100%, 580px);
  height: 580px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 38px rgba(51,28,68,.18));
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
}
.hero-glow-one {
  width: 86px;
  height: 86px;
  top: 6%;
  right: 8%;
  background: var(--teal);
  opacity: .82;
}
.hero-glow-two {
  width: 48px;
  height: 48px;
  left: 4%;
  bottom: 14%;
  background: var(--pink);
  opacity: .78;
}

.values {
  max-width: 1180px;
  margin: 0 auto 120px;
  padding: 0 clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.values article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(123,63,161,.11);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 50px rgba(43,45,66,.06);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-weight: 900;
}
.values article:nth-child(2) .icon { background: var(--teal); }
.values h2 {
  margin: 24px 0 10px;
  font-size: 1.22rem;
  letter-spacing: -.025em;
}
.values p { margin: 0; color: #666a7e; }

.about {
  padding: 100px clamp(20px, 7vw, 100px);
  background: white;
}
.about-grid {
  max-width: 1180px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 10vw, 150px);
}
.about > .section-label { max-width: 1180px; margin: 0 auto; }
.about h2 {
  margin: 0;
  max-width: 580px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.06em;
  color: var(--purple);
}
.about p {
  margin-top: 0;
  color: #55596f;
  font-size: 1.12rem;
}
.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--pink);
  font-weight: 800;
  text-decoration: none;
}

.official {
  padding: 90px clamp(20px, 6vw, 90px);
}
.official-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 68px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  color: white;
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 10%, rgba(0,166,179,.35), transparent 20rem),
    linear-gradient(135deg, var(--purple-dark), var(--purple) 58%, #8f3d9d);
  box-shadow: 0 30px 90px rgba(81,38,111,.18);
}
.section-label.light { color: #a8f3f0; }
.official-card h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.official-card p { color: rgba(255,255,255,.78); }

.legal-data { margin: 0; }
.legal-data > div {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.legal-data > div:first-child { padding-top: 0; }
.legal-data > div:last-child { border-bottom: 0; }
.legal-data dt {
  margin-bottom: 4px;
  color: #a8f3f0;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.legal-data dd { margin: 0; font-weight: 620; }
.legal-data a { color: white; }

footer {
  padding: 34px clamp(20px, 6vw, 90px) 46px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: .82rem;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-logo {
  width: min(300px, 44vw);
  height: auto;
}
.footer-legal {
  max-width: 720px;
  text-align: right;
  color: #63677a;
}

@media (max-width: 860px) {
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 54px;
  }
  .hero-copy { text-align: center; }
  .hero-logo { margin: 0 auto; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { min-height: 480px; }
  .photo-stage { height: 500px; }
  .values { grid-template-columns: 1fr; }
  .about-grid,
  .official-card { grid-template-columns: 1fr; gap: 36px; }
  footer { flex-direction: column; }
  .footer-legal { text-align: left; }
}

@media (max-width: 520px) {
  .site-header { padding: 12px 16px; }
  .header-logo { width: 158px; }
  .nav-cta { padding: 9px 11px; font-size: .8rem; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero-logo { width: 100%; }
  .hero-art { min-height: 390px; }
  .photo-stage { height: 410px; }
  .values { padding: 0 18px; margin-bottom: 80px; }
  .about, .official { padding-left: 18px; padding-right: 18px; }
  .official-card { padding: 28px 22px; }
}
