@font-face {
  font-family: Block Display;
  src: url(assets/display.ttf) format('truetype');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: Block Sans;
  src: url(assets/body.ttf) format('truetype');
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --paper: #f5f3ec;
  --white: #fffef9;
  --ink: #22251f;
  --secondary: #64665d;
  --red: #c63b24;
  --red-wash: #f6e6dc;
  --line: #d7d8cc;
  --muted: #eeeee5;
  --green: #426744;
  --green-wash: #e6eddb;
  --yellow: #e7ed9b;
  --display: Block Display, Impact, sans-serif;
  --sans: Block Sans, Arial, sans-serif;
  --mono: 'SFMono-Regular', Consolas, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
button:disabled {
  cursor: default;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
::selection {
  color: var(--white);
  background: var(--red);
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  padding: 14px;
  background: var(--white);
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.concept-bar {
  min-height: 39px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--ink);
  color: var(--white);
  font: 9px var(--mono);
  letter-spacing: 0.07em;
  position: sticky;
  top: 0;
  z-index: 10;
}
.concept-bar > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.concept-bar i {
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
}
.concept-note {
  opacity: 0.55;
}
.sample-label {
  opacity: 0.55;
  font-size: 8px;
}
.concept-bar nav {
  display: flex;
  align-self: stretch;
}
.concept-bar nav a {
  padding: 13px 15px 10px;
  white-space: nowrap;
  opacity: 0.6;
  border-bottom: 2px solid transparent;
}
.concept-bar nav a.active {
  opacity: 1;
  border-color: var(--yellow);
  color: var(--yellow);
}
.site-header {
  height: 88px;
  margin: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.9px;
}
.logo img {
  width: 26px;
  height: 30px;
  object-fit: contain;
}
.header-links,
.header-actions,
.workspace-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-links a {
  font-size: 13px;
  font-weight: 600;
}
.header-actions {
  gap: 22px;
  font-size: 13px;
}
.btn {
  border: 1px solid transparent;
  background: var(--ink);
  color: var(--white);
  padding: 15px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 3px;
  transition:
    background 0.18s,
    transform 0.18s;
  white-space: nowrap;
}
.btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}
.btn-red {
  background: var(--red);
}
.btn-red:hover {
  background: var(--ink);
}
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--muted);
}
.btn-small {
  padding: 11px 17px;
  font-size: 12px;
}
.arrow {
  font-size: 22px;
  line-height: 0.7;
  font-weight: 400;
}
.kicker {
  font: 10px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}
.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 8px;
}
.muted {
  color: var(--secondary);
}
.red {
  color: var(--red);
}
.home-main {
  padding: 0 52px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 44px 0 40px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.hero h1 {
  font: 800 clamp(96px, 10.6vw, 166px)/0.86 var(--display);
  letter-spacing: -0.02em;
  margin: 22px 0 26px;
}
.hero h1 span {
  display: block;
}
.hero h1 .red {
  position: relative;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.65;
  max-width: 330px;
  margin-bottom: 25px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
}
.tiny-note {
  font-size: 11px;
  color: var(--secondary);
  margin-top: 16px;
}
.hero-art {
  position: relative;
  min-height: 565px;
  overflow: hidden;
}
.hero-art > img {
  position: absolute;
  inset: 0;
  object-position: 58% center;
}
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 65px 25px 22px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.photo-caption strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
}
.photo-caption .kicker {
  font-size: 9px;
}
.round-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 23px;
}
.photo-stamp {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--yellow);
  width: 111px;
  height: 111px;
  border-radius: 50%;
  transform: rotate(12deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  gap: 1px;
  box-shadow:
    0 0 0 5px var(--yellow),
    0 0 0 6px var(--ink);
}
.photo-stamp small {
  font: 9px var(--mono);
  letter-spacing: 0.06em;
}
.photo-stamp b {
  font: 800 36px/1.1 var(--display);
}
.location-tag {
  position: absolute;
  top: 25px;
  left: 23px;
  background: var(--white);
  padding: 9px 12px;
  font: 9px var(--mono);
  letter-spacing: 0.05em;
}
.ticker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-block: 1px solid var(--ink);
  padding: 19px 0;
  font: 800 clamp(16px, 1.8vw, 25px)/1 var(--display);
  letter-spacing: 0.02em;
}
.ticker .asterisk {
  color: var(--red);
  font: 32px/20px var(--sans);
}
.home-section {
  padding: 65px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 26px;
}
.section-heading h2 {
  font: 800 clamp(36px, 4vw, 57px)/1 var(--display);
  text-transform: uppercase;
  margin-top: 10px;
}
.text-link {
  font-size: 12px;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding: 7px 0;
  white-space: nowrap;
}
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.campaign-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.campaign-image {
  height: 240px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.campaign-image img {
  transition: transform 0.45s;
}
.campaign-card:hover .campaign-image img {
  transform: scale(1.035);
}
.campaign-image .category-label {
  position: absolute;
  left: 13px;
  top: 13px;
  background: var(--paper);
  padding: 7px 9px;
  font: 9px var(--mono);
}
.campaign-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  row-gap: 3px;
  margin-top: 17px;
  font: 9px var(--mono);
  letter-spacing: 0.04em;
  align-items: baseline;
  flex-wrap: wrap;
  min-height: 27px;
}

.campaign-card h3 {
  font-size: 21px;
  letter-spacing: -0.6px;
  margin: 8px 0 10px;
}
.campaign-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--secondary);
  font-size: 12px;
  margin-top: auto;
  gap: 12px;
  min-height: 28px;
  flex-wrap: wrap;
}
.campaign-bottom b {
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  margin-left: auto;
}
.role-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.role-block {
  padding: 38px 0 38px 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.role-block .text-link {
  margin-top: auto;
}
.role-block:first-child {
  padding-left: 0;
  padding-right: 35px;
  border-right: 1px solid var(--ink);
}
.role-block h2 {
  font: 800 61px/0.98 var(--display);
  text-transform: uppercase;
  margin: 18px 0;
}
.role-block p {
  color: var(--secondary);
  font-size: 14px;
  line-height: 1.6;
  max-width: 365px;
  margin-bottom: 25px;
}
.how-section {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  padding: 65px 0;
}
.how-section h2 {
  font: 800 65px/0.98 var(--display);
  text-transform: uppercase;
  margin-top: 15px;
}
.step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.step:first-child {
  padding-top: 0;
}
.step > span {
  font: 11px var(--mono);
  color: var(--red);
  padding-top: 5px;
}
.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--secondary);
}
.home-footer {
  background: var(--red);
  color: var(--paper);
  padding: 40px 52px 25px;
  overflow: hidden;
}
.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-cta h2 {
  font: 800 clamp(45px, 6vw, 85px)/1 var(--display);
  text-transform: uppercase;
}
.footer-wordmark {
  font: 800 clamp(95px, 21.2vw, 320px)/0.85 var(--display);
  letter-spacing: -0.015em;
  white-space: nowrap;
  margin-top: 65px;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  font: 9px var(--mono);
  gap: 20px;
}
.workspace .site-header {
  height: 82px;
}
.workspace-nav {
  gap: 28px;
  margin-left: 40px;
  margin-right: auto;
  height: 100%;
}
.workspace-nav button {
  height: 100%;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-size: 12px;
  color: var(--secondary);
  padding: 0 2px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.workspace-nav button.active {
  border-bottom-color: var(--red);
  color: var(--ink);
  font-weight: 700;
}
.count {
  background: var(--muted);
  font: 9px var(--mono);
  padding: 3px 5px;
  border-radius: 3px;
}
.icon-button {
  background: transparent;
  border: 1px solid var(--line);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}
.icon-button:hover {
  background: var(--muted);
}
.icon-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 22% 40%;
}
.avatar-letter {
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 13px var(--display);
  letter-spacing: 0.05em;
}
.workspace-main {
  max-width: 1550px;
  margin: 0 auto;
  padding: 30px 52px 65px;
}
.workspace-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
}
.workspace-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.workspace-title h1 {
  font: 800 clamp(42px, 4.5vw, 65px)/1 var(--display);
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.workspace-title p {
  font-size: 13px;
  color: var(--secondary);
  margin-top: 11px;
}
.workspace-title .title-actions {
  display: flex;
  gap: 10px;
}
.status-strip {
  display: flex;
  align-items: center;
  padding: 17px 0;
  margin-bottom: 28px;
  border-block: 1px solid var(--line);
  gap: 36px;
}
.status-item {
  display: flex;
  align-items: baseline;
  gap: 11px;
  white-space: nowrap;
}
.status-item strong {
  font: 800 30px/0.9 var(--display);
}
.status-item span {
  font-size: 11px;
  color: var(--secondary);
}
.status-strip .all-clear {
  margin-left: auto;
  font: 9px var(--mono);
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(285px, 1fr);
  gap: 36px;
}
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.panel-header .kicker {
  font-size: 9px;
}
.mini-pill {
  font: 8px var(--mono);
  letter-spacing: 0.04em;
  border-radius: 2px;
  padding: 5px 7px;
  background: var(--red-wash);
  color: var(--red);
  white-space: nowrap;
}
.mini-pill.green {
  background: var(--green-wash);
  color: var(--green);
}
.priority-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  min-height: 285px;
  background: var(--white);
  border: 1px solid var(--line);
}
.priority-image {
  position: relative;
  min-height: 285px;
  overflow: hidden;
}
.priority-image > img {
  position: absolute;
  inset: 0;
}
.priority-image .image-index {
  position: absolute;
  left: 15px;
  bottom: 15px;
  background: var(--white);
  font: 9px var(--mono);
  padding: 8px 10px;
}
.priority-content {
  padding: 25px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.priority-content h2 {
  font: 800 clamp(30px, 3vw, 44px)/1 var(--display);
  text-transform: uppercase;
  margin: 11px 0 10px;
}
.priority-content p {
  color: var(--secondary);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.priority-content .btn {
  margin-top: auto;
  width: 100%;
  justify-content: space-between;
}
.priority-content .due {
  font: 9px var(--mono);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 17px;
  color: var(--red);
}
.priority-content .due svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
.section-spacer {
  margin-top: 32px;
}
.lineup-row {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding: 17px 0;
  min-width: 0;
}
.lineup-image {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}
.lineup-info {
  flex: 1;
  min-width: 0;
}
.lineup-info h3 {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
}
.lineup-info p {
  font-size: 10px;
  color: var(--secondary);
}
.lineup-row > button {
  background: transparent;
  border: 0;
  padding: 10px;
  font-size: 23px;
}
.lineup-status {
  text-align: right;
  font-size: 10px;
}
.lineup-status small {
  display: block;
  color: var(--secondary);
  margin-top: 6px;
  font-size: 9px;
}
.calendar-panel {
  border: 1px solid var(--line);
  padding: 22px;
  background: var(--muted);
}
.calendar-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calendar-title h2 {
  font-size: 16px;
  letter-spacing: -0.4px;
}
.calendar-title span {
  font: 9px var(--mono);
  color: var(--secondary);
}
.week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin: 18px 0 23px;
}
.day {
  border: 0;
  background: transparent;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 9px 3px;
  font-size: 12px;
  min-height: 55px;
}
.day small {
  font: 8px var(--mono);
  color: var(--secondary);
}
.day.active {
  background: var(--ink);
  color: var(--paper);
}
.day.active small {
  color: var(--paper);
}
.day:hover:not(.active) {
  background: var(--line);
}
.timeline {
  min-height: 154px;
  position: relative;
}
.timeline-event {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 13px;
  position: relative;
  padding-bottom: 22px;
}
.timeline-event time {
  font: 9px var(--mono);
  color: var(--secondary);
  padding-top: 3px;
}
.timeline-event > div {
  border-left: 2px solid var(--red);
  padding-left: 14px;
}
.timeline-event:last-child > div {
  border-color: var(--line);
}
.timeline-event h3 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}
.timeline-event p {
  font-size: 10px;
  color: var(--secondary);
  line-height: 1.5;
}
.calendar-panel > .text-link {
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  border-color: var(--line);
}
.empty-day {
  padding: 20px 0 40px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--secondary);
}
.note-card {
  padding: 23px;
  margin-top: 20px;
  background: var(--yellow);
  position: relative;
}
.note-card h2 {
  font: 800 34px/0.98 var(--display);
  text-transform: uppercase;
  max-width: 340px;
  padding-right: 30px;
  margin: 13px 0 11px;
}
.note-card p {
  font-size: 12px;
  line-height: 1.6;
  max-width: 260px;
}
.note-card .text-link {
  margin-top: 12px;
}
.note-star {
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 42px;
  line-height: 1;
}
.discovery-section {
  border-top: 1px solid var(--ink);
  margin-top: 38px;
  padding-top: 24px;
}
.discovery-section .section-heading {
  margin-bottom: 18px;
}
.discovery-section .section-heading h2 {
  font-size: 36px;
}
.filters {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.filter {
  border: 1px solid var(--line);
  background: transparent;
  font-size: 10px;
  padding: 8px 14px;
  border-radius: 2px;
}
.filter.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.workspace .campaign-image {
  height: 190px;
}
.workspace .campaign-card h3 {
  font-size: 17px;
}
.workspace .campaign-meta {
  font-size: 8px;
}
.workspace .campaign-bottom {
  font-size: 10px;
}
.bookmark {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: var(--paper);
  border-radius: 50%;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
}
.bookmark svg {
  width: 13px;
  height: 16px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
}
.bookmark.saved {
  background: var(--yellow);
}
.bookmark.saved svg {
  fill: var(--ink);
}
.brand-identity {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.brand-identity .brand-mini {
  background: var(--ink);
  color: var(--paper);
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  font: 9px var(--display);
}
.brand .priority-card {
  grid-template-columns: 1fr 1fr;
}
.review-progress {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}
.review-progress span {
  height: 3px;
  background: var(--line);
  width: 24px;
}
.review-progress span:first-child {
  background: var(--red);
}
.people-panel {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}
.people-panel h2 {
  font: 800 34px/1 var(--display);
  text-transform: uppercase;
  margin: 13px 0 8px;
}
.people-panel > p {
  font-size: 12px;
  color: var(--secondary);
  line-height: 1.6;
}
.person-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.person-avatar {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.person-letter {
  display: grid;
  place-items: center;
  background: var(--muted);
  font-size: 12px;
}
.person-info {
  flex: 1;
}
.person-info h3 {
  font-size: 12px;
  margin-bottom: 4px;
}
.person-info p {
  font-size: 10px;
  color: var(--secondary);
}
.person-row .kicker {
  font-size: 8px;
  color: var(--green);
}
.people-panel > .btn {
  margin-top: 18px;
  width: 100%;
  justify-content: space-between;
}
.brand-note {
  background: var(--ink);
  color: var(--paper);
}
.brand-note p {
  color: var(--line);
}
.brand-note .text-link {
  border-color: var(--secondary);
}
.brand-bottom {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 36px;
  border-top: 1px solid var(--ink);
  margin-top: 34px;
  padding-top: 25px;
}
.campaign-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 12px;
}
.campaign-table th {
  font: 8px var(--mono);
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 12px 12px 0;
}
.campaign-table td {
  padding: 17px 12px 17px 0;
  border-top: 1px solid var(--line);
}
.campaign-table th:last-child,
.campaign-table td:last-child {
  text-align: right;
  padding-right: 0;
}
.table-name {
  font-weight: 600;
}
.table-name small {
  display: block;
  font-weight: 400;
  color: var(--secondary);
  font-size: 10px;
  margin-top: 5px;
}
.progress-track {
  height: 3px;
  background: var(--line);
  width: 65px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.progress-track i {
  display: block;
  height: 100%;
  background: var(--green);
}
.table-link {
  background: transparent;
  border: 0;
  padding: 10px;
  font-size: 20px;
}
.activity-row {
  display: flex;
  gap: 12px;
  margin-top: 19px;
}
.activity-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 4px;
  flex-shrink: 0;
}
.activity-row p {
  font-size: 11px;
  line-height: 1.55;
}
.activity-row small {
  font-size: 9px;
  color: var(--secondary);
  display: block;
  margin-top: 4px;
}
.workspace-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 8px var(--mono);
  color: var(--secondary);
  border-top: 1px solid var(--line);
  margin-top: 42px;
  padding-top: 18px;
  letter-spacing: 0.04em;
}
.workspace-footer span:last-child {
  color: var(--red);
}
dialog {
  padding: 0;
  border: 0;
  inset: 0 0 0 auto;
  margin: 0;
  height: 100dvh;
  max-height: 100dvh;
  width: min(510px, 100%);
  max-width: 100%;
  background: var(--paper);
  color: var(--ink);
  box-shadow: -20px 0 100px #0003;
}
dialog::backdrop {
  background: #171b1a88;
  backdrop-filter: blur(3px);
}
.dialog-close {
  position: absolute;
  right: 20px;
  top: 19px;
  z-index: 2;
  background: var(--paper);
}
.detail-body {
  padding: 35px;
}
.detail-body h2 {
  font: 800 49px/1 var(--display);
  text-transform: uppercase;
  margin: 18px 0;
}
.detail-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--secondary);
  margin-bottom: 20px;
}
.detail-photo {
  height: 270px;
}
.detail-body .detail-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-block: 1px solid var(--line);
  padding: 20px 0;
  margin: 25px 0;
}
.detail-facts dt {
  font: 9px var(--mono);
  color: var(--secondary);
  margin-bottom: 8px;
}
.detail-facts dd {
  margin: 0;
  font-size: 13px;
}
.detail-body h3 {
  font-size: 15px;
  margin: 22px 0 12px;
}
.deliverable {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.detail-body .btn {
  width: 100%;
  margin-top: 16px;
}
.demo-note {
  font: 9px/1.6 var(--mono) !important;
  margin-top: 16px;
  color: var(--secondary);
}
.review-image {
  height: 250px;
  position: relative;
  overflow: hidden;
  margin-top: 17px;
}
.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border: 1px solid var(--paper);
  color: var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: #0003;
}
.form-label {
  display: block;
  font-size: 11px;
  margin: 20px 0 8px;
}
.detail-body input,
.detail-body select,
.detail-body textarea {
  padding: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  width: 100%;
  border-radius: 2px;
  min-height: 45px;
}
.detail-body textarea {
  min-height: 100px;
  resize: vertical;
}
.notice {
  background: var(--green-wash);
  padding: 20px;
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.6;
}
.inbox-message {
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
}
.inbox-message strong {
  font-size: 13px;
}
.inbox-message time {
  float: right;
  font: 9px var(--mono);
  color: var(--secondary);
}
.inbox-message p {
  font-size: 12px;
  margin: 9px 0 0;
}
.detail-spaced {
  padding-top: 60px;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--secondary);
  padding: 15px 22px;
  max-width: calc(100vw - 32px);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  z-index: 30;
}
#toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
[hidden] {
  display: none !important;
}
.enter {
  animation: enter 0.3s ease-out both;
}
@keyframes enter {
  from {
    opacity: 0.1;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .home-main {
    max-width: 1600px;
    margin: auto;
  }
  .site-header {
    max-width: 1496px;
    margin-inline: auto;
  }
  .hero-art {
    min-height: 630px;
  }
  .hero h1 {
    font-size: 178px;
  }
  .hero-desc {
    font-size: 18px;
  }
  .hero {
    padding-block: 55px;
  }
}
@media (max-width: 1150px) {
  .concept-note,
  .sample-label {
    display: none;
  }
  .site-header {
    margin-inline: 30px;
  }
  .home-main {
    padding-inline: 30px;
  }
  .hero {
    gap: 25px;
  }
  .hero h1 {
    font-size: 12vw;
  }
  .hero-art {
    min-height: 540px;
  }
  .header-links {
    gap: 20px;
  }
  .workspace-main {
    padding-inline: 30px;
  }
  .workspace-nav {
    gap: 20px;
    margin-left: 15px;
  }
  .workspace-grid,
  .brand-bottom {
    gap: 25px;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr);
  }
  .priority-content {
    padding: 20px 17px;
  }
  .priority-content h2 {
    font-size: 34px;
  }
  .priority-card,
  .brand .priority-card {
    grid-template-columns: 0.8fr 1fr;
  }
  .priority-content .btn {
    font-size: 11px;
    padding-inline: 13px;
  }
  .status-strip {
    gap: 25px;
  }
  .status-strip .all-clear {
    display: none;
  }
  .header-actions {
    gap: 15px;
  }
  .workspace-title h1 {
    font-size: 50px;
  }
  .workspace .campaign-image {
    height: 160px;
  }
}
@media (max-width: 850px) {
  .header-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hero-art {
    min-height: 455px;
  }
  .hero h1 {
    font-size: 13vw;
  }
  .hero-desc {
    font-size: 14px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-buttons .btn {
    justify-content: space-between;
  }
  .photo-stamp {
    width: 82px;
    height: 82px;
    right: 18px;
    top: 60px;
  }
  .photo-stamp b {
    font-size: 28px;
  }
  .photo-stamp small {
    font-size: 7px;
  }
  .location-tag {
    left: 14px;
    top: 16px;
  }
  .campaign-grid {
    gap: 15px;
  }
  .campaign-image {
    height: 180px;
  }
  .campaign-card h3 {
    font-size: 18px;
  }
  .role-block h2 {
    font-size: 46px;
  }
  .how-section {
    gap: 30px;
  }
  .how-section h2 {
    font-size: 49px;
  }
  .workspace-nav {
    gap: 14px;
    margin: 0;
  }
  .workspace-nav button {
    font-size: 11px;
  }
  .workspace .header-actions .avatar {
    display: none;
  }
  .workspace-grid,
  .brand-bottom {
    grid-template-columns: 1fr;
  }
  .right-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
  }
  .note-card {
    margin-top: 0;
  }
  .calendar-panel {
    height: 100%;
  }
  .priority-card,
  .brand .priority-card {
    grid-template-columns: 1fr 1.2fr;
    min-height: 265px;
  }
  .priority-image {
    min-height: 265px;
  }
  .priority-content {
    padding: 24px;
  }
  .priority-content h2 {
    font-size: 42px;
  }
  .workspace-title {
    align-items: flex-start;
  }
  .workspace-title .title-actions {
    flex-direction: column;
  }
  .people-panel {
    height: 100%;
  }
  .brand-bottom {
    gap: 25px;
  }
  .activity-section {
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .workspace .campaign-image {
    height: 180px;
  }
  .workspace-title h1 {
    font-size: 45px;
  }
  .home-footer {
    padding-inline: 30px;
  }
  .footer-wordmark {
    margin-top: 45px;
  }
}
@media (max-width: 600px) {
  .concept-bar {
    padding: 0 12px;
    min-height: 69px;
    flex-direction: column;
    gap: 0;
    align-items: center;
    padding-top: 9px;
  }
  .concept-bar nav a {
    padding: 10px 15px;
    font-size: 9px;
  }
  .concept-bar > span:first-child {
    font-size: 8px;
  }
  .concept-note {
    display: inline;
  }
  .site-header {
    height: 72px;
    margin-inline: 20px;
  }
  .header-actions {
    gap: 12px;
  }
  .header-actions > a:not(.btn) {
    display: none;
  }
  .logo {
    font-size: 19px;
  }
  .logo img {
    width: 23px;
    height: 27px;
  }
  .btn {
    font-size: 12px;
    padding: 14px 17px;
  }
  .btn-small {
    padding: 10px 12px;
    font-size: 11px;
  }
  .home-main {
    padding-inline: 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-top: 28px;
  }
  .hero h1 {
    font-size: clamp(90px, 24vw, 144px);
    line-height: 0.85;
    margin-top: 20px;
    margin-bottom: 23px;
  }
  .hero h1 span {
    display: inline;
  }
  .hero h1 .red {
    display: block;
  }
  .hero-copy .kicker {
    font-size: 8px;
  }
  .hero-desc {
    max-width: 330px;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .hero-buttons {
    flex-direction: row;
    width: auto;
  }
  .hero-art {
    min-height: 390px;
  }
  .hero-art > img {
    object-position: 54% center;
  }
  .photo-stamp {
    width: 93px;
    height: 93px;
    top: 24px;
    right: 22px;
  }
  .photo-stamp b {
    font-size: 32px;
  }
  .location-tag {
    top: 23px;
    left: 19px;
  }
  .photo-caption {
    padding-inline: 18px;
  }
  .photo-caption strong {
    font-size: 16px;
  }
  .ticker {
    gap: 12px;
    padding: 15px 0;
    font-size: 17px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ticker span:nth-last-child(-n + 2) {
    display: none;
  }
  .ticker .asterisk {
    font-size: 22px;
  }
  .home-section {
    padding: 40px 0;
  }
  .section-heading {
    align-items: start;
    gap: 10px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .section-heading > .text-link {
    font-size: 10px;
    gap: 9px;
    margin-top: 18px;
  }
  .campaign-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .campaign-image {
    height: 265px;
  }
  .campaign-card h3 {
    font-size: 23px;
  }
  .campaign-meta {
    font-size: 9px;
  }
  .campaign-bottom {
    font-size: 12px;
  }
  .role-split {
    grid-template-columns: 1fr;
  }
  .role-block,
  .role-block:first-child {
    padding: 30px 0;
    border-right: 0;
  }
  .role-block:first-child {
    border-bottom: 1px solid var(--line);
  }
  .role-block h2 {
    font-size: 57px;
  }
  .how-section {
    grid-template-columns: 1fr;
    padding: 40px 0;
    gap: 30px;
  }
  .how-section h2 {
    font-size: 55px;
  }
  .home-footer {
    padding: 30px 20px 22px;
  }
  .footer-cta {
    align-items: start;
    flex-direction: column;
  }
  .footer-cta h2 {
    font-size: 57px;
  }
  .footer-wordmark {
    font-size: 20.2vw;
    margin-top: 35px;
  }
  .footer-meta {
    font-size: 7px;
    margin-top: 20px;
    gap: 10px;
  }
  .workspace .site-header {
    height: 107px;
    position: relative;
    align-items: flex-start;
    padding-top: 19px;
  }
  .workspace .logo {
    font-size: 19px;
  }
  .workspace .header-actions {
    margin-left: auto;
  }
  .workspace-nav {
    position: absolute;
    inset: auto 0 0;
    height: 42px;
    width: 100%;
    justify-content: space-between;
  }
  .workspace-nav button {
    font-size: 11px;
    padding: 0 2px;
  }
  .workspace-main {
    padding: 18px 20px 35px;
  }
  .workspace-eyebrow {
    margin-bottom: 17px;
  }
  .workspace-eyebrow > .kicker {
    font-size: 8px;
  }
  .brand-identity {
    font-size: 9px;
  }
  .workspace-eyebrow .coordinates {
    display: none;
  }
  .workspace-title {
    display: block;
    margin-bottom: 16px;
  }
  .workspace-title h1 {
    font-size: 40px;
  }
  .workspace-title p {
    font-size: 12px;
    max-width: 300px;
    line-height: 1.6;
  }
  .workspace-title > .btn {
    margin-top: 16px;
  }
  .workspace-title .title-actions {
    flex-direction: row;
    margin-top: 18px;
  }
  .status-strip {
    gap: 0;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 15px 0;
  }
  .status-item {
    flex-direction: column;
    gap: 7px;
  }
  .status-item strong {
    font-size: 31px;
  }
  .status-item span {
    font-size: 9px;
  }
  .workspace-grid {
    gap: 27px;
  }
  .priority-card,
  .brand .priority-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .priority-image {
    min-height: 210px;
  }
  .priority-content {
    padding: 18px;
  }
  .priority-content h2 {
    font-size: 42px;
    max-width: 280px;
  }
  .priority-content p {
    max-width: 280px;
  }
  .priority-content .btn {
    font-size: 12px;
  }
  .priority-content .due {
    margin-bottom: 20px;
  }
  .panel-header .kicker {
    font-size: 9px;
  }
  .right-column {
    grid-template-columns: 1fr;
  }
  .calendar-panel {
    padding: 22px;
  }
  .week {
    gap: 6px;
  }
  .day {
    min-height: 63px;
  }
  .day small {
    font-size: 9px;
  }
  .day {
    font-size: 14px;
  }
  .timeline {
    min-height: auto;
  }
  .timeline-event h3 {
    font-size: 13px;
  }
  .timeline-event p {
    font-size: 11px;
  }
  .timeline-event time {
    font-size: 10px;
  }
  .calendar-panel > .text-link {
    font-size: 11px;
  }
  .note-card {
    padding: 23px;
  }
  .note-card h2 {
    max-width: 270px;
    font-size: 39px;
  }
  .note-card p {
    font-size: 12px;
    max-width: 285px;
  }
  .note-star {
    font-size: 49px;
  }
  .lineup-image {
    width: 46px;
    height: 46px;
  }
  .lineup-info h3 {
    font-size: 12px;
  }
  .lineup-info p {
    font-size: 9px;
  }
  .lineup-status {
    font-size: 9px;
  }
  .lineup-row {
    gap: 11px;
  }
  .lineup-row > button {
    padding: 8px;
  }
  .discovery-section {
    margin-top: 28px;
  }
  .discovery-section .section-heading h2 {
    font-size: 34px;
  }
  .workspace .campaign-grid {
    gap: 27px;
  }
  .workspace .campaign-image {
    height: 240px;
  }
  .workspace .campaign-card h3 {
    font-size: 21px;
  }
  .workspace .campaign-meta {
    font-size: 9px;
  }
  .workspace .campaign-bottom {
    font-size: 11px;
  }
  .brand-bottom {
    margin-top: 28px;
  }
  .campaign-table {
    font-size: 11px;
  }
  .campaign-table td {
    padding-right: 7px;
  }
  .campaign-table th {
    font-size: 7px;
    padding-right: 7px;
  }
  .progress-track {
    width: 32px;
    margin-right: 4px;
  }
  .campaign-table .table-link {
    padding: 5px;
  }
  .people-panel h2 {
    font-size: 38px;
  }
  .person-info h3 {
    font-size: 13px;
  }
  .person-info p {
    font-size: 11px;
  }
  .workspace-footer {
    align-items: start;
    gap: 15px;
    font-size: 7px;
    line-height: 1.5;
  }
  .detail-body {
    padding: 28px;
  }
  .detail-body h2 {
    font-size: 46px;
  }
  .detail-spaced {
    padding-top: 65px;
  }
  .detail-photo {
    height: 240px;
  }
  .workspace-eyebrow {
    flex-wrap: wrap;
    gap: 12px;
  }
  .brand-identity > .muted {
    display: none;
  }
  .priority-content {
    order: -1;
  }
  .priority-content h2 {
    font-size: 36px;
  }
  .priority-image {
    min-height: 155px;
  }
  .note-card h2 {
    max-width: none;
    padding-right: 35px;
    font-size: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 12px;
  }
  .logo {
    font-size: 17px;
    gap: 8px;
  }
  .logo img {
    width: 22px;
  }
  .header-actions .btn-small {
    font-size: 10px;
    padding: 10px;
    gap: 12px;
  }
  .hero-buttons {
    gap: 8px;
  }
  .hero-buttons .btn {
    padding: 12px;
    font-size: 11px;
    gap: 12px;
  }
  .workspace-nav {
    gap: 6px;
  }
  .workspace-nav button {
    font-size: 10px;
    gap: 5px;
  }
  .workspace-nav .count {
    font-size: 8px;
  }
}
