:root {
  color-scheme: dark;
  --bg: #0d1016;
  --panel: rgba(12, 15, 24, 0.76);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f4f0e8;
  --muted: #c8c0b4;
  --accent: #ff7146;
  --accent-soft: rgba(255, 113, 70, 0.18);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse at 18% 22%, rgba(255, 113, 70, 0.13), transparent 50%),
    radial-gradient(ellipse at 80% 14%, rgba(217, 188, 129, 0.09), transparent 45%),
    linear-gradient(135deg, #0b0e14 0%, #121725 54%, #090b11 100%);
}

.thread-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 3;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.placeholder-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.site-header,
.site-footer,
.placeholder-main {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem 0;
}

.brand-mark img {
  width: min(220px, 42vw);
  height: auto;
}

.brand-note {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
}

.placeholder-main {
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem 3rem;
}

.content-panel {
  width: min(100%, 760px);
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #ffd4c7;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5.6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 12ch;
  font-weight: 500;
}

.lead,
.supporting,
.status,
.footer-copy,
.footer-meta {
  margin: 0;
}

.lead {
  margin-top: 1.5rem;
  max-width: 56ch;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: var(--text);
}

.supporting {
  margin-top: 1rem;
  max-width: 60ch;
  color: var(--muted);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffe8df;
  font-weight: 600;
}

.status::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 113, 70, 0.8);
}

.site-footer {
  display: grid;
  gap: 0.75rem;
  padding: 0 1.5rem 1.5rem;
  justify-items: start;
}

.footer-copy {
  max-width: 48ch;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #ffd4c7;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-note {
    letter-spacing: 0.16em;
  }

  .placeholder-main {
    padding-top: 1.25rem;
  }

  .content-panel {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skip-link {
    transition: none;
  }
}
