:root {
  --ink: #080a0d;
  --panel: #10141a;
  --panel-2: #151a21;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f4f0e8;
  --muted: #a5adb8;
  --copper: #d67a32;
  --ember: #ff9d47;
  --gold: #efc27b;
  --green: #58d49b;
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 7%, rgba(214, 122, 50, 0.15), transparent 28rem),
    linear-gradient(145deg, #080a0d 0%, #0d1116 55%, #080a0d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; }

.forge-glow {
  position: fixed;
  inset: auto 10% -16rem auto;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: rgba(214, 122, 50, 0.08);
  filter: blur(90px);
  pointer-events: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 13, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 157, 71, 0.55);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(255, 157, 71, 0.18), rgba(214, 122, 50, 0.03));
  color: var(--ember);
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.brand strong,
.brand small { display: block; }

.brand strong { letter-spacing: 0.02em; }

.brand small {
  margin-top: 0.08rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-state {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #d9f9e9;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(88, 212, 155, 0.55);
  animation: pulse 2.2s infinite;
}

main {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  min-height: calc(100svh - 78px);
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--copper);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

h1 em {
  color: var(--gold);
  font-weight: 500;
}

.intro {
  max-width: 42rem;
  color: #c8ced6;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.button {
  padding: 0.82rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 157, 71, 0.55);
}

.button.primary {
  border-color: var(--copper);
  background: var(--copper);
  color: #160d07;
}

.button.ghost { background: rgba(255, 255, 255, 0.025); }

.forge-core {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(255,255,255,0.065), rgba(255,255,255,0.015));
  box-shadow: 0 28px 80px rgba(0,0,0,0.35);
}

.core-ring {
  display: grid;
  width: min(18rem, 75vw);
  aspect-ratio: 1;
  margin: 0 auto 2rem;
  place-items: center;
  border: 1px solid rgba(255, 157, 71, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,157,71,0.18) 0 22%, transparent 23%),
    conic-gradient(from 35deg, transparent, rgba(255,157,71,0.65), transparent 28%, transparent 72%, rgba(214,122,50,0.45), transparent);
  box-shadow: inset 0 0 60px rgba(255, 157, 71, 0.08);
  animation: breathe 4s ease-in-out infinite;
}

.core-center {
  display: grid;
  width: 48%;
  aspect-ratio: 1;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255, 194, 123, 0.58);
  border-radius: 50%;
  background: #0c0f13;
  box-shadow: 0 0 45px rgba(214, 122, 50, 0.25);
}

.core-center span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2.25rem;
  letter-spacing: 0.08em;
}

.core-center small {
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.core-data {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.core-data div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.core-data dt { color: var(--muted); }
.core-data dd { margin: 0; color: #e9f7ef; font-weight: 700; }

.section { padding: 6rem 0; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

#forge-clock {
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.35rem, 3vw, 2.5rem);
  font-weight: 700;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.status-card {
  min-height: 24rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 20, 26, 0.76);
}

.status-card.featured {
  background: linear-gradient(150deg, rgba(214,122,50,0.16), rgba(16,20,26,0.9) 55%);
  transform: translateY(-1rem);
}

.card-icon {
  display: grid;
  width: 3rem;
  aspect-ratio: 1;
  margin-bottom: 4.5rem;
  place-items: center;
  border: 1px solid rgba(255, 157, 71, 0.35);
  border-radius: 50%;
  color: var(--ember);
  font-size: 1.25rem;
}

.card-kicker {
  margin-bottom: 0.7rem;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.status-card h3 {
  margin-bottom: 0.8rem;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.status-card p:not(.card-kicker) {
  color: var(--muted);
  font-size: 0.92rem;
}

.badge {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.badge.good { background: rgba(88,212,155,0.12); color: #91efc1; }
.badge.warm { background: rgba(255,157,71,0.12); color: #ffc184; }

.workbench {
  border-top: 1px solid var(--line);
}

.bench-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.bench-grid article {
  min-height: 13rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bench-grid span {
  color: var(--copper);
  font: 700 0.75rem ui-monospace, monospace;
}

.bench-grid h3 {
  margin: 2.5rem 0 0.5rem;
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.bench-grid p {
  max-width: 30rem;
  margin-bottom: 0;
  color: var(--muted);
}

.chronicle {
  margin-bottom: 5rem;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(255, 157, 71, 0.22);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(214,122,50,0.13), rgba(16,20,26,0.78));
}

blockquote {
  max-width: 22ch;
  margin: 0 0 2rem;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.signature {
  margin-bottom: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1.25rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(88, 212, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(88, 212, 155, 0); }
}

@keyframes breathe {
  50% { box-shadow: inset 0 0 75px rgba(255,157,71,0.12), 0 0 35px rgba(214,122,50,0.08); }
}

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding-top: 4rem; }
  .forge-core { max-width: 32rem; width: 100%; }
  .status-grid { grid-template-columns: 1fr; }
  .status-card { min-height: auto; }
  .status-card.featured { transform: none; }
  .card-icon { margin-bottom: 2.5rem; }
}

@media (max-width: 600px) {
  main { width: min(100% - 1.5rem, 1180px); }
  .topbar { padding-inline: 0.8rem; }
  .brand small { display: none; }
  .live-state { font-size: 0.67rem; }
  .hero { min-height: auto; padding-block: 4rem; }
  h1 { font-size: clamp(3.25rem, 17vw, 5rem); }
  .section { padding: 4.5rem 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .bench-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
