@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*# sourceMappingURL=normalize.min.css.map */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  color: #0b1b33;
  background: radial-gradient(120% 120% at 10% 10%, #f7faff 0%, #f4f7fb 55%, #eef3fb 100%);
  min-height: 100vh;
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}

header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: #5c6a7c;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0;
  line-height: 1.05;
}

.subhead {
  max-width: 620px;
  font-size: 1.05rem;
  color: #5c6a7c;
  margin: 0;
}

.card {
  border: 1px solid #d8e1ee;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(0, 46, 109, 0.08);
  border-radius: 22px;
  padding: 26px;
}

.list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid #d8e1ee;
  border-radius: 16px;
  background: #f9fbff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
details[open] {
  border-color: #ff7f30;
}
details.completed summary {
  color: #5a5a5a;
}
details.completed summary::after {
  content: "✔";
  font-size: 1.1rem;
  color: #002e6d;
}
details.completed .status {
  border-color: #a0a0a0;
  color: #7c7c7c;
  background: #f4f6f8;
}

summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 600;
}
summary::-webkit-details-marker {
  display: none;
}

.meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status {
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #ff7f30;
  color: #ff7f30;
  background: #fff6ef;
  text-transform: uppercase;
}

details[open] .status::after {
  content: " · OPEN";
  color: #002e6d;
  font-weight: 700;
}

.content {
  padding: 0 20px 20px;
  display: grid;
  gap: 16px;
  color: #5c6a7c;
}
.content h2 {
  margin-bottom: -0.5em;
}
.content ol {
  margin: 0;
  padding-left: 1.25em;
  color: #0b1b33;
}
.content ol > li {
  margin: 16px 0;
}
.content li {
  margin: 8px 0;
}

.cta {
  align-self: start;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #002e6d;
  background: #002e6d;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.empty-state {
  padding: 24px;
  border-radius: 18px;
  border: 1px dashed #d8e1ee;
  color: #5c6a7c;
  background: #f7faff;
}

@media (max-width: 720px) {
  .wrap {
    padding: 32px 16px 56px;
  }

  summary {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*# sourceMappingURL=main.css.map */
