.page-home {
  --ph-max: 1220px;
  --ph-panel: rgba(10, 13, 32, 0.72);
  --ph-skew: -2.4deg;
  display: block;
  position: relative;
  overflow-x: clip;
}

.page-home .crumbs.page-home__crumbs {
  margin: 0 auto;
  padding: clamp(18px, 2.6vw, 30px) var(--pad-x) 0;
  max-width: var(--ph-max);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .crumbs__sep {
  color: var(--cyan);
}

/* ---------- HERO ---------- */

.page-home .hero {
  position: relative;
  max-width: var(--ph-max);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 48px) var(--pad-x) clamp(48px, 7vw, 92px);
  display: grid;
  gap: clamp(30px, 4.5vw, 58px);
  align-items: center;
}

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: -14% -6% 6% -6%;
  background:
    repeating-linear-gradient(115deg, rgba(124, 77, 255, 0.1) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(115deg, rgba(34, 211, 238, 0.05) 0 1px, transparent 1px 26px);
  transform: skewY(var(--ph-skew));
  pointer-events: none;
  z-index: 0;
}

.page-home .hero > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

@media (min-width: 960px) {
  .page-home .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }
}

.page-home .hero__title {
  margin: 16px 0 0;
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 8.6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
}

.page-home .hero__title em {
  font-style: normal;
  color: var(--lilac);
}

@supports (-webkit-text-stroke: 1px #000) {
  .page-home .hero__title em {
    color: transparent;
    -webkit-text-stroke: 1.6px var(--neon);
  }
}

.page-home .hero__lede {
  margin: 26px 0 0;
  max-width: 46ch;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.8;
  color: var(--silver);
}

.page-home .hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .hero__quick {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}

.page-home .hero__quick a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.page-home .hero__quick a:hover,
.page-home .hero__quick a:focus-visible {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* hero visual */
.page-home .stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-850);
  box-shadow: var(--shadow-panel);
  transform: rotate(-1.2deg);
}

.page-home .stage img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-home .stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(6, 8, 18, 0.36) 0 2px, transparent 2px 5px),
    linear-gradient(196deg, rgba(18, 20, 58, 0.12), rgba(6, 8, 18, 0.88));
  pointer-events: none;
}

.page-home .stage__scope {
  position: absolute;
  top: 6%;
  right: 5%;
  width: min(46%, 240px);
  height: auto;
  z-index: 2;
  opacity: 0.9;
}

.page-home .stage__panel {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(34, 211, 238, 0.34);
  background: rgba(6, 8, 18, 0.76);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

/* ---------- SECTION BASE ---------- */

.page-home .section {
  position: relative;
  max-width: var(--ph-max);
  margin: 0 auto;
  padding: clamp(50px, 6.6vw, 100px) var(--pad-x);
}

.page-home .section > * {
  position: relative;
  z-index: 1;
}

.page-home .section-head {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(24px, 3.4vw, 42px);
}

.page-home .section-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 0.78;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(124, 77, 255, 0.28);
  -webkit-text-stroke: 1.5px rgba(124, 77, 255, 0.62);
}

@supports not (-webkit-text-stroke: 1px #000) {
  .page-home .section-num {
    color: var(--neon);
  }
}

.page-home .section-head__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}

.page-home .section__lede {
  margin: 0 0 clamp(22px, 3vw, 34px);
  max-width: 62ch;
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.8;
  color: var(--silver);
}

/* ---------- 01 IDENTITY ---------- */

.page-home .identity {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}

@media (min-width: 880px) {
  .page-home .identity {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
  }
}

.page-home .idcard {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.8vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(152deg, var(--ink-800), var(--ink-900) 74%);
  box-shadow: var(--shadow-panel);
}

.page-home .idcard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon), var(--cyan) 52%, transparent);
}

.page-home .statusline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 7px 15px;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-home .idcard__lead {
  margin: 22px 0 0;
  max-width: 54ch;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.82;
  color: var(--silver);
}

.page-home .idcard__list {
  margin-top: 26px;
}

.page-home .idcard__list .data-row {
  border-top: 1px solid var(--line-soft);
  padding-block: 12px;
}

.page-home .idcard__list .data-row:first-child {
  border-top: 0;
}

.page-home .statgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
}

.page-home .statgrid .stat {
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ph-panel);
  display: grid;
  gap: 6px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.page-home .statgrid .stat:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.page-home .statgrid .stat--cyan {
  background: linear-gradient(160deg, rgba(11, 59, 60, 0.85), rgba(6, 8, 18, 0.9));
}

.page-home .statgrid .stat--neon {
  background: linear-gradient(160deg, rgba(58, 16, 36, 0.8), rgba(6, 8, 18, 0.9));
}

.page-home .statgrid .stat__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.page-home .statgrid .stat--cyan .stat__num {
  color: var(--cyan);
}

.page-home .statgrid .stat--neon .stat__num {
  color: var(--lilac);
}

.page-home .statgrid .stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 02 SCHEDULE ---------- */

.page-home .section--schedule::before {
  content: "";
  position: absolute;
  inset: clamp(16px, 3vw, 40px) calc(var(--pad-x) * -0.4);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(78% 62% at 92% 4%, rgba(124, 77, 255, 0.2), transparent 68%),
    linear-gradient(164deg, rgba(58, 16, 36, 0.8), rgba(6, 8, 18, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.page-home .tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
  scrollbar-width: none;
}

.page-home .tabs::-webkit-scrollbar {
  display: none;
}

.page-home .tab {
  flex: 0 0 auto;
  padding: 9px 17px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(18, 20, 58, 0.55);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.page-home .tab:hover {
  border-color: var(--cyan);
  color: var(--white);
}

.page-home .tab[aria-selected="true"] {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--ink-900);
}

.page-home .tab:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.page-home .schedule-body {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}

@media (min-width: 900px) {
  .page-home .schedule-body {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    align-items: start;
  }
}

.page-home .tabpanel[hidden] {
  display: none;
}

.page-home .rounds {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ph-panel);
  overflow: hidden;
}

.page-home .round {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 14px;
  padding: 14px clamp(12px, 2vw, 20px);
  border-top: 1px solid var(--line-soft);
  transition: background 0.18s ease;
}

.page-home .round:first-child {
  border-top: 0;
}

.page-home .round:hover {
  background: rgba(124, 77, 255, 0.1);
}

.page-home .round__time {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--cyan);
}

.page-home .round__meta {
  min-width: 0;
  font-size: 0.95rem;
  color: var(--silver);
}

@media (max-width: 560px) {
  .page-home .round {
    grid-template-columns: 54px minmax(0, 1fr);
  }
  .page-home .round .chip {
    grid-column: 2;
    justify-self: start;
  }
}

.page-home .schedule-side {
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: var(--radius-md);
  background: linear-gradient(168deg, rgba(11, 59, 60, 0.9), rgba(6, 8, 18, 0.92));
}

.page-home .schedule-side__title {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}

.page-home .schedule-side__list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.page-home .schedule-side__list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--silver);
}

.page-home .schedule-side__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 2px;
  background: var(--cyan);
}

/* ---------- 03 CLIENT ---------- */

.page-home .client {
  display: grid;
  gap: clamp(24px, 3.4vw, 46px);
}

@media (min-width: 920px) {
  .page-home .client {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }
}

.page-home .client__copy .section__lede {
  margin-bottom: 24px;
}

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

.page-home .acc-stack .acc {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ph-panel);
  overflow: hidden;
  transition: border-color 0.18s ease;
}

.page-home .acc-stack .acc:hover,
.page-home .acc-stack .acc[open] {
  border-color: rgba(34, 211, 238, 0.55);
}

.page-home .client__note {
  margin: 24px 0 26px;
  padding-left: 16px;
  border-left: 2px solid var(--orange);
  font-size: 0.96rem;
  line-height: 1.78;
  color: var(--silver);
}

.page-home .client__note strong {
  font-family: var(--font-mono);
  color: var(--orange);
  font-weight: 600;
}

.page-home .client__shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-850);
  overflow: hidden;
  box-shadow: var(--shadow-panel);
}

.page-home .client__shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .client__shot figcaption {
  padding: 16px clamp(16px, 2vw, 22px);
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ---------- 04 HELP ---------- */

.page-home .section--help::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 3vw, 36px) calc(var(--pad-x) * -0.4);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(70% 58% at 8% 6%, rgba(11, 59, 60, 0.85), transparent 70%),
    linear-gradient(200deg, rgba(25, 28, 74, 0.7), rgba(6, 8, 18, 0) 74%);
  z-index: 0;
  pointer-events: none;
}

.page-home .help {
  display: grid;
  gap: clamp(20px, 2.6vw, 32px);
}

@media (min-width: 920px) {
  .page-home .help {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    align-items: start;
  }
}

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

.page-home .help__list .acc {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ph-panel);
  overflow: hidden;
  transition: border-color 0.18s ease;
}

.page-home .help__list .acc:hover,
.page-home .help__list .acc[open] {
  border-color: rgba(34, 211, 238, 0.55);
}

.page-home .help__side {
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(58, 16, 36, 0.72), rgba(6, 8, 18, 0.94));
}

.page-home .help__links {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-home .help__links a {
  color: var(--silver);
  font-size: 0.96rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease, padding-left 0.18s ease;
}

.page-home .help__links a:hover,
.page-home .help__links a:focus-visible {
  color: var(--cyan);
  border-color: var(--cyan);
  padding-left: 6px;
}

.page-home .help__hint {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* ---------- 05 LINKS ---------- */

.page-home .links__media {
  margin: 0 0 clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-850);
}

.page-home .links__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 2;
  object-fit: cover;
}

.page-home .quickgrid {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

@media (min-width: 720px) {
  .page-home .quickgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .page-home .quickgrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-home .qcard:nth-child(even) {
    margin-top: 30px;
  }
}

.page-home .qcard {
  position: relative;
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ph-panel);
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.page-home .qcard:hover,
.page-home .qcard:focus-visible {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 20px 42px -24px rgba(34, 211, 238, 0.55);
}

.page-home .qcard__idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--neon);
}

.page-home .qcard__title {
  font-family: var(--font-head);
  font-size: 1.28rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.page-home .qcard__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- ACCORDION SHARED (page scope) ---------- */

.page-home .acc__q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px clamp(16px, 2vw, 22px);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--white);
  list-style: none;
}

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

.page-home .acc__icon {
  flex: 0 0 auto;
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: auto;
  margin-top: 3px;
}

.page-home .acc__icon::before,
.page-home .acc__icon::after {
  content: "";
  position: absolute;
  background: var(--cyan);
  transition: transform 0.18s ease;
}

.page-home .acc__icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.page-home .acc__icon::after {
  left: 7px;
  top: 0;
  width: 2px;
  height: 16px;
}

.page-home .acc[open] .acc__icon::after {
  transform: scaleY(0);
}

.page-home .acc__body {
  padding: 0 clamp(16px, 2vw, 22px) 18px;
}

.page-home .acc__body p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.78;
  color: var(--silver);
}

@media (prefers-reduced-motion: reduce) {
  .page-home .statgrid .stat,
  .page-home .qcard,
  .page-home .tab,
  .page-home .round,
  .page-home .help__links a {
    transition: none;
  }
}
