:root {
  color-scheme: light;
  --ink: #16202a;
  --muted: #536170;
  --panel: #ffffff;
  --line: #dbe3eb;
  --blue: #1769e0;
  --green: #2d7d4f;
  --gold: #c48a19;
  --shadow: 0 18px 48px rgba(15, 32, 48, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #f5f8fb;
  color: var(--ink);
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("/assets/rainbowdream-menu-background.png") center / cover no-repeat;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 28, 0.38);
}

.hero__content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.hero__logo {
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.32));
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
  color: #ffe7a2;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.2rem;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  text-shadow: none;
  box-shadow: var(--shadow);
}

.button--primary {
  background: #fff;
  color: #12304d;
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(14, 30, 46, 0.28);
  color: #fff;
}

.build-note {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.status-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.status-band > div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px max(24px, calc((100vw - 1120px) / 2));
  background: var(--panel);
}

.status-band strong {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.status-band span,
.status-band a {
  font-size: 1.04rem;
  font-weight: 800;
}

.status-band a {
  color: var(--blue);
}

.content-band {
  padding: 54px 20px 72px;
}

.content-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 24px rgba(25, 42, 58, 0.07);
}

article:nth-child(1) {
  border-top: 4px solid var(--blue);
}

article:nth-child(2) {
  border-top: 4px solid var(--green);
}

article:nth-child(3) {
  border-top: 4px solid var(--gold);
}

h2 {
  margin: 0 0 16px;
  font-size: 1.3rem;
  letter-spacing: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .hero {
    min-height: 760px;
  }

  .hero__content {
    width: min(100% - 28px, 520px);
    padding-top: 56px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero__copy {
    font-size: 1.05rem;
  }

  .button {
    width: 100%;
  }

  .status-band,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .status-band > div {
    padding: 20px;
  }
}
