:root {
  color-scheme: dark;
  --bg: #0b0d0c;
  --surface: #121512;
  --text: #f0f2ed;
  --muted: #9ba19a;
  --accent: #a6e22a;
  --line: rgba(240, 242, 237, 0.18);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Arial", "Helvetica Neue", system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 18%, rgba(166, 226, 42, 0.08), transparent 28%);
}

.launch {
  width: min(100%, 1600px);
  min-height: 100dvh;
  margin: 0 auto;
  padding: 0 42px;
}

.topbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: "Courier New", monospace;
}

.brand {
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.brand span { color: var(--accent); }

.occasion {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero {
  min-height: calc(100dvh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.8fr);
  grid-template-rows: 1fr auto;
  gap: 28px 7vw;
  padding: 7vh 0 38px;
}

.copy {
  align-self: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(72px, 9vw, 152px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  font-weight: 600;
}

h1 em {
  display: inline-block;
  color: var(--accent);
  font-style: normal;
  padding-bottom: 0.04em;
}

.message {
  max-width: 560px;
  margin: 46px 0 0 10vw;
  color: #cdd1ca;
  font-size: clamp(18px, 1.7vw, 27px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.portrait {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.image-wrap {
  position: relative;
  flex: 1;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: inherit;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 47%;
  filter: saturate(0.72) contrast(1.08);
  transform: scale(1.025);
}

figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.founder-note {
  align-self: end;
  display: grid;
  grid-template-columns: 84px auto;
  gap: 20px;
  align-items: start;
}

.founder-note .line {
  height: 1px;
  margin-top: 9px;
  background: var(--accent);
}

.founder-note p {
  margin: 0;
  font-family: "Courier New", monospace;
  font-size: 11px;
  line-height: 1.65;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

footer p { margin: 0; }

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

@media (prefers-reduced-motion: no-preference) {
  .topbar { animation: reveal 0.75s 0.1s both cubic-bezier(.16, 1, .3, 1); }
  .eyebrow { animation: reveal 0.7s 0.25s both cubic-bezier(.16, 1, .3, 1); }
  h1 { animation: reveal 0.9s 0.34s both cubic-bezier(.16, 1, .3, 1); }
  .message { animation: reveal 0.8s 0.48s both cubic-bezier(.16, 1, .3, 1); }
  .portrait { animation: imageIn 1s 0.18s both cubic-bezier(.16, 1, .3, 1); }
  .founder-note { animation: reveal 0.75s 0.62s both cubic-bezier(.16, 1, .3, 1); }

  @keyframes reveal {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes imageIn {
    from { opacity: 0; transform: translateY(18px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
}

@media (max-width: 900px) {
  .launch { padding: 0 20px; }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
    padding: 52px 0 32px;
    gap: 42px;
  }
  .portrait { grid-column: 1; grid-row: auto; min-height: 76vh; }
  .image-wrap { min-height: 620px; }
  .message { margin: 32px 0 0 15vw; max-width: 440px; }
  .founder-note { margin-bottom: 12px; }
}

@media (max-width: 560px) {
  .launch { padding: 0 16px; }
  .topbar { height: 66px; }
  .occasion { font-size: 9px; }
  .hero { padding-top: 44px; gap: 34px; }
  h1 { font-size: clamp(62px, 20vw, 92px); line-height: 0.86; }
  .eyebrow { margin-bottom: 22px; }
  .message { margin: 28px 0 0 12vw; font-size: 19px; }
  .portrait { min-height: 70vh; }
  .image-wrap { min-height: 530px; }
  figcaption { display: grid; gap: 6px; }
  .founder-note { grid-template-columns: 52px auto; gap: 14px; }
  footer { flex-direction: column; line-height: 1.6; }
}
