:root {
  --paper: #ffffff;
  --ink: #111111;
  --muted: #777777;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
}
body {
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: .56; }

/* Desktop composition deliberately mirrors the sparse proportions of 0-1-0.ai. */
.page-shell {
  width: min(886px, calc(100vw - 72px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 420px;
  column-gap: 126px;
  align-items: center;
  padding: 56px 0;
}

.statement {
  align-self: center;
  width: 340px;
}

.eyebrow {
  margin: 0 0 27px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.006em;
}

.copy {
  max-width: 340px;
  font-size: 14px;
  line-height: 1.62;
  letter-spacing: -0.012em;
  font-weight: 700;
}
.copy p { margin: 0 0 25px; }
.copy p:last-child { margin-bottom: 0; }

.links {
  display: flex;
  gap: 42px;
  margin-top: 25px;
  font-size: 13.5px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.media-panel {
  width: 420px;
  height: 420px;
  overflow: hidden;
  background: #f2f2f2;
  position: relative;
}
.media-panel video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: transparent;
}
.media-fallback {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.ca-page { min-height: 100vh; }
.ca-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
}
.ca-text {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  text-align: center;
}

@media (max-width: 1060px) {
  .page-shell {
    width: min(780px, calc(100vw - 60px));
    grid-template-columns: 300px 360px;
    column-gap: 80px;
  }
  .statement { width: 300px; }
  .copy { max-width: 300px; font-size: 13.5px; }
  .media-panel { width: 360px; height: 360px; }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(520px, calc(100vw - 44px));
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    align-items: start;
    padding: 72px 0 54px;
  }
  .statement { width: 100%; }
  .copy { max-width: 430px; font-size: 15px; }
  .media-panel {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: calc(100vw - 38px);
    padding-top: 46px;
    gap: 38px;
  }
  .eyebrow { margin-bottom: 24px; font-size: 12.5px; }
  .copy { font-size: 14.5px; line-height: 1.58; }
  .copy p { margin-bottom: 23px; }
  .links { margin-top: 23px; gap: 34px; font-size: 13.5px; }
}
