.page-products {
  --page-gold-strong: var(--gold);
  --page-gold-soft: var(--light-gold);
  --page-green-soft: var(--light-green);
  --page-card-bg: var(--paper-bright);
  --page-hero-deep: var(--midnight);
  --page-deep-block: var(--deep-green);
  overflow-x: clip;
}

.page-products .breadcrumb {
  padding-top: 24px;
  padding-bottom: 0;
  font-size: 13px;
  color: var(--gray);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-products__breadcrumb-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-products__hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 39, 0.28) 0, transparent 38%),
    linear-gradient(135deg, var(--midnight) 0%, var(--deep-green) 72%, var(--deep-green) 100%);
  color: var(--paper-bright);
  padding: 48px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-products__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(244, 239, 230, 0.06) 38%, transparent 62%),
    repeating-linear-gradient(-45deg, rgba(244, 239, 230, 0.05) 0 1px, transparent 1px 14px);
  pointer-events: none;
}

.page-products__hero-inner {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-products__hero-copy {
  z-index: 1;
}

.page-products__hero-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(24px, 6vw, 38px);
  line-height: 1.18;
  margin: 16px 0 18px;
  color: var(--paper-bright);
  text-wrap: balance;
}

.page-products__hero-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(252, 250, 245, 0.86);
  max-width: 38em;
  margin-bottom: 24px;
}

.page-products__hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.page-products__hero-badges .tag--outline {
  border-color: rgba(252, 250, 245, 0.35);
  color: var(--paper-bright);
}

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

.page-products__hero-icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-products__hero-icon {
  width: 132px;
  height: 132px;
  padding: 10px;
  border-radius: 36px;
  background: var(--paper-bright);
  border: 3px solid var(--page-gold-strong);
  box-shadow: 0 18px 36px rgba(13, 27, 42, 0.4);
  transform: rotate(4deg);
  transition: transform 220ms ease;
}

.page-products__hero-icon:hover {
  transform: rotate(0deg) scale(1.04);
}

.page-products__hero-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.page-products__hero-note {
  text-align: center;
  font-size: 13px;
  color: rgba(252, 250, 245, 0.74);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 27, 42, 0.5);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(224, 197, 106, 0.3);
}

.page-products__hero-note .num {
  color: var(--page-gold-strong);
  font-family: var(--font-data);
  font-weight: 600;
}

.page-products__section-head {
  margin-bottom: 32px;
  max-width: 720px;
}

.page-products__section-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.22;
  color: var(--ink);
  margin: 10px 0 14px;
}

.page-products__section-lead {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.page-products__overview {
  padding: 56px 0;
}

.page-products__overview-cards {
  display: grid;
  gap: 18px;
}

.page-products__feature-card {
  background: var(--page-card-bg);
  border: 1px solid rgba(28, 27, 26, 0.1);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.page-products__feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.page-products__feature-num {
  font-family: var(--font-data);
  font-size: 34px;
  line-height: 1;
  color: var(--page-gold-strong);
  font-weight: 700;
}

.page-products__feature-card .card__title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}

.page-products__feature-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

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

.page-products__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.page-products__stat {
  background: var(--paper-bright);
  border-radius: var(--radius);
  border: 1px solid rgba(28, 27, 26, 0.08);
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-products__stat-num {
  font-family: var(--font-data);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--deep-green);
}

.page-products__stat-label {
  font-size: 13px;
  color: var(--gray);
}

.page-products__phone-section {
  background: var(--page-hero-deep);
  color: var(--paper-bright);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-products__phone-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.24) 0%, transparent 68%);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.page-products__phone-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.page-products__phone-copy .eyebrow {
  color: var(--page-gold-strong);
}

.page-products__phone-copy .page-products__section-title {
  color: var(--paper-bright);
}

.page-products__phone-copy p:not(.page-products__section-lead) {
  color: rgba(252, 250, 245, 0.78);
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-products__phone-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
}

.page-products__phone-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(252, 250, 245, 0.9);
  font-size: 15px;
}

.page-products__phone-frame {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 46px;
  padding: 14px;
  border: 1px solid rgba(224, 197, 106, 0.28);
  box-shadow: 0 28px 56px rgba(13, 27, 42, 0.48);
  transform: rotate(1.5deg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.page-products__phone-frame:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 22px 48px rgba(13, 27, 42, 0.56);
}

.page-products__phone-speaker {
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 4px;
  background: var(--gray);
  margin: 0 auto 10px;
}

.page-products__phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: var(--midnight);
}

.page-products__phone-screen img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.page-products__features {
  padding: 56px 0;
}

.page-products__tabs {
  margin-top: 12px;
}

.page-products__tabs-nav {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.page-products__tabs-nav .tabs__btn {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(28, 27, 26, 0.18);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.page-products__tabs-nav .tabs__btn[aria-selected="true"] {
  background: var(--deep-green);
  border-color: var(--deep-green);
  color: var(--paper-bright);
}

.page-products__tabs-nav .tabs__btn:hover {
  border-color: var(--deep-green);
}

.page-products__tab-panel {
  background: var(--paper-bright);
  border: 1px solid rgba(28, 27, 26, 0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
}

.page-products__tab-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-products__tab-copy h3 {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  margin: 12px 0 12px;
}

.page-products__tab-copy p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.page-products__tab-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--deep-green);
  color: var(--paper-bright);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 18px;
}

.page-products__tab-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.page-products__tab-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.page-products__tab-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--page-gold-strong);
  border-radius: 2px;
  transform: rotate(45deg);
}

.page-products__schedule-table {
  margin: 18px 0 8px;
}

.page-products__schedule-table .data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-data);
  font-size: 13px;
}

.page-products__schedule-table .data-table th,
.page-products__schedule-table .data-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(28, 27, 26, 0.1);
}

.page-products__schedule-table .data-table th {
  background: var(--deep-green);
  color: var(--paper-bright);
  font-weight: 600;
}

.page-products__tab-note {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.page-products__tab-media img,
.page-products__tab-highlight img,
.page-products__tab-note-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.page-products__tab-media img {
  border: 1px solid rgba(28, 27, 26, 0.1);
}

.page-products__tab-highlight {
  background: var(--midnight);
  color: var(--paper-bright);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}

.page-products__tab-highlight .page-products__tab-index {
  background: var(--page-gold-strong);
  color: var(--ink);
}

.page-products__tab-highlight h3 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 20px;
  margin: 14px 0 10px;
  color: var(--paper-bright);
}

.page-products__tab-highlight p {
  color: rgba(252, 250, 245, 0.78);
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-products__tab-highlight .btn--ghost {
  border-color: rgba(252, 250, 245, 0.4);
  color: var(--paper-bright);
}

.page-products__tab-note-card {
  background: var(--midnight);
  border-radius: var(--radius);
  padding: 28px 24px;
  color: var(--paper-bright);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-products__tab-note-card h3 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 20px;
  margin: 0;
  color: var(--paper-bright);
}

.page-products__tab-note-card p {
  color: rgba(252, 250, 245, 0.78);
  line-height: 1.7;
  margin: 0;
}

.page-products__tab-note-card .tag {
  align-self: flex-start;
}

.page-products__compare {
  display: grid;
  border: 1px solid rgba(28, 27, 26, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  margin-bottom: 20px;
}

.page-products__compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(28, 27, 26, 0.08);
}

.page-products__compare-row:last-child {
  border-bottom: 0;
}

.page-products__compare-row span:first-child {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.page-products__compare-row span:last-child {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--deep-green);
  background: rgba(31, 77, 46, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.page-products__download {
  background:
    linear-gradient(135deg, rgba(224, 197, 106, 0.96) 0%, rgba(201, 162, 39, 0.9) 100%),
    var(--page-gold-strong);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.page-products__download::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.page-products__download-head {
  margin-bottom: 36px;
}

.page-products__download-head .eyebrow {
  color: var(--ink);
  font-weight: 700;
}

.page-products__download-head .page-products__section-title {
  color: var(--ink);
  margin: 8px 0 12px;
}

.page-products__download-lead {
  color: rgba(28, 27, 26, 0.76);
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
}

.page-products__download-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.page-products__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-products__steps li {
  display: flex;
  gap: 16px;
  background: rgba(252, 250, 245, 0.7);
  border-radius: var(--radius);
  padding: 18px 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.page-products__step-num {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--page-gold-strong);
  font-family: var(--font-data);
  font-weight: 700;
  border-radius: 12px;
  font-size: 17px;
}

.page-products__steps li h3 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 4px;
}

.page-products__steps li p {
  font-size: 14px;
  color: rgba(28, 27, 26, 0.74);
  line-height: 1.6;
  margin: 0;
}

.page-products__download-card {
  background: var(--paper-bright);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 6px solid var(--ink);
  transform: rotate(0.5deg);
}

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

.page-products__download-card h3 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  margin: 0;
}

.page-products__download-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.page-products__download-card li {
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

.page-products__download-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--deep-green);
  border-radius: 2px;
}

.page-products__download-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(28, 27, 26, 0.1);
}

.page-products__changelog-section {
  padding: 56px 0;
}

.page-products__changelog {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  list-style: none;
}

.page-products__changelog-item {
  background: var(--paper-bright);
  border-radius: var(--radius);
  border: 1px solid rgba(28, 27, 26, 0.09);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  position: relative;
}

.page-products__changelog-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  background: linear-gradient(180deg, var(--page-gold-strong) 0%, var(--deep-green) 100%);
  border-radius: 4px;
}

.page-products__version-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  padding-left: 16px;
}

.page-products__version-num {
  font-family: var(--font-data);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.page-products__version-details {
  padding-left: 16px;
}

.page-products__version-details summary {
  cursor: pointer;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 15px;
  color: var(--deep-green);
  line-height: 1.45;
  padding: 8px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-products__version-details summary::-webkit-details-marker {
  display: none;
}

.page-products__version-details summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--deep-green);
  color: var(--paper-bright);
  font-family: var(--font-data);
  font-size: 15px;
  font-weight: 700;
  transition: transform 200ms ease;
  flex: 0 0 22px;
}

.page-products__version-details[open] summary::before {
  transform: rotate(45deg);
}

.page-products__version-details ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}

.page-products__version-details li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

.page-products__version-details li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--page-gold-strong);
}

.page-products__scenarios {
  background:
    radial-gradient(circle at 80% 10%, rgba(31, 77, 46, 0.2), transparent 42%),
    var(--page-hero-deep);
  padding: 60px 0;
}

.page-products__scenarios .page-products__section-title {
  color: var(--paper-bright);
}

.page-products__scenarios .page-products__section-lead {
  color: rgba(252, 250, 245, 0.76);
}

.page-products__scenarios .eyebrow {
  color: var(--page-gold-strong);
}

.page-products__scenario-grid {
  display: grid;
  gap: 18px;
}

.page-products__scenario-card {
  background: rgba(252, 250, 245, 0.06);
  border: 1px solid rgba(224, 197, 106, 0.24);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 160ms ease, background 160ms ease;
}

.page-products__scenario-card:hover {
  background: rgba(252, 250, 245, 0.09);
  transform: translateY(-3px);
}

.page-products__scenario-num {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 14px;
  color: var(--page-gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-products__scenario-card h3 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 19px;
  color: var(--paper-bright);
  margin: 0;
  line-height: 1.3;
}

.page-products__scenario-card p {
  color: rgba(252, 250, 245, 0.76);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.page-products__scenario-card .btn--ghost {
  border-color: rgba(252, 250, 245, 0.3);
  color: var(--paper-bright);
  align-self: flex-start;
}

.page-products__scenario-card .btn--ghost:hover {
  border-color: var(--page-gold-strong);
  color: var(--page-gold-strong);
}

.page-products .btn--gold {
  background: var(--page-gold-strong);
  border: 1px solid var(--page-gold-strong);
  color: var(--ink);
  font-family: var(--font-headline);
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.page-products .btn--primary {
  background: var(--deep-green);
  border: 1px solid var(--deep-green);
  color: var(--paper-bright);
  font-family: var(--font-headline);
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, transform 160ms ease;
}

.page-products .btn--primary:hover {
  background: var(--page-green-soft);
  transform: translateY(-2px);
}

.page-products .btn--ghost {
  background: transparent;
  border: 1px solid rgba(28, 27, 26, 0.35);
  color: var(--ink);
  font-family: var(--font-headline);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.page-products .btn--ghost:hover {
  border-color: var(--deep-green);
  color: var(--deep-green);
  transform: translateY(-2px);
}

.page-products .tag {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 999px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.page-products .tag--green {
  background: rgba(31, 77, 46, 0.1);
  color: var(--deep-green);
}

.page-products .tag--gold {
  background: rgba(201, 162, 39, 0.16);
  color: var(--deep-green);
}

.page-products .tag--outline {
  border: 1px solid rgba(28, 27, 26, 0.25);
  color: var(--gray);
  background: transparent;
}

@media (min-width: 760px) {
  .page-products__hero-inner {
    grid-template-columns: minmax(0, 1.2fr) 0.8fr;
    gap: 56px;
  }

  .page-products__hero-icon-wrap {
    align-items: center;
  }

  .page-products__hero-icon {
    width: 220px;
    height: 220px;
    border-radius: 48px;
  }

  .page-products__hero-note {
    font-size: 14px;
  }

  .page-products__overview-cards {
    grid-template-columns: 5fr 4fr 3fr;
    align-items: stretch;
  }

  .page-products__feature-card:nth-child(2) {
    transform: translateY(18px);
  }

  .page-products__feature-card:nth-child(3) {
    transform: translateY(4px);
  }

  .page-products__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 48px;
  }

  .page-products__phone-grid {
    grid-template-columns: minmax(0, 1fr) 0.72fr;
    gap: 64px;
  }

  .page-products__phone-frame {
    max-width: 300px;
    margin-right: 12px;
  }

  .page-products__tab-panel {
    padding: 40px;
  }

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

  .page-products__tab-grid--reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .page-products__tab-grid--reverse .page-products__tab-copy {
    order: 2;
  }

  .page-products__tab-grid--reverse .page-products__tab-media,
  .page-products__tab-grid--reverse .page-products__tab-highlight,
  .page-products__tab-grid--reverse .page-products__tab-note-card {
    order: 1;
  }

  .page-products__tab-media img {
    max-height: 620px;
    object-fit: cover;
  }

  .page-products__download-grid {
    grid-template-columns: minmax(0, 1fr) 0.8fr;
    gap: 40px;
  }

  .page-products__download-card {
    padding: 30px;
  }

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

  .page-products__changelog-item:first-child {
    grid-column: 1 / -1;
  }

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

@media (min-width: 1080px) {
  .page-products__hero {
    padding: 72px 0 88px;
  }

  .page-products__hero-title {
    font-size: 42px;
  }

  .page-products__hero-icon {
    width: 260px;
    height: 260px;
  }

  .page-products__feature-card .card__title {
    font-size: 20px;
  }

  .page-products__features,
  .page-products__changelog-section {
    padding: 72px 0;
  }

  .page-products__phone-section {
    padding: 80px 0 96px;
  }

  .page-products__phone-frame {
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products *,
  .page-products *::before,
  .page-products *::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
