:root {
  color-scheme: light;
  --paper: #fffaf5;
  --surface: #ffffff;
  --ink: #291e19;
  --muted: #6f5a50;
  --accent: #9f3f72;
  --accent-soft: #f5dbea;
  --sun: #ffbf69;
  --line: #ead9d0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 191, 105, .26), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(159, 63, 114, .14), transparent 30rem),
    var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

a { color: var(--accent); text-underline-offset: .18em; }
a:hover { text-decoration-thickness: 2px; }

.shell {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-decoration: none;
}

.brand span { color: var(--accent); }

nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--muted); font-size: .93rem; text-decoration: none; }
nav a:hover { color: var(--accent); }

.hero {
  min-height: 66vh;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: clamp(36px, 8vw, 96px);
  padding: 64px 0 92px;
}

.eyebrow {
  color: var(--accent);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.12; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); letter-spacing: -.065em; margin: 14px 0 24px; }
h1 em { color: var(--accent); font-style: normal; }
h2 { margin-top: 2.6rem; font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.05rem; }

.lead { max-width: 670px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }

.status-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(64, 36, 24, .10);
}

.status-card::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  top: -44px;
  right: -26px;
  background: var(--accent-soft);
  border-radius: 50%;
}

.face { font-size: 3.2rem; margin-bottom: 36px; }
.online { display: inline-flex; align-items: center; gap: 8px; font-weight: 750; }
.online::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #42a66c; box-shadow: 0 0 0 5px #e2f3e8; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 96px;
}

.card {
  padding: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.card p { color: var(--muted); margin-bottom: 0; }

.document { width: min(760px, calc(100% - 40px)); padding: 54px 0 84px; }
.document h1 { font-size: clamp(2.5rem, 7vw, 4.8rem); }
.document p, .document li { font-size: 1.02rem; }
.document .summary { color: var(--muted); font-size: 1.16rem; }
.notice { margin: 30px 0; padding: 20px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 760px) {
  header { align-items: flex-start; }
  nav { justify-content: flex-end; gap: 10px 14px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 44px 0 72px; }
  .grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

