.page-home {
  --home-coral: #FF7A45;
  --home-aqua: #1B9AAA;
  --home-gap: clamp(22px, 4vw, 52px);
  font-family: var(--font-body);
  color: var(--ink);
  overflow-x: hidden;
}

.page-home .home-hero-zone {
  position: relative;
  background: linear-gradient(140deg, var(--navy) 0%, var(--night) 78%);
  padding: 28px 0 110px;
  overflow: hidden;
}

.page-home .hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-home .hero-bg-static {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .26;
}

.page-home .hero-bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10, 42, 67, .95) 0%, rgba(6, 18, 28, .82) 56%, rgba(6, 18, 28, .42) 100%);
}

.page-home .hero-slice {
  display: none;
}

.page-home .hero-layout {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 2;
  padding-top: clamp(18px, 3vw, 36px);
  padding-bottom: 10px;
}

.page-home .hero-copy {
  color: var(--foam);
}

.page-home .hero-copy .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 18px;
  color: var(--mist);
}

.page-home .hero-copy .breadcrumb .breadcrumb-current {
  color: var(--foam);
}

.page-home .hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.2rem + 3vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  transform: skewX(-5deg);
  overflow-wrap: anywhere;
}

.page-home .hero-lead {
  font-size: 15px;
  line-height: 1.75;
  max-width: 34em;
  color: rgba(245, 248, 252, .9);
}

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

.page-home .hero-actions .button {
  transform: skewX(-5deg);
}

.page-home .hero-board {
  position: relative;
  z-index: 3;
  background: rgba(6, 18, 28, .78);
  border: 1px solid rgba(168, 198, 223, .28);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(18px, 2vw, 28px);
  color: var(--foam);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.page-home .board-texture {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: auto;
  object-fit: contain;
  opacity: .13;
  pointer-events: none;
  border-radius: var(--radius);
}

.page-home .board-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mist);
}

.page-home .board-sync-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-soft);
}

.page-home .hero-board h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1rem + 1.6vw, 2.4rem);
  margin: 10px 0 12px;
  transform: skewX(-5deg);
}

.page-home .board-tags {
  margin-bottom: 16px;
}

.page-home .match-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .match-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 4px 8px;
  background: rgba(245, 248, 252, .06);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  border-left: 2px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.page-home .match-line:hover {
  background: rgba(255, 122, 69, .14);
  border-left-color: var(--coral);
}

.page-home .match-club {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-home .match-club:first-child {
  text-align: right;
}

.page-home .match-club:last-child {
  text-align: left;
}

.page-home .match-score {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--coral);
  letter-spacing: .04em;
}

.page-home .match-shot {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: var(--mist);
  padding-top: 2px;
}

.page-home .board-foot {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--mist);
  border-top: 1px solid rgba(168, 198, 223, .24);
  padding-top: 12px;
}

.page-home .hero-wave-divider {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 72px;
  z-index: 4;
}

.page-home .home-pulse {
  background: var(--foam);
  padding: 60px 0 48px;
}

.page-home .pulse-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 14px;
  margin-top: 34px;
}

.page-home .pulse-stat {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 3px solid var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), border-color .3s var(--ease);
}

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

.page-home .pulse-figure {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1rem + 2vw, 3rem);
  color: var(--navy);
  letter-spacing: -0.03em;
}

.page-home .pulse-label {
  font-size: 13px;
  color: var(--grey);
}

.page-home .home-gate {
  background: #fff;
  padding: 56px 0 64px;
}

.page-home .gate-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 30px;
}

.page-home .gate-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num name"
    "num desc";
  column-gap: 16px;
  align-items: center;
  padding: 20px 18px;
  background: var(--foam);
  border-radius: var(--radius);
  border-left: 4px solid var(--navy);
  text-decoration: none;
  color: var(--ink);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}

.page-home .gate-item:hover {
  background: var(--navy);
  color: var(--foam);
  transform: translateX(6px);
  border-left-color: var(--coral);
  box-shadow: var(--shadow-lg);
}

.page-home .gate-num {
  grid-area: num;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--coral);
}

.page-home .gate-name {
  grid-area: name;
  font-size: 18px;
  font-weight: 700;
}

.page-home .gate-desc {
  grid-area: desc;
  font-size: 13px;
  color: var(--grey);
}

.page-home .gate-item:hover .gate-desc {
  color: var(--mist);
}

.page-home .home-subscribe {
  background: var(--foam);
  padding: 58px 0 72px;
}

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

.page-home .sub-visual {
  position: relative;
}

.page-home .sub-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  clip-path: polygon(0 4%, 100% 0, 98% 96%, 8% 100%);
  box-shadow: var(--shadow-lg);
}

.page-home .sub-float-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(10, 42, 67, .92);
  color: var(--foam);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 69, .5);
}

.page-home .sub-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .sub-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .sub-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}

.page-home .sub-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--foam);
  font-style: normal;
  font-size: 12px;
  flex-shrink: 0;
}

.page-home .home-recap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--night) 100%);
  padding: 60px 0 70px;
}

.page-home .recap-copy {
  color: var(--foam);
}

.page-home .recap-copy .section-title {
  color: var(--foam);
}

.page-home .recap-copy .section-sub {
  color: rgba(245, 248, 252, .86);
}

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

.page-home .recap-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(168, 198, 223, .3);
  box-shadow: var(--shadow-lg);
  filter: saturate(.9);
}

.page-home .home-help {
  background: var(--foam);
  padding: 60px 0 70px;
}

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

.page-home .help-board {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--navy) 0%, var(--night) 88%);
  border-radius: var(--radius);
  padding: 30px 28px;
  color: var(--foam);
  box-shadow: var(--shadow-lg);
}

.page-home .help-board::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 69, .24), transparent 70%);
}

.page-home .help-board .section-sub {
  color: rgba(245, 248, 252, .86);
}

.page-home .help-board .button {
  position: relative;
  z-index: 1;
}

.page-home .help-topics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .topic-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.page-home .topic-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.page-home .topic-item b {
  font-size: 15px;
  color: var(--navy);
}

.page-home .topic-item p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
}

.page-home .home-trust {
  background: var(--night);
  padding: 28px 0;
  color: rgba(245, 248, 252, .82);
}

.page-home .trust-inner {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .02em;
}

@media (min-width: 680px) {
  .page-home .hero-wave-divider {
    height: 110px;
  }
}

@media (min-width: 760px) {
  .page-home .pulse-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .page-home .gate-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .page-home .home-hero-zone {
    padding: 36px 0 140px;
  }

  .page-home .hero-slice {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 47%;
    height: 100%;
    background: var(--foam);
    clip-path: polygon(27% 0, 100% 0, 100% 100%, 18% 100%, 8% 70%, 12% 40%, 19% 20%);
    z-index: 1;
  }

  .page-home .hero-layout {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: var(--home-gap);
    align-items: center;
    min-height: 600px;
  }

  .page-home .hero-board {
    transform: translateY(6px);
  }

  .page-home .sub-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .page-home .recap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
  }

  .page-home .recap-visual {
    order: 2;
  }

  .page-home .help-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
}

@media (min-width: 1080px) {
  .page-home .gate-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
