:root {
  --navy-950: #07182f;
  --navy-900: #0d2444;
  --navy-800: #17345b;
  --orange-500: #f07b2d;
  --orange-600: #df6420;
  --orange-100: #fff2e8;
  --teal-500: #1c8c86;
  --teal-100: #e8f7f5;
  --green-600: #2d7a4a;
  --neutral-50: #f7f8fa;
  --neutral-100: #eef1f4;
  --neutral-200: #d8dee7;
  --neutral-500: #657286;
  --neutral-700: #344156;
  --white: #ffffff;
  --line: #cfd6df;
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfcfd;
  color: var(--neutral-700);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

button,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.page-header {
  border-bottom: 1px solid rgba(216, 222, 231, 0.72);
  background: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}

.agency-logo {
  display: block;
  width: 230px;
  height: auto;
}

.header-inner div {
  color: var(--neutral-500);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.header-inner strong {
  display: block;
  margin-top: 2px;
  color: var(--navy-900);
  font-size: 1rem;
}

.presentation-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 222, 231, 0.72);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.presentation-nav .container {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-block: 10px;
}

.presentation-nav a {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--neutral-500);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.presentation-nav a:hover {
  background: var(--orange-100);
  color: var(--orange-600);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.98), rgba(22, 22, 22, 0.94)),
    #080808;
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 8px;
  background: var(--orange-500);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
  padding-block: 72px 66px;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--orange-500);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.strategy-main h2,
.two-column h2,
.section-heading h2,
.final-grid h2 {
  margin: 0;
  color: var(--navy-900);
  font-weight: 800;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: 4.6rem;
}

.hero-copy p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

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

.hero-actions a {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-actions a:first-child {
  border-color: var(--orange-500);
  background: var(--orange-500);
}

.presentation-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.presentation-card dl {
  margin: 0;
}

.presentation-card div {
  padding: 18px;
}

.presentation-card div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.presentation-card dt {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.presentation-card dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
  line-height: 1.35;
}

.summary-section,
.strategy-section,
.calendar-section,
.posts-section,
.section-block {
  padding-block: 56px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 46px;
}

.strategy-main h2,
.two-column h2,
.section-heading h2,
.final-grid h2 {
  font-size: 2rem;
}

.strategy-main p:last-child {
  margin: 18px 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.executive-summary {
  display: grid;
  gap: 18px;
}

.summary-focus {
  border: 1px solid rgba(240, 123, 45, 0.28);
  border-radius: var(--radius);
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 242, 232, 0.9), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.summary-focus span {
  color: var(--orange-600);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-focus h3 {
  max-width: 760px;
  margin: 8px 0 10px;
  color: var(--navy-900);
  font-size: 2.1rem;
  line-height: 1.08;
}

.summary-focus p {
  max-width: 820px;
  margin: 0;
  color: var(--neutral-700);
  font-size: 1.04rem;
}

.stat-card {
  border: 1px solid rgba(207, 214, 223, 0.8);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(7, 24, 47, 0.06);
}

.stat-card-primary {
  border-color: rgba(240, 123, 45, 0.24);
  background: linear-gradient(135deg, var(--orange-100), var(--white));
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--navy-900);
  font-size: 2rem;
  line-height: 1;
}

.stat-card span {
  margin-top: 8px;
  color: var(--neutral-500);
  font-size: 0.88rem;
  font-weight: 800;
}

.summary-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.summary-pillars span {
  border: 1px solid rgba(240, 123, 45, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 800;
}

.section-block,
.posts-section {
  background: var(--white);
}

.section-block {
  border-block: 1px solid rgba(216, 222, 231, 0.72);
}

.two-column,
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  content: "";
}

.calendar-section {
  background: #fbfcfd;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.print-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
}

.calendar-board {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(207, 214, 223, 0.84);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 24, 47, 0.08);
}

.calendar-agenda {
  border-radius: var(--radius);
  padding: 22px;
  background: var(--neutral-50);
}

.calendar-agenda > strong {
  display: block;
  margin-bottom: 20px;
  color: var(--navy-900);
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1;
}

.calendar-agenda ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-agenda button {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 5px 6px;
  background: transparent;
  color: var(--neutral-700);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
}

.calendar-agenda button:hover {
  background: var(--orange-100);
  color: var(--orange-600);
}

.month-calendar {
  min-width: 0;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.calendar-weekdays {
  margin-bottom: 7px;
}

.calendar-weekdays span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-day {
  display: grid;
  align-content: start;
  min-height: 74px;
  overflow: hidden;
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius);
  background: var(--neutral-50);
  color: var(--navy-900);
}

.calendar-day.is-empty {
  background: transparent;
  border-color: transparent;
}

.calendar-day.has-post {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
}

.calendar-day button {
  display: grid;
  align-content: start;
  width: 100%;
  min-height: 100%;
  border: 0;
  padding: 10px;
  background: transparent;
  color: inherit;
  text-align: left;
}

.calendar-day:not(.has-post) {
  padding: 10px;
}

.calendar-day.has-post:hover {
  transform: translateY(-2px);
  transition: transform 160ms ease;
}

.calendar-day strong {
  font-size: 1.28rem;
  line-height: 1;
}

.calendar-day small {
  display: block;
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

.format-pill {
  display: inline-flex;
  border: 1px solid rgba(240, 123, 45, 0.55);
  border-radius: 999px;
  padding: 3px 9px;
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.filters {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filters label {
  color: var(--neutral-500);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.filters select {
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--white);
  color: var(--neutral-700);
}

.posts-helper {
  margin: 8px 0 0;
  color: var(--neutral-500);
  font-size: 0.92rem;
  font-weight: 700;
}

.posts-list {
  display: block;
}

.print-posts-list {
  display: none;
}

.post-showcase {
  display: grid;
  gap: 16px;
}

.post-showcase-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(207, 214, 223, 0.84);
  border-radius: var(--radius);
  padding: 10px;
  background: var(--white);
}

.post-showcase-toolbar button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
}

.post-showcase-toolbar button:not(:disabled):hover {
  border-color: rgba(240, 123, 45, 0.48);
  background: var(--orange-100);
  color: var(--orange-600);
}

.post-showcase-toolbar button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.post-showcase-toolbar span {
  color: var(--neutral-500);
  font-size: 0.88rem;
  font-weight: 800;
}

.post-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.post-overview-card {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 92px;
  border: 1px solid rgba(207, 214, 223, 0.84);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--white);
  color: var(--neutral-700);
  text-align: left;
  box-shadow: 0 10px 24px rgba(7, 24, 47, 0.04);
}

.post-overview-card strong {
  color: var(--navy-900);
  font-size: 0.94rem;
  line-height: 1.22;
}

.overview-date {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.overview-date {
  color: var(--orange-600);
}

.post-overview-card:hover,
.post-overview-card.is-selected {
  border-color: var(--orange-500);
  background: var(--orange-100);
}

.post-overview-card.is-selected {
  box-shadow: inset 0 4px 0 var(--orange-500), 0 12px 28px rgba(7, 24, 47, 0.07);
}

.post-detail {
  overflow: hidden;
  border: 1px solid rgba(207, 214, 223, 0.84);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 24, 47, 0.08);
}

.post-detail-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 24px 24px 20px;
  background: linear-gradient(135deg, #fbfcfd, var(--white));
}

.post-detail-date {
  color: var(--orange-600);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.post-detail-header h3 {
  margin: 8px 0 14px;
  color: var(--navy-900);
  font-size: 2rem;
  line-height: 1.1;
}

.post-detail-header .approval-strip {
  grid-column: 1 / -1;
}

.post-content {
  border-top: 1px solid rgba(207, 214, 223, 0.84);
  padding: 22px;
}

.approval-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.approval-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fbfcfd;
  color: var(--neutral-700);
  font-size: 0.82rem;
}

.post-content section + section {
  margin-top: 22px;
}

.post-content h3 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.post-content p {
  margin: 0;
}

.copy-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
}

.copy-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.copy-heading h3 {
  margin: 0;
}

.copy-button {
  border: 1px solid rgba(240, 123, 45, 0.42);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--orange-100);
  color: var(--orange-600);
  font-size: 0.78rem;
  font-weight: 800;
}

.detail-copy {
  align-self: start;
  white-space: nowrap;
}

.copy-box {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fbfcfd;
}

.copy-box p {
  white-space: normal;
}

.final-section {
  border-top: 1px solid var(--neutral-200);
}

.site-footer {
  border-top: 0;
  background: var(--orange-500);
  color: var(--white);
}

.site-footer .container {
  padding-block: 26px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .header-inner,
  .hero-grid,
  .strategy-grid,
  .two-column,
  .final-grid,
  .section-heading {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .header-inner {
    justify-content: center;
    padding-block: 18px;
    text-align: center;
  }

  .header-inner div {
    text-align: center;
  }

  .agency-logo {
    width: 210px;
  }

  .hero-grid {
    padding-block: 44px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .stats-grid,
  .copy-grid,
  .calendar-board {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 620px) {
  .hero h1 {
    font-size: 2.28rem;
  }

  .strategy-section,
  .calendar-section,
  .posts-section,
  .section-block {
    padding-block: 40px;
  }

  .post-detail-header {
    grid-template-columns: 1fr;
  }

  .detail-copy {
    width: 100%;
    justify-content: center;
  }

  .post-showcase-toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .post-showcase-toolbar span {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
  }

  .post-overview-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    display: grid;
  }

  .presentation-nav .container {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .filters select {
    width: 100%;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 4px;
  }

  .calendar-weekdays span {
    min-height: 34px;
    font-size: 0.68rem;
  }

  .calendar-day {
    min-height: 52px;
    padding: 7px;
  }

  .calendar-day strong {
    font-size: 1rem;
  }

  .calendar-day small {
    display: none;
  }
}

@media print {
  .print-button,
  .filters,
  .presentation-nav,
  .hero-actions,
  .post-showcase {
    display: none;
  }

  body {
    background: var(--white);
    color: #000;
  }

  .page-header,
  .hero,
  .strategy-section,
  .section-block,
  .calendar-section,
  .posts-section {
    background: var(--white);
  }

  .hero {
    color: #000;
  }

  .hero::after {
    display: none;
  }

  .hero h1,
  .hero-copy p:last-child,
  .presentation-card dd,
  .presentation-card dt {
    color: #000;
  }

  .eyebrow,
  .section-label {
    color: #9a481e;
  }

  .presentation-card {
    border-color: #999;
    background: #fff;
  }

  .presentation-card div + div {
    border-top-color: #bbb;
  }

  .hero-grid,
  .strategy-section,
  .calendar-section,
  .posts-section,
  .section-block {
    padding-block: 22px;
  }

  .post-content {
    display: block !important;
  }

  .print-posts-list {
    display: grid;
    gap: 18px;
  }

  .print-post-card {
    break-inside: avoid;
    border: 1px solid #bbb;
    border-radius: 0;
    padding: 18px;
  }

  .print-post-card header {
    border-bottom: 1px solid #bbb;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .print-post-card header span {
    color: #555;
    font-size: 10pt;
    font-weight: 800;
    text-transform: uppercase;
  }

  .print-post-card h3 {
    margin: 4px 0;
    color: #000;
    font-size: 17pt;
  }

  .print-post-card header p {
    margin: 0;
    color: #555;
    font-size: 10pt;
    font-weight: 700;
  }

  .print-post-card section + section {
    margin-top: 12px;
  }

  .print-post-card h4 {
    margin: 0 0 4px;
    color: #000;
    font-size: 10pt;
    text-transform: uppercase;
  }

  .print-post-card p {
    margin: 0 0 6px;
  }
}
