.page-products{
  --p-orange:#FF6B35;
  --p-gold:#D4A444;
  --p-navy:#0A1E3C;
  --p-ink:#081A29;
  --p-slate:#233B5E;
  --p-silver:#A8B2C1;
  --p-mist:#E8EDF2;
  --p-green:#00C9A7;
  --p-red:#FF4B4B;
  --p-white:#FFFFFF;
  --p-radius-lg:32px;
  --p-radius-md:20px;
  --p-radius-sm:12px;
  --p-header-h:72px;
  overflow-x:hidden;
}

.page-products .container{
  max-width:1200px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
  width:100%;
  box-sizing:border-box;
}

.page-products .mono{
  font-family:var(--font-data);
  letter-spacing:.02em;
}

.page-products .breadcrumb{
  margin-bottom:24px;
}

.page-products .breadcrumb ol{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  list-style:none;
  margin:0;
  padding:0;
  font-family:var(--font-data);
  font-size:.8rem;
}

.page-products .breadcrumb a{
  color:var(--p-silver);
  text-decoration:none;
  transition:color .3s;
}

.page-products .breadcrumb a:hover{
  color:var(--p-orange);
}

.page-products .breadcrumb li::after{
  content:"›";
  margin-left:8px;
  color:var(--p-silver);
  opacity:.6;
}

.page-products .breadcrumb li:last-child::after{
  content:"";
}

.page-products .breadcrumb [aria-current="page"]{
  color:var(--p-orange);
}

.page-products .section-head--light .section-lead{
  color:var(--p-silver);
}

.page-products .section-head--light .section-title{
  color:var(--p-white);
}

.page-products .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 24px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  line-height:1.4;
  border:2px solid transparent;
  cursor:pointer;
  text-decoration:none;
  transition:transform .3s,box-shadow .3s,background-color .3s,color .3s,border-color .3s;
}

.page-products .btn:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(255,107,53,.25);
}

.page-products .btn-primary{
  background:var(--p-orange);
  color:var(--p-white);
}

.page-products .btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.4);
  color:var(--p-white);
}

.page-products .btn-outline:hover{
  border-color:var(--p-orange);
  color:var(--p-orange);
}

.page-products .btn-lg{
  padding:14px 32px;
  font-size:1rem;
}

.page-products .btn-sm{
  padding:8px 20px;
  font-size:.85rem;
}

.page-products .tag{
  display:inline-block;
  padding:4px 14px;
  border-radius:999px;
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.03em;
  line-height:1.6;
}

.page-products .tag-orange{
  background:rgba(255,107,53,.15);
  color:var(--p-orange);
}

.page-products .tag-gold{
  background:rgba(212,164,68,.15);
  color:var(--p-gold);
}

.page-products .tag-green{
  background:rgba(0,201,167,.15);
  color:var(--p-green);
}

.page-products .tag-red{
  background:rgba(255,75,75,.15);
  color:var(--p-red);
}

.page-products .tag-silver{
  background:rgba(168,178,193,.15);
  color:var(--p-silver);
}

.page-products .section{
  position:relative;
  padding-top:90px;
  padding-bottom:90px;
}

.page-products .section-dark{
  background:var(--p-navy);
}

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

.page-products .section-light{
  background:var(--p-mist);
}

.page-products .section-head{
  margin-bottom:48px;
  max-width:680px;
}

.page-products .section-kicker{
  display:block;
  font-family:var(--font-data);
  font-size:.75rem;
  letter-spacing:.14em;
  color:var(--p-orange);
  text-transform:uppercase;
  margin-bottom:12px;
  font-weight:500;
}

.page-products .section-title{
  font-family:var(--font-head);
  font-size:2rem;
  line-height:1.25;
  font-weight:800;
  color:var(--p-navy);
  margin:0 0 14px;
  letter-spacing:-.02em;
}

.page-products .section-lead{
  font-size:1rem;
  line-height:1.75;
  color:var(--p-slate);
  margin:0;
}

.product-hero{
  position:relative;
  background:
    radial-gradient(ellipse at 15% 20%,rgba(255,107,53,.18),transparent 55%),
    radial-gradient(ellipse at 85% 80%,rgba(212,164,68,.12),transparent 50%),
    linear-gradient(160deg,var(--p-ink) 0%,var(--p-navy) 60%,var(--p-slate) 100%);
  padding-top:calc(var(--p-header-h) + 60px);
  padding-bottom:70px;
  overflow:hidden;
}

.product-hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--p-orange),var(--p-gold),var(--p-green),transparent);
  opacity:.7;
}

.product-hero::after{
  content:"";
  position:absolute;
  right:-120px;
  top:30%;
  width:380px;
  height:380px;
  border-radius:50%;
  border:1px solid rgba(255,107,53,.15);
  opacity:.6;
}

.product-hero__inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr;
  gap:60px;
}

.product-hero__content{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.product-hero__kicker{
  margin-bottom:16px;
}

.product-hero__title{
  font-family:var(--font-head);
  font-size:2.5rem;
  font-weight:800;
  line-height:1.15;
  color:var(--p-white);
  margin:0 0 20px;
  letter-spacing:-.02em;
}

.product-hero__title-accent{
  display:block;
  background:linear-gradient(90deg,var(--p-orange),var(--p-gold));
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  font-size:1.4rem;
  font-weight:600;
  margin-top:8px;
  letter-spacing:.02em;
}

.product-hero__lead{
  font-size:1.05rem;
  line-height:1.8;
  color:var(--p-silver);
  margin:0 0 32px;
  max-width:540px;
}

.product-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:40px;
}

.product-hero__meta{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  width:100%;
  max-width:420px;
}

.product-hero__meta-item{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--p-radius-sm);
  padding:14px 18px;
  display:flex;
  flex-direction:column;
  gap:4px;
  backdrop-filter:blur(8px);
}

.product-hero__meta-value{
  font-family:var(--font-data);
  font-size:1.2rem;
  font-weight:600;
  color:var(--p-orange);
}

.product-hero__meta-label{
  font-size:.8rem;
  color:var(--p-silver);
}

.product-hero__visual{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.phone-model{
  position:relative;
  width:260px;
  height:520px;
  transition:transform .2s ease-out;
  will-change:transform;
}

.phone-model__glow{
  position:absolute;
  inset:-40px;
  background:radial-gradient(ellipse,rgba(255,107,53,.25),transparent 65%);
  z-index:0;
  pointer-events:none;
}

.phone-model__frame{
  position:absolute;
  inset:0;
  border-radius:44px;
  background:linear-gradient(145deg,var(--p-slate),var(--p-ink) 50%,var(--p-slate));
  border:1px solid rgba(255,255,255,.18);
  box-shadow:
    0 20px 50px rgba(0,0,0,.4),
    0 0 0 8px rgba(255,255,255,.03),
    inset 0 1px 0 rgba(255,255,255,.15);
  z-index:1;
  padding:12px;
}

.phone-model__screen{
  width:100%;
  height:100%;
  border-radius:34px;
  background:
    linear-gradient(180deg,var(--p-navy) 0%,var(--p-ink) 100%);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  position:relative;
}

.phone-model__screen::before{
  content:"";
  position:absolute;
  top:0;
  left:20%;
  right:20%;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--p-orange),transparent);
  opacity:.4;
}

.phone-model__notch{
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  width:80px;
  height:22px;
  background:var(--p-ink);
  border-radius:12px;
  z-index:2;
}

.phone-model__statusbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 16px 4px;
  font-family:var(--font-data);
  font-size:.6rem;
  color:var(--p-silver);
}

.phone-model__statusbar span:last-child{
  color:var(--p-orange);
  font-weight:700;
}

.phone-model__match{
  background:linear-gradient(180deg,rgba(255,255,255,.05),transparent);
  border-radius:18px;
  margin:14px 14px 0;
  padding:14px;
  border:1px solid rgba(255,255,255,.06);
  flex:1;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.phone-model__league{
  font-family:var(--font-data);
  font-size:.6rem;
  color:var(--p-gold);
  letter-spacing:.08em;
  text-align:center;
}

.phone-model__teams{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:6px;
}

.phone-model__team{
  display:flex;
  align-items:center;
  gap:4px;
  font-size:.7rem;
  color:var(--p-white);
  flex:1;
}

.phone-model__team:last-child{
  justify-content:flex-end;
}

.phone-model__team-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  flex-shrink:0;
}

.phone-model__team-dot--red{
  background:var(--p-red);
}

.phone-model__team-dot--blue{
  background:#3B82F6;
}

.phone-model__score{
  font-family:var(--font-data);
  font-size:1.1rem;
  font-weight:600;
  color:var(--p-white);
  display:flex;
  flex-direction:column;
  align-items:center;
  line-height:1.2;
}

.phone-model__score-label{
  font-size:.55rem;
  color:var(--p-silver);
  font-family:var(--font-body);
}

.phone-model__progress{
  height:5px;
  background:rgba(255,255,255,.1);
  border-radius:4px;
  overflow:hidden;
  display:flex;
}

.phone-model__progress-bar{
  height:100%;
  border-radius:4px;
  background:linear-gradient(90deg,var(--p-red),var(--p-orange));
}

.phone-model__progress-bar--red{
  background:linear-gradient(90deg,var(--p-orange),var(--p-red));
}

.phone-model__stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin-top:auto;
}

.phone-model__stat{
  background:rgba(255,255,255,.05);
  border-radius:10px;
  padding:8px 4px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
}

.phone-model__stat-value{
  font-family:var(--font-data);
  font-size:.8rem;
  font-weight:600;
  color:var(--p-orange);
}

.phone-model__stat-label{
  font-size:.55rem;
  color:var(--p-silver);
}

.phone-model__nav{
  display:flex;
  justify-content:center;
  gap:8px;
  padding:10px 0 16px;
}

.phone-model__nav-item{
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
}

.phone-model__nav-item--active{
  width:18px;
  border-radius:4px;
  background:var(--p-orange);
}

.product-hero__caption{
  margin-top:20px;
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-data);
  font-size:.7rem;
  color:var(--p-silver);
  letter-spacing:.06em;
}

.product-hero__caption .mono{
  color:var(--p-orange);
}

.product-hero__caption p{
  margin:0;
}

.download-tabs{
  background:var(--p-white);
  border-radius:var(--p-radius-lg);
  box-shadow:var(--shadow-md);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
}

.download-tabs__header{
  display:flex;
  background:var(--p-mist);
  border-bottom:1px solid rgba(168,178,193,.3);
}

.download-tabs__btn{
  flex:1;
  padding:14px 16px;
  border:none;
  background:transparent;
  font-family:var(--font-head);
  font-size:.9rem;
  font-weight:600;
  color:var(--p-slate);
  cursor:pointer;
  position:relative;
  transition:color .3s,background-color .3s;
}

.download-tabs__btn.is-active{
  background:var(--p-white);
  color:var(--p-orange);
}

.download-tabs__btn.is-active::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:20%;
  right:20%;
  height:3px;
  background:var(--p-orange);
  border-radius:3px 3px 0 0;
}

.download-tabs__panel{
  display:none;
  padding:24px;
}

.download-tabs__panel.is-active{
  display:block;
}

.download-card{
  display:flex;
  flex-direction:column;
  gap:20px;
  align-items:center;
}

.download-card__icon{
  width:72px;
  height:72px;
  border-radius:20px;
  background:linear-gradient(135deg,var(--p-navy),var(--p-slate));
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.download-card__icon-mark{
  color:var(--p-white);
  font-family:var(--font-data);
  font-size:.9rem;
  font-weight:600;
}

.download-card__content{
  text-align:center;
}

.download-card__title{
  font-family:var(--font-head);
  font-size:1.25rem;
  font-weight:700;
  color:var(--p-navy);
  margin:0 0 12px;
}

.download-card__list{
  list-style:none;
  margin:0 0 14px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:.9rem;
  line-height:1.6;
  color:var(--p-slate);
}

.download-card__qr{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}

.download-card__qr img{
  width:120px;
  height:120px;
  border-radius:12px;
  border:1px solid rgba(168,178,193,.4);
  object-fit:cover;
}

.download-card__qr-tip{
  font-family:var(--font-data);
  font-size:.7rem;
  color:var(--p-silver);
}

.download-note{
  margin-top:20px;
  display:flex;
  align-items:flex-start;
  gap:12px;
  background:rgba(212,164,68,.08);
  border:1px solid rgba(212,164,68,.2);
  border-radius:var(--p-radius-sm);
  padding:16px 20px;
}

.download-note__mark{
  flex-shrink:0;
  font-family:var(--font-data);
  font-size:.7rem;
  color:var(--p-gold);
  background:rgba(212,164,68,.15);
  padding:2px 10px;
  border-radius:999px;
  margin-top:2px;
}

.download-note p{
  margin:0;
  font-size:.85rem;
  line-height:1.7;
  color:var(--p-slate);
}

.features-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

.feature-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--p-radius-md);
  padding:28px 24px;
  position:relative;
  overflow:hidden;
  transition:transform .3s,box-shadow .3s,border-color .3s;
}

.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 32px rgba(0,0,0,.2);
  border-color:rgba(255,107,53,.3);
}

.feature-card--accent{
  background:linear-gradient(135deg,rgba(255,107,53,.15),rgba(255,255,255,.04));
  border-color:rgba(255,107,53,.25);
}

.feature-card__num{
  position:absolute;
  top:14px;
  right:18px;
  font-size:.8rem;
  color:rgba(255,255,255,.25);
}

.feature-card__icon{
  font-size:1.6rem;
  color:var(--p-orange);
  margin-bottom:18px;
  line-height:1;
}

.feature-card__title{
  font-family:var(--font-head);
  font-size:1.1rem;
  font-weight:700;
  color:var(--p-white);
  margin:0 0 10px;
}

.feature-card__desc{
  font-size:.9rem;
  line-height:1.7;
  color:var(--p-silver);
  margin:0 0 16px;
}

.features-visual{
  margin-top:32px;
}

.features-visual img{
  width:100%;
  height:auto;
  border-radius:var(--p-radius-lg);
  object-fit:cover;
  display:block;
  box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.product-stats{
  background:var(--p-white);
}

.page-products .product-stats .stat{
  background:var(--p-mist);
  border-radius:var(--p-radius-sm);
  padding:24px 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  text-align:center;
}

.page-products .product-stats .stat-value{
  color:var(--p-navy);
  font-size:2rem;
  font-weight:600;
}

.page-products .product-stats .stat-label{
  color:var(--p-slate);
  font-size:.85rem;
}

.changelog-layout{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
}

.changelog-timeline{
  position:relative;
}

.changelog-timeline::before{
  content:"";
  position:absolute;
  left:12px;
  top:0;
  bottom:0;
  width:2px;
  background:linear-gradient(180deg,var(--p-orange),var(--p-gold),rgba(168,178,193,.2));
}

.changelog-item{
  position:relative;
  padding-left:44px;
  padding-bottom:32px;
}

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

.changelog-item__marker{
  position:absolute;
  left:-12px;
  top:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}

.changelog-item__marker::before{
  content:"";
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--p-navy);
  border:3px solid var(--p-orange);
  box-shadow:0 0 0 4px rgba(255,107,53,.2);
}

.changelog-item__version{
  position:absolute;
  left:20px;
  top:22px;
  background:rgba(255,107,53,.15);
  color:var(--p-orange);
  font-size:.7rem;
  font-weight:600;
  padding:3px 10px;
  border-radius:999px;
  white-space:nowrap;
}

.changelog-item__tag{
  display:none;
}

.changelog-item__body{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  border-radius:var(--p-radius-md);
  padding:20px;
}

.changelog-item__title{
  font-family:var(--font-head);
  font-size:1.05rem;
  font-weight:700;
  color:var(--p-white);
  margin:24px 0 12px;
}

.changelog-item__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.changelog-item__list li{
  position:relative;
  padding-left:18px;
  font-size:.88rem;
  line-height:1.65;
  color:var(--p-silver);
}

.changelog-item__list li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--p-gold);
}

.changelog-aside__card{
  background:linear-gradient(135deg,rgba(212,164,68,.12),rgba(255,255,255,.04));
  border:1px solid rgba(212,164,68,.2);
  border-radius:var(--p-radius-md);
  padding:28px 24px;
}

.changelog-aside__label{
  font-size:.7rem;
  letter-spacing:.14em;
  color:var(--p-gold);
  margin-bottom:12px;
}

.changelog-aside__text{
  font-size:.9rem;
  line-height:1.7;
  color:var(--p-silver);
  margin:0 0 20px;
}

.changelog-aside__links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.compatibility-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  margin-bottom:32px;
}

.compatibility-card{
  background:var(--p-white);
  border-radius:var(--p-radius-md);
  padding:28px 24px;
  border:1px solid rgba(168,178,193,.25);
  box-shadow:var(--shadow-sm);
  transition:transform .3s,box-shadow .3s;
}

.compatibility-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}

.compatibility-card--accent{
  border-color:rgba(255,107,53,.4);
  background:linear-gradient(180deg,var(--p-white),rgba(255,107,53,.05));
}

.compatibility-card__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:16px;
  font-family:var(--font-data);
  font-size:.8rem;
  font-weight:600;
  margin-bottom:16px;
}

.compatibility-card__icon--ios{
  background:linear-gradient(135deg,var(--p-navy),var(--p-slate));
  color:var(--p-white);
}

.compatibility-card__icon--android{
  background:linear-gradient(135deg,#3B82F6,#8B5CF6);
  color:var(--p-white);
}

.compatibility-card__icon--tablet{
  background:linear-gradient(135deg,var(--p-gold),#E8A54B);
  color:var(--p-ink);
}

.compatibility-card__title{
  font-family:var(--font-head);
  font-size:1.15rem;
  font-weight:700;
  color:var(--p-navy);
  margin:0 0 16px;
}

.compatibility-card__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.compatibility-card__list li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:.88rem;
  line-height:1.5;
  color:var(--p-slate);
  border-bottom:1px dashed rgba(168,178,193,.3);
  padding-bottom:8px;
}

.compatibility-card__list li:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.compatibility-card__list li span:last-child{
  text-align:right;
  color:var(--p-navy);
  font-weight:600;
}

.compatibility-card__list .mono{
  color:var(--p-orange);
  font-weight:600;
}

.compatibility-visual img{
  width:100%;
  height:auto;
  border-radius:var(--p-radius-lg);
  object-fit:cover;
  display:block;
  box-shadow:var(--shadow-sm);
}

.compare-table-wrap{
  overflow-x:auto;
  border-radius:var(--p-radius-md);
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(168,178,193,.2);
}

.compare-table{
  width:100%;
  border-collapse:collapse;
  background:var(--p-white);
  min-width:640px;
  font-size:.88rem;
}

.compare-table th,
.compare-table td{
  padding:16px 20px;
  text-align:left;
  border-bottom:1px solid rgba(168,178,193,.25);
}

.compare-table thead th{
  background:var(--p-navy);
  color:var(--p-white);
  font-family:var(--font-head);
  font-size:.9rem;
  font-weight:700;
}

.compare-table thead th:first-child{
  border-top-left-radius:var(--p-radius-md);
}

.compare-table thead th:last-child{
  border-top-right-radius:var(--p-radius-md);
}

.compare-table tbody th{
  color:var(--p-navy);
  font-weight:600;
  background:rgba(232,237,242,.4);
  white-space:nowrap;
}

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th{
  border-bottom:none;
}

.compare-table__check{
  color:var(--p-green);
  font-weight:600;
}

.compare-table__minus{
  color:var(--p-silver);
  font-weight:600;
}

.compare-footnote{
  margin-top:24px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  background:rgba(255,107,53,.06);
  border-left:3px solid var(--p-orange);
  border-radius:0 var(--p-radius-sm) var(--p-radius-sm) 0;
  padding:14px 20px;
}

.compare-footnote__icon{
  color:var(--p-gold);
  flex-shrink:0;
  font-size:1rem;
}

.compare-footnote p{
  margin:0;
  font-size:.85rem;
  line-height:1.7;
  color:var(--p-slate);
}

.product-guide{
  position:relative;
}

.product-guide::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg,var(--p-orange),var(--p-gold),transparent);
  opacity:.4;
}

.guide-steps{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  margin-bottom:36px;
}

.guide-step{
  display:flex;
  gap:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.07);
  border-radius:var(--p-radius-md);
  padding:24px;
  transition:transform .3s,border-color .3s;
}

.guide-step:hover{
  transform:translateX(6px);
  border-color:rgba(255,107,53,.25);
}

.guide-step__num{
  font-size:1.4rem;
  font-weight:600;
  background:linear-gradient(135deg,var(--p-orange),var(--p-gold));
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  flex-shrink:0;
  line-height:1;
  margin-top:4px;
}

.guide-step__content{
  flex:1;
}

.guide-step__title{
  font-family:var(--font-head);
  font-size:1.05rem;
  font-weight:700;
  color:var(--p-white);
  margin:0 0 8px;
}

.guide-step__desc{
  font-size:.88rem;
  line-height:1.7;
  color:var(--p-silver);
  margin:0;
}

.guide-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

[data-reveal]{
  opacity:1;
  transform:none;
}

@media (prefers-reduced-motion:no-preference){
  .page-products [data-reveal]{
    opacity:0;
    transform:translateY(30px);
    transition:opacity .6s ease,transform .6s ease;
    transition-delay:var(--reveal-delay,0ms);
  }
  .page-products [data-reveal].is-revealed{
    opacity:1;
    transform:translateY(0);
  }
}

@media (min-width:640px){
  .page-products .product-hero__title{
    font-size:3rem;
  }
  .page-products .product-hero__meta{
    grid-template-columns:repeat(4,1fr);
  }
  .page-products .features-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .page-products .compatibility-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .page-products .compatibility-card:last-child{
    grid-column:1 / -1;
  }
  .page-products .guide-steps{
    grid-template-columns:repeat(3,1fr);
  }
  .page-products .guide-step{
    flex-direction:column;
  }
  .page-products .guide-step__num{
    font-size:1.8rem;
  }
  .page-products .download-card{
    flex-direction:row;
    justify-content:space-between;
    align-items:flex-start;
  }
  .page-products .download-card__content{
    text-align:left;
    flex:1;
  }
  .page-products .changelog-item__version{
    left:auto;
    right:12px;
    top:4px;
  }
  .page-products .changelog-item__title{
    margin-top:0;
  }
  .page-products .changelog-item__tag{
    display:none;
  }
}

@media (min-width:900px){
  .page-products .product-hero__inner{
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:40px;
  }
  .page-products .product-hero__lead{
    font-size:1.1rem;
  }
  .page-products .phone-model{
    width:290px;
    height:560px;
  }
  .page-products .features-grid{
    grid-template-columns:repeat(3,1fr);
  }
  .page-products .changelog-layout{
    grid-template-columns:1fr 320px;
    gap:56px;
  }
  .page-products .compatibility-grid{
    grid-template-columns:repeat(3,1fr);
  }
  .page-products .compatibility-card:last-child{
    grid-column:auto;
  }
  .page-products .section{
    padding-top:110px;
    padding-bottom:110px;
  }
}

@media (min-width:1080px){
  .page-products .product-hero{
    padding-top:calc(var(--p-header-h) + 72px);
  }
  .page-products .section-head{
    margin-bottom:56px;
  }
  .page-products .section-title{
    font-size:2.2rem;
  }
}

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

.page-products {
  --reveal-delay: 0.3s;
}
