.page-home {
  --home-grid-line: rgba(240, 235, 216, 0.06);
  --home-line: rgba(240, 235, 216, 0.16);
  --home-line-strong: rgba(240, 235, 216, 0.34);
  --home-grid-size: 34px;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .tk-section--first {
  padding-top: calc(var(--header-h) + 36px);
}

.page-home .home-cover {
  position: relative;
  background-image:
    linear-gradient(var(--home-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-grid-line) 1px, transparent 1px);
  background-size: var(--home-grid-size) var(--home-grid-size);
}

.page-home .home-cover__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.page-home .home-block-head {
  border-left: 3px solid var(--c-accent);
  padding-left: 14px;
  margin-bottom: 22px;
}

.page-home .home-block-title {
  font-family: var(--font-head);
  font-size: 30px;
  line-height: 1.2;
  margin: 6px 0 0;
}

.page-home .home-dir__nav {
  display: grid;
  gap: 10px;
}

.page-home .home-dir__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--home-line);
  background: rgba(42, 40, 36, 0.55);
  text-decoration: none;
  color: var(--c-fg);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.page-home .home-dir__item::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur) var(--ease);
}

.page-home .home-dir__item:hover,
.page-home .home-dir__item:focus-visible {
  border-color: var(--c-accent);
  background-color: rgba(255, 90, 43, 0.08);
}

.page-home .home-dir__item:hover::after,
.page-home .home-dir__item:focus-visible::after {
  transform: scaleX(1);
}

.page-home .home-dir__idx {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-secondary);
  letter-spacing: 0.04em;
}

.page-home .home-dir__name {
  font-weight: 700;
  font-size: 17px;
}

.page-home .home-dir__desc {
  font-size: 13px;
  color: var(--c-muted);
  text-align: right;
}

.page-home .home-stmt {
  position: relative;
  padding-top: 4px;
}

.page-home .home-stmt__title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.14;
  margin: 14px 0 18px;
  letter-spacing: 0.01em;
}

.page-home .home-stmt__slogan {
  color: var(--c-accent);
}

.page-home .home-stmt__lead {
  font-size: 18px;
  line-height: 28px;
  color: var(--c-fg);
  margin-bottom: 14px;
  max-width: 56ch;
}

.page-home .home-stmt__body {
  color: var(--c-muted);
  line-height: 26px;
  margin-bottom: 24px;
  max-width: 62ch;
}

.page-home .home-stmt__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .home-cover__figure {
  margin: 44px 0 0;
}

.page-home .home-cover__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 900 / 550;
  object-fit: cover;
}

.page-home .home-data__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
}

.page-home .home-data__stat {
  position: relative;
  margin: 0;
  padding: 18px 14px;
  border: 1px dashed rgba(198, 242, 78, 0.32);
  background: rgba(22, 42, 68, 0.5);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-home .home-data__stat:hover,
.page-home .home-data__stat:focus-within {
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 1px var(--c-secondary), 0 0 0 5px rgba(198, 242, 78, 0.12);
}

.page-home .home-data__stat dt {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-muted);
}

.page-home .home-data__stat dd {
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  color: var(--c-secondary);
  line-height: 1;
}

.page-home .home-data__certification,
.page-home .home-data__team {
  margin-top: 14px;
  color: var(--c-muted);
  font-size: 14px;
  line-height: 24px;
  max-width: 72ch;
}

.page-home .home-venue__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.page-home .home-venue__lead {
  color: var(--c-muted);
  line-height: 26px;
  margin: 0 0 18px;
  max-width: 60ch;
}

.page-home .home-venue .tk-faq {
  border-bottom: 1px solid var(--home-line);
  max-width: 600px;
}

.page-home .home-venue summary {
  cursor: pointer;
  padding: 14px 2px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.page-home .home-venue summary::-webkit-details-marker {
  display: none;
}

.page-home .home-venue summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--c-accent);
  font-size: 20px;
  transition: transform var(--dur) var(--ease);
}

.page-home .home-venue .tk-faq[open] summary::after {
  transform: rotate(45deg);
}

.page-home .home-venue ul {
  padding: 0 0 18px 20px;
  margin: 0;
}

.page-home .home-venue li {
  margin-bottom: 8px;
  color: var(--c-muted);
}

.page-home .home-venue .tk-faq > p {
  padding: 0 0 18px;
  margin: 0;
  color: var(--c-muted);
  line-height: 26px;
}

.page-home .home-venue__figure {
  margin: 0;
  border: 1px solid var(--home-line);
}

.page-home .home-venue__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 850 / 600;
  object-fit: cover;
}

.page-home .home-lineup__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.page-home .home-lineup__figure {
  margin: 0;
  border-left: 4px solid var(--c-accent);
  padding-left: 12px;
}

.page-home .home-lineup__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 650 / 420;
  object-fit: cover;
}

.page-home .home-lineup__list {
  padding-left: 20px;
  margin: 18px 0 24px;
  color: var(--c-muted);
}

.page-home .home-lineup__list li {
  margin-bottom: 8px;
  line-height: 26px;
}

.page-home .home-two__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.page-home .home-two__steps {
  list-style: none;
  counter-reset: two-step;
  margin: 0;
  padding: 0;
}

.page-home .home-two__step {
  counter-increment: two-step;
  position: relative;
  padding: 0 0 26px 56px;
  border-left: 1px solid var(--home-line-strong);
  margin-left: 8px;
}

.page-home .home-two__step::before {
  content: "0" counter(two-step);
  position: absolute;
  left: -19px;
  top: -2px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-bg);
  background: var(--c-accent);
}

.page-home .home-two__step:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.page-home .home-two__step-title {
  font-size: 18px;
  margin: 0 0 6px;
}

.page-home .home-two__step p {
  margin: 0;
  color: var(--c-muted);
  line-height: 26px;
  max-width: 62ch;
}

.page-home .home-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  list-style: none;
  padding: 18px 0 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--home-line);
}

.page-home .home-timeline li {
  position: relative;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--c-muted);
  padding-left: 16px;
}

.page-home .home-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--c-bronze);
  transform: rotate(45deg);
}

.page-home .home-timeline li strong {
  color: var(--c-fg);
}

.page-home .home-two__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.page-home .home-two__figure {
  margin: 0;
}

.page-home .home-two__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 700 / 450;
  object-fit: cover;
}

.page-home .tk-section--paper .tk-section__label {
  color: var(--c-teal);
}

.page-home .tk-section--paper .tk-section__title,
.page-home .tk-section--paper .tk-section__intro {
  color: var(--c-bg);
}

.page-home .home-latest__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.page-home .home-latest__item {
  border-bottom: 1px solid rgba(29, 28, 24, 0.16);
  padding: 18px 0;
}

.page-home .home-latest__item:last-child {
  border-bottom: 0;
}

.page-home .home-latest__link {
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--c-bg);
  text-decoration: none;
}

.page-home .home-latest__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur) var(--ease);
}

.page-home .home-latest__link:hover::after,
.page-home .home-latest__link:focus-visible::after {
  transform: scaleX(1);
}

.page-home .home-latest__meta {
  margin: 8px 0 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-teal);
}

.page-home .home-latest__foot {
  margin-top: 24px;
}

.page-home .home-cta__box {
  border: 1px dashed var(--home-line-strong);
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}

.page-home .home-cta__text h2 {
  font-family: var(--font-head);
  font-size: 30px;
  margin: 0 0 8px;
}

.page-home .home-cta__text p {
  color: var(--c-muted);
  max-width: 60ch;
  margin: 0;
  line-height: 26px;
}

.page-home .home-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 860px) {
  .page-home .home-cover__grid {
    grid-template-columns: 5fr 7fr;
    gap: 56px;
  }

  .page-home .home-data__stats {
    grid-template-columns: repeat(5, 1fr);
  }

  .page-home .home-venue__grid {
    grid-template-columns: 6fr 5fr;
  }

  .page-home .home-lineup__grid {
    grid-template-columns: 5fr 6fr;
  }

  .page-home .home-two__grid {
    grid-template-columns: 7fr 5fr;
  }

  .page-home .home-latest__item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 16px;
  }

  .page-home .home-latest__meta {
    margin-top: 0;
    text-align: right;
  }

  .page-home .home-cta__box {
    padding: 40px 36px;
  }
}
