@font-face {
  font-family: "Beeswacks";
  src: url("fonts/Beeswacks-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

:root {
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --bg: #faf5f8;
  --text: #4c3945;
  --text-muted: #806377;
  --logo: #705367;
  --logo-muted: #806377;
  --border: #e4d4df;
  --border-strong: #d6c0ce;
  --focus: #b97899;
  --link: #945379;
  --link-hover: #7f4868;
  --card-bg: #f3e8ef;
  --input-bg: #fdf8fb;
  --shadow: 0 10px 28px rgba(76, 57, 69, 0.06);
  --success-bg: rgba(116, 145, 117, 0.14);
  --success-text: #5f7c61;
  --progress-bg: rgba(156, 95, 131, 0.14);
  --progress-text: #8a4f72;
  --finish-bg: rgba(112, 83, 103, 0.1);
  --finish-text: #5c4353;
  --error: #9b4a57;
}

[data-theme="dark"] {
  --bg: #1f1820;
  --text: #f1e7ee;
  --text-muted: #c7aebe;
  --logo: #e7d2df;
  --logo-muted: #c7aebe;
  --border: #3d303f;
  --border-strong: #544256;
  --focus: #d59ab9;
  --link: #d59ab9;
  --link-hover: #e7b8cf;
  --card-bg: #2a212b;
  --input-bg: #342936;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  --success-bg: rgba(136, 171, 138, 0.18);
  --success-text: #b8d4ba;
  --progress-bg: rgba(213, 154, 185, 0.16);
  --progress-text: #e1b2ca;
  --finish-bg: rgba(231, 210, 223, 0.12);
  --finish-text: #f1e7ee;
  --error: #f0a8b4;
}

html {
  font-family: var(--font-sans);
  font-size: 100%;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: var(--link);
}

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

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.site-nav {
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.site-nav-inner {
  max-width: 960px;
  margin: 0 auto;
  min-height: 3rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--logo);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav-logo-image {
  display: block;
  width: auto;
  height: 2.2rem;
}

.site-nav-logo-text {
  font-family: "Beeswacks", var(--font-sans);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.site-nav-theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.1em;
  padding: 0;
  margin: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav-theme-toggle:hover {
  color: var(--link);
}

.site-nav-theme-toggle svg {
  width: 1rem;
  height: 1rem;
}

main {
  max-width: 960px;
  margin: 0 auto;
  min-height: calc(100vh - 6.5rem);
  padding: 2rem 1rem 3rem;
  display: grid;
  place-items: center;
}

.coming-soon-card {
  width: min(100%, 40rem);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.coming-soon-card > * {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.card-header {
  padding-bottom: 1.25rem;
  text-align: center;
}

.card-section {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: left;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

h1 {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.2;
}

.lead,
.body-copy,
.detail-list {
  color: var(--text-muted);
  line-height: 1.6;
}

.lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.philosophy-quote {
  margin: 1.25rem auto 0;
  max-width: 30rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--input-bg);
  text-align: center;
}

.quote-text,
.quote-note {
  margin: 0;
}

.quote-text {
  color: var(--text);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.quote-note {
  margin-top: 0.6rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.body-copy {
  margin: 0;
  text-wrap: pretty;
}

.body-copy + .body-copy {
  margin-top: 1rem;
}

.section-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.detail-list li {
  position: relative;
  padding-left: 1.25rem;
}

.detail-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--link);
}

.detail-list li + li {
  margin-top: 0.5rem;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--border);
}

.checklist-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.checklist-item:last-child {
  padding-bottom: 0;
}

.checklist-copy {
  color: var(--text);
}

.checklist-status {
  flex-shrink: 0;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--input-bg);
}

.checklist-item.is-done .checklist-status {
  border-color: transparent;
  color: var(--success-text);
  background: var(--success-bg);
}

.checklist-item.is-progress .checklist-status {
  border-color: transparent;
  color: var(--progress-text);
  background: var(--progress-bg);
}

.checklist-item.is-finish .checklist-status {
  border-color: transparent;
  color: var(--finish-text);
  background: var(--finish-bg);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 0.5rem 1rem;
  text-align: center;
  color: var(--text-muted);
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  color: var(--logo-muted);
  text-decoration: none;
  font-family: "Beeswacks", var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.7rem;
  }

  main {
    min-height: auto;
    padding-top: 1.5rem;
    display: block;
  }

  .coming-soon-card {
    padding: 1.5rem 1rem;
  }

  .card-header {
    padding-bottom: 1rem;
  }

  .card-section {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .checklist-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}

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