:root {
  --ink: #f4f3ef;
  --muted: rgba(244, 243, 239, 0.58);
  --accent: #b9ff66;
  --night: #0b0c0d;
}

* { box-sizing: border-box; }

html, body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--night);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-shell {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: clamp(28px, 4vw, 58px) clamp(24px, 6vw, 92px) clamp(26px, 3vw, 46px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.site-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(11, 12, 13, 0.2), transparent 40%, rgba(11, 12, 13, 0.35));
}

.brand, .content, footer { position: relative; z-index: 1; }
.brand { display: block; width: fit-content; }

.brand-logo {
  display: block;
  width: clamp(158px, 15vw, 210px);
  height: clamp(58px, 5.7vw, 78px);
  object-fit: cover;
  object-position: center;
}

.content {
  align-self: center;
  max-width: 1000px;
  padding: 9vh 0 6vh;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2.4s ease-out infinite;
}

h1 {
  margin: 0;
  max-width: 950px;
  font-size: clamp(58px, 8.6vw, 132px);
  font-weight: 580;
  line-height: 0.84;
  letter-spacing: -0.073em;
}

h1 span {
  display: block;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.intro {
  margin: clamp(32px, 5vw, 58px) 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
  letter-spacing: -0.015em;
}

.intro strong { color: var(--ink); font-weight: 550; }

footer {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(244, 243, 239, 0.36);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

@keyframes pulse {
  65% { box-shadow: 0 0 0 9px rgba(185, 255, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(185, 255, 102, 0); }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 25px 22px 24px;
    background-size: 42px 42px;
  }

  .brand-logo { width: 155px; height: 57px; }
  .content { padding: 10vh 0 7vh; }
  .eyebrow { margin-bottom: 22px; }
  h1 { font-size: clamp(53px, 17vw, 75px); line-height: 0.87; }
  .desktop-break { display: none; }
  footer { font-size: 9px; gap: 9px; }
}

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