.page-products {
  --hero-glow: rgba(255, 107, 0, 0.14);
  --card-shadow: 0 2px 0 rgba(10, 30, 60, 0.05);
}

.page-products .product-hero {
  position: relative;
  background: var(--navy);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  color: #fff;
  padding: 28px 0 44px;
  overflow: hidden;
}

.page-products .product-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -8%;
  width: 46%;
  height: 140%;
  background: linear-gradient(160deg, rgba(255, 107, 0, 0.24), transparent 72%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-products .product-hero-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 20px;
}

.page-products .product-hero-copy {
  max-width: 720px;
}

.page-products .product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.page-products .product-kicker .tilt-block {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--orange);
  transform: skewX(-12deg);
}

.page-products .product-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.04;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: 0.01em;
}

.page-products .product-hero-copy p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px;
  max-width: 620px;
}

.page-products .hero-profile-link {
  border-color: rgba(0, 230, 118, 0.6);
  color: #fff;
}

.page-products .hero-profile-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--navy);
}

.page-products .product-hero-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page-products .hero-status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.05);
}

.page-products .hero-status-card strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.page-products .hero-status-card span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.page-products .hero-num-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-products .hero-num {
  background: var(--navy);
  padding: 16px 14px;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-products .hero-num strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 6px;
}

.page-products .hero-num span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-products .product-hero .speed-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange) 0 25%, var(--green) 25% 35%, var(--blue) 35% 70%, var(--orange) 70% 100%);
  transform: skewX(-24deg);
  transform-origin: left bottom;
  opacity: 0.9;
}

.page-products .product-section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.page-products .section-heading-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  color: var(--navy);
  margin: 6px 0 4px;
  line-height: 1.08;
}

.page-products .section-heading-copy p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

.page-products .section-index {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 3px 10px;
  transform: skewX(-8deg);
}

.page-products .product-features {
  padding: 48px 0 16px;
}

.page-products .feature-board {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-products .feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  padding: 22px 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.page-products .feature-card:hover,
.page-products .feature-card:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--hero-glow), 8px 8px 0 rgba(10, 30, 60, 0.06);
  transform: translateY(-2px);
}

.page-products .fc-body {
  flex: 1;
}

.page-products .fc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.page-products .fc-icon {
  color: var(--orange);
  display: inline-flex;
}

.page-products .fc-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid currentColor;
  transform: skewX(-8deg);
}

.page-products .fc-tag-pre {
  color: var(--blue);
  background: rgba(30, 136, 229, 0.08);
}

.page-products .fc-tag-hot {
  color: var(--orange);
  background: rgba(255, 107, 0, 0.08);
}

.page-products .fc-tag-process {
  color: var(--green);
  background: rgba(0, 230, 118, 0.1);
}

.page-products .fc-tag-post {
  color: var(--navy);
  background: rgba(10, 30, 60, 0.06);
}

.page-products .feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.24rem;
  color: var(--navy);
  margin: 12px 0 8px;
  line-height: 1.1;
}

.page-products .fc-title-link {
  text-decoration: none;
  color: inherit;
}

.page-products .fc-desc {
  font-size: 0.9rem;
  line-height: 1.68;
  color: var(--text);
  margin: 0 0 14px;
}

.page-products .fc-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 6px;
  padding: 0;
  list-style: none;
}

.page-products .fc-points div {
  background: var(--bg-light);
  border-left: 2px solid var(--orange);
  padding: 8px 10px;
}

.page-products .fc-points dt {
  font-size: 0.7rem;
  color: var(--gray);
  margin-bottom: 2px;
}

.page-products .fc-points dd {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.page-products .fc-hidden-tip {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--gray);
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.page-products .feature-card:hover .fc-hidden-tip,
.page-products .feature-card:focus-within .fc-hidden-tip {
  max-height: 90px;
  opacity: 1;
  margin-top: 10px;
}

.page-products .fc-visual {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.page-products .fc-visual img {
  max-width: 100%;
  height: auto;
  width: 200px;
  display: block;
  border: 1px solid var(--border);
  filter: saturate(0.92) contrast(1.02);
}

.page-products .fc-scorer,
.page-products .fc-injury,
.page-products .fc-stats {
  display: flex;
  flex-direction: column;
}

.page-products .fc-scorer .fc-icon,
.page-products .fc-stats .fc-icon {
  margin-bottom: 4px;
}

.page-products .fc-statusline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  padding: 6px 10px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.3);
  max-width: fit-content;
}

.page-products .fc-injury-copy {
  flex: 1;
}

.page-products .fc-injury-status {
  text-align: right;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
}

.page-products .fc-injury-status strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green);
  line-height: 1;
}

.page-products .fc-injury-status span {
  font-size: 0.75rem;
  color: var(--gray);
}

.page-products .product-mobile {
  background: var(--bg-light);
  padding: 48px 0;
  position: relative;
}

.page-products .mobile-showcase {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.page-products .phone-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-products .phone-block {
  width: 100%;
  max-width: 280px;
}

.page-products .phone-frame {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 520px;
  background: var(--navy-deep);
  border-radius: 32px;
  padding: 10px;
  border: 3px solid #2c405c;
  box-shadow: 8px 10px 0 rgba(10, 30, 60, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  margin: 0 auto;
}

.page-products .phone-block:hover .phone-frame {
  transform: translateY(-5px);
  box-shadow: 12px 14px 0 rgba(10, 30, 60, 0.2);
}

.page-products .phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  transition: transform 0.45s ease;
}

.page-products .phone-block:hover .phone-frame img {
  transform: scale(1.035);
}

.page-products .phone-overlay {
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, rgba(10, 30, 60, 0.1) 38%, rgba(10, 30, 60, 0.86));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.page-products .phone-block:hover .phone-overlay {
  opacity: 1;
  transform: translateY(0);
}

.page-products .phone-caption {
  text-align: center;
  margin-top: 14px;
}

.page-products .phone-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.page-products .phone-caption span {
  font-size: 0.8rem;
  color: var(--gray);
}

.page-products .mobile-aside {
  flex: 1;
}

.page-products .mobile-aside h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.15;
}

.page-products .mobile-feature-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-products .mobile-feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
}

.page-products .mobile-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  transform: skewX(-12deg);
}

.page-products .mobile-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.3);
  margin-bottom: 20px;
}

.page-products .mobile-note p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--navy);
}

.page-products .product-data {
  padding: 48px 0 16px;
}

.page-products .data-guarantee-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.page-products .guarantee-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  padding: 18px 18px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-products .guarantee-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--hero-glow);
}

.page-products .guarantee-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.1;
}

.page-products .guarantee-card p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

.page-products .guarantee-visual img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
}

.page-products .data-metrics-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 24px;
}

.page-products .metric-item {
  position: relative;
  background: #fff;
  padding: 16px 14px;
  text-align: center;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s ease;
}

.page-products .metric-item:hover {
  background: var(--bg-light);
}

.page-products .metric-item strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 6px;
}

.page-products .metric-item span {
  font-size: 0.8rem;
  color: var(--gray);
}

.page-products .metric-item .metric-tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--navy);
  color: #fff;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 5;
}

.page-products .metric-item:hover .metric-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.page-products .product-plans {
  background: var(--bg-light);
  padding: 48px 0;
}

.page-products .plan-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-products .plan-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-products .plan-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.page-products .plan-pro {
  border-top: 4px solid var(--orange);
}

.page-products .plan-head {
  margin-bottom: 18px;
}

.page-products .plan-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 3px 10px;
  background: rgba(10, 30, 60, 0.06);
  border: 1px solid rgba(10, 30, 60, 0.15);
  transform: skewX(-8deg);
  margin-bottom: 10px;
}

.page-products .plan-label-pro {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.page-products .plan-head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 10px 0 0;
  line-height: 1.1;
}

.page-products .plan-feats {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.page-products .plan-feats li {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
}

.page-products .plan-feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--orange);
  background: transparent;
  transform: skewX(-10deg);
}

.page-products .plan-pro .plan-feats li::before {
  border-color: var(--blue);
}

.page-products .plan-footnote {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

.page-products .plan-visual img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
}

.page-products .plan-visual-note {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text);
}

.page-products .plan-visual-note p {
  margin: 0 0 8px;
}

@media (min-width: 768px) {
  .page-products .product-hero {
    padding: 40px 0 56px;
  }

  .page-products .product-hero-layout {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }

  .page-products .product-hero-copy {
    flex: 0 0 60%;
  }

  .page-products .product-hero-aside {
    flex: 0 0 34%;
  }

  .page-products .hero-num-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .product-section-heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
  }

  .page-products .feature-board {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-auto-rows: minmax(140px, auto);
    grid-template-areas:
      "schedule scorer"
      "schedule injury"
      "stats stats";
    gap: 18px;
  }

  .page-products .fc-schedule {
    grid-area: schedule;
    display: flex;
    flex-direction: row;
    gap: 22px;
    align-items: center;
  }

  .page-products .fc-scorer {
    grid-area: scorer;
  }

  .page-products .fc-injury {
    grid-area: injury;
  }

  .page-products .fc-stats {
    grid-area: stats;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .page-products .fc-stats .fc-icon {
    margin: 0;
  }

  .page-products .fc-visual {
    margin-top: 0;
    align-self: center;
    flex-shrink: 0;
  }

  .page-products .mobile-showcase {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .page-products .phone-stack {
    flex-direction: row;
    gap: 16px;
    flex-shrink: 0;
  }

  .page-products .phone-block {
    max-width: 260px;
  }

  .page-products .phone-frame {
    height: 500px;
    max-width: 260px;
  }

  .page-products .mobile-aside {
    max-width: 440px;
  }

  .page-products .data-guarantee-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: stretch;
  }

  .page-products .guarantee-main {
    grid-template-columns: 1fr 1fr;
  }

  .page-products .guarantee-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-products .guarantee-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
  }

  .page-products .data-metrics-bar {
    grid-template-columns: repeat(5, 1fr);
  }

  .page-products .metric-item {
    min-height: 96px;
  }

  .page-products .plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
  }

  .page-products .plan-visual {
    padding-top: 8px;
  }
}

@media (min-width: 1024px) {
  .page-products .phone-frame {
    height: 540px;
    max-width: 280px;
  }

  .page-products .mobile-aside {
    max-width: 520px;
  }

  .page-products .feature-board {
    grid-template-columns: 1.35fr 0.65fr;
  }

  .page-products .fc-points {
    grid-template-columns: repeat(3, 1fr);
  }
}
