:root{
  --bg:#000000;
  --text:#ffffff;
  --accent:#ff0000;
  --muted:rgba(255,255,255,0.72);
  --card:rgba(255,255,255,0.06);
  --card2:rgba(255,255,255,0.09);
  --border:rgba(255,255,255,0.12);
  --shadow:0 18px 70px rgba(0,0,0,0.75);
  --glow:0 0 22px rgba(255,0,0,0.35);
  --radius:18px;
  --max:1120px;
  --header-h:68px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,"Noto Sans","Helvetica Neue",sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{color:var(--text);text-decoration:none}
a:hover{color:var(--accent)}

.container{
  width:min(100%, calc(var(--max) + 32px));
  margin:0 auto;
  padding:0 16px;
}

.btn{
  appearance:none;
  border:1px solid rgba(255,0,0,0.55);
  background:linear-gradient(180deg, #ff2a2a 0%, #ff0000 55%, #d90000 100%);
  color:var(--text);
  border-radius:999px;
  padding:12px 18px;
  font-weight:800;
  letter-spacing:0.6px;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:var(--glow);
  transition:transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}
.btn:hover{transform:translateY(-1px);filter:saturate(1.1);box-shadow:0 0 26px rgba(255,0,0,0.48)}
.btn:active{transform:translateY(0)}
.btn:focus-visible{outline:2px solid rgba(255,0,0,0.9);outline-offset:3px}

.btn.secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,0.22);
  box-shadow:none;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,0,0,0.6);
  background:rgba(255,0,0,0.10);
  color:var(--text);
  font-weight:800;
  letter-spacing:0.6px;
  text-transform:uppercase;
  font-size:12px;
}

.card{
  background:linear-gradient(180deg, var(--card) 0%, rgba(255,255,255,0.03) 100%);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.section{
  padding:44px 0;
}

.section-title{
  font-size:22px;
  margin:0 0 14px;
  letter-spacing:0.2px;
}

.section-subtitle{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.55;
}

/* Header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  height:var(--header-h);
  background:rgba(0,0,0,0.62);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.header-inner{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.brand img{
  width:38px;
  height:38px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.14);
}
.brand span{
  font-weight:900;
  letter-spacing:0.6px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Hero */
.hero{
  padding-top:calc(var(--header-h) + 26px);
  padding-bottom:46px;
  min-height:72vh;
  display:flex;
  align-items:flex-end;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 600px at 20% 15%, rgba(255,0,0,0.20) 0%, rgba(255,0,0,0.00) 60%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.92) 72%, rgba(0,0,0,1) 100%),
    url("HERO_BG_IMAGE_URL_AQUI");
  background-size:cover;
  background-position:center;
  filter:saturate(0.85) contrast(1.05);
  opacity:0.65;
}
.hero::after{
  content:"";
  position:absolute;
  inset:-80px;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 46%),
    radial-gradient(circle at 30% 75%, rgba(255,0,0,0.14) 0%, rgba(255,0,0,0) 52%);
  pointer-events:none;
}
.hero-content{
  position:relative;
  z-index:1;
}
.hero h1{
  margin:0 0 10px;
  font-size:40px;
  line-height:1.05;
  letter-spacing:-0.6px;
}
.hero p{
  margin:0;
  color:rgba(255,255,255,0.82);
  font-size:15px;
  line-height:1.6;
  max-width:56ch;
}
.hero-cta{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Preview carousel */
.carousel{
  position:relative;
}
.carousel-viewport{
  display:flex;
  gap:12px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding:6px 4px 10px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,0,0,0.65) rgba(255,255,255,0.08);
}
.carousel-viewport::-webkit-scrollbar{height:10px}
.carousel-viewport::-webkit-scrollbar-track{background:rgba(255,255,255,0.08);border-radius:999px}
.carousel-viewport::-webkit-scrollbar-thumb{background:rgba(255,0,0,0.65);border-radius:999px}

.carousel-item{
  flex:0 0 auto;
  width:72%;
  max-width:320px;
  scroll-snap-align:start;
}

.thumb{
  display:block;
  position:relative;
  aspect-ratio:16/9;
  border-radius:16px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 100%);
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 10px 40px rgba(0,0,0,0.65);
  transition:transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0.72;
}
.thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(350px 220px at 20% 20%, rgba(255,0,0,0.18) 0%, rgba(255,0,0,0.00) 64%),
    linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.55) 100%);
}
.thumb:hover{transform:translateY(-2px);border-color:rgba(255,0,0,0.55);box-shadow:0 0 0 1px rgba(255,0,0,0.24), 0 16px 55px rgba(0,0,0,0.75)}

.carousel-nav{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:10px;
}
.carousel-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.06);
  color:var(--text);
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.carousel-btn:hover{transform:translateY(-1px);border-color:rgba(255,0,0,0.55);background:rgba(255,0,0,0.12)}
.carousel-btn:active{transform:translateY(0)}
.carousel-btn:focus-visible{outline:2px solid rgba(255,0,0,0.9);outline-offset:3px}

/* Categories */
.grid{
  display:grid;
  gap:12px;
}
.grid.categories{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.category-card{
  padding:14px;
  display:flex;
  align-items:center;
  gap:12px;
  min-height:88px;
  background:linear-gradient(180deg, var(--card2) 0%, rgba(255,255,255,0.02) 100%);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius);
  transition:transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.category-card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,0,0,0.55);
  box-shadow:0 0 0 1px rgba(255,0,0,0.22), 0 22px 70px rgba(0,0,0,0.75);
  background:linear-gradient(180deg, rgba(255,0,0,0.14) 0%, rgba(255,255,255,0.02) 100%);
}
.category-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.06);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.category-icon img{width:100%;height:100%;object-fit:cover;display:block;opacity:0.85}
.category-name{font-weight:900;letter-spacing:0.2px}

/* Pricing */
.pricing{
  scroll-margin-top:calc(var(--header-h) + 16px);
}
.grid.pricing-grid{
  grid-template-columns:1fr;
}
.price-card{
  padding:18px;
  position:relative;
}
.price-title{
  font-size:18px;
  font-weight:900;
  margin:0 0 8px;
}
.price{
  font-size:34px;
  font-weight:950;
  letter-spacing:-0.6px;
  margin:0 0 12px;
}
.price small{font-size:14px;color:var(--muted);font-weight:700;letter-spacing:0}
.price-features{margin:0 0 16px;padding:0;list-style:none;color:rgba(255,255,255,0.82)}
.price-features li{padding:8px 0;border-top:1px solid rgba(255,255,255,0.10)}
.price-features li:first-child{border-top:none}

.price-card.featured{
  border:1px solid rgba(255,0,0,0.55);
  box-shadow:0 0 0 1px rgba(255,0,0,0.22), var(--shadow);
}
.price-card .popular{
  position:absolute;
  top:16px;
  right:16px;
}

/* Footer */
.site-footer{
  border-top:1px solid rgba(255,255,255,0.10);
  padding:22px 0;
  color:rgba(255,255,255,0.76);
}
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* Pre-sell page */
.presell{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:22px 16px;
}
.presell-inner{
  width:min(980px, 100%);
  display:grid;
  gap:14px;
}
.presell-context{
  text-align:center;
  display:grid;
  gap:6px;
  padding:2px 0;
}
.presell-headline{
  margin:0;
  font-size:22px;
  font-weight:950;
  letter-spacing:-0.2px;
}
.presell-sub{
  margin:0;
  color:rgba(255,255,255,0.72);
  line-height:1.45;
}
.video-wrap{
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 18px 70px rgba(0,0,0,0.75);
  background:rgba(255,255,255,0.06);
}
.video-wrap video{
  width:100%;
  height:auto;
  display:block;
}
.presell-micro{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  color:rgba(255,255,255,0.78);
  font-weight:800;
  letter-spacing:0.2px;
}
.presell-micro .micro-dot{opacity:0.55}
.presell-micro .micro-strong{
  color:var(--text);
  border:1px solid rgba(255,0,0,0.35);
  background:rgba(255,0,0,0.10);
  padding:6px 10px;
  border-radius:999px;
}
.presell-micro .micro-soft{opacity:0.7;font-weight:900}
.presell-cta{
  display:flex;
  justify-content:center;
}

.cta-strong{
  width:min(520px, 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px 18px;
  font-size:15px;
  letter-spacing:0.9px;
  box-shadow:0 0 0 1px rgba(255,0,0,0.20), 0 0 28px rgba(255,0,0,0.28);
  animation:ctaPulse 2.1s ease-in-out infinite;
}
@keyframes ctaPulse{
  0%, 100%{transform:translateY(0);filter:saturate(1)}
  50%{transform:translateY(-1px);filter:saturate(1.1)}
}

.presell-proof{
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.12);
  background:linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  padding:12px;
  display:grid;
  gap:10px;
}
.presell-rating{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.presell-rating .stars{color:var(--accent);letter-spacing:1px}
.presell-rating .score{font-weight:950}
.presell-rating .hint{color:rgba(255,255,255,0.62);font-weight:800}
.presell-comments{
  display:grid;
  gap:8px;
}
.presell-comments .comment{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(0,0,0,0.25);
  color:rgba(255,255,255,0.82);
  line-height:1.45;
}

.presell-risk{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  padding-top:2px;
}
.presell-risk .chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.06);
  color:rgba(255,255,255,0.86);
  font-weight:900;
  letter-spacing:0.2px;
}

@media (min-width: 768px){
  .presell-headline{font-size:26px}
  .presell-inner{gap:16px}
  .presell-proof{padding:14px}
}

/* Responsive */
@media (min-width: 768px){
  :root{--header-h:76px}
  .hero h1{font-size:56px}
  .hero p{font-size:16px}
  .carousel-item{width:38%;max-width:360px}
  .grid.categories{grid-template-columns:repeat(4, minmax(0, 1fr))}
  .grid.pricing-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .section{padding:56px 0}
}

@media (min-width: 1100px){
  .hero{min-height:78vh}
  .hero h1{font-size:64px}
}

 .proof{
   display:grid;
   gap:14px;
   align-items:stretch;
 }
 .proof-video{
   border-radius:20px;
   overflow:hidden;
   border:1px solid rgba(255,255,255,0.14);
   box-shadow:0 18px 70px rgba(0,0,0,0.75);
   background:rgba(255,255,255,0.06);
   
 }
   
   .proof-title{
  margin-bottom: 8px;
  text-align: center;

  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;

  color: #d90000;


   
   
 }
 .proof-video video{
   width:100%;
   height:auto;
   display:block;
 
 
 } 
   .preview-btn{
  margin-top: 14px;

  width: 100%;
  max-width: 420px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ff1e1e, #d90000);
  color: #ffffff;

  font-size: 16px;
  font-weight: 800;
  text-decoration: none;

  border-radius: 14px;
  cursor: pointer;

  box-shadow:
    0 12px 35px rgba(217,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.15);

  transition: transform .15s ease, box-shadow .2s ease;
}

.preview-btn:active{
  transform: scale(0.97);
  box-shadow: 0 8px 25px rgba(217,0,0,0.35);


   
   
   
 }
 .proof-reviews{
   position:relative;
   border-radius:22px;
   padding:14px;
   border:1px solid rgba(255,0,0,0.22);
   background:
     radial-gradient(800px 340px at 10% 10%, rgba(255,0,0,0.14) 0%, rgba(255,0,0,0.00) 58%),
     linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
   box-shadow:0 0 0 1px rgba(255,0,0,0.12), 0 18px 70px rgba(0,0,0,0.75);
   backdrop-filter:blur(10px);
 }
 .proof-reviews::before{
   content:"";
   position:absolute;
   inset:-1px;
   border-radius:22px;
   pointer-events:none;
   box-shadow:0 0 26px rgba(255,0,0,0.22);
   opacity:0.9;
 }
 .proof-reviews .section-title{
   margin:0 0 12px;
   letter-spacing:-0.2px;
 }
 .reviews{
   display:grid;
   gap:10px;
 }
 .review-card{
   padding:12px 12px 11px;
   border-radius:16px;
   border:1px solid rgba(255,255,255,0.14);
   background:
     radial-gradient(420px 220px at 12% 10%, rgba(255,0,0,0.10) 0%, rgba(255,0,0,0.00) 60%),
     linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 100%);
   box-shadow:0 0 0 1px rgba(255,255,255,0.06), 0 14px 50px rgba(0,0,0,0.65);
   transition:transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
 }
 .review-card:hover{
   transform:translateY(-1px);
   border-color:rgba(255,0,0,0.40);
   box-shadow:0 0 0 1px rgba(255,0,0,0.14), 0 18px 70px rgba(0,0,0,0.75);
 }
 .review-top{
   display:flex;
   align-items:center;
   justify-content:space-between;
   gap:10px;
   margin-bottom:6px;
 }
 .review-name{
   font-weight:900;
   letter-spacing:0.2px;
 }
 .review-stars{
   color:var(--accent);
   letter-spacing:1px;
   font-size:14px;
 }
 .review-text{
   margin:0;
   color:rgba(255,255,255,0.80);
   line-height:1.55;
 }

 @media (min-width: 768px){
   .proof{
     grid-template-columns:1.05fr 0.95fr;
     gap:18px;
     align-items:center;
   }
   .proof .section-title{margin-top:0}
   .reviews{gap:12px}
 }

 /* Platform (members area) */
 .platform{
   background:#000;
 }

 .platform-header{
   background:rgba(0,0,0,0.18);
   border-bottom:1px solid rgba(255,255,255,0.00);
   transition:background 180ms ease, border-color 180ms ease;
 }
 .platform-header.is-scrolled{
   background:#000000;
   border-bottom:1px solid rgba(255,255,255,0.10);
 }

 .platform-header-inner{
   gap:14px;
 }
 .platform-left{
   display:flex;
   align-items:center;
   gap:14px;
   min-width:0;
 }
 .platform-brand img{
   width:42px;
   height:42px;
   border-radius:12px;
 }

 .platform-nav{
   display:none;
   align-items:center;
   gap:14px;
   font-weight:800;
   letter-spacing:0.2px;
   color:rgba(255,255,255,0.90);
 }
 .platform-nav a{
   color:rgba(255,255,255,0.90);
 }
 .platform-nav a:hover{
   color:var(--accent);
 }

 .platform-right{
   display:flex;
   align-items:center;
   gap:10px;
 }

 .icon-btn{
   width:40px;
   height:40px;
   border-radius:999px;
   border:1px solid rgba(255,255,255,0.14);
   background:rgba(255,255,255,0.06);
   color:var(--text);
   cursor:pointer;
   display:grid;
   place-items:center;
   transition:transform 160ms ease, border-color 160ms ease, background 160ms ease;
 }
 .icon-btn:hover{
   transform:translateY(-1px);
   border-color:rgba(255,0,0,0.55);
   background:rgba(255,0,0,0.12);
 }
 .icon-btn:active{transform:translateY(0)}
 .icon-btn:focus-visible{outline:2px solid rgba(255,0,0,0.9);outline-offset:3px}
 .icon{font-size:18px;line-height:1}

 .profile-chip{
   display:flex;
   align-items:center;
   gap:8px;
   padding:6px 10px 6px 6px;
   border-radius:999px;
   border:1px solid rgba(255,255,255,0.14);
   background:rgba(255,255,255,0.06);
 }
 .profile-chip img{
   width:30px;
   height:30px;
   border-radius:10px;
   border:1px solid rgba(255,255,255,0.14);
 }
 .profile-chip .caret{opacity:0.85;font-size:12px}

 .platform-hero{
   position:relative;
   min-height:82vh;
   padding-top:var(--header-h);
   display:flex;
   align-items:flex-end;
   overflow:hidden;
 }
 .platform-hero-video{
   position:absolute;
   inset:0;
   width:100%;
   height:100%;
   object-fit:cover;
   filter:saturate(0.85) contrast(1.02);
   opacity:0.85;
 }
 .platform-hero-overlay{
   position:absolute;
   inset:0;
   background:
     radial-gradient(1200px 600px at 20% 25%, rgba(255,0,0,0.18) 0%, rgba(255,0,0,0.00) 58%),
     linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.60) 38%, rgba(0,0,0,0.10) 72%),
     linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.76) 70%, rgba(0,0,0,1) 100%);
 }
 .platform-hero-content{
   position:relative;
   z-index:1;
   padding:34px 0 26px;
 }
 .platform-title-logo{
   width:min(320px, 70vw);
   height:auto;
   display:block;
   margin:0 0 10px;
   filter:drop-shadow(0 10px 40px rgba(0,0,0,0.75));
 }
 .platform-hero-desc{
   margin:0 0 14px;
   color:rgba(255,255,255,0.82);
   line-height:1.6;
   max-width:52ch;
 }
 .platform-hero-actions{
   display:flex;
   gap:10px;
   flex-wrap:wrap;
 }
 .pbtn{
   display:inline-flex;
   align-items:center;
   gap:10px;
   padding:12px 16px;
   border-radius:10px;
   font-weight:900;
   letter-spacing:0.2px;
   border:1px solid rgba(255,255,255,0.12);
   transition:transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
 }
 .pbtn:hover{transform:translateY(-1px)}
 .pbtn:active{transform:translateY(0)}
 .pbtn:focus-visible{outline:2px solid rgba(255,0,0,0.9);outline-offset:3px}

 .pbtn-primary{
   background:#ffffff;
   color:#000000;
   border-color:rgba(255,255,255,0.55);
 }
 .pbtn-primary:hover{filter:brightness(0.98)}

 .pbtn-secondary{
   background:rgba(255,255,255,0.18);
   color:#ffffff;
 }
 .pbtn-secondary:hover{background:rgba(255,255,255,0.24)}

 .pbtn-icon{font-size:14px;line-height:1}

 .platform-rows{
   padding:10px 0 44px;
 }
 .row{
   margin-top:18px;
 }
 .row-title{
   margin:0 0 10px;
   color:var(--accent);
   font-weight:950;
   letter-spacing:0.2px;
   font-size:18px;
 }

 .row-wrap{
   position:relative;
 }
 .row-viewport{
   display:flex;
   gap:10px;
   overflow:auto;
   padding:6px 2px 12px;
   -webkit-overflow-scrolling:touch;
   scroll-snap-type:x mandatory;
 }
 .cover{
   flex:0 0 auto;
   width:42vw;
   max-width:180px;
   scroll-snap-align:start;
   display:block;
   border-radius:14px;
   overflow:hidden;
   border:1px solid rgba(255,255,255,0.14);
   background:rgba(255,255,255,0.06);
   box-shadow:0 10px 40px rgba(0,0,0,0.65);
   transition:transform 0.2s ease, border-color 0.2s ease;
 }
 .cover img{
   width:100%;
   height:100%;
   aspect-ratio:2/3;
   object-fit:cover;
   display:block;
   filter:blur(8px);
   transform:scale(1.02);
   transition:filter 0.3s ease, transform 0.25s ease;
 }
 .cover:hover,
 .cover:focus-visible{
   transform:scale(1.06);
   border-color:rgba(255,0,0,0.55);
 }
 .cover:hover img,
 .cover:focus-visible img,
 .cover.is-revealed img{
   filter:blur(0px);
   transform:scale(1.08);
 }

 .row-btn{
   position:absolute;
   top:50%;
   transform:translateY(-50%);
   width:42px;
   height:72px;
   border-radius:12px;
   border:1px solid rgba(255,255,255,0.14);
   background:rgba(0,0,0,0.55);
   color:var(--text);
   cursor:pointer;
   display:none;
   place-items:center;
   transition:background 160ms ease, border-color 160ms ease, transform 160ms ease;
 }
 .row-btn:hover{background:rgba(255,0,0,0.18);border-color:rgba(255,0,0,0.55)}
 .row-btn:active{transform:translateY(-50%) scale(0.98)}
 .row-btn:focus-visible{outline:2px solid rgba(255,0,0,0.9);outline-offset:3px}
 .row-btn[disabled]{opacity:0.35;cursor:not-allowed}
 .row-btn-left{left:-6px}
 .row-btn-right{right:-6px}

 @media (hover:hover){
   .row-wrap:hover .row-btn{display:grid}
 }

 @media (min-width: 768px){
   .platform-nav{display:flex}
   .cover{width:20vw;max-width:210px}
   .row-title{font-size:19px}
 }

 @media (min-width: 1100px){
   .cover{width:14vw;max-width:240px}
 }

 .platform-footer{
   border-top:1px solid rgba(255,255,255,0.10);
   padding:26px 0 34px;
   color:rgba(255,255,255,0.76);
 }
 .platform-social{
   display:flex;
   gap:10px;
   flex-wrap:wrap;
   margin-bottom:12px;
 }
 .social{
   width:44px;
   height:44px;
   border-radius:12px;
   border:1px solid rgba(255,255,255,0.14);
   background:rgba(255,255,255,0.06);
   display:grid;
   place-items:center;
   font-weight:900;
 }
 .social:hover{border-color:rgba(255,0,0,0.55);background:rgba(255,0,0,0.12)}
 .platform-footer-links{
   display:flex;
   gap:14px;
   flex-wrap:wrap;
 }
 
 
