:root {
  --ink: #f2efe8;
  --muted: #9aa3ab;
  --paper: #121417;
  --panel: #1a1e23;
  --accent: #e07a3a;
  --line: rgba(242, 239, 232, 0.12);
  --font-display: "Syne", system-ui, sans-serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { color-scheme: dark; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1000px 520px at 50% -5%, rgba(224, 122, 58, 0.22), transparent 55%),
    radial-gradient(700px 400px at 100% 20%, rgba(80, 120, 160, 0.12), transparent 50%),
    linear-gradient(180deg, #0c0e11 0%, #121417 45%, #0f1216 100%);
  animation: atmosphere-drift 18s ease-in-out infinite alternate;
}

@keyframes atmosphere-drift {
  from { filter: hue-rotate(0deg) brightness(1); }
  to { filter: hue-rotate(8deg) brightness(1.04); }
}

main {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 0 2.5rem;
  animation: rise 0.9s ease-out both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-mark {
  width: clamp(96px, 22vw, 160px);
  height: auto;
  border-radius: 18px;
  margin: 0 0 1.5rem;
  background: #0a0c0e;
  animation: mark-pulse 4.5s ease-in-out infinite;
}

@keyframes mark-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 122, 58, 0.25); }
  50% { box-shadow: 0 0 40px 2px rgba(224, 122, 58, 0.35); }
}

.hero-entity {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 22ch;
}

.hero-lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 34rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  background: var(--accent);
  color: #111;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.cta-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.live {
  margin: 0 0 3rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
  animation: rise 1.1s ease-out 0.15s both;
}

.live h2 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.live-name {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.live-copy,
.live-price {
  margin: 0 0 0.85rem;
  color: var(--muted);
  max-width: 36rem;
}

.live-price {
  color: var(--ink);
  font-weight: 600;
}

.live .cta {
  margin: 0 0.65rem 0.65rem 0;
}

.foot {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.foot p { margin: 0 0 0.55rem; }
.foot-entity { color: var(--ink); font-weight: 500; }
.foot a { color: var(--ink); }
.foot-legal { display: flex; flex-wrap: wrap; gap: 0.35rem 0.5rem; }
