/* ============================================================
   netmirrortv.net  —  hero stylesheet
   Clean WHITE theme, light "Netflix feeling" (red accents).
   Hand-written, no framework.
   ============================================================ */

:root{
  --bg:      #ffffff;
  --ink:     #141414;
  --ink-2:   #2b2b2b;
  --muted:   #5e6168;
  --line:    #e7e8ea;
  --soft:    #f6f6f7;

  --red:      #e50914;   /* Netflix-style red */
  --red-dark: #c40812;
  --red-tint: #fdecec;

  --maxw:  1120px;
  --font-d: 'Sora', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-b: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }

body{
  font-family:var(--font-b);
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

/* ---------- site header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.88); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.hdr-inner{ max-width:var(--maxw); margin:0 auto; display:flex; align-items:center; gap:1.4rem; padding:.7rem 1.3rem; }
.hdr-logo{ display:inline-flex; align-items:center; gap:.5rem; }
.hdr-logo img{ filter:drop-shadow(0 3px 8px rgba(229,9,20,.3)); }
.hdr-logo span{ font-family:var(--font-d); font-weight:800; font-size:1.2rem; color:var(--ink); letter-spacing:-.01em; }
.hdr-logo span b{ color:var(--red); font-weight:800; }
.hdr-nav{ display:flex; gap:1.7rem; margin-left:auto; }
.hdr-nav a{ font-family:var(--font-d); font-weight:600; font-size:.92rem; color:var(--ink-2); transition:color .15s ease; }
.hdr-nav a:hover{ color:var(--red); }
.hdr-cta{
  display:inline-flex; align-items:center; gap:.4rem;
  font-family:var(--font-d); font-weight:700; font-size:.9rem;
  padding:.55rem 1.15rem; border-radius:9px; background:var(--red); color:#fff;
  box-shadow:0 8px 18px -10px rgba(229,9,20,.6); transition:background .16s ease, transform .14s ease;
}
.hdr-cta:hover{ background:var(--red-dark); transform:translateY(-1px); }

section[id]{ scroll-margin-top:72px; }

@media (max-width:820px){
  .hdr-nav{ display:none; }
  .hdr-cta{ margin-left:auto; }
}

/* ---------- hero ---------- */
.hero{
  max-width:var(--maxw);
  margin:0 auto;
  padding:clamp(2rem,5vw,3.5rem) 1.3rem 3.5rem;
  text-align:center;
}

/* logo (first element) */
.logo{
  display:inline-flex; align-items:center; gap:.55rem;
  margin-bottom:clamp(1.4rem,4vw,2.2rem);
}
.logo img{ filter:drop-shadow(0 3px 8px rgba(229,9,20,.28)); }

/* heading */
.title{
  font-family:var(--font-d); font-weight:800;
  font-size:clamp(1.9rem, 4.6vw, 3.25rem);
  line-height:1.12; letter-spacing:-.02em;
  color:var(--ink);
  max-width:16ch; margin:0 auto .9rem;
}
.title .thin{ font-weight:700; color:var(--ink-2); }
.title .accent{ color:var(--red); }

/* paragraph */
.lead{
  font-size:clamp(1rem, 1.7vw, 1.15rem);
  color:var(--muted);
  max-width:600px; margin:0 auto 1.8rem;
  line-height:1.65;
}

/* buttons */
.cta{ display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--font-d); font-weight:700; font-size:1.02rem;
  padding:.85rem 1.5rem; border-radius:9px;
  border:2px solid transparent; cursor:pointer;
  transition:transform .14s ease, box-shadow .2s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn svg{ flex:none; }
.btn-download{
  background:var(--red); color:#fff;
  box-shadow:0 10px 24px -10px rgba(229,9,20,.6);
}
.btn-download:hover{ background:var(--red-dark); transform:translateY(-2px); box-shadow:0 16px 30px -12px rgba(229,9,20,.65); }
.btn-web{
  background:#fff; color:var(--ink); border-color:var(--ink);
}
.btn-web:hover{ background:var(--ink); color:#fff; transform:translateY(-2px); }

/* device showcase image */
.showcase{
  margin:clamp(2.2rem,5vw,3.2rem) auto 0;
  max-width:700px;
}
.showcase img{
  width:100%; height:auto;
  border-radius:16px;
  box-shadow:0 30px 70px -28px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.04);
}

/* safety / feature strip */
.strip{
  list-style:none;
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:.6rem;
  margin:clamp(2rem,4.5vw,2.8rem) auto 0;
  max-width:760px;
}
.strip li{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--font-d); font-weight:600; font-size:.92rem;
  color:var(--ink);
  background:var(--red-tint);
  border:1px solid #f6d3d3;
  padding:.55rem 1rem; border-radius:11px;
  white-space:nowrap;
}
.ico{
  width:18px; height:18px; flex:none;
  fill:none; stroke:var(--red); stroke-width:2;
  stroke-linecap:round; stroke-linejoin:round;
}

/* ---------- what is netmirror ---------- */
.about{ padding:clamp(3rem,7vw,5rem) 1.3rem; }
.about-inner{ max-width:860px; margin:0 auto; }
.about-text{ max-width:720px; margin:clamp(1.4rem,3vw,2rem) auto 0; }
.about-text p{ color:var(--ink-2); font-size:clamp(1rem,1.7vw,1.1rem); line-height:1.75; }
.about-text p + p{ margin-top:1.1rem; }

.about-stats{
  display:grid; grid-template-columns:repeat(4,1fr);
  margin:clamp(2.2rem,4.5vw,3rem) auto 0; max-width:760px;
  background:var(--soft); border:1px solid var(--line); border-radius:18px; overflow:hidden;
}
.stat{ text-align:center; padding:1.5rem 1rem; }
.stat + .stat{ border-left:1px solid var(--line); }
.stat-n{
  display:block; font-family:var(--font-d); font-weight:800; letter-spacing:-.02em;
  font-size:clamp(1.8rem,3.6vw,2.5rem); line-height:1;
  background:linear-gradient(140deg,#ff5a3c,var(--red));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.stat-l{ display:block; font-size:.86rem; color:var(--muted); margin-top:.4rem; }

.about-ott-label{ text-align:center; color:var(--faint); font-size:.92rem; margin:clamp(2rem,4vw,2.6rem) 0 1rem; }
.ott-row{ display:flex; flex-wrap:wrap; justify-content:center; gap:.7rem 1.8rem; }
.ott-row span{ font-family:var(--font-d); font-weight:600; font-size:1rem; color:var(--muted); }

@media (max-width:560px){
  .about-stats{ grid-template-columns:1fr 1fr; }
  .stat{ border-left:none; }
  .stat:nth-child(even){ border-left:1px solid var(--line); }
  .stat:nth-child(n+3){ border-top:1px solid var(--line); }
}

/* ---------- device availability ---------- */
.devices{
  background:#f7f7f8;
  border-top:1px solid var(--line);
  padding:clamp(3rem,7vw,5rem) 1.3rem;
}
.devices__inner{ max-width:var(--maxw); margin:0 auto; }

.sec-title{
  font-family:var(--font-d); font-weight:800;
  font-size:clamp(1.7rem,3.6vw,2.5rem);
  letter-spacing:-.02em; text-align:center; color:var(--ink);
}
.sec-sub{
  text-align:center; color:var(--muted);
  max-width:640px; margin:.85rem auto 0;
  font-size:clamp(.98rem,1.6vw,1.1rem); line-height:1.6;
}

.dev-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1rem;
  margin-top:clamp(2rem,4vw,2.8rem);
}
.dev-card{
  position:relative;
  background:#fff; border:1px solid var(--line); border-radius:18px;
  padding:1.6rem 1.5rem;
  display:flex; flex-direction:column; gap:.85rem;
  box-shadow:0 6px 22px -14px rgba(20,20,40,.18);
  transition:transform .18s ease, box-shadow .22s ease, border-color .18s ease;
}
.dev-card:hover{ transform:translateY(-5px); box-shadow:0 24px 46px -22px rgba(20,20,40,.3); }
.dev-card.is-yours{
  border-color:var(--red);
  box-shadow:0 0 0 2px var(--red), 0 24px 48px -22px rgba(229,9,20,.4);
}

.dev-top{ display:flex; align-items:center; justify-content:space-between; }
.dev-ic{
  width:56px; height:56px; border-radius:16px;
  display:grid; place-items:center;
  background:linear-gradient(140deg, #ff5a3c 0%, var(--red) 70%);
  box-shadow:0 10px 20px -8px rgba(229,9,20,.5);
}
.dev-ic .ico{ width:28px; height:28px; stroke:#fff; stroke-width:1.9; }

.dev-tag{
  font-family:var(--font-d); font-weight:700;
  font-size:.7rem; letter-spacing:.04em; text-transform:uppercase;
  padding:.3rem .65rem; border-radius:999px;
}
.dev-tag.app{ background:var(--red-tint); color:var(--red-dark); }
.dev-tag.web{ background:#eaf0ff; color:#2f5bd6; }
.dev-tag.you{ background:var(--red); color:#fff; }

.dev-name{
  font-family:var(--font-d); font-weight:700; font-size:1.22rem;
  color:var(--ink); letter-spacing:-.01em;
}
.dev-desc{ font-size:.93rem; color:var(--muted); line-height:1.55; flex:1; }
.dev-desc strong{ color:var(--ink); font-weight:700; }

.dev-btn{
  display:flex; width:100%; align-items:center; justify-content:center; gap:.45rem;
  font-family:var(--font-d); font-weight:700; font-size:.97rem;
  padding:.75rem 1rem; border-radius:11px; margin-top:.3rem;
  border:2px solid transparent;
  transition:background .18s ease, color .18s ease, border-color .18s ease, transform .14s ease;
}
.dev-btn .ico{ width:18px; height:18px; }
.dev-btn.app{ background:var(--red); color:#fff; border-color:var(--red); }
.dev-btn.app .ico{ stroke:#fff; }
.dev-btn.app:hover{ background:var(--red-dark); border-color:var(--red-dark); transform:translateY(-1px); }
.dev-btn.web{ background:#fff; color:var(--ink); border-color:var(--ink); }
.dev-btn.web .ico{ stroke:var(--ink); }
.dev-btn.web:hover{ background:var(--ink); color:#fff; transform:translateY(-1px); }
.dev-btn.web:hover .ico{ stroke:#fff; }

/* ---------- how to use (tabs) ---------- */
.howto{ padding:clamp(3rem,7vw,5rem) 1.3rem; }
.howto__inner{ max-width:860px; margin:0 auto; }

.tabs{
  display:flex; flex-wrap:wrap; justify-content:center; gap:.6rem;
  margin-top:clamp(1.8rem,4vw,2.5rem);
}
.tab{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--font-d); font-weight:600; font-size:.98rem;
  padding:.7rem 1.25rem; border-radius:999px;
  border:1.5px solid var(--line); background:#fff; color:var(--ink-2);
  cursor:pointer;
  transition:background .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.tab .ico{ width:18px; height:18px; }
.tab:hover{ border-color:#e3b9b9; color:var(--ink); }
.tab.active{
  background:var(--red); border-color:var(--red); color:#fff;
  box-shadow:0 12px 24px -10px rgba(229,9,20,.5);
}
.tab.active .ico{ stroke:#fff; }

.panels{ margin-top:clamp(1.8rem,4vw,2.5rem); }
.panel{ display:none; }
.panel.active{ display:block; animation:panelfade .28s ease; }
@keyframes panelfade{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:none; } }

/* Option A: device preview + steps */
.howA{
  display:grid; grid-template-columns:1.05fr 1fr; gap:clamp(1.8rem,4vw,2.6rem);
  align-items:center;
  background:linear-gradient(180deg,#ffffff,#fbf6f6);
  border:1px solid var(--line); border-radius:24px;
  padding:clamp(1.6rem,3.5vw,2.4rem);
  box-shadow:0 18px 44px -28px rgba(20,20,40,.28);
}
.howA-mock img{ width:100%; height:auto; display:block; }

/* PC: landscape window (screenshot already has its own browser chrome) */
.howA-mock.win{
  border-radius:12px; overflow:hidden; border:1px solid #e3e3e3;
  box-shadow:0 28px 56px -26px rgba(0,0,0,.5);
}

/* TV: landscape with a dark bezel + little stand */
.howA-mock.tv{
  position:relative; padding:10px; margin-bottom:16px;
  border-radius:16px; border:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg,#15171f,#0a0b10);
  box-shadow:0 28px 56px -26px rgba(0,0,0,.55);
}
.howA-mock.tv img{ border-radius:7px; }
.howA-mock.tv::after{
  content:""; position:absolute; bottom:-16px; left:50%; transform:translateX(-50%);
  width:120px; height:12px; border-radius:0 0 10px 10px;
  background:linear-gradient(180deg,#15171f,#0d0f15);
}

/* Phone & iOS: portrait phone frame */
.howA-mock.phone{
  width:min(244px,76%); margin:0 auto; padding:8px;
  border-radius:34px; border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(160deg,#23283a,#0c0e15);
  box-shadow:0 32px 64px -26px rgba(0,0,0,.6);
}
.howA-mock.phone img{ border-radius:27px; }

.howA-steps h3{
  font-family:var(--font-d); font-weight:800; letter-spacing:-.01em;
  font-size:clamp(1.3rem,2.6vw,1.6rem); margin-bottom:1.2rem;
}
.howA-steps ol{ list-style:none; display:flex; flex-direction:column; gap:1rem; margin-bottom:1.6rem; }
.howA-steps li{ display:flex; gap:.85rem; align-items:flex-start; }
.howA-n{
  flex:none; width:32px; height:32px; border-radius:10px;
  background:var(--red-tint); color:var(--red-dark);
  font-family:var(--font-d); font-weight:800; font-size:.98rem;
  display:grid; place-items:center;
}
.howA-steps li b{ font-family:var(--font-d); font-weight:700; display:block; color:var(--ink); }
.howA-steps li p{ color:var(--muted); font-size:.93rem; line-height:1.5; }

.howA-btns{ display:flex; gap:.8rem; flex-wrap:wrap; }
.bigbtn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  font-family:var(--font-d); font-weight:700; font-size:1.02rem;
  padding:.95rem 1.5rem; border-radius:13px; border:2px solid var(--red);
  transition:background .16s ease, color .16s ease, border-color .16s ease, transform .14s ease;
}
.bigbtn .ico{ width:20px; height:20px; stroke-width:2.2; }
.bigbtn:hover{ transform:translateY(-2px); }
.bigbtn.fill{ background:var(--red); color:#fff; box-shadow:0 14px 28px -12px rgba(229,9,20,.6); }
.bigbtn.fill .ico{ stroke:#fff; }
.bigbtn.fill:hover{ background:var(--red-dark); border-color:var(--red-dark); }
.bigbtn.line{ background:#fff; color:var(--red); }
.bigbtn.line:hover{ background:var(--red-tint); }
.bigbtn small{ font-weight:600; opacity:.7; font-size:.78rem; }

@media (max-width:760px){
  .howA{ grid-template-columns:1fr; gap:1.6rem; }
}
@media (max-width:460px){
  .howA-btns{ width:100%; }
  .bigbtn{ width:100%; }
}

/* ---------- different versions ---------- */
.versions{ background:#f7f7f8; border-top:1px solid var(--line); padding:clamp(3rem,7vw,5rem) 1.3rem; }
.versions-inner{ max-width:var(--maxw); margin:0 auto; }
.ver-rows{
  background:#fff; border:1px solid var(--line); border-radius:18px; overflow:hidden;
  box-shadow:0 12px 34px -24px rgba(20,20,40,.3);
  margin-top:clamp(2rem,4vw,2.8rem);
}
.ver-row{ display:flex; align-items:center; gap:1.1rem; padding:1.25rem 1.4rem; }
.ver-row + .ver-row{ border-top:1px solid var(--line); }
.ver-row.is-new{ background:var(--red-tint); }
.ver-ic{
  width:48px; height:48px; border-radius:13px; flex:none;
  display:grid; place-items:center; background:var(--red-tint); color:var(--red);
}
.ver-row.is-new .ver-ic{ background:#fff; }
.ver-ic .ico{ width:24px; height:24px; }
.ver-body{ flex:1; min-width:0; }
.ver-name{
  font-family:var(--font-d); font-weight:700; font-size:1.1rem; color:var(--ink);
  letter-spacing:-.01em; display:flex; align-items:center; gap:10px;
}
.ver-desc{ font-size:.92rem; color:var(--muted); line-height:1.55; margin-top:3px; }
.ver-plat{
  flex:none; font-family:var(--font-d); font-weight:600; font-size:.82rem;
  color:var(--ink-2); background:var(--soft); border:1px solid var(--line);
  padding:7px 13px; border-radius:999px; white-space:nowrap;
}
.ver-tag{
  font-family:var(--font-d); font-weight:700; font-size:.66rem; letter-spacing:.05em;
  text-transform:uppercase; color:#fff; background:var(--red);
  padding:.25rem .55rem; border-radius:999px;
}
@media (max-width:600px){
  .ver-row{
    display:grid; grid-template-columns:auto 1fr;
    column-gap:1rem; row-gap:.6rem; align-items:start;
  }
  .ver-ic{ grid-row:1 / span 2; }
  .ver-body{ grid-column:2; }
  .ver-plat{ grid-column:2; justify-self:start; }
}

/* ---------- working links ---------- */
.links{ padding:clamp(3rem,7vw,5rem) 1.3rem; }
.links-inner{ max-width:var(--maxw); margin:0 auto; }
.links-grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:1rem; margin-top:clamp(2rem,4vw,2.8rem);
}
.link-card{
  background:#fff; border:1px solid var(--line); border-radius:16px;
  padding:1.7rem 1.5rem; text-align:center;
  box-shadow:0 6px 22px -14px rgba(20,20,40,.18);
}
.link-status{
  display:inline-flex; align-items:center; gap:.45rem;
  font-family:var(--font-d); font-weight:700; font-size:.8rem;
  padding:.35rem .8rem; border-radius:999px;
}
.link-dot{ width:9px; height:9px; border-radius:50%; flex:none; }
.link-card.live{ border-color:#bfe6cd; }
.link-card.live .link-status{ background:#e9f7ef; color:#15803d; }
.link-card.live .link-dot{ background:#16a34a; animation:livepulse 2s ease-out infinite; }
@keyframes livepulse{ 0%{ box-shadow:0 0 0 0 rgba(22,163,74,.4); } 70%{ box-shadow:0 0 0 7px rgba(22,163,74,0); } 100%{ box-shadow:0 0 0 0 rgba(22,163,74,0); } }
.link-card.dead{ background:var(--soft); }
.link-card.dead .link-status{ background:#efeaea; color:#8a6a6a; }
.link-card.dead .link-dot{ background:#b7adad; }
.link-domain{
  font-family:var(--font-d); font-weight:800; font-size:1.6rem; letter-spacing:-.02em;
  color:var(--ink); margin:.95rem 0;
}
.link-card.dead .link-domain{ color:var(--faint); text-decoration:line-through; }
.link-btn{
  display:flex; width:100%; align-items:center; justify-content:center; gap:.4rem;
  font-family:var(--font-d); font-weight:700; font-size:.98rem;
  padding:.8rem 1rem; border-radius:11px;
  background:var(--red); color:#fff;
  box-shadow:0 12px 24px -12px rgba(229,9,20,.55);
  transition:background .16s ease, transform .14s ease;
}
.link-btn:hover{ background:var(--red-dark); transform:translateY(-2px); }
.link-note{ display:block; font-size:.92rem; color:var(--muted); }

/* ---------- why people use ---------- */
.why{ background:#f7f7f8; border-top:1px solid var(--line); padding:clamp(3rem,7vw,5rem) 1.3rem; }
.why-inner{ max-width:var(--maxw); margin:0 auto; }
.why-text{ max-width:720px; margin:clamp(1.4rem,3vw,2rem) auto 0; }
.why-text p{ color:var(--ink-2); font-size:clamp(1rem,1.7vw,1.1rem); line-height:1.75; }
.why-text p + p{ margin-top:1.1rem; }

/* ---------- features ---------- */
.features{ padding:clamp(3rem,7vw,5rem) 1.3rem; }
.features-inner{ max-width:var(--maxw); margin:0 auto; }
.features-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:clamp(1.8rem,3.4vw,2.6rem); margin-top:clamp(2rem,4vw,2.8rem);
}
.f-chip{
  width:48px; height:48px; border-radius:13px; display:grid; place-items:center;
  background:var(--red-tint); color:var(--red); margin-bottom:.9rem;
}
.f-chip .ico{ width:24px; height:24px; }
.feature h3{
  font-family:var(--font-d); font-weight:700; font-size:1.1rem;
  letter-spacing:-.01em; color:var(--ink); margin-bottom:.35rem;
}
.feature p{ color:var(--muted); font-size:.93rem; line-height:1.6; }

@media (max-width:860px){ .features-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .features-grid{ grid-template-columns:1fr; } }

/* ---------- is it safe ---------- */
.safe{ background:#f7f7f8; border-top:1px solid var(--line); padding:clamp(3rem,7vw,5rem) 1.3rem; }
.safe-inner{ max-width:var(--maxw); margin:0 auto; }

.safe-banner{
  display:flex; align-items:center; gap:1.1rem;
  max-width:840px; margin:clamp(1.8rem,4vw,2.4rem) auto 0;
  background:#e9f7ef; border:1px solid #bfe6cd; border-radius:16px;
  padding:1.3rem 1.5rem;
}
.sb-ic{
  width:54px; height:54px; border-radius:50%; flex:none;
  background:#16a34a; display:grid; place-items:center;
  box-shadow:0 10px 20px -8px rgba(22,163,74,.55);
}
.sb-ic .ico{ width:28px; height:28px; stroke:#fff; }
.sb-text h3{ font-family:var(--font-d); font-weight:800; font-size:1.2rem; color:#15803d; letter-spacing:-.01em; }
.sb-text p{ color:#2f6b48; font-size:.95rem; line-height:1.55; margin-top:.25rem; }

.safe-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:clamp(1.6rem,3vw,2.3rem); margin-top:clamp(2rem,4vw,2.8rem);
}
.sp-ic{ display:block; margin-bottom:.6rem; }
.sp-ic .ico{ width:26px; height:26px; stroke:#16a34a; }
.safe-point h4{ font-family:var(--font-d); font-weight:700; font-size:1.05rem; color:var(--ink); letter-spacing:-.01em; margin-bottom:.3rem; }
.safe-point p{ color:var(--muted); font-size:.93rem; line-height:1.6; }

@media (max-width:860px){ .safe-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .safe-grid{ grid-template-columns:1fr; } .safe-banner{ align-items:flex-start; } }

/* ---------- ui showcase ---------- */
.ui{ padding:clamp(3rem,7vw,5rem) 1.3rem; }
.ui-inner{ max-width:var(--maxw); margin:0 auto; }
.ui-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:clamp(1.2rem,2.6vw,1.9rem); margin-top:clamp(2rem,4vw,2.8rem);
}
.ui-shot{ margin:0; }
.ui-shot img{
  width:100%; height:auto; display:block;
  border-radius:14px; border:1px solid var(--line);
  box-shadow:0 16px 38px -22px rgba(0,0,0,.45);
}
.ui-shot figcaption{
  text-align:center; font-family:var(--font-d); font-weight:600;
  font-size:.9rem; color:var(--ink-2); margin-top:.75rem;
}

@media (max-width:860px){ .ui-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .ui-grid{ grid-template-columns:1fr; } }

/* ---------- changelog ---------- */
.changelog{ background:#f7f7f8; border-top:1px solid var(--line); padding:clamp(3rem,7vw,5rem) 1.3rem; }
.cl-inner{ max-width:760px; margin:0 auto; }
.cl-list{ display:flex; flex-direction:column; gap:.8rem; margin-top:clamp(2rem,4vw,2.6rem); }
.cl-item{
  background:#fff; border:1px solid var(--line); border-radius:14px; overflow:hidden;
  box-shadow:0 6px 22px -16px rgba(20,20,40,.18);
}
.cl-item summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; gap:.7rem;
  padding:1.05rem 1.3rem;
}
.cl-item summary::-webkit-details-marker{ display:none; }
.cl-ver{ font-family:var(--font-d); font-weight:800; font-size:1.08rem; color:var(--ink); letter-spacing:-.01em; }
.cl-tag{ font-family:var(--font-d); font-weight:700; font-size:.66rem; letter-spacing:.05em; text-transform:uppercase; background:var(--red); color:#fff; padding:.26rem .55rem; border-radius:999px; }
.cl-tag.alt{ background:var(--red-tint); color:var(--red-dark); }
.cl-chev{ width:20px; height:20px; margin-left:auto; color:var(--faint); flex:none; transition:transform .22s ease; }
.cl-item[open] .cl-chev{ transform:rotate(180deg); }
.cl-item[open] summary{ border-bottom:1px solid var(--line); }

.cl-body{ padding:.2rem 1.3rem 1.3rem; }
.cl-intro{ color:var(--ink-2); font-size:.96rem; line-height:1.6; margin:.8rem 0 .2rem; }
.cl-body h3{ font-family:var(--font-d); font-weight:700; font-size:.78rem; letter-spacing:.05em; text-transform:uppercase; color:var(--red-dark); margin:1rem 0 .5rem; }
.cl-body ul{ list-style:none; display:flex; flex-direction:column; gap:.5rem; }
.cl-body li{ color:var(--ink-2); font-size:.95rem; line-height:1.5; }
.cl-note{ color:var(--muted); font-size:.9rem; line-height:1.55; margin-top:.9rem; padding-top:.8rem; border-top:1px dashed var(--line); }

/* ---------- user reviews ---------- */
.reviews{ padding:clamp(3rem,7vw,5rem) 1.3rem; }
.rev-inner{ max-width:var(--maxw); margin:0 auto; }
.rev-rating{ text-align:center; color:var(--muted); font-size:1rem; margin-top:.9rem; }
.rev-rating-stars{ color:#f5a623; letter-spacing:2px; }
.rev-rating strong{ color:var(--ink); font-family:var(--font-d); font-weight:800; font-size:1.1rem; }
.rev-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.2rem; margin-top:clamp(2rem,4vw,2.6rem);
}
.rev-card{
  background:#fff; border:1px solid var(--line); border-radius:16px;
  padding:1.5rem; display:flex; flex-direction:column; gap:.85rem;
  box-shadow:0 6px 22px -16px rgba(20,20,40,.18);
}
.rev-stars{ color:#f5a623; font-size:1.05rem; letter-spacing:2px; }
.rev-stars .dim{ color:#dcdce0; }
.rev-text{ color:var(--ink-2); font-size:.95rem; line-height:1.6; flex:1; }
.rev-author{ display:flex; align-items:center; gap:.7rem; }
.rev-avatar{
  width:42px; height:42px; border-radius:50%; flex:none;
  display:grid; place-items:center; color:#fff;
  font-family:var(--font-d); font-weight:700; font-size:1.05rem;
}
.rev-name{ display:block; font-family:var(--font-d); font-weight:700; font-size:.95rem; color:var(--ink); }
.rev-meta{ display:block; font-size:.82rem; color:var(--muted); }

@media (max-width:860px){ .rev-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .rev-grid{ grid-template-columns:1fr; } }

/* ---------- faq ---------- */
.faq{ background:#f7f7f8; border-top:1px solid var(--line); padding:clamp(3rem,7vw,5rem) 1.3rem; }
.faq-inner{ max-width:760px; margin:0 auto; }
.faq-list{ display:flex; flex-direction:column; gap:.7rem; margin-top:clamp(2rem,4vw,2.6rem); }
.faq-item{
  background:#fff; border:1px solid var(--line); border-radius:12px; overflow:hidden;
  box-shadow:0 6px 22px -16px rgba(20,20,40,.18);
}
.faq-item summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; gap:1rem; padding:1.05rem 1.3rem;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-q{ font-family:var(--font-d); font-weight:700; font-size:1rem; color:var(--ink); flex:1; line-height:1.4; }
.faq-chev{ width:20px; height:20px; color:var(--faint); flex:none; transition:transform .22s ease; }
.faq-item[open] .faq-chev{ transform:rotate(180deg); }
.faq-item[open] summary{ border-bottom:1px solid var(--line); }
.faq-a{ padding:.6rem 1.3rem 1.2rem; }
.faq-a p{ color:var(--muted); font-size:.95rem; line-height:1.65; }

/* ---------- conclusion ---------- */
.conclusion{ padding:clamp(3rem,7vw,5rem) 1.3rem; }
.concl-inner{ max-width:760px; margin:0 auto; }
.concl-body{ max-width:720px; margin:clamp(1.4rem,3vw,2rem) auto 0; }
.concl-body p{ color:var(--ink-2); font-size:clamp(1rem,1.7vw,1.1rem); line-height:1.75; }
.concl-body p + p{ margin-top:1.1rem; }

/* ---------- sub pages (legal / info) ---------- */
.page-head{ background:#fff; border-bottom:1px solid var(--line); padding:.9rem 1.3rem; position:sticky; top:0; z-index:20; }
.page-head .bar{ max-width:var(--maxw); margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.page-head .logo{ margin-bottom:0; }
.page-home{ font-family:var(--font-d); font-weight:600; font-size:.92rem; color:var(--muted); }
.page-home:hover{ color:var(--red); }
.page{ padding:clamp(2.5rem,5vw,4rem) 1.3rem clamp(3rem,6vw,4.5rem); }
.page-inner{ max-width:760px; margin:0 auto; }
.page-title{ font-family:var(--font-d); font-weight:800; letter-spacing:-.02em; font-size:clamp(1.9rem,4vw,2.6rem); color:var(--ink); }
.page-updated{ color:var(--faint); font-size:.9rem; margin-top:.5rem; }
.page-content{ margin-top:1.8rem; }
.page-content h3{ font-family:var(--font-d); font-weight:700; font-size:1.2rem; color:var(--ink); letter-spacing:-.01em; margin:1.9rem 0 .6rem; }
.page-content p{ color:var(--ink-2); font-size:1rem; line-height:1.75; margin-bottom:1rem; }
.page-content ul{ margin:.2rem 0 1.1rem 1.2rem; color:var(--ink-2); line-height:1.7; }
.page-content li{ margin-bottom:.5rem; }
.page-content a{ color:var(--red); font-weight:600; }
.page-content a:hover{ text-decoration:underline; }

/* ---------- footer ---------- */
.site-footer{ background:#141414; color:#cfd2da; padding:clamp(2.6rem,5vw,3.6rem) 1.3rem 1.7rem; }
.foot-inner{ max-width:var(--maxw); margin:0 auto; }
.foot-top{ display:flex; justify-content:space-between; gap:2.5rem; flex-wrap:wrap; }
.foot-brand{ max-width:380px; }
.foot-logo{ display:inline-flex; align-items:center; gap:.55rem; }
.foot-logo img{ filter:drop-shadow(0 3px 8px rgba(229,9,20,.4)); }
.foot-logo span{ font-family:var(--font-d); font-weight:800; font-size:1.3rem; color:#fff; letter-spacing:-.01em; }
.foot-logo span b{ color:var(--red); font-weight:800; }
.foot-desc{ margin-top:.9rem; font-size:.92rem; line-height:1.65; color:#9aa0ad; }
.foot-cols{ display:flex; gap:3rem; flex-wrap:wrap; }
.foot-col h3{ font-family:var(--font-d); font-weight:700; font-size:.95rem; color:#fff; margin-bottom:.85rem; }
.foot-col a{ display:block; font-size:.9rem; color:#9aa0ad; margin-bottom:.6rem; transition:color .15s ease; }
.foot-col a:hover{ color:#fff; }
.foot-disclaimer{ margin-top:2.2rem; padding-top:1.4rem; border-top:1px solid rgba(255,255,255,.1); font-size:.82rem; line-height:1.65; color:#787e8a; }
.foot-bottom{ margin-top:1.2rem; font-size:.85rem; color:#787e8a; }

@media (max-width:640px){
  .foot-top{ gap:1.8rem; }
  .foot-cols{ gap:2.5rem; }
}

/* ---------- responsive ---------- */
@media (max-width:900px){
  .dev-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:680px){
  .strip li{ font-size:.86rem; padding:.5rem .85rem; }
}
@media (max-width:520px){
  .dev-grid{ grid-template-columns:1fr; }
}
@media (max-width:540px){
  .strip{ gap:.5rem; }
  .strip li{
    flex:0 1 calc(50% - .25rem);
    justify-content:center; text-align:center;
    white-space:normal; line-height:1.2;
    padding:.6rem .55rem;
  }
}
@media (max-width:460px){
  .btn{ width:100%; justify-content:center; }
  .cta{ width:100%; }
}

@media (prefers-reduced-motion:reduce){
  *{ scroll-behavior:auto; }
  .btn:hover{ transform:none; }
}
