:root {
  --purple: #6801ac;
  --yellow: #fad900;
  --charcoal: #1e1e1e;
  --white: #ffffff;
  --off-white: #f5f4f2;
}

* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
}

a {
  color: inherit;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  padding: 28px 0;
}

header.site .wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

header.site img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

header.site span {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.hero {
  background: var(--purple);
  color: var(--white);
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(38px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 11ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero p {
  font-size: 19px;
  line-height: 1.5;
  max-width: 46ch;
  margin: 0 0 36px;
  opacity: 0.92;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--charcoal);
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.badge.disabled {
  opacity: 0.55;
  cursor: default;
}

.banana {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 320px;
  max-width: 45vw;
  opacity: 0.95;
  pointer-events: none;
}

main {
  padding: 72px 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.feature p {
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
}

.feature .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--charcoal);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
}

.contact {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  margin-top: 72px;
  text-align: center;
}

.contact h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.contact p {
  margin: 0 0 20px;
  color: #4a4a4a;
}

.contact a.email {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
}

footer.site {
  padding: 40px 0 60px;
}

footer.site .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6b6b6b;
}

footer.site nav {
  display: flex;
  gap: 20px;
}

footer.site nav a {
  text-decoration: none;
  color: #6b6b6b;
}

footer.site nav a:hover {
  color: var(--charcoal);
}

@media (max-width: 720px) {
  .features {
    grid-template-columns: 1fr;
  }
  .contact {
    padding: 36px 24px;
  }
  .banana {
    width: 220px;
  }
}

/* Legal pages */
.legal {
  padding: 56px 0 80px;
}

.legal h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
}

.legal .updated {
  color: #6b6b6b;
  font-size: 14px;
  margin: 0 0 32px;
}

.legal h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 32px 0 10px;
}

.legal p, .legal li {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
}

.legal .placeholder {
  background: #fff8d6;
  border: 1px solid #e8d47a;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #5c4a00;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--purple);
}

/* Under-construction page */
body.construction {
  background: var(--purple);
}

.construction-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.construction-page .banana {
  right: -80px;
  bottom: -60px;
  width: 420px;
}

.construction-page header.site {
  position: relative;
  z-index: 1;
}

.construction-main {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.construction-main .wrap {
  width: 100%;
  min-width: 0;
}

.construction-main .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.construction-main h1 {
  font-size: clamp(44px, 8vw, 84px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 13ch;
}

.construction-main h1 em {
  font-style: normal;
  color: var(--yellow);
}

.construction-main p {
  font-size: 19px;
  line-height: 1.5;
  max-width: 46ch;
  margin: 0 0 32px;
  opacity: 0.92;
}

.construction-main a.email {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
}

.construction-page footer.site {
  position: relative;
  z-index: 1;
  padding: 24px 0 32px;
}

.construction-page footer.site .wrap {
  color: rgba(255, 255, 255, 0.75);
}

.construction-page footer.site nav a {
  color: rgba(255, 255, 255, 0.75);
}

.construction-page footer.site nav a:hover {
  color: var(--white);
}

@media (max-width: 720px) {
  .construction-page .banana {
    width: 260px;
    opacity: 0.85;
  }
}
