:root {
  color-scheme: light;
  --ink: #11130f;
  --muted: #5f665d;
  --line: #dce0d9;
  --surface: #f7f8f5;
  --white: #ffffff;
  --green: #16784a;
  --green-soft: #e7f4ec;
  --amber: #9a5400;
  --amber-soft: #fff1d9;
  --blue: #075fad;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:focus-visible {
  outline: 3px solid rgba(7, 95, 173, 0.28);
  outline-offset: 4px;
}

.site-header,
main,
footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.company-link,
footer a {
  color: var(--blue);
  font-size: 0.9375rem;
  font-weight: 600;
}

.intro {
  max-width: 760px;
  padding: 92px 0 68px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: 6.5rem;
  font-weight: 650;
  line-height: 0.98;
}

.lede {
  margin: 32px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.65;
}

.current-status {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 26px 28px;
  background: var(--green-soft);
  border: 1px solid #c5e3d1;
  border-radius: 6px;
}

.status-signal {
  width: 14px;
  height: 14px;
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--green);
}

.current-status .section-label {
  margin-bottom: 4px;
  color: #3c5f4a;
}

.status-message {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 650;
  line-height: 1.35;
}

.current-status--incident {
  background: var(--amber-soft);
  border-color: #efcc95;
}

.current-status--incident .status-signal {
  background: var(--amber);
  box-shadow: 0 0 0 2px var(--amber);
}

.current-status--incident .section-label {
  color: #754819;
}

.updates {
  padding: 108px 0 88px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink);
}

.section-heading h2,
.scope h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 650;
  line-height: 1.2;
}

.section-heading time {
  color: var(--muted);
  font-size: 0.875rem;
  white-space: nowrap;
}

.update {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 2fr);
  gap: 48px;
  padding: 40px 0 44px;
  border-bottom: 1px solid var(--line);
}

.update-date {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.4;
}

.update-date span {
  color: var(--green);
  font-weight: 700;
}

.update-date .status-incident {
  color: var(--amber);
}

.update-body h3 {
  margin: 0 0 16px;
  font-size: 1.375rem;
  font-weight: 650;
  line-height: 1.3;
}

.update-body p,
.scope p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.notice-update + .notice-update {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.notice-update time {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 650;
}

.scope {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 2fr);
  gap: 48px;
  padding: 56px 0 80px;
}

footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.875rem;
}

footer p {
  margin: 0;
}

@media (max-width: 700px) {
  .site-header,
  main,
  footer {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header {
    min-height: 80px;
  }

  .company-link {
    font-size: 0.8125rem;
  }

  .intro {
    padding: 64px 0 48px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .lede {
    margin-top: 24px;
    font-size: 1.0625rem;
  }

  .current-status {
    padding: 22px 20px;
  }

  .updates {
    padding: 80px 0 56px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }

  .update,
  .scope {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .scope {
    padding: 48px 0 64px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
