.page-products {
  --p-orange-deep: #e14b00;
  --p-muted-text: #4c5b6a;
  --p-white-soft: rgba(255, 255, 255, 0.88);
  --p-white-mute: rgba(255, 255, 255, 0.7);
  --p-border: #dae4e8;
  --p-basic-bg: rgba(255, 255, 255, 0.06);
  --p-basic-border: rgba(255, 255, 255, 0.16);
  background: var(--paper);
  color: var(--night);
  overflow-x: hidden;
}

.page-products .frame-stage.p-hero {
  background:
    radial-gradient(circle at 84% 22%, rgba(201, 162, 75, 0.18), transparent 36%),
    linear-gradient(135deg, var(--night) 0%, var(--deep-blue) 70%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 68px) 0 clamp(64px, 8vw, 92px);
}

.page-products .p-hero .frame-ticks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.page-products .p-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  background: linear-gradient(166deg, transparent 49.4%, var(--paper) 50%);
  z-index: 1;
  pointer-events: none;
}

.page-products .p-hero .container {
  position: relative;
  z-index: 2;
}

.page-products .p-hero .breadcrumb {
  margin-bottom: 34px;
  color: var(--white-mute);
}

.page-products .p-hero .breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

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

.page-products .p-hero .breadcrumb span {
  color: var(--white-mute);
}

.page-products .p-hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-products .p-hero-copy {
  max-width: 42em;
}

.page-products .p-hero-copy .section-label {
  color: var(--gold);
}

.page-products .p-hero h1 {
  font-family: var(--head-font);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: 1.04;
  margin: 12px 0 10px;
  letter-spacing: -0.02em;
}

.page-products .p-hero-lead {
  font-family: var(--head-font);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--gold);
  margin: 0 0 14px;
}

.page-products .p-hero-desc {
  color: var(--p-white-soft);
  line-height: 1.8;
  margin: 0;
  max-width: 34em;
}

.page-products .p-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-top: 26px;
}

.page-products .p-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

.page-products .p-arrow {
  color: var(--gold);
  font-size: 1.3em;
}

.page-products .p-hero-note {
  margin-top: 22px;
  font-size: 0.84rem;
  color: var(--p-white-mute);
  line-height: 1.6;
}

.page-products .p-hero-visual {
  position: relative;
  z-index: 1;
}

.page-products .p-hero-visual::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: -12px;
  bottom: -12px;
  border: 2px solid rgba(201, 162, 75, 0.7);
  border-radius: 12px;
  pointer-events: none;
}

.page-products .p-hero-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px 10px 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 44px rgba(15, 26, 44, 0.38);
}

.page-products .p-sec-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.page-products .p-sec-head .section-number {
  font-family: var(--num-font);
  font-size: clamp(3.6rem, 8vw, 5.4rem);
  line-height: 0.9;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.page-products .p-sec-head .section-label {
  margin-bottom: 6px;
  color: var(--green);
}

.page-products .p-sec-head h2 {
  font-family: var(--head-font);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.16;
  margin: 0;
  color: inherit;
}

.page-products .p-sec-head--invert .section-number {
  color: var(--gold);
}

.page-products .p-sec-head--invert .section-label {
  color: var(--gold);
}

.page-products .p-sec-head--invert h2 {
  color: var(--white);
}

.page-products .p-lead-copy {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.8;
  color: var(--night);
  max-width: 46em;
  margin: 0;
}

.page-products .p-lead-extra {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--p-muted-text);
  margin: 18px 0 0;
  max-width: 46em;
}

.page-products .p-lead-copy--invert {
  color: var(--p-white-soft);
}

.page-products .p-overview {
  background: var(--paper);
  padding: clamp(42px, 6vw, 80px) 0;
}

.page-products .p-overview-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.page-products .p-fact-card {
  background: var(--white);
  border: 1px solid var(--p-border);
  border-left: 4px solid var(--green);
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(15, 26, 44, 0.06);
}

.page-products .p-fact-num {
  display: block;
  font-family: var(--num-font);
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--green);
}

.page-products .p-fact-suffix {
  font-size: 0.6em;
  color: var(--orange);
  margin-left: 2px;
}

.page-products .p-fact-label {
  display: block;
  font-family: var(--head-font);
  font-weight: 700;
  font-size: 1rem;
  margin: 12px 0 6px;
  color: var(--night);
}

.page-products .p-fact-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--p-muted-text);
  margin: 0;
}

.page-products .p-features {
  background: var(--mist);
  padding: clamp(46px, 7vw, 88px) 0;
  position: relative;
  overflow: hidden;
}

.page-products .p-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: linear-gradient(174deg, var(--paper) 49%, var(--mist) 50%);
  pointer-events: none;
}

.page-products .p-features::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: linear-gradient(6deg, var(--deep-blue) 48.5%, var(--mist) 50%);
  pointer-events: none;
}

.page-products .p-feature-wrap {
  display: grid;
  gap: 34px;
  align-items: start;
}

.page-products .p-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-products .p-feature-card {
  background: var(--white);
  border: 1px solid var(--p-border);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 6px 16px rgba(15, 26, 44, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-products .p-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 26, 44, 0.12);
}

.page-products .p-feature-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.page-products .p-feature-glyph {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-size: 1.35rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.page-products .p-feature-card:nth-child(2) .p-feature-glyph {
  background: var(--gold);
  color: var(--green-deep);
}

.page-products .p-feature-card h3 {
  font-family: var(--head-font);
  font-size: 1.12rem;
  font-weight: 900;
  margin: 0;
  color: var(--night);
}

.page-products .p-feature-card p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--p-muted-text);
  margin: 0 0 14px;
}

.page-products .p-feature-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  border-bottom: 2px solid var(--gold);
  text-decoration: none;
}

.page-products .p-feature-tag--static {
  border-bottom: none;
  color: #577772;
  background: var(--mist);
  padding: 3px 10px;
  border-radius: 2px;
}

.page-products .p-feature-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(15, 26, 44, 0.12);
}

.page-products .p-feature-visual-note {
  font-size: 0.86rem;
  text-align: center;
  color: var(--night);
  font-family: var(--head-font);
  font-weight: 700;
  margin-top: 12px;
}

.page-products .p-tiers {
  background: var(--deep-blue);
  color: var(--white);
  padding: clamp(48px, 7vw, 90px) 0;
}

.page-products .p-tier-grid {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.page-products .p-tier-card {
  background: var(--p-basic-bg);
  border: 1px solid var(--p-basic-border);
  padding: 28px 26px;
  border-radius: 10px;
  position: relative;
}

.page-products .p-tier-card h3 {
  font-family: var(--head-font);
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0 0 4px;
  color: var(--white);
}

.page-products .p-tier-desc {
  color: var(--p-white-mute);
  font-size: 0.92rem;
  margin: 0;
}

.page-products .p-tier-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.page-products .p-tier-list li {
  padding-left: 22px;
  position: relative;
  font-size: 0.94rem;
  color: var(--p-white-soft);
  line-height: 1.55;
}

.page-products .p-tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.page-products .p-tier-card--with {
  background: linear-gradient(135deg, rgba(11, 110, 79, 0.65), rgba(15, 26, 44, 0.88));
  border: 1px solid rgba(201, 162, 75, 0.55);
  box-shadow: 0 18px 38px rgba(15, 26, 44, 0.35);
}

.page-products .p-tier-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 2px;
  transform: rotate(-2deg);
  box-shadow: 0 4px 10px rgba(15, 26, 44, 0.25);
}

.page-products .p-tier-card--with .btn-energy {
  margin-top: 22px;
  display: inline-block;
}

.page-products .p-tier-visual {
  margin-top: 34px;
}

.page-products .p-tier-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(15, 26, 44, 0.3);
}

.page-products .p-guide {
  background: var(--paper);
  padding: clamp(44px, 6vw, 84px) 0;
}

.page-products .p-guide-wrap {
  display: grid;
  gap: 36px;
  align-items: start;
}

.page-products .p-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 32px;
}

.page-products .p-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding-bottom: 26px;
  border-bottom: 1px dashed var(--line);
}

.page-products .p-step:last-of-type {
  border-bottom: none;
}

.page-products .p-step-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.page-products .p-step-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-family: var(--num-font);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green-deep);
  background: var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.page-products .p-step h3 {
  font-family: var(--head-font);
  font-weight: 900;
  font-size: 1.15rem;
  margin: 0;
  color: var(--night);
}

.page-products .p-step p {
  color: var(--p-muted-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.page-products .p-guide-more {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 2px solid var(--gold);
}

.page-products .p-guide-more p {
  font-weight: 700;
  color: var(--night);
  margin: 0 0 8px;
}

.page-products .p-guide-more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.page-products .p-guide-more-links a {
  color: var(--green);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.page-products .p-guide-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 26, 44, 0.18);
  max-height: 600px;
  object-fit: cover;
}

.page-products .p-faq {
  background: var(--mist);
  padding: clamp(44px, 6vw, 80px) 0;
}

.page-products .p-faq-list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.page-products .p-faq-item {
  background: var(--white);
  border: 1px solid var(--p-border);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(15, 26, 44, 0.05);
  overflow: hidden;
}

.page-products .p-faq-item summary {
  padding: 20px 48px 20px 24px;
  font-family: var(--head-font);
  font-weight: 900;
  font-size: 1.03rem;
  color: var(--night);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.page-products .p-faq-item summary::-webkit-details-marker {
  display: none;
}

.page-products .p-faq-item summary:hover {
  color: var(--green);
}

.page-products .p-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--green);
  transition: transform 0.2s ease;
}

.page-products .p-faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-products .p-faq-body {
  padding: 0 24px 22px;
  color: var(--p-muted-text);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 62em;
}

.page-products .p-faq-more {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 24px;
}

.page-products .p-more-link {
  font-weight: 700;
  color: var(--green);
  border-bottom: 2px solid var(--gold);
  text-decoration: none;
  padding-bottom: 2px;
}

.page-products .p-more-link--muted {
  color: var(--night);
  border-bottom-color: var(--line);
}

.page-products .p-rhythm {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: var(--white);
  padding: clamp(46px, 7vw, 84px) 0;
}

.page-products .p-rhythm-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.page-products .p-rhythm-card {
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 26px;
}

.page-products .p-rhythm-card h3 {
  font-family: var(--head-font);
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 0 16px;
  color: var(--gold);
}

.page-products .p-rhythm-card p {
  color: var(--p-white-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 16px 0 0;
}

.page-products .p-rhythm-card--alert {
  border-top: 4px solid var(--orange);
}

.page-products .p-week-list {
  margin: 0;
  display: grid;
  gap: 14px;
}

.page-products .p-week-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.24);
}

.page-products .p-week-row dt {
  font-family: var(--num-font);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  min-width: 3.2em;
  flex-shrink: 0;
}

.page-products .p-week-row dd {
  margin: 0;
  color: var(--p-white-soft);
  font-size: 0.95rem;
}

.page-products .p-rhythm-visual {
  margin-top: 30px;
}

.page-products .p-rhythm-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(8, 75, 54, 0.4);
}

.page-products .p-final {
  background: var(--paper);
}

.page-products .p-final-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--p-orange-deep) 58%, var(--deep-blue) 58.2%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 96px) 0;
}

.page-products .p-final-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 8px,
    transparent 8px,
    transparent 18px
  );
  pointer-events: none;
}

.page-products .p-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-products .p-final-band h2 {
  font-family: var(--head-font);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin: 0 0 14px;
}

.page-products .p-final-band > .container > p:not(.p-final-note) {
  color: var(--p-white-soft);
  max-width: 42em;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-products .p-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
}

.page-products .p-final-link {
  color: var(--white);
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  text-decoration: none;
}

.page-products .p-final-note {
  font-size: 0.84rem;
  color: var(--p-white-mute);
  margin: 30px auto 0;
  line-height: 1.7;
  text-align: center;
}

@media (min-width: 700px) {
  .page-products .p-overview-facts {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .page-products .p-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-products .p-feature-card:last-child {
    grid-column: 1 / -1;
  }

  .page-products .p-tier-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-products .p-rhythm-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-products .p-step {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .page-products .p-hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
  }

  .page-products .p-hero-visual img {
    max-height: 460px;
  }

  .page-products .p-feature-wrap {
    grid-template-columns: 1fr 320px;
    gap: 42px;
  }

  .page-products .p-feature-visual {
    position: sticky;
    top: calc(var(--header-h) + 30px);
  }

  .page-products .p-tier-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: none;
  }

  .page-products .p-guide-wrap {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 52px;
  }

  .page-products .p-guide-visual {
    text-align: center;
  }

  .page-products .p-guide-visual img {
    max-height: 620px;
    width: auto;
    margin: 0 auto;
  }
}

.page-products {
  --white-mute: currentColor;
}
