.page-products {
  --products-accent: #FF6B35;
  --products-accent-soft: rgba(255, 107, 53, 0.12);
  --products-line: rgba(240, 235, 215, 0.7);
  --products-border-soft: rgba(255, 255, 255, 0.1);
  --products-bg-deep: #0A192F;
  --products-bg-card: #172A45;
  --products-paper: #F5F0E6;
  --products-ink: #1A1A2E;
  --products-text-light: #E0E0E0;
  --products-tilt: 6deg;
}

.page-products {
  background: var(--products-bg-deep);
  font-family: var(--font-body);
  margin: 0;
}

.page-products .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}

.page-products .grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.page-products .span-3 { grid-column: span 3; }
.page-products .span-4 { grid-column: span 4; }
.page-products .span-5 { grid-column: span 5; }
.page-products .span-6 { grid-column: span 6; }
.page-products .span-7 { grid-column: span 7; }
.page-products .span-8 { grid-column: span 8; }

.page-products .grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.page-products .section {
  position: relative;
  padding-top: clamp(4rem, 8vw, 6.5rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

.page-products .section--paper {
  background: var(--products-paper);
  color: var(--products-ink);
}

.page-products .section--dark {
  background: var(--products-bg-deep);
  color: var(--products-text-light);
}

.page-products .section--deep {
  background: linear-gradient(135deg, #060D1F 0%, #0A192F 55%, #172A45 100%);
  color: var(--products-text-light);
}

.page-products .section-header {
  max-width: 720px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.page-products .section-header .section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0.5rem 0 1rem 0;
  color: inherit;
}

.page-products .section-header .section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.82;
  margin: 0;
}

.page-products .section--paper .section-header .section-desc {
  color: rgba(26, 26, 46, 0.75);
}

.page-products .chapter-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--products-accent);
  margin: 0 0 0.75rem 0;
}

.page-products .chapter-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 3px;
  background: var(--products-accent);
  transform: skewX(-20deg);
}

.page-products .chapter-label.chapter-label--light {
  color: var(--products-accent);
}

.page-products .display-heading {
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem 0;
}

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.page-products .btn:hover {
  transform: translateY(-2px);
}

.page-products .btn--accent {
  background: var(--products-accent);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.page-products .btn--accent:hover {
  background: #FF8A5C;
  box-shadow: 0 8px 26px rgba(255, 107, 53, 0.5);
}

.page-products .btn--ghost {
  background: transparent;
  color: var(--products-text-light);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}

.page-products .btn--ghost:hover {
  color: #FFFFFF;
  box-shadow: inset 0 0 0 1.5px var(--products-accent);
  background: rgba(255, 107, 53, 0.08);
}

.page-products .btn--block {
  width: 100%;
}

.page-products .btn--small {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.page-products .tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.page-products .tag--accent {
  background: var(--products-accent);
  color: #FFFFFF;
  border-radius: 3px;
}

.page-products .tag--outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--products-text-light);
  border-radius: 3px;
  background: transparent;
}

.page-products .section--paper .tag--outline {
  border-color: rgba(26, 26, 46, 0.4);
  color: var(--products-ink);
}

.page-products .tag--success {
  background: rgba(46, 204, 113, 0.12);
  color: #229D54;
  border: 1px solid rgba(46, 204, 113, 0.5);
  border-radius: 3px;
}

.page-products .tag--warning {
  background: rgba(241, 196, 15, 0.1);
  color: #B8950A;
  border: 1px solid rgba(241, 196, 15, 0.6);
  border-radius: 3px;
}

.page-products .stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.page-products .stat__number {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--products-accent);
  line-height: 1;
}

.page-products .stat__label {
  font-size: 0.85rem;
  color: var(--products-text-light);
  opacity: 0.75;
}

.page-products .card {
  position: relative;
  border-radius: 4px;
}

.page-products .card--tilt {
  clip-path: polygon(0 4%, 100% 0, calc(100% - 18px) 96%, 0 100%);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  background: var(--products-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.page-products .card--tilt:hover {
  border-color: var(--products-accent);
  background: #1E3A5F;
}

.page-products .card--blueprint {
  background: transparent;
  border: 1px solid var(--products-border-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.page-products .card--blueprint:hover {
  border-color: var(--products-accent);
  box-shadow: inset 0 0 0 1px rgba(255, 107, 53, 0.3), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-products .card--paper {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--products-ink);
}

.page-products .divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.page-products .dot-grid {
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 16px 16px;
  min-height: 80px;
}

.page-products .diag-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.25;
}

.page-products .diag-lines--blue {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 14px,
    rgba(255, 255, 255, 0.08) 14px,
    rgba(255, 255, 255, 0.08) 15px
  );
}

.page-products .frame-line {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}

.page-products .img-ratio {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.page-products .img-ratio img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}

.page-products .img-ratio--16-9 { aspect-ratio: 16 / 9; }
.page-products .img-ratio--4-3 { aspect-ratio: 4 / 3; }
.page-products .img-ratio--1-1 { aspect-ratio: 1 / 1; }

.page-products .page-support-banner {
  display: none;
}

.page-products [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.page-products [data-reveal][data-revealed="true"] {
  opacity: 1;
  transform: none;
}

.page-products .products-hero {
  padding-top: calc(var(--header-height) + clamp(3rem, 6vw, 5rem));
  overflow: hidden;
}

.page-products .products-hero__grid {
  align-items: center;
}

.page-products .products-hero__copy {
  padding-right: 1rem;
}

.page-products .products-hero__title {
  color: #FFFFFF;
  background: linear-gradient(100deg, #FFFFFF 50%, #FF8A5C 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.page-products .products-hero__lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.8;
  color: var(--products-text-light);
  margin: 0 0 2rem 0;
  max-width: 34rem;
}

.page-products .products-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.page-products .products-hero__meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(224, 224, 224, 0.65);
  margin: 0;
  letter-spacing: 0.03em;
}

.page-products .stack-panel {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.page-products .stack-panel::before,
.page-products .stack-panel::after {
  content: "";
  position: absolute;
  border-radius: 4px;
  pointer-events: none;
}

.page-products .stack-panel::before {
  top: 12px;
  left: -12px;
  right: 12px;
  bottom: -12px;
  background: rgba(255, 107, 53, 0.18);
  z-index: -1;
}

.page-products .stack-panel::after {
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  background: rgba(23, 42, 69, 0.5);
  z-index: -2;
}

.page-products .stack-panel--dark {
  background: var(--products-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  border-radius: 4px;
}

.page-products .stack-panel .tag {
  margin-bottom: 1rem;
}

.page-products .products-hero__version {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.page-products .products-hero__version-number {
  font-family: var(--font-mono);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--products-accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-products .products-hero__version-label {
  font-size: 0.9rem;
  color: var(--products-text-light);
  opacity: 0.8;
}

.page-products .products-hero__stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.5rem;
}

.page-products .products-hero__img {
  margin-top: 1.5rem;
  min-height: 220px;
}

.page-products .products-hero__img img {
  transition: transform 0.6s var(--ease-out);
}

.page-products .products-hero__panel:hover .products-hero__img img {
  transform: scale(1.03);
}

.page-products .products-features__grid {
  margin-bottom: 2.5rem;
}

.page-products .products-feature-card {
  display: flex;
  flex-direction: column;
  color: var(--products-text-light);
  min-height: 280px;
}

.page-products .products-feature-card__index {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--products-accent);
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
}

.page-products .products-feature-card__title {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.35;
  color: #FFFFFF;
  margin: 0 0 0.85rem 0;
}

.page-products .products-feature-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(224, 224, 224, 0.82);
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.page-products .products-feature-card .tag {
  align-self: flex-start;
}

.page-products .products-features__footnote {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 107, 53, 0.06);
  border-left: 4px solid var(--products-accent);
  border-radius: 0 4px 4px 0;
  flex-wrap: wrap;
}

.page-products .products-features__footnote p {
  margin: 0;
  color: var(--products-ink);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  min-width: 260px;
}

.page-products .section--paper .products-features__footnote {
  background: rgba(255, 107, 53, 0.08);
}

.page-products .products-compare {
  overflow: hidden;
}

.page-products .products-compare__layout {
  gap: 0;
  align-items: flex-start;
}

.page-products .products-compare__intro {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(150deg, rgba(23, 42, 69, 0.9) 0%, rgba(10, 25, 47, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-right: 2rem;
  min-height: 100%;
}

.page-products .products-compare__intro-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 1rem 0;
}

.page-products .products-compare__intro-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(224, 224, 224, 0.8);
  margin: 0 0 1.5rem 0;
}

.page-products .products-compare__img {
  margin-top: auto;
}

.page-products .products-compare__subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.5rem 0;
}

.page-products .products-compare__table-wrap {
  padding: 0;
}

.page-products .products-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: rgba(23, 42, 69, 0.6);
  border-radius: 4px;
  overflow: hidden;
}

.page-products .products-compare__table th {
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--products-bg-card);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--products-accent);
  white-space: nowrap;
}

.page-products .products-compare__table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(224, 224, 224, 0.85);
  line-height: 1.5;
  vertical-align: middle;
}

.page-products .products-compare__table tr:last-child td {
  border-bottom: none;
}

.page-products .products-compare__table tbody tr:hover td {
  background: rgba(255, 107, 53, 0.06);
}

.page-products .products-compare__table td:first-child {
  color: var(--products-text-light);
  font-weight: 600;
}

.page-products .products-compare__table td:last-child {
  color: #FFFFFF;
  font-weight: 500;
}

.page-products .products-compare__note {
  font-size: 0.82rem;
  color: rgba(224, 224, 224, 0.55);
  margin: 1rem 0 0 0;
  line-height: 1.6;
}

.page-products .products-download__grid {
  margin-bottom: 2rem;
}

.page-products .products-download__card {
  color: #FFFFFF;
  min-height: 340px;
}

.page-products .products-download__step {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--products-accent);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.page-products .products-download__title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

.page-products .products-download__text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(224, 224, 224, 0.8);
  margin: 0;
  flex-grow: 1;
}

.page-products .products-download__card .btn {
  margin-top: auto;
}

.page-products .products-download__qr {
  margin: 0 auto;
  max-width: 180px;
  width: 100%;
}

.page-products .products-download__qr img {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-products .products-download__list {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.page-products .products-download__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(224, 224, 224, 0.8);
}

.page-products .products-download__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 2px;
  background: var(--products-accent);
  transform: skewX(-20deg);
}

.page-products .products-download__notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 107, 53, 0.06);
  border-left: 4px solid var(--products-accent);
  border-radius: 0 4px 4px 0;
  flex-wrap: wrap;
}

.page-products .products-download__notice p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--products-ink);
  line-height: 1.7;
  flex: 1;
  min-width: 260px;
}

.page-products .products-scenarios__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 2.5rem;
}

.page-products .scenario-card {
  padding: clamp(1.75rem, 3.5vw, 2.6rem);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.page-products .scenario-card--mobile {
  background: var(--products-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-products .scenario-card--desktop {
  background: var(--products-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-products .scenario-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255, 107, 53, 0.06) 8px,
    rgba(255, 107, 53, 0.06) 9px
  );
  pointer-events: none;
}

.page-products .scenario-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page-products .scenario-card__device-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-products .scenario-card__title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0;
}

.page-products .scenario-card__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(224, 224, 224, 0.78);
  margin: 0 0 1.25rem 0;
}

.page-products .scenario-card__list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.page-products .scenario-card__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(224, 224, 224, 0.9);
}

.page-products .scenario-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 2px;
  background: var(--products-accent);
  transform: skewX(-20deg);
}

.page-products .scenario-card .tag {
  position: relative;
  z-index: 1;
}

.page-products .products-scenarios__banner {
  background: linear-gradient(120deg, #172A45 0%, #1E3A5F 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  gap: 0;
}

.page-products .products-scenarios__banner-copy h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 0.75rem 0;
}

.page-products .products-scenarios__banner-copy p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(224, 224, 224, 0.78);
  margin: 0;
  max-width: 38rem;
}

.page-products .products-scenarios__img {
  margin-left: 1.5rem;
  min-height: 180px;
}

.page-products .products-report__copy .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--products-ink);
  margin: 0.5rem 0 1.25rem 0;
  line-height: 1.15;
}

.page-products .products-report__text {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(26, 26, 46, 0.8);
  margin: 0 0 1.5rem 0;
}

.page-products .products-report__list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.page-products .products-report__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: rgba(26, 26, 46, 0.85);
  line-height: 1.6;
}

.page-products .products-report__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 11px;
  height: 2px;
  background: var(--products-accent);
  transform: skewX(-20deg);
}

.page-products .products-report__note {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--products-accent);
  font-weight: 600;
  margin: 0;
}

.page-products .products-report__visual {
  position: relative;
}

.page-products .products-report__img {
  min-height: 280px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.page-products .products-report__timecard {
  position: absolute;
  right: -1rem;
  bottom: -1.25rem;
  background: var(--products-accent);
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
  transform: rotate(3deg);
}

.page-products .products-report__timecard-number {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.page-products .products-report__timecard-label {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.page-products .products-changelog__timeline {
  position: relative;
  max-width: 900px;
}

.page-products .products-changelog__timeline::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--products-accent), rgba(255, 107, 53, 0.15) 40%, rgba(255, 107, 53, 0.05));
}

.page-products .changelog-item {
  position: relative;
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.page-products .changelog-item:last-child {
  padding-bottom: 0;
}

.page-products .changelog-item__version {
  flex-shrink: 0;
  width: 86px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--products-accent);
  text-align: right;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.page-products .changelog-item__version::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 0.5em;
  width: 10px;
  height: 10px;
  background: var(--products-bg-deep);
  border: 2px solid var(--products-accent);
  border-radius: 50%;
}

.page-products .changelog-item__content {
  flex: 1;
  background: var(--products-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-products .changelog-item__content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 0.75rem 0;
}

.page-products .changelog-item__content ul {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.page-products .changelog-item__content ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(224, 224, 224, 0.82);
}

.page-products .changelog-item__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 2px;
  background: var(--products-accent);
  transform: skewX(-20deg);
}

.page-products .changelog-item--highlight .changelog-item__content {
  border: 1px solid rgba(255, 107, 53, 0.45);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.1);
}

.page-products .changelog-item--highlight .changelog-item__version {
  color: #FFFFFF;
}

.page-products .changelog-item--highlight .changelog-item__version::after {
  background: var(--products-accent);
}

.page-products .products-changelog__more {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  margin-top: 2.5rem;
  background: rgba(255, 107, 53, 0.06);
  border: 1px dashed rgba(255, 107, 53, 0.3);
  border-radius: 4px;
  flex-wrap: wrap;
}

.page-products .products-changelog__more p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--products-text-light);
  flex: 1;
  min-width: 200px;
}

.page-products .products-support__grid {
  align-items: center;
}

.page-products .products-support__copy .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--products-ink);
  margin: 0.5rem 0 1rem 0;
}

.page-products .products-support__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(26, 26, 46, 0.8);
  margin: 0;
}

.page-products .products-support__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-products .products-support__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  text-decoration: none;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.2s var(--ease-out);
}

.page-products .products-support__link:hover {
  border-color: var(--products-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.page-products .products-support__link-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--products-ink);
  flex-shrink: 0;
}

.page-products .products-support__link-desc {
  font-size: 0.85rem;
  color: rgba(26, 26, 46, 0.65);
  flex: 1;
}

.page-products .products-support__link-arrow {
  font-size: 1.3rem;
  color: var(--products-accent);
  font-weight: 700;
}

.page-products .products-support__note {
  position: relative;
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.06);
  border-left: 4px solid var(--products-accent);
  border-radius: 0 4px 4px 0;
  overflow: hidden;
}

.page-products .products-support__note p {
  margin: 0 0 0.4rem 0;
  font-size: 0.92rem;
  color: var(--products-ink);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.page-products .products-support__contact {
  font-family: var(--font-mono);
  color: var(--products-accent) !important;
  font-weight: 700;
}

.page-products .products-support__note .dot-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background-image: radial-gradient(rgba(255, 107, 53, 0.2) 1px, transparent 1px);
  min-height: 0;
}

@media (prefers-reduced-motion: reduce) {
  .page-products [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-products .btn:hover,
  .page-products .card:hover,
  .page-products .img-ratio img:hover {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .page-products .grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }

  .page-products .span-4,
  .page-products .span-5,
  .page-products .span-7,
  .page-products .span-8,
  .page-products .span-6 {
    grid-column: span 12;
  }

  .page-products .products-hero__grid {
    gap: 3rem;
  }

  .page-products .products-compare__intro {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .page-products .products-compare__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page-products .products-compare__table {
    min-width: 620px;
  }

  .page-products .products-changelog__timeline::before {
    left: 18px;
  }

  .page-products .changelog-item {
    display: block;
    padding-left: 3rem;
  }

  .page-products .changelog-item__version {
    width: auto;
    text-align: left;
    padding-right: 0;
    margin-bottom: 0.5rem;
  }

  .page-products .changelog-item__version::after {
    right: auto;
    left: -2.5rem;
  }

  .page-products .products-scenarios__banner {
    gap: 1.5rem;
  }

  .page-products .products-scenarios__img {
    margin-left: 0;
  }

  .page-products .products-report__timecard {
    right: 0.5rem;
    bottom: -1rem;
  }
}

@media (max-width: 640px) {
  .page-products .grid,
  .page-products .grid--3 {
    grid-template-columns: 1fr;
  }

  .page-products .span-3,
  .page-products .span-4,
  .page-products .span-5,
  .page-products .span-6,
  .page-products .span-7,
  .page-products .span-8 {
    grid-column: span 1;
  }

  .page-products .display-heading {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .page-products .products-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-products .products-hero__actions .btn {
    width: 100%;
  }

  .page-products .products-hero__version-number {
    font-size: 3rem;
  }

  .page-products .products-hero__stats {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .page-products .products-feature-card {
    min-height: 0;
    padding: 1.8rem;
  }

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

  .page-products .scenario-card {
    padding: 1.5rem;
  }

  .page-products .products-changelog__timeline::before {
    display: none;
  }

  .page-products .changelog-item {
    display: block;
    padding-left: 0;
  }

  .page-products .changelog-item__version {
    text-align: left;
    margin-bottom: 0.4rem;
  }

  .page-products .changelog-item__version::after {
    display: none;
  }

  .page-products .products-features__footnote,
  .page-products .products-download__notice,
  .page-products .products-changelog__more {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .page-products .products-report__timecard {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -0.5rem;
    margin-left: 1rem;
    display: inline-flex;
    transform: rotate(-2deg);
  }

  .page-products .products-download__card {
    min-height: 0;
  }

  .page-products .products-support__link {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .page-products .products-support__link-desc {
    flex-basis: 100%;
  }
}
