:root {
  --mango-purple: #61057f;
  --mango-aqua: #0bf9f2;
  --mango-orange: #ff8a00;
  --brand-solid: #2563eb;
  --brand-hover: #173da6;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-600: #52525b;
  --gray-900: #18181b;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--gray-900);
  background:
    linear-gradient(
      180deg,
      var(--white) 0%,
      var(--gray-50) 68%,
      var(--gray-100) 100%
    );
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.accent-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--mango-purple) 0%,
    var(--brand-solid) 58%,
    var(--mango-aqua) 100%
  );
}

.page-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 96px 56px;
}

.notice-content {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.brand-header {
  margin-bottom: 88px;
}

.brand-logo {
  display: block;
  width: 280px;
  aspect-ratio: 100 / 25;
  background: linear-gradient(
    135deg,
    var(--mango-purple) 0%,
    var(--brand-solid) 55%,
    var(--mango-aqua) 100%
  );
  mask: url("assets/MangoLogo.svg") center / contain no-repeat;
  -webkit-mask: url("assets/MangoLogo.svg") center / contain no-repeat;
}

.notice-copy {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-solid);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0 0 28px;
  color: var(--gray-900);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 72px;
}

p {
  margin: 0;
  color: var(--gray-600);
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
}

p + p {
  margin-top: 24px;
}

a {
  color: var(--brand-solid);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-hover);
}

a:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--mango-orange);
  outline-offset: 3px;
}

.web-app-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 40px;
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--mango-purple) 0%,
    var(--brand-solid) 55%,
    var(--mango-aqua) 100%
  );
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}

.web-app-link:hover {
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

@media (max-width: 520px) {
  .page-shell {
    align-items: flex-start;
    padding: 48px 22px;
  }

  .brand-header {
    margin-bottom: 64px;
  }

  .brand-logo {
    width: 204px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: 40px;
    line-height: 48px;
  }

  p {
    font-size: 18px;
    line-height: 28px;
  }
}
