:root {
  --canvas: #f7f3eb;
  --paper: #fffdf9;
  --ink: #161513;
  --muted: #6e6a69;
  --line: rgba(22, 21, 19, 0.14);
  --radius: 16px;
  --page-width: 1280px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

:focus-visible {
  outline: 3px solid #9e7953;
  outline-offset: 3px;
}

.page-shell {
  width: min(var(--page-width), calc(100% - 64px));
  margin: 0 auto;
}

.page-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 94px;
}

.wordmark {
  font-size: 15px;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.wordmark span {
  color: var(--muted);
  font-size: 13px;
}

.page-nav-menu {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 14px;
}

.page-nav-menu a {
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
}

.page-nav-menu a:hover,
.page-nav-menu a:focus-visible,
.page-nav-menu a[aria-current='page'] {
  background: var(--canvas);
}

.button {
  display: inline-grid;
  min-height: 52px;
  place-items: center;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
}

.button--dark {
  justify-self: end;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #393633;
}

.interior-hero {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.interior-copy {
  position: relative;
  z-index: 2;
  width: min(670px, 100%);
  padding: 112px 0 104px;
  text-align: center;
}

.kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: clamp(3.6rem, 6.6vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: .9;
}

.intro {
  max-width: 470px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.lens-tabs {
  display: flex;
  gap: 8px;
  padding: 16px 0;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.lens-tabs a {
  flex: 0 0 auto;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 14px;
  text-decoration: none;
}

.lens-tabs a:hover,
.lens-tabs a:focus-visible {
  border-color: rgba(22, 21, 19, .45);
}

.lens-tabs a[aria-current='page'] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.lens-tabs + .section { border-top: 0; }

.orbit-tile {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 94px;
  aspect-ratio: 1;
  border: 1px solid rgba(22, 21, 19, .1);
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
  font-size: 19px;
  animation: drift 8s var(--ease) infinite alternate;
}

.orbit-tile::after {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: -.02em;
}

.orbit-tile--one { top: 12%; left: 7%; transform: rotate(-5deg); animation-delay: -2s; }
.orbit-tile--one::after { content: 'signal'; }
.orbit-tile--two { right: 10%; bottom: 12%; width: 108px; background: #ded7cd; transform: rotate(5deg); animation-delay: -5s; }
.orbit-tile--two::after { content: 'focus'; }
.orbit-tile--three { top: 19%; right: 19%; width: 66px; background: #d9cbb8; transform: rotate(3deg); animation-delay: -4s; }
.orbit-tile--three::after { content: ''; }
.orbit-tile--four { bottom: 16%; left: 18%; width: 70px; background: #e5dfd5; transform: rotate(-3deg); animation-delay: -6s; }
.orbit-tile--four::after { content: ''; }

.hero-field-card {
  position: absolute;
  z-index: 1;
  right: 7%;
  bottom: 11%;
  width: clamp(126px, 11.72vw, 150px);
  aspect-ratio: 4 / 5;
  margin: 0;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(22, 21, 19, .1);
  border-radius: 9px;
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(22, 21, 19, .08);
  transform: rotate(var(--field-rotate, 4deg));
  animation: field-drift 9.6s var(--ease) infinite alternate;
}

.hero-field-card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.hero-field-card--everyone { --field-rotate: 4deg; animation-delay: -4.2s; }
.hero-field-card--builders { --field-rotate: -3deg; animation-delay: -6.5s; }
.hero-field-card--managers { --field-rotate: 3deg; animation-delay: -2.8s; }

@keyframes drift {
  to { translate: 0 -12px; rotate: 1.5deg; }
}

@keyframes field-drift {
  to { translate: 0 -10px; rotate: 1deg; }
}

.section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(260px, .7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .95;
}

.section-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

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

.signal-card,
.audience-card {
  min-width: 0;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.signal-index,
.audience-type {
  display: block;
  margin-bottom: 72px;
  color: var(--muted);
  font-size: 13px;
}

.signal-card h3,
.audience-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1;
}

.signal-card p,
.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.audience-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  text-decoration: none;
  transition: transform 250ms var(--ease), border-color 250ms var(--ease);
}

.audience-card:hover,
.audience-card:focus-visible {
  border-color: rgba(22, 21, 19, .45);
  transform: translateY(-5px);
}

.audience-card .arrow {
  display: grid;
  width: 32px;
  aspect-ratio: 1;
  place-items: center;
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--canvas);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}

.audience-card .arrow svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.audience-card:hover .arrow,
.audience-card:focus-visible .arrow {
  border-color: rgba(22, 21, 19, .45);
  transform: translateX(2px);
}

.issue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: 24px;
}

.issue-list,
.issue-note {
  padding: 28px;
  border-radius: var(--radius);
}

.issue-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.issue-list p {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
  letter-spacing: -.04em;
}

.issue-list p:last-child { border-bottom: 0; }

.issue-note {
  display: grid;
  align-content: space-between;
  min-height: 280px;
  background: var(--ink);
  color: var(--paper);
}

.issue-note p {
  max-width: 330px;
  margin: 0;
  color: #d8d2ca;
  font-size: 16px;
  line-height: 1.45;
}

.issue-note .button {
  width: fit-content;
  border-color: #514c47;
  background: var(--paper);
}

.skill-list {
  border-top: 1px solid var(--line);
}

.skill-row {
  display: grid;
  grid-template-columns: minmax(170px, .5fr) minmax(0, 1.5fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.skill-row h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -.04em;
}

.skill-row p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.skill-kind {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.email-edition {
  width: min(800px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.email-masthead {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.email-masthead strong {
  color: var(--ink);
  font-weight: 400;
}

.email-opening,
.email-section,
.email-signoff { padding: 30px 34px; }

.email-opening { padding-bottom: 36px; }

.email-opening h2 {
  max-width: 620px;
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .95;
}

.email-opening p,
.email-section-copy p,
.email-signoff p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.email-section {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 22px;
  border-top: 1px solid var(--line);
}

.email-number {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
}

.email-section-copy h3 {
  margin: 0 0 6px;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1;
}

.email-section-copy .email-label {
  display: block;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.prompt-block {
  margin-top: 18px;
  padding: 18px;
  border-radius: 10px;
  background: var(--ink);
  color: #e6e0d8;
  font-size: 15px;
  line-height: 1.5;
}

.prompt-block p { margin: 0; }

.email-signoff {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  border-top: 1px solid var(--line);
  background: #eeeadf;
}

.email-signoff h3 {
  margin: 0 0 8px;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.055em;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .95;
}

.cta-panel p {
  margin: 0;
  color: #d8d2ca;
  font-size: 15px;
  line-height: 1.4;
}

.cta-panel .button {
  border-color: #514c47;
  background: var(--paper);
}

.legal-page {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 78px 0 90px;
}

.legal-page h1 {
  max-width: none;
  margin: 0 0 20px;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  text-align: left;
}

.legal-page__lede {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.legal-page__updated {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-of-type { margin-top: 58px; }

.legal-section h2 {
  margin: 0 0 14px;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1;
}

.legal-section p,
.legal-section li,
.legal-table {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.legal-section p:last-child,
.legal-section ul:last-child { margin-bottom: 0; }

.legal-section a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.legal-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-list li + li { margin-top: 8px; }

.legal-table {
  width: 100%;
  margin: 18px 0 0;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px 10px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 880px) {
  .page-nav { grid-template-columns: 1fr auto; }

  .page-nav-menu { display: none; }
}

@media (max-width: 760px) {
  .page-shell { width: min(var(--page-width), calc(100% - 32px)); }

  .page-nav { grid-template-columns: 1fr auto; min-height: 82px; }

  .interior-hero { min-height: 510px; }

  .interior-copy { padding: 104px 0 90px; }

  .orbit-tile--three,
  .orbit-tile--four { display: none; }

  .hero-field-card {
    top: 12px;
    right: -4px;
    bottom: auto;
    width: 90px;
    padding: 3px;
  }

  .section { padding: 64px 0; }

  .section-heading,
  .issue-layout,
  .cta-panel { grid-template-columns: 1fr; }

  .section-heading { gap: 16px; }

  .signal-grid,
  .audience-grid { grid-template-columns: 1fr; }

  .skill-row,
  .email-section,
  .email-signoff { grid-template-columns: 1fr; }

  .email-section { gap: 10px; }

  .signal-card { min-height: 200px; }

  .signal-index,
  .audience-type { margin-bottom: 38px; }

  .cta-panel { gap: 24px; }

  .cta-panel .button { width: fit-content; }

  .legal-page { padding: 56px 0 68px; }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td { display: block; }

  .legal-table tr { border-top: 1px solid var(--line); }

  .legal-table th,
  .legal-table td { border-top: 0; padding: 8px 0; }

  .legal-table th { padding-top: 16px; }
}

@media (max-width: 480px) {
  .page-shell { width: min(var(--page-width), calc(100% - 20px)); }

  .wordmark span { display: none; }

  .button { min-height: 46px; padding: 0 14px; font-size: 13px; }

  h1 { font-size: clamp(3.25rem, 15vw, 4.35rem); }

  .intro { font-size: 16px; }

  .orbit-tile--one { left: -4px; }
  .orbit-tile--two { right: -4px; }

  .issue-list,
  .issue-note,
  .cta-panel,
  .email-opening,
  .email-section,
  .email-signoff { padding: 22px; }

  .email-masthead { padding: 15px 22px; }

  .footer { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .orbit-tile,
  .hero-field-card,
  .audience-card { animation: none; transition: none; }
}
