.page-home {
  --home-gutter: clamp(20px, 4vw, 44px);
  --home-radius: 18px;
  --home-section: clamp(56px, 9vw, 128px);
}

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

.page-home .page-home__current {
  padding-top: 18px;
}

.page-home .home-hero {
  position: relative;
  background: var(--lb-primary);
  color: var(--lb-white);
  padding: 48px 0 72px;
  isolation: isolate;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(150deg, var(--lb-accent) 0%, var(--lb-primary-mid) 140%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 72px;
  left: 6%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.28) 0%, transparent 64%);
}

.page-home .home-hero__inner {
  display: grid;
  gap: var(--home-gutter);
  align-items: center;
}

.page-home .home-hero__copy {
  position: relative;
  z-index: 1;
}

.page-home .kicker--hero {
  font-family: var(--lb-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lb-accent-light);
  margin-bottom: 16px;
}

.page-home .home-hero__title {
  font-family: var(--lb-font-heading);
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}

.page-home .home-hero__lead {
  max-width: 42em;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 28px;
}

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

.page-home .home-hero__visual {
  position: relative;
}

.page-home .home-hero__figure {
  margin: 0;
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
}

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

.page-home .home-hero__statcard {
  position: absolute;
  left: 16px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 14px;
  align-items: center;
  max-width: 220px;
  background: var(--lb-primary-deep);
  border-left: 4px solid var(--lb-accent);
  border-radius: 14px;
  padding: 12px 16px;
  color: var(--lb-white);
  box-shadow: 0 14px 30px rgba(7, 40, 30, 0.34);
}

.page-home .home-hero__statcard-label {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-accent-light);
  margin-bottom: 4px;
}

.page-home .home-hero__statcard-num {
  font-family: var(--lb-font-mono);
  font-size: 2.6rem;
  line-height: 0.9;
  font-weight: 500;
}

.page-home .home-hero__statcard-sub {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.76);
}

.page-home .home-round {
  background: var(--lb-white);
  padding: var(--home-section) 0;
}

.page-home .home-round__head {
  max-width: 760px;
  margin-bottom: 40px;
}

.page-home .kicker--dark {
  font-family: var(--lb-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lb-accent);
}

.page-home .home-round__title {
  font-family: var(--lb-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin: 12px 0 14px;
  color: var(--lb-text);
}

.page-home .home-round__intro {
  color: var(--lb-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.page-home .home-round__grid {
  display: grid;
  gap: 28px;
}

.page-home .home-round__lead-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--lb-primary);
  color: var(--lb-white);
  border-radius: var(--home-radius);
  padding: 30px;
  box-shadow: 0 16px 36px rgba(7, 40, 30, 0.18);
}

.page-home .home-round__lead-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -32px;
  width: 120px;
  height: 120px;
  background: var(--lb-accent);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
}

.page-home .home-round__lead-card .btn {
  position: relative;
  z-index: 1;
}

.page-home .home-round__lead-label {
  font-family: var(--lb-font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-accent-light);
}

.page-home .home-round__lead-title {
  font-family: var(--lb-font-heading);
  font-size: 2.6rem;
  line-height: 0.95;
  margin: 0;
  color: var(--lb-white);
}

.page-home .home-round__lead-desc {
  color: rgba(255, 255, 255, 0.8);
}

.page-home .home-round__stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--lb-bg);
  border: 1px solid var(--lb-border);
  border-radius: var(--home-radius);
  padding: 26px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.page-home .home-round__stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(7, 40, 30, 0.12);
}

.page-home .home-round__stat-card--accent {
  background: var(--lb-primary);
  border-color: transparent;
  color: var(--lb-white);
}

.page-home .home-round__stat-card--accent .card__title {
  color: var(--lb-white);
}

.page-home .home-round__stat-card--accent .card__desc {
  color: rgba(255, 255, 255, 0.78);
}

.page-home .home-round__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.14);
  margin-bottom: 4px;
}

.page-home .home-round__stat-card--accent .home-round__stat-icon {
  background: rgba(255, 255, 255, 0.12);
}

.page-home .home-round__stat-card .card__title {
  font-family: var(--lb-font-heading);
  font-size: 1.4rem;
  line-height: 1.1;
  margin: 0;
  color: var(--lb-text);
  letter-spacing: 0.02em;
}

.page-home .home-round__stat-card .card__desc {
  color: var(--lb-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-home .home-round__tag {
  margin-top: auto;
  display: inline-block;
  font-family: var(--lb-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lb-accent);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255, 107, 53, 0.06);
}

.page-home .home-round__stat-card--accent .home-round__tag {
  color: var(--lb-accent-light);
  border-color: rgba(255, 209, 102, 0.4);
  background: rgba(255, 209, 102, 0.08);
}

.page-home .home-round__figure {
  position: relative;
  z-index: 0;
  margin: 0;
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(7, 40, 30, 0.14);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 0 100%);
}

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

.page-home .home-revisit {
  background: var(--lb-bg);
  padding: var(--home-section) 0;
}

.page-home .home-revisit__inner {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .home-revisit__figure {
  margin: 0;
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(7, 40, 30, 0.12);
}

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

.page-home .home-revisit__title {
  font-family: var(--lb-font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  margin: 12px 0 16px;
  color: var(--lb-text);
}

.page-home .home-revisit__text {
  color: var(--lb-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.page-home .home-revisit__steps {
  list-style: none;
  counter-reset: step;
  margin: 28px 0;
  padding: 0;
}

.page-home .home-revisit__steps li {
  counter-increment: step;
  position: relative;
  padding: 12px 0 12px 52px;
  border-bottom: 1px solid var(--lb-border);
  color: var(--lb-text);
  font-size: 0.95rem;
}

.page-home .home-revisit__steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lb-primary);
  color: var(--lb-white);
  font-family: var(--lb-font-mono);
  font-size: 0.9rem;
}

.page-home .home-revisit__actions,
.page-home .home-lock__actions,
.page-home .home-check__actions,
.page-home .home-epilogue__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-check {
  background: var(--lb-primary-deep);
  color: var(--lb-white);
  padding: var(--home-section) 0;
  position: relative;
  overflow: hidden;
}

.page-home .home-check::after {
  content: "";
  position: absolute;
  top: 0;
  right: -6%;
  width: 44%;
  height: 100%;
  background: var(--lb-primary-mid);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.4;
}

.page-home .home-check__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .kicker--light {
  font-family: var(--lb-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lb-accent);
}

.page-home .home-check__title {
  font-family: var(--lb-font-heading);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.06;
  margin: 12px 0 20px;
}

.page-home .home-check__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.page-home .home-check__note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 16px;
}

.page-home .home-check__panel {
  background: var(--lb-primary);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--home-radius);
  padding: 30px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  position: relative;
}

.page-home .home-check__panel::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 24px;
  width: 72px;
  height: 4px;
  background: var(--lb-accent);
  border-radius: 4px;
}

.page-home .home-check__panel-label {
  font-family: var(--lb-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-accent-light);
}

.page-home .home-check__panel-title {
  display: block;
  font-family: var(--lb-font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 12px 0 18px;
}

.page-home .home-check__panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.page-home .home-check__panel-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.page-home .home-check__panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--lb-accent);
  border-radius: 2px;
}

.page-home .home-check__panel-note {
  display: block;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--lb-accent-light);
  font-size: 0.86rem;
}

.page-home .home-lock {
  background: var(--lb-white);
  padding: var(--home-section) 0;
}

.page-home .home-lock__inner {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .home-lock__title {
  font-family: var(--lb-font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  margin: 12px 0 16px;
  color: var(--lb-text);
}

.page-home .home-lock__text {
  color: var(--lb-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.page-home .home-lock__features li {
  padding: 14px 16px;
  background: var(--lb-bg);
  border-left: 4px solid var(--lb-accent);
  border-radius: 12px;
  color: var(--lb-text);
  font-size: 0.95rem;
}

.page-home .home-lock__figure {
  margin: 0;
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(7, 40, 30, 0.12);
}

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

.page-home .home-epilogue {
  background: var(--lb-primary);
  color: var(--lb-white);
  padding: var(--home-section) 0;
  position: relative;
  overflow: hidden;
}

.page-home .home-epilogue::after {
  content: "27";
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--lb-font-heading);
  font-size: 18rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
}

.page-home .home-epilogue__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.page-home .home-epilogue__kicker {
  font-family: var(--lb-font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lb-accent-light);
}

.page-home .home-epilogue__title {
  font-family: var(--lb-font-heading);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  margin: 16px 0;
}

.page-home .home-epilogue__text {
  color: rgba(255, 255, 255, 0.82);
  max-width: 52em;
  font-size: 1rem;
  line-height: 1.7;
}

.page-home .btn--primary,
.page-home .btn--ghost,
.page-home .btn--outline {
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-home .btn--primary {
  background: var(--lb-accent);
  border: 2px solid var(--lb-accent);
  color: var(--lb-white);
}

.page-home .btn--primary:hover {
  background: var(--lb-accent-light);
  border-color: var(--lb-accent-light);
  color: var(--lb-primary);
}

.page-home .btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--lb-white);
}

.page-home .btn--ghost:hover {
  border-color: var(--lb-accent);
  color: var(--lb-accent);
}

.page-home .btn--outline {
  background: transparent;
  border: 2px solid var(--lb-primary);
  color: var(--lb-primary);
}

.page-home .btn--outline:hover {
  background: var(--lb-primary);
  border-color: var(--lb-primary);
  color: var(--lb-white);
}

@media (min-width: 768px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 40px;
  }

  .page-home .home-hero::before {
    width: 40%;
  }

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

  .page-home .home-round__lead-card {
    grid-column: 1 / -1;
  }

  .page-home .home-round__figure {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .page-home .home-revisit__inner,
  .page-home .home-check__inner,
  .page-home .home-lock__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
  }

  .page-home .home-check__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .page-home .home-lock__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 64px 0 112px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 64px;
  }

  .page-home .home-hero__title {
    font-size: clamp(3.2rem, 7vw, 5.8rem);
  }

  .page-home .home-hero__lead {
    font-size: 1.05rem;
  }

  .page-home .home-hero__statcard {
    left: 24px;
    bottom: 32px;
  }

  .page-home .home-round__grid {
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: minmax(196px, auto);
  }

  .page-home .home-round__lead-card {
    grid-column: span 3;
    position: relative;
    z-index: 2;
  }

  .page-home .home-round__stat-card {
    grid-column: span 2;
    position: relative;
    z-index: 2;
  }

  .page-home .home-round__stat-card--accent {
    grid-column: span 3;
    position: relative;
    z-index: 2;
  }

  .page-home .home-round__figure {
    grid-column: 2 / span 4;
    margin-top: -48px;
    z-index: 0;
  }

  .page-home .home-revisit__inner,
  .page-home .home-check__inner,
  .page-home .home-lock__inner {
    gap: 72px;
  }
}
