:root {
  --ink: #241718;
  --muted: #6f5e5e;
  --paper: #fffdf8;
  --red: #d83f4d;
  --red-deep: #8f2130;
  --red-soft: #fbe4e5;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--red-deep); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.09), transparent 23rem),
    radial-gradient(circle at 88% 84%, rgba(216, 63, 77, 0.32), transparent 28rem),
    linear-gradient(145deg, #6f1726 0%, #9c2636 48%, #721524 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.site-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 24px 24px;
}
.site-shell::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.18;
  pointer-events: none;
}
.ambient {
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}
.ambient::after {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  content: "";
}
.ambient-one { top: -135px; left: -105px; }
.ambient-two { right: -145px; bottom: -160px; width: 420px; height: 420px; }
.construction-card {
  position: relative;
  width: min(100%, 760px);
  padding: clamp(34px, 6vw, 64px) clamp(24px, 7vw, 72px) clamp(36px, 6vw, 60px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 32px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.95)),
    repeating-linear-gradient(0deg, transparent 0, transparent 27px, rgba(143, 33, 48, 0.04) 28px);
  box-shadow: 0 32px 90px rgba(53, 7, 16, 0.34), 0 4px 18px rgba(53, 7, 16, 0.16);
  text-align: center;
}
.construction-card::before, .construction-card::after {
  position: absolute;
  width: 92px;
  height: 92px;
  border-color: rgba(143, 33, 48, 0.16);
  content: "";
}
.construction-card::before {
  top: 18px;
  left: 18px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-radius: 18px 0 0;
}
.construction-card::after {
  right: 18px;
  bottom: 18px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-radius: 0 0 18px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(22px, 4vw, 34px);
  padding: 9px 14px;
  border: 1px solid rgba(143, 33, 48, 0.13);
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-deep);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(216, 63, 77, 0.12);
  animation: pulse 2.3s ease-in-out infinite;
}
.brand-logo {
  display: block;
  width: min(100%, 400px);
  height: auto;
  margin: 0 auto;
}
.book-divider {
  display: flex;
  width: min(100%, 360px);
  align-items: center;
  gap: 15px;
  margin: 22px auto 17px;
}
.book-divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(143, 33, 48, 0.2));
}
.book-divider span:last-child {
  background: linear-gradient(90deg, rgba(143, 33, 48, 0.2), transparent);
}
.book-divider svg {
  width: 35px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.kicker {
  margin: 0 0 10px;
  color: var(--red-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(14px, 2vw, 17px);
  font-style: italic;
}
h1 {
  max-width: 580px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 6vw, 58px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}
.intro {
  max-width: 520px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.72;
  text-wrap: pretty;
}
.status {
  max-width: 480px;
  margin: 34px auto 0;
}
.status-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #76565b;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.status-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #eadcda;
}
.status-track span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red-deep), var(--red));
  box-shadow: 0 0 18px rgba(216, 63, 77, 0.35);
  transform-origin: left;
  animation: load-in 1.4s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: center;
}
.site-footer a {
  font-weight: 700;
  text-decoration: none;
}
.site-footer a:hover, .site-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.82); }
}
@keyframes load-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@media (max-width: 560px) {
  .site-shell { justify-content: flex-start; padding: 16px 14px 20px; }
  .construction-card { margin: auto 0; border-radius: 24px; }
  .construction-card::before, .construction-card::after { width: 64px; height: 64px; }
  .eyebrow { max-width: 92%; justify-content: center; letter-spacing: 0.095em; }
  .brand-logo { width: min(100%, 330px); }
  .site-footer { flex-wrap: wrap; gap: 7px 10px; margin-top: 16px; }
}
@media (max-height: 760px) and (min-width: 561px) {
  .site-shell { justify-content: flex-start; padding-top: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
