:root {
  --surface: #151716;
  --ink: #F1EFE8;
  --muted: #B2B5AD;
  --accent: #F07A2B;
  --line: #3D423E;
  --color-scheme: dark;
}

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

:root {
  color-scheme: var(--color-scheme);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

html {
  min-width: 320px;
  background: var(--surface);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

a {
  color: inherit;
}

.placeholder-page {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(1.35rem, 3.2vw, 3.4rem);
  overflow: hidden;
  isolation: isolate;
}

.placeholder-page::before {
  position: absolute;
  inset: clamp(0.7rem, 1.4vw, 1.2rem);
  z-index: -2;
  border: 1px solid var(--line);
  content: "";
  pointer-events: none;
}

.masthead,
.footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 680;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.identity {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.identity-mark {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.65rem;
  letter-spacing: 0;
}

.identity-logo {
  display: block;
  width: auto;
  max-width: min(10rem, 30vw);
  height: 2rem;
  object-fit: contain;
  object-position: left center;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.status-dot {
  width: 0.43rem;
  height: 0.43rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.28rem color-mix(in srgb, var(--accent) 13%, transparent);
  animation: status-breathe 3.8s ease-in-out infinite;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 78rem);
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-inline: auto;
  padding: clamp(6rem, 13vh, 10rem) clamp(0rem, 4vw, 3rem);
}

.brand-name {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4.3rem, 12vw, 10.5rem);
  font-weight: 610;
  letter-spacing: -0.077em;
  line-height: 0.82;
  overflow-wrap: anywhere;
}

.statement {
  max-width: 21ch;
  margin: clamp(2.2rem, 5vh, 3.7rem) 0 0;
  font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.description {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.cta {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  gap: 1.1rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--surface);
  background: var(--ink);
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.cta::after {
  content: "↗";
  font-size: 1rem;
  font-weight: 400;
}

.cta:hover {
  color: var(--ink);
  background: transparent;
  transform: translateY(-2px);
}

.cta:focus-visible,
.contact-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  list-style: none;
}

.contact-link {
  text-decoration-color: color-mix(in srgb, var(--muted) 45%, transparent);
  text-underline-offset: 0.25em;
}

.business-details {
  width: min(100%, 55rem);
  margin-top: clamp(3rem, 7vh, 5.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.industry {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.business-summary {
  max-width: 46rem;
  margin: 0;
  font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.offerings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.offering-title {
  margin: 0 0 0.85rem;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offering-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  list-style: none;
}

.signal-field {
  position: absolute;
  top: 50%;
  right: clamp(-13rem, -7vw, -5rem);
  z-index: -1;
  width: clamp(25rem, 48vw, 47rem);
  aspect-ratio: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.orbit,
.axis,
.signal-mark {
  position: absolute;
}

.orbit {
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: orbit-drift 26s linear infinite;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 0.62rem;
  height: 0.62rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--surface);
  content: "";
}

.orbit::before {
  top: 14%;
  left: 15%;
}

.orbit::after {
  right: 9%;
  bottom: 24%;
  background: var(--accent);
}

.orbit-inner {
  inset: 20%;
  border-color: color-mix(in srgb, var(--line) 74%, transparent);
  animation-duration: 19s;
  animation-direction: reverse;
}

.axis {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  transform: rotate(-28deg);
}

.signal-mark {
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.footer-domain {
  color: var(--ink);
  text-transform: lowercase;
}

.reveal {
  animation: rise-in 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-1 { animation-delay: 80ms; }
.reveal-2 { animation-delay: 170ms; }
.reveal-3 { animation-delay: 260ms; }
.reveal-4 { animation-delay: 350ms; }

.not-found .brand-name {
  font-size: clamp(6rem, 18vw, 14rem);
}

.not-found .description {
  max-width: 24rem;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes orbit-drift {
  to { transform: rotate(360deg); }
}

@keyframes status-breathe {
  0%, 100% { opacity: 0.62; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 48rem) {
  .placeholder-page { padding: 1.5rem; }
  .placeholder-page::before { inset: 0.65rem; }
  .masthead,
  .footer { font-size: 0.61rem; }
  .footer > :last-child { display: none; }
  .masthead { gap: 0.8rem; }
  .status { letter-spacing: 0.11em; }
  .hero { padding: 7rem 0.4rem 6rem; }
  .brand-name {
    max-width: 9ch;
    font-size: clamp(3.75rem, 20vw, 6.25rem);
  }
  .statement { max-width: 18ch; }
  .description { max-width: 26rem; }
  .signal-field {
    top: 30%;
    right: -13rem;
    width: 28rem;
    opacity: 0.78;
  }
  .offerings { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .orbit,
  .status-dot { animation: none; }
  .cta { transition: none; }
}

@media (forced-colors: active) {
  .status-dot,
  .signal-mark { background: CanvasText; }
  .identity-mark,
  .cta { border-color: ButtonText; }
}
