.page-home {
  --home-gap: 24px;
  --home-radius: 4px;
  background:
    radial-gradient(ellipse at 82% 8%, rgba(232, 184, 75, 0.07) 0%, transparent 58%),
    linear-gradient(180deg, #1B4D3E 0%, #0F201A 96%);
  color: var(--cream);
  font-family: var(--font-body);
  padding: 0 0 96px;
}

.page-home .container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-pad);
}

.page-home .home-lead {
  padding-top: 40px;
  padding-bottom: 36px;
}

.page-home .breadcrumb {
  font-family: var(--font-data);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--stone-grey);
  margin-bottom: 14px;
}

.page-home .breadcrumb a {
  color: var(--stone-grey);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.page-home .breadcrumb a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.page-home .breadcrumb [aria-current="page"] {
  color: var(--cream);
}

.page-home .section-label {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-home .page-title {
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 8px 0 20px;
  color: var(--cream);
  max-width: 12em;
}

.page-home .home-lead-text {
  max-width: 52em;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.82);
  margin: 0;
}

.page-home .bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  margin-top: 8px;
}

.page-home .focus-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--stone-grey);
  border-radius: var(--home-radius);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.page-home .focus-card .tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  margin: 0;
}

.page-home .focus-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .focus-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: saturate(0.85) contrast(1.05);
  display: block;
}

.page-home .focus-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 36px 28px 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 32, 26, 0.72) 52%, rgba(15, 32, 26, 0.96) 100%);
}

.page-home .focus-content h2 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 16px;
}

.page-home .focus-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 12px;
}

.page-home .stat-cell {
  padding: 10px 0 4px;
  border-top: 1px solid rgba(165, 162, 157, 0.45);
}

.page-home .stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--stone-grey);
  margin-bottom: 6px;
  display: block;
}

.page-home .stat-number {
  font-family: var(--font-data);
  font-weight: 600;
  color: var(--cream);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.1;
}

.page-home .stat-suffix {
  font-size: 0.6em;
  color: var(--stone-grey);
  margin-left: 2px;
  vertical-align: super;
}

.page-home .focus-note {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.75);
  margin: 4px 0 18px;
}

.page-home .btn {
  margin-top: 4px;
}

.page-home .update-clock-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stone-grey);
  border-radius: var(--home-radius);
  background: linear-gradient(150deg, rgba(27, 77, 62, 0.92) 15%, rgba(15, 32, 26, 0.96) 82%);
  padding: 40px 26px 28px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.page-home .update-clock-card .tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  margin: 0;
}

.page-home .clock-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.page-home .clock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--speed-orange);
  animation: home-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.72); }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .clock-dot {
    animation: none;
  }
}

.page-home .update-clock-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.page-home .clock-value {
  margin: 28px 0 12px;
  display: flex;
  align-items: baseline;
}

.page-home .clock-value .stat-number {
  font-size: clamp(3.4rem, 9vw, 5rem);
  font-weight: 600;
  color: var(--speed-orange);
  line-height: 1;
}

.page-home .clock-unit {
  font-size: 1.05rem;
  color: var(--stone-grey);
  margin-left: 8px;
  font-weight: 500;
}

.page-home .clock-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.8);
  margin: 0 0 20px;
}

.page-home .text-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  font-size: 0.92rem;
  display: inline-block;
  transition: color 160ms ease;
}

.page-home .text-link:hover {
  color: var(--cream);
}

.page-home .check-section,
.page-home .report-section {
  max-width: 960px;
  padding-top: 72px;
  padding-bottom: 68px;
}

.page-home .section-heading-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}

.page-home .section-heading-row .index-number {
  font-family: var(--font-data);
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-weight: 100;
  line-height: 0.9;
  color: rgba(245, 240, 232, 0.16);
  flex-shrink: 0;
}

.page-home .section-heading-row h2 {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 4px 0 0;
}

.page-home .steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
}

.page-home .step-card {
  padding: 26px 24px 24px;
  border: 1px solid var(--stone-grey);
  border-radius: var(--home-radius);
  background: rgba(15, 32, 26, 0.34);
  box-shadow: 5px 5px 0 rgba(232, 184, 75, 0.18);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.page-home .step-num {
  font-family: var(--font-data);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--speed-orange);
  letter-spacing: 0.1em;
}

.page-home .step-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 12px 0 8px;
}

.page-home .step-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.82);
  margin: 0;
}

.page-home .check-note {
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--stone-grey);
  line-height: 1.7;
  padding-left: 12px;
  border-left: 3px solid var(--speed-orange);
}

.page-home .subscribe-section,
.page-home .shots-section,
.page-home .tracking-section {
  padding-top: 8px;
  padding-bottom: 72px;
}

.page-home .subscribe-section .section-heading-row,
.page-home .shots-section .section-heading-row,
.page-home .tracking-section .section-heading-row {
  margin-bottom: 30px;
}

.page-home .subscribe-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid var(--stone-grey);
  border-radius: var(--home-radius);
  background: rgba(15, 32, 26, 0.5);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.page-home .subscribe-text {
  padding: 32px 26px 28px;
}

.page-home .subscribe-text > p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.82);
  margin: 0 0 20px;
}

.page-home .subscribe-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.page-home .subscribe-list li {
  padding: 10px 0 10px 18px;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.82);
}

.page-home .subscribe-media {
  min-height: 220px;
  overflow: hidden;
}

.page-home .subscribe-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .timeline-item {
  background: rgba(15, 32, 26, 0.36);
  border: 1px dashed rgba(165, 162, 157, 0.65);
  border-radius: var(--home-radius);
  padding: 18px 20px 16px;
  position: relative;
}

.page-home .timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin-bottom: 10px;
}

.page-home .timeline-title {
  font-weight: 800;
  margin: 0 0 4px;
  font-size: 1rem;
}

.page-home .timeline-note {
  font-size: 0.85rem;
  color: var(--stone-grey);
  margin: 0;
}

.page-home .report-note {
  background: rgba(15, 32, 26, 0.4);
  border-left: 3px solid var(--gold);
  padding: 24px 24px 26px;
  border-radius: 0 var(--home-radius) var(--home-radius) 0;
}

.page-home .report-note p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.82);
  margin: 0 0 18px;
}

.page-home .shots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
}

.page-home .shots-content {
  padding: 32px 26px 28px;
  background: var(--sand);
  color: var(--mountain-dark);
  border-radius: var(--home-radius);
  border: 1px solid rgba(15, 32, 26, 0.2);
}

.page-home .shots-content > p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(15, 32, 26, 0.86);
  margin: 0 0 18px;
}

.page-home .league-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.page-home .league-pill {
  display: inline-block;
  background: var(--turf-green);
  color: var(--cream);
  padding: 6px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.page-home .shots-metrics {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.page-home .shots-metrics li {
  position: relative;
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid rgba(15, 32, 26, 0.14);
  font-size: 0.95rem;
  line-height: 1.65;
}

.page-home .shots-metrics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 12px;
  height: 2px;
  background: var(--clay);
}

.page-home .shots-media {
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--stone-grey);
  border-radius: var(--home-radius);
}

.page-home .shots-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .tracking-card {
  border: 1px solid var(--gold);
  border-radius: var(--home-radius);
  background: linear-gradient(140deg, rgba(192, 110, 82, 0.16) 0%, rgba(27, 77, 62, 0.92) 46%, #0F201A 100%);
  overflow: hidden;
}

.page-home .tracking-text {
  padding: 34px 26px 30px;
}

.page-home .tracking-text > p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.82);
  margin: 0 0 24px;
}

.page-home .tracking-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 26px;
}

.page-home .tracking-stat {
  padding: 14px 10px;
  border-top: 1px solid rgba(232, 184, 75, 0.45);
}

.page-home .tracking-stat .stat-number {
  font-family: var(--font-data);
  font-size: clamp(1.4rem, 3.6vw, 2rem);
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.page-home .tracking-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.72);
}

.page-home .tracking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .tracking-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .trust-strip {
  border-top: 1px solid rgba(232, 184, 75, 0.5);
  padding-top: 28px;
}

.page-home .trust-strip p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.72);
  margin: 0;
}

.page-home .trust-strip .text-link {
  margin-left: 8px;
}

.page-home .bento-grid .panel:hover,
.page-home .step-card:hover,
.page-home .subscribe-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.page-home a:focus-visible,
.page-home button:focus-visible {
  outline: 2px dashed var(--speed-orange);
  outline-offset: 3px;
}

.page-home .tracking-card .btn--orange {
  background: var(--speed-orange);
  color: var(--cream);
}

@media (min-width: 600px) {
  .page-home .steps-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .subscribe-card {
    grid-template-columns: 1fr;
  }

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

  .page-home .shots-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .page-home .home-lead {
    padding-top: 56px;
    padding-bottom: 44px;
  }

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

  .page-home .focus-card {
    grid-column: span 8;
    min-height: 480px;
  }

  .page-home .update-clock-card {
    grid-column: span 4;
    margin-top: 40px;
    min-height: 440px;
  }

  .page-home .steps-row {
    gap: 20px;
  }

  .page-home .step-card:nth-child(2) {
    margin-top: 18px;
  }

  .page-home .step-card:nth-child(3) {
    margin-top: 36px;
  }

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

  .page-home .subscribe-text {
    padding: 38px 34px 32px;
  }

  .page-home .subscribe-media {
    min-height: 320px;
  }

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

  .page-home .timeline-item {
    position: relative;
  }

  .page-home .timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -13px;
    top: 38px;
    width: 24px;
    height: 1px;
    background: rgba(232, 184, 75, 0.5);
  }

  .page-home .shots-grid {
    grid-template-columns: 6fr 6fr;
    align-items: stretch;
  }

  .page-home .shots-content {
    padding: 38px 32px 32px;
  }

  .page-home .shots-media {
    min-height: 360px;
  }

  .page-home .tracking-card {
    display: grid;
    grid-template-columns: 7fr 5fr;
  }

  .page-home .tracking-text {
    padding: 40px 34px 34px;
  }

  .page-home .tracking-media {
    min-height: 300px;
  }
}
