:root {
  color-scheme: dark;
  --ink: #f4f1e8;
  --muted: #a8a397;
  --accent: #ff6b35;
  --line: rgba(244, 241, 232, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 107, 53, 0.14), transparent 25rem),
    linear-gradient(135deg, #11120f, #181a16 62%, #0d0e0c);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(72rem, calc(100% - 3rem));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 0 2rem;
}

.signal {
  position: absolute;
  top: clamp(2rem, 6vw, 5rem);
  right: 0;
  display: flex;
  gap: 0.45rem;
  align-items: end;
  height: 1.5rem;
}

.signal span {
  display: block;
  width: 0.22rem;
  border-radius: 1rem;
  background: var(--accent);
  animation: pulse 1.4s ease-in-out infinite alternate;
}

.signal span:nth-child(1) { height: 35%; }
.signal span:nth-child(2) { height: 70%; animation-delay: 0.2s; }
.signal span:nth-child(3) { height: 100%; animation-delay: 0.4s; }

.eyebrow, .label {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: clamp(4rem, 12vh, 8rem) 0 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--accent);
  font-weight: 400;
}

.lede {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 48rem;
  margin-top: clamp(4rem, 12vh, 8rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

section p:last-child {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 4rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status i {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: #76d27b;
  box-shadow: 0 0 0.8rem rgba(118, 210, 123, 0.55);
}

@keyframes pulse {
  from { opacity: 0.4; transform: scaleY(0.72); }
  to { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 40rem) {
  main { width: min(100% - 2rem, 72rem); }
  section { grid-template-columns: 1fr; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .signal span { animation: none; }
}
