:root {
  --ink: #050505;
  --paper: #ffffff;
  --paper-soft: #f8f8f5;
  --paper-warm: #f0efea;
  --muted: #4d4d4d;
  --line: #090909;
  --wash: rgba(0, 0, 0, 0.06);
  --shadow: rgba(0, 0, 0, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 18% 14%, #fff 0, transparent 28rem),
    var(--paper-warm);
  background-size: 34px 34px, 34px 34px, auto, auto;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max-width));
  min-height: 70px;
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 3px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 7px 7px 0 var(--ink);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav a {
  padding: 9px 12px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 850;
}

.nav a:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: #fff;
}

main {
  padding: 24px 16px 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.hero-image,
.hero-copy,
.portrait-card,
.memo-copy,
.proof-grid article,
.ticker {
  border: 3px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.hero-image {
  min-height: clamp(330px, 48vw, 560px);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 5vw, 44px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.85;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-description {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 650;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border: 3px solid var(--line);
  border-radius: 7px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover,
.copy-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button.dark,
.copy-button {
  color: var(--paper);
  background: var(--ink);
}

.button.light {
  color: var(--ink);
  background: var(--paper);
}

.sketch-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--max-width));
  margin: 18px auto;
  border: 3px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.sketch-strip span {
  min-height: 72px;
  padding: 20px;
  color: var(--paper);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  border-right: 2px solid rgba(255, 255, 255, 0.22);
}

.sketch-strip span:last-child {
  border-right: 0;
}

.memo,
.proof-grid,
.ticker {
  width: min(100%, var(--max-width));
  margin: 18px auto 0;
}

.memo {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.portrait-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 14px;
}

.portrait-card img {
  aspect-ratio: 1;
  width: 100%;
  border: 3px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
}

.portrait-card span,
.ticker-row span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.portrait-card strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.memo-copy {
  padding: clamp(24px, 5vw, 42px);
}

.memo-copy h2,
.ticker h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.memo-copy p:not(.eyebrow),
.proof-grid p {
  color: var(--muted);
  font-weight: 650;
}

.memo-copy p:not(.eyebrow) {
  max-width: 62ch;
  margin: 18px 0 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-grid article {
  min-height: 230px;
  padding: 20px;
}

.proof-grid span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-weight: 950;
}

.proof-grid h3 {
  margin: 22px 0 10px;
  font-size: 1.18rem;
}

.proof-grid p {
  margin: 0;
}

.ticker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: center;
  padding: clamp(24px, 5vw, 38px);
}

.ticker-panel {
  display: grid;
  gap: 14px;
}

.ticker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 12px 0;
  border-bottom: 3px solid var(--line);
}

.ticker-row strong {
  text-align: right;
}

.copy-button {
  width: 100%;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, var(--max-width));
  margin: 22px auto 0;
  padding: 24px 16px 38px;
  color: var(--muted);
  font-weight: 850;
}

@media (max-width: 940px) {
  .topbar,
  .hero,
  .sketch-strip,
  .memo,
  .proof-grid,
  .ticker {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero,
  .memo,
  .ticker {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
  }

  .sketch-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  main {
    padding-inline: 0;
  }

  .hero-image {
    min-height: 360px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .button {
    flex: 1 1 130px;
  }

  .sketch-strip {
    grid-template-columns: 1fr;
  }

  .sketch-strip span {
    border-right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.22);
  }

  .portrait-card {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    width: min(calc(100% - 24px), var(--max-width));
  }
}
