:root {
  --bg: #070707;
  --fg: #f3f1ec;
  --muted: #8c897f;
  --line: rgba(243, 241, 236, 0.09);
  --font-display: 'Fraunces', Georgia, serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-ui);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle film-grain texture for depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- header ---- */
.site-header {
  position: relative;
  z-index: 2;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

.brand {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- hero ---- */
.hero {
  text-align: center;
  padding: 48px 24px 80px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-mark-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  height: clamp(140px, 22vw, 220px);
}

.hero-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(243, 241, 236, 0.16), transparent 70%);
  filter: blur(20px);
}

.hero-mark {
  position: relative;
  height: 100%;
  width: auto;
}

.hero-word {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(38px, 6.4vw, 68px);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.hero-tagline {
  margin: 0 auto 18px;
  max-width: 480px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--fg);
}

.hero-pitch {
  margin: 0 auto;
  max-width: 440px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---- footer ---- */
.site-footer {
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.footer-inner p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0.7;
}

@media (max-width: 640px) {
  .hero {
    padding: 24px 20px 64px;
  }
}
