:root {
  color-scheme: light;
  --ink: #050505;
  --text: #191919;
  --soft: #666;
  --muted: #f3f3f3;
  --line: #111;
  --hairline: #d9d9d9;
  --paper: #fff;
  --blue: #1976ff;
  --pink: #f000b8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 16px clamp(24px, 4vw, 64px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: transparent;
  border-left: 3px solid var(--ink);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 16px;
  height: 18px;
  background: var(--ink);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.brand-mark::before {
  left: 7px;
}

.brand-mark::after {
  left: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 12px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 118px;
  bottom: 64px;
  left: clamp(28px, 4vw, 72px);
  width: 2px;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: min(44vw, 640px);
  height: 78%;
  background: linear-gradient(128deg, #1f8fff 0%, #2648ff 45%, #d100d5 76%, #ff0097 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.hero-image {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: min(46vw, 700px);
  height: 65%;
  object-fit: cover;
  opacity: 0.18;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  filter: grayscale(1) contrast(1.1);
}

.hero-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 68%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(860px, calc(100% - 96px));
  padding: clamp(132px, 19vh, 190px) 0 210px;
  margin-left: clamp(96px, 12vw, 170px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--ink);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.06;
  font-weight: 800;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.blue-rule {
  display: block;
  width: 172px;
  height: 6px;
  margin: 0 0 46px;
  background: var(--blue);
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 700;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.button-primary {
  color: #fff;
  background: var(--ink);
}

.button-secondary {
  color: var(--ink);
}

.hero-facts {
  position: absolute;
  z-index: 5;
  right: clamp(36px, 5vw, 76px);
  bottom: 40px;
  left: clamp(96px, 12vw, 170px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.88);
}

.hero-facts div {
  padding: 18px clamp(14px, 3vw, 28px);
  border-right: 1px solid var(--ink);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
}

.hero-facts strong {
  display: block;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
}

.band,
.section,
.event-band {
  position: relative;
}

.band::before,
.section::before,
.event-band::before {
  content: "";
  position: absolute;
  top: 54px;
  bottom: 54px;
  left: clamp(28px, 4vw, 72px);
  width: 2px;
  background: var(--ink);
}

.section,
.event-band,
.intro {
  padding: clamp(78px, 10vw, 136px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 120px));
  margin: 0 auto;
}

.intro {
  background: var(--paper);
  color: var(--ink);
  border-top: 2px solid var(--ink);
}

.intro-grid,
.event-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
}

.intro h2,
.event-band h2,
.section-heading h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.16;
  font-weight: 800;
}

.intro p:not(.eyebrow) {
  max-width: 620px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.event-list.concept-event-list {
  margin-top: 22px;
}

.photo-reel {
  position: relative;
  overflow: hidden;
  padding: 28px 0 34px;
  color: #fff;
  background: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.photo-reel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 120px));
  margin: 0 auto 20px;
}

.photo-reel-heading p,
.photo-reel-heading span {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.photo-reel-heading p {
  letter-spacing: 0;
}

.photo-reel-heading strong {
  margin-right: 10px;
  color: #7da9ff;
  font-weight: 800;
}

.photo-reel-heading span {
  color: rgba(255, 255, 255, 0.58);
}

.photo-reel-window {
  overflow: hidden;
}

.photo-reel-window-secondary {
  margin-top: 16px;
}

.photo-reel-track {
  display: flex;
  width: max-content;
  animation: photo-flow 72s linear infinite;
  will-change: transform;
}

.photo-reel-track-reverse {
  animation-direction: reverse;
  animation-duration: 78s;
}

.photo-reel:hover .photo-reel-track {
  animation-play-state: paused;
}

.photo-sequence {
  display: flex;
  flex: 0 0 max-content;
  gap: 10px;
  padding-right: 10px;
}

.photo-sequence figure {
  width: clamp(200px, 20vw, 300px);
  margin: 0;
}

.photo-sequence img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #222;
  border-radius: 6px;
}

.photo-sequence figcaption {
  display: none;
}

@keyframes photo-flow {
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  margin-bottom: 42px;
}

.program-section {
  border-top: 1px solid var(--hairline);
}

.program-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  column-gap: clamp(42px, 7vw, 88px);
  align-items: start;
}

.track-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  column-gap: clamp(42px, 7vw, 88px);
  align-items: start;
}

.track-heading .eyebrow,
.track-heading h2,
.track-heading .blue-rule {
  grid-column: 1;
}

.track-call-note {
  grid-column: 2;
  grid-row: 2 / span 2;
  max-width: 570px;
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}

.track-call-note a {
  display: block;
  width: fit-content;
  margin-top: 18px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.track-call-note a span {
  margin-left: 8px;
  color: var(--blue);
}

.program-heading .eyebrow,
.program-heading h2,
.program-heading .blue-rule {
  grid-column: 1;
}

.program-heading > p:last-child {
  grid-column: 2;
  grid-row: 2 / span 2;
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 2px solid var(--ink);
}

.day-panel {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--ink);
  background: #fff;
}

.day-panel:last-child {
  border-right: 0;
}

.day-panel-accent {
  position: relative;
  overflow: hidden;
}

.day-panel-accent::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 170px;
  height: 196px;
  background: linear-gradient(128deg, #1f8fff, #2648ff 45%, #d100d5 76%, #ff0097);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.16;
}

.day-index {
  position: relative;
  z-index: 1;
  border-right: 1px solid var(--ink);
}

.day-index span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.day-index strong {
  font-size: 42px;
  line-height: 1;
}

.day-panel > div:last-child {
  position: relative;
  z-index: 1;
}

.day-date {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.day-panel h3 {
  margin-bottom: 20px;
  font-size: clamp(27px, 2.6vw, 38px);
  line-height: 1.3;
  font-weight: 800;
}

.day-panel > div:last-child > p:last-child {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.special-programs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.special-programs article {
  padding: 30px 30px 34px;
}

.special-programs article:nth-child(odd) {
  padding-left: 0;
}

.special-programs article:nth-child(even) {
  padding-right: 0;
  border-left: 1px solid var(--ink);
}

.special-programs article:nth-child(-n + 2) {
  border-bottom: 1px solid var(--ink);
}

.special-programs h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 800;
}

.special-programs article > p:not(.eyebrow) {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.special-program-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.special-program-link span {
  color: var(--blue);
}

.party-list {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.party-list div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}

.party-list dt {
  padding-top: 2px;
  color: var(--blue);
}

.party-list dd,
.party-list strong,
.party-list span {
  display: block;
}

.party-list strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
}

.party-list span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.muted {
  background: #f2f2f2;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 2px solid var(--ink);
  background: #fff;
}

.track-card {
  min-height: 338px;
  padding: 28px;
  background: #fff;
  border-right: 1px solid var(--ink);
}

.track-card:last-child {
  border-right: 0;
}

.track-number {
  display: inline-block;
  margin-bottom: 48px;
  color: #d71920;
  font-size: 13px;
  font-weight: 900;
}

.track-card h3 {
  min-height: 86px;
  margin-bottom: 18px;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 900;
}

.track-card p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.results-section {
  background: var(--paper);
  border-top: 2px solid var(--ink);
}

.results-lead {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
}

.results-lead > p {
  max-width: 600px;
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.95;
}

.results-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  margin-top: 22px;
  border: 2px solid var(--ink);
}

.result-item {
  min-height: 178px;
  padding: 28px;
  border-right: 1px solid var(--ink);
  background: #fff;
}

.result-item:last-child {
  border-right: 0;
}

.result-item span {
  display: block;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.result-item strong {
  display: block;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  font-weight: 800;
}

.result-item small {
  margin-left: 4px;
  font-size: 15px;
}

.result-primary {
  color: #fff;
  background: var(--ink);
}

.result-primary span {
  color: rgba(255, 255, 255, 0.7);
}

.result-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.result-notes p {
  margin: 0;
  padding: 24px 24px 26px 0;
}

.result-notes p + p {
  padding-left: 24px;
  border-left: 1px solid var(--ink);
}

.result-notes strong,
.result-notes span {
  display: block;
}

.result-notes strong {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 800;
}

.result-notes span {
  color: var(--soft);
  font-size: 13px;
  font-weight: 600;
}

.attendee-companies {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  margin-top: 34px;
  padding-top: 24px;
}

.attendee-label {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.attendee-label span {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 500;
}

.attendee-list {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
}

.report-section {
  background: #f2f2f2;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.report-layout {
  display: block;
}

.report-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  column-gap: clamp(46px, 7vw, 90px);
  margin-bottom: 48px;
}

.report-intro .eyebrow,
.report-intro h2,
.report-intro .blue-rule {
  grid-column: 1;
}

.report-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.16;
  font-weight: 800;
}

.report-intro > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  max-width: 430px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.report-all {
  grid-column: 2;
  grid-row: 3;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.report-all span {
  color: var(--blue);
  font-size: 18px;
}

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

.report-item {
  position: relative;
  order: 4;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 0 18px;
  min-height: 176px;
  padding: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.report-featured-1 {
  order: 1;
}

.report-featured-2 {
  order: 2;
}

.report-featured-3 {
  order: 3;
}

.report-item:hover,
.report-item:focus-visible {
  color: var(--blue);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.report-item > div {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.report-image {
  grid-column: 1;
  grid-row: 1;
  width: 116px;
  height: 142px;
  overflow: hidden;
  border-radius: 4px;
  background: #e9e9e9;
}

.report-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-item-featured {
  grid-template-columns: minmax(0, 1fr) 24px;
  grid-template-rows: auto 1fr;
  min-height: 390px;
  padding: 0 0 22px;
}

.report-item-featured .report-image {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

.report-item-featured > div {
  grid-column: 1 / -1;
  grid-row: 2;
  padding: 22px 22px 0;
}

.report-arrow {
  color: var(--blue);
  font-weight: 800;
}

.report-arrow {
  position: absolute;
  top: 17px;
  right: 17px;
  font-size: 17px;
  text-align: right;
}

.report-item-featured .report-arrow {
  top: auto;
  right: 20px;
  bottom: 20px;
}

.report-meta {
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.report-item h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 750;
}

.report-item-featured h3 {
  font-size: 18px;
  line-height: 1.6;
}

.event-band {
  color: var(--ink);
  background: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.event-band::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(32vw, 480px);
  height: 74%;
  background: linear-gradient(128deg, #1f8fff 0%, #2648ff 45%, #d100d5 76%, #ff0097 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.event-grid {
  position: relative;
  z-index: 2;
}

.event-list {
  margin: 0;
  border-top: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.event-list div,
.definition-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 22px clamp(22px, 4vw, 36px);
  border-bottom: 1px solid var(--ink);
}

.event-list div:last-child,
.definition-list div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.callout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  border: 2px solid var(--ink);
  background: #fff;
}

.callout-main {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 54px);
  color: #fff;
  background: var(--ink);
}

.callout-main::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64%;
  height: 72%;
  background: linear-gradient(128deg, #1f8fff 0%, #2648ff 45%, #d100d5 76%, #ff0097 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.92;
}

.callout-main h3,
.callout-main p {
  position: relative;
  z-index: 2;
}

.callout-main h3 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.25;
  font-weight: 800;
}

.callout-main p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.definition-list {
  margin: 0;
}

.application-entry dd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.application-entry p {
  max-width: 440px;
  margin: 0;
}

.application-entry .button {
  flex: 0 0 auto;
  gap: 10px;
  white-space: nowrap;
}

.partner-band {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 136px) 0;
  color: #fff;
  background: var(--ink);
}

.partner-band::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42vw, 620px);
  height: 100%;
  background: linear-gradient(128deg, #1f8fff 0%, #2648ff 45%, #d100d5 76%, #ff0097 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.partner-inner {
  position: relative;
  z-index: 2;
}

.partner-band .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.partner-band h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.2;
  font-weight: 800;
}

.partner-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}

.partner-contact {
  display: flex;
  align-items: center;
  gap: 28px;
}

.partner-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-button {
  flex: 0 0 auto;
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

.partner-button-outline {
  color: #fff;
  background: transparent;
}

.partner-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(24px, 4vw, 64px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero-content {
    padding-bottom: 250px;
  }

  .hero::after {
    width: 48vw;
    height: 68%;
  }

  .hero-facts,
  .callout,
  .intro-grid,
  .event-grid,
  .program-heading,
  .track-heading,
  .results-lead {
    grid-template-columns: 1fr;
  }

  .event-list.concept-event-list {
    margin-top: 10px;
  }

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

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

  .result-item:nth-child(2) {
    border-right: 0;
  }

  .result-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }

  .program-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .track-call-note {
    grid-column: 1;
    grid-row: auto;
  }

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

  .day-panel {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .day-panel:last-child {
    border-bottom: 0;
  }

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

  .track-card:nth-child(2) {
    border-right: 0;
  }

  .track-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 62px;
    padding: 11px 18px;
  }

  .brand {
    white-space: normal;
  }

  .brand-mark {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 850px;
  }

  .hero::before,
  .band::before,
  .section::before,
  .event-band::before {
    left: 14px;
  }

  .hero::after {
    width: 70vw;
    height: 40%;
    opacity: 0.9;
  }

  .hero-image {
    width: 70vw;
    height: 40%;
  }

  .hero-content {
    width: calc(100% - 78px);
    margin-left: 66px;
    padding-top: 116px;
    padding-bottom: 260px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .hero-copy {
    font-size: 17px;
  }

  .blue-rule {
    width: 116px;
    height: 5px;
    margin-bottom: 28px;
  }

  .hero-facts {
    right: 18px;
    left: 66px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-facts div {
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }

  .hero-facts div:nth-child(2n) {
    border-right: 0;
  }

  .hero-facts div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section-inner {
    width: calc(100% - 90px);
    margin-left: 66px;
  }

  .photo-reel {
    padding-top: 22px;
  }

  .photo-reel-heading {
    width: calc(100% - 42px);
    margin-bottom: 16px;
  }

  .photo-reel-heading span {
    display: none;
  }

  .photo-sequence figure {
    width: 58vw;
  }

  .intro h2,
  .event-band h2,
  .section-heading h2 {
    font-size: 30px;
  }

  .day-panel {
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 28px 24px;
  }

  .day-index strong {
    font-size: 32px;
  }

  .day-panel h3 {
    font-size: 25px;
  }

  .special-programs {
    grid-template-columns: 1fr;
  }

  .special-programs article,
  .special-programs article + article {
    padding: 26px 0;
    border-left: 0;
    border-bottom: 0;
  }

  .special-programs article + article {
    border-top: 1px solid var(--ink);
  }

  .results-grid,
  .result-notes {
    grid-template-columns: 1fr;
  }

  .result-item,
  .result-item:nth-child(2),
  .result-item:nth-child(-n + 2) {
    min-height: 138px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .result-item:last-child {
    border-bottom: 0;
  }

  .result-item span {
    margin-bottom: 18px;
  }

  .result-notes p,
  .result-notes p + p {
    padding: 22px 0;
    border-left: 0;
  }

  .result-notes p + p {
    border-top: 1px solid var(--ink);
  }

  .attendee-companies {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .report-intro {
    display: block;
    margin-bottom: 36px;
  }

  .report-intro h2 {
    font-size: 30px;
  }

  .report-list {
    grid-template-columns: 1fr;
  }

  .report-item {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: auto;
    padding: 14px;
  }

  .report-item > div {
    padding-top: 0;
  }

  .report-image {
    width: 104px;
    height: 136px;
  }

  .report-item-featured {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20px;
    padding: 0 0 20px;
  }

  .report-item-featured > div {
    padding: 20px 20px 0;
  }

  .report-item h3 {
    font-size: 15px;
    line-height: 1.7;
  }

  .partner-band::after {
    width: 76vw;
    height: 58%;
  }

  .partner-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .partner-actions .button {
    width: 100%;
  }

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

  .track-card,
  .track-card:nth-child(2),
  .track-card:nth-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .track-card:last-child {
    border-bottom: 0;
  }

  .track-card h3 {
    min-height: auto;
  }

  .event-list div,
  .definition-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .application-entry dd {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .callout-main h3 {
    font-size: 28px;
    line-height: 1.18;
  }

  .callout-main,
  .track-card,
  .event-list div,
  .definition-list div {
    padding-left: 30px;
    padding-right: 30px;
  }

  .site-footer {
    flex-direction: column;
    padding-left: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-reel-window {
    overflow-x: auto;
  }

  .photo-reel-track {
    animation: none;
  }

  .photo-sequence[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 410px) {
  h1 {
    font-size: 36px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 32px;
  }
}

@media (max-width: 350px) {
  h1 {
    font-size: 28px;
  }
}
