/* ==========================================================
   Page 05 — HHPoker Client Download
   Premium editorial + client passport layout
   ========================================================== */

:root{
  --ink:#1a2422;
  --muted:#66716e;
  --paper:#fbfcf8;
  --paper-2:#f2f3ed;
  --line:#dfe2d8;
  --deep:#111918;
  --deep-2:#182422;
  --deep-3:#22312e;
  --emerald:#1aa287;
  --mint:#57d2b8;
  --mint-soft:#dff4ed;
  --cream:#eee9dd;
  --steel:#dfe7e3;
  --container:1180px;
}

*,
*::before,
*::after{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-padding-top:88px;
}

body{
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:Arial,"Microsoft YaHei","PingFang SC",sans-serif;
  font-size:16px;
  line-height:1.82;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

body.menu-open{overflow:hidden}

img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit}
p,h1,h2,h3,figure,ol,ul,dl,dd{margin-top:0}
p:last-child,figure:last-child{margin-bottom:0}

svg{
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.container{
  width:min(calc(100% - 44px),var(--container));
  margin-inline:auto;
}

.skip-link{
  position:fixed;
  z-index:9999;
  left:16px;
  top:12px;
  padding:10px 14px;
  color:#081d19;
  background:var(--mint);
  border-radius:9px;
  transform:translateY(-180%);
}
.skip-link:focus{transform:none}

:focus-visible{
  outline:3px solid var(--mint);
  outline-offset:4px;
}

/* Header */
.site-header{
  position:sticky;
  z-index:1000;
  top:0;
  height:76px;
  color:#e4ecea;
  background:rgba(17,25,24,.95);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(16px);
  transition:box-shadow .2s ease,background .2s ease;
}
.site-header.scrolled{
  background:rgba(14,21,20,.99);
  box-shadow:0 14px 36px rgba(0,0,0,.18);
}

.header-grid{
  width:min(calc(100% - 44px),1320px);
  height:100%;
  margin-inline:auto;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:28px;
  align-items:center;
}

.brand{display:inline-flex;align-items:center}
.brand img,
.footer-brand img{
  width:auto;
  height:40px;
  max-width:176px;
  object-fit:contain;
}

.desktop-nav{
  display:flex;
  justify-content:center;
  gap:28px;
}
.desktop-nav a{
  color:#bbc8c5;
  font-size:13px;
  font-weight:800;
  transition:color .2s ease;
}
.desktop-nav a:hover{color:#fff}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.header-cta{
  min-height:44px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  color:#08201b;
  background:var(--mint);
  font-size:13px;
  font-weight:900;
  transition:transform .2s ease,background .2s ease;
}
.header-cta:hover{
  transform:translateY(-2px);
  background:#79dec9;
}
.menu-toggle,.mobile-nav{display:none}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg,#f8f9f4 0%,#f8f9f4 58%,#eaece5 58%,#eaece5 100%);
}
.hero::before{
  content:"";
  position:absolute;
  left:58%;
  top:0;
  bottom:0;
  width:1px;
  background:#d9ddd3;
}
.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:#dfe2d9;
}

.hero-wrap{
  width:min(calc(100% - 44px),1240px);
  min-height:690px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
  gap:78px;
  align-items:center;
  padding:60px 0 62px;
}

.hero-copy{
  position:relative;
  max-width:590px;
  padding-left:58px;
}
.hero-number{
  position:absolute;
  left:0;
  top:4px;
  color:#a9aeaa;
  font-size:13px;
  font-weight:900;
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  letter-spacing:.18em;
}
.hero-number::after{
  content:"";
  display:block;
  width:1px;
  height:58px;
  margin:15px auto 0;
  background:#cfd4cd;
}

.eyebrow,
.section-label{
  margin-bottom:15px;
  color:#168a75;
  font-size:10px;
  font-weight:900;
  letter-spacing:.15em;
  line-height:1.2;
}
.section-label-light{color:#6bdcc7}

.hero h1{
  margin-bottom:24px;
  color:#192321;
  font-size:clamp(50px,5.4vw,75px);
  font-weight:800;
  letter-spacing:-.06em;
  line-height:.98;
}
.hero h1 span{color:#0d8d75}

.hero-lead{
  max-width:590px;
  margin-bottom:31px;
  color:#5d6966;
  font-size:17px;
  line-height:1.86;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:30px;
}
.button{
  min-height:52px;
  padding:0 21px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:10px;
  font-size:14px;
  font-weight:900;
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}
.button svg{width:18px;height:18px}
.button-dark{
  color:#fff;
  background:#151e1d;
}
.button-dark:hover{
  transform:translateY(-2px);
  background:#24332f;
}
.button-line{
  color:#44504d;
  border:1px solid #cbd0c8;
  background:rgba(255,255,255,.52);
}
.button-line:hover{
  transform:translateY(-2px);
  border-color:#9fb6af;
}

.hero-notes{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.hero-notes span{
  padding:6px 10px;
  color:#64706d;
  border:1px solid #d3d8d0;
  border-radius:999px;
  background:rgba(255,255,255,.55);
  font-size:10px;
  font-weight:800;
}

.hero-gallery{
  position:relative;
  min-height:535px;
  display:grid;
  place-items:center;
}
.hero-gallery::before{
  content:"";
  position:absolute;
  width:460px;
  height:460px;
  border:1px solid rgba(29,102,91,.12);
  border-radius:50%;
}
.hero-gallery::after{
  content:"";
  position:absolute;
  width:330px;
  height:330px;
  border-radius:50%;
  background:rgba(26,162,135,.06);
}

.gallery-main{
  position:relative;
  z-index:3;
  width:min(88%,590px);
  min-height:385px;
  margin:0;
  padding:50px 26px 26px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:30px;
  background:linear-gradient(145deg,#141f1d,#22322e);
  box-shadow:0 34px 72px rgba(39,51,46,.20);
  transform:rotate(-1.5deg);
}
.gallery-top{
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:48px;
  padding:0 17px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#9eb0ac;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:9px;
  font-weight:900;
  letter-spacing:.1em;
}
.gallery-top strong{color:#65dac4}
.gallery-main img{
  width:100%;
  max-height:300px;
  object-fit:contain;
  filter:drop-shadow(0 22px 32px rgba(0,0,0,.24));
}

.gallery-mini{
  position:absolute;
  z-index:5;
  margin:0;
  padding:12px;
  display:grid;
  place-items:center;
  border:9px solid #eaece5;
  border-radius:21px;
  background:#fff;
  box-shadow:0 18px 40px rgba(44,55,50,.12);
}
.gallery-mini img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.gallery-mini-one{
  left:-2%;
  bottom:4%;
  width:190px;
  height:145px;
  transform:rotate(5deg);
}
.gallery-mini-two{
  right:-3%;
  top:8%;
  width:170px;
  height:125px;
  transform:rotate(-5deg);
}
.gallery-tag{
  position:absolute;
  z-index:6;
  right:3%;
  bottom:9%;
  min-width:180px;
  padding:13px 15px;
  border:1px solid #cdd5cf;
  border-radius:14px;
  background:rgba(252,253,249,.94);
  box-shadow:0 16px 34px rgba(38,55,49,.10);
}
.gallery-tag small,
.gallery-tag strong{display:block}
.gallery-tag small{
  margin-bottom:3px;
  color:#0e8a72;
  font-size:8px;
  font-weight:900;
  letter-spacing:.13em;
}
.gallery-tag strong{
  color:#31403c;
  font-size:12px;
}

/* Selector */
.client-selector{
  padding:108px 0;
  background:#fff;
}

.selector-head{
  margin-bottom:42px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,520px);
  gap:58px;
  align-items:end;
}
.selector-head h2,
.inside-copy h2,
.install-head h2,
.difference-head h2,
.update-copy h2,
.first-use-copy h2,
.faq-intro h2,
.final-copy h2{
  margin-bottom:15px;
  color:var(--ink);
  font-size:clamp(32px,4vw,49px);
  font-weight:800;
  letter-spacing:-.04em;
  line-height:1.17;
}
.selector-head > p,
.install-head > p,
.difference-head > p,
.faq-intro > p:nth-of-type(2){
  color:var(--muted);
}

.client-passports{
  display:grid;
  grid-template-columns:1.18fr .91fr .91fr;
  gap:14px;
}
.passport{
  min-height:420px;
  padding:25px 25px 24px;
  display:flex;
  flex-direction:column;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.passport-android{
  color:#eaf4f1;
  background:#182422;
  border-color:#182422;
}
.passport-iphone{background:#eef4f1}
.passport-ipad{background:#f3eee4}

.passport-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:18px;
  border-bottom:1px solid rgba(86,105,99,.18);
}
.passport-android .passport-top{border-color:rgba(255,255,255,.10)}
.passport-index{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border:1px solid #c8d8d2;
  border-radius:50%;
  color:#0f816d;
  font-size:10px;
  font-weight:900;
}
.passport-android .passport-index{
  color:#67ddc7;
  border-color:rgba(103,221,199,.38);
}
.passport-os{
  color:#7a8a86;
  font-size:8px;
  font-weight:900;
  letter-spacing:.14em;
}
.passport-android .passport-os{color:#79a09a}

.passport-body{
  padding-top:30px;
  flex:1;
}
.passport h3{
  margin-bottom:13px;
  color:#22312e;
  font-size:26px;
  font-weight:800;
  letter-spacing:-.03em;
}
.passport-android h3{color:#fff}
.passport p{
  color:#60706d;
  font-size:14px;
}
.passport-android p{color:#b7c8c4}
.passport ul{
  margin:22px 0 0;
  padding:0;
  list-style:none;
}
.passport li{
  position:relative;
  margin:8px 0;
  padding-left:18px;
  color:#566762;
  font-size:12px;
}
.passport-android li{color:#d1dfdc}
.passport li::before{
  content:"";
  position:absolute;
  left:0;
  top:.75em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--mint);
}

.passport > a{
  margin-top:24px;
  min-height:45px;
  padding:0 13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid rgba(92,111,105,.18);
  color:#0c816c;
  font-size:12px;
  font-weight:900;
}
.passport-android > a{
  color:#65dbc5;
  border-top-color:rgba(255,255,255,.10);
}
.passport > a span{transition:transform .2s ease}
.passport > a:hover span{transform:translateX(4px)}

/* Inside */
.inside-client{
  padding:112px 0;
  color:#e9f3f1;
  background:#111918;
}
.inside-grid{
  width:min(calc(100% - 44px),1280px);
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr);
  gap:76px;
  align-items:center;
}
.inside-copy h2{color:#fff}
.inside-copy > p:nth-of-type(2){
  color:#aebfbb;
  margin-bottom:29px;
}
.inside-list{
  border-top:1px solid rgba(255,255,255,.10);
}
.inside-list > div{
  padding:17px 0;
  display:grid;
  grid-template-columns:36px 1fr;
  gap:12px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.inside-list b{
  color:#65dbc5;
  font-size:9px;
}
.inside-list strong{
  display:block;
  margin-bottom:3px;
  color:#f2f7f5;
  font-size:15px;
}
.inside-list p{
  color:#99aea9;
  font-size:12px;
}

.inside-canvas{
  position:relative;
  min-height:500px;
}
.canvas-main{
  position:absolute;
  left:0;
  top:0;
  width:86%;
  height:430px;
  padding:16px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  background:#1b2825;
}
.canvas-main img{
  width:100%;
  max-height:100%;
  object-fit:contain;
  border-radius:16px;
}
.canvas-side{
  position:absolute;
  right:0;
  bottom:0;
  width:45%;
  height:200px;
  padding:13px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:9px solid #111918;
  border-radius:22px;
  background:#22322e;
}
.canvas-side img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.canvas-caption{
  position:absolute;
  left:5%;
  bottom:2%;
  z-index:3;
  min-width:190px;
  padding:13px 15px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:13px;
  background:rgba(18,29,27,.90);
}
.canvas-caption small,
.canvas-caption strong{display:block}
.canvas-caption small{
  margin-bottom:3px;
  color:#65dbc5;
  font-size:8px;
  font-weight:900;
  letter-spacing:.13em;
}
.canvas-caption strong{
  color:#e8f0ee;
  font-size:12px;
}

/* Install */
.install-section{
  padding:110px 0;
  background:#f7f8f3;
}
.install-head{
  max-width:760px;
  margin-bottom:42px;
}

.install-board{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  border-top:1px solid #d4d9d0;
  border-left:1px solid #d4d9d0;
}
.install-board article{
  min-height:200px;
  padding:25px 22px;
  border-right:1px solid #d4d9d0;
  border-bottom:1px solid #d4d9d0;
}
.install-no{
  display:block;
  margin-bottom:22px;
  color:#0f8b74;
  font-size:11px;
  font-weight:900;
}
.install-board small{
  display:block;
  margin-bottom:5px;
  color:#7b8884;
  font-size:8px;
  font-weight:900;
  letter-spacing:.13em;
}
.install-board h3{
  margin-bottom:7px;
  color:#233330;
  font-size:18px;
}
.install-board p{
  color:#65716d;
  font-size:12px;
}

.install-focus{
  margin-top:42px;
  min-height:390px;
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  overflow:hidden;
  border-radius:28px;
  background:#202d2a;
}
.focus-image{
  min-height:390px;
  padding:36px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 50% 50%,rgba(87,210,184,.12),transparent 46%),
    #16211f;
}
.focus-image img{
  max-height:300px;
  object-fit:contain;
}
.focus-copy{
  padding:46px 50px;
  color:#eaf3f1;
}
.focus-copy .section-label{color:#65dbc5}
.focus-copy h3{
  margin-bottom:24px;
  color:#fff;
  font-size:31px;
  line-height:1.25;
}
.focus-copy dl{
  margin:0;
  border-top:1px solid rgba(255,255,255,.10);
}
.focus-copy dl > div{
  padding:17px 0;
  display:grid;
  grid-template-columns:110px 1fr;
  gap:16px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.focus-copy dt{
  color:#6fdcc7;
  font-size:12px;
  font-weight:900;
}
.focus-copy dd{
  margin:0;
  color:#b5c5c1;
  font-size:13px;
}

/* Difference */
.client-difference{
  padding:108px 0;
  background:#fff;
}
.difference-head{
  max-width:780px;
  margin-bottom:38px;
}
.difference-table-wrap{
  overflow-x:auto;
  border:1px solid var(--line);
  border-radius:18px;
  -webkit-overflow-scrolling:touch;
}
.difference-table-wrap table{
  width:100%;
  min-width:820px;
  border-collapse:collapse;
}
.difference-table-wrap th,
.difference-table-wrap td{
  padding:20px 22px;
  text-align:left;
  border-bottom:1px solid var(--line);
}
.difference-table-wrap thead th{
  color:#53625e;
  background:#edf2ed;
  font-size:11px;
  font-weight:900;
}
.difference-table-wrap tbody th{
  color:#23322f;
  font-size:13px;
}
.difference-table-wrap td{
  color:#61706d;
  font-size:13px;
}
.difference-table-wrap tbody tr:last-child > *{border-bottom:0}

/* Update */
.update-section{
  padding:96px 0;
  color:#eaf4f1;
  background:#20302d;
}
.update-layout{
  display:grid;
  grid-template-columns:minmax(270px,.72fr) minmax(0,1.28fr);
  gap:65px;
  align-items:center;
}
.update-copy h2{color:#fff}
.update-copy > p:nth-of-type(2){color:#aebfba}
.text-link-light{
  margin-top:22px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#68dcc7;
  font-size:12px;
  font-weight:900;
}
.text-link-light span{transition:transform .2s ease}
.text-link-light:hover span{transform:translateX(4px)}

.update-steps{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-top:1px solid rgba(255,255,255,.10);
  border-left:1px solid rgba(255,255,255,.10);
}
.update-steps article{
  min-height:150px;
  padding:22px 23px;
  border-right:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.update-steps span{
  display:block;
  margin-bottom:7px;
  color:#64dac4;
  font-size:9px;
  font-weight:900;
}
.update-steps h3{
  margin-bottom:6px;
  color:#fff;
  font-size:17px;
}
.update-steps p{
  color:#9fb2ad;
  font-size:12px;
}

/* First use */
.first-use{
  padding:108px 0;
  background:#eef1ea;
}
.first-use-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:76px;
  align-items:center;
}
.first-use-copy > p:nth-of-type(2){
  margin-bottom:28px;
  color:var(--muted);
}
.first-use-copy ol{
  margin:0;
  padding:0;
  list-style:none;
  border-top:1px solid #d0d7cf;
}
.first-use-copy li{
  min-height:62px;
  display:grid;
  grid-template-columns:38px 1fr;
  align-items:center;
  gap:12px;
  border-bottom:1px solid #d0d7cf;
}
.first-use-copy li span{
  color:#0f8b74;
  font-size:10px;
  font-weight:900;
}
.first-use-copy li strong{
  color:#273633;
  font-size:14px;
}

.first-use-media{
  position:relative;
  min-height:480px;
  display:grid;
  place-items:center;
}
.first-use-media::before{
  content:"";
  position:absolute;
  width:380px;
  height:380px;
  border:1px solid #c5d2cb;
  border-radius:50%;
}
.first-use-frame{
  position:relative;
  z-index:2;
  width:min(100%,520px);
  min-height:320px;
  padding:28px;
  display:grid;
  place-items:center;
  border-radius:27px;
  background:#1a2724;
  box-shadow:0 28px 60px rgba(34,53,47,.13);
}
.first-use-frame img{
  max-height:285px;
  object-fit:contain;
}
.first-use-note{
  position:absolute;
  z-index:4;
  right:0;
  bottom:14px;
  width:245px;
  padding:17px 19px;
  border:1px solid #cbd5cf;
  border-radius:15px;
  background:rgba(255,255,255,.95);
  box-shadow:0 16px 34px rgba(34,52,47,.09);
}
.first-use-note small{
  display:block;
  margin-bottom:4px;
  color:#0d8872;
  font-size:8px;
  font-weight:900;
  letter-spacing:.13em;
}
.first-use-note p{
  color:#45534f;
  font-size:12px;
  font-weight:700;
}

/* FAQ */
.faq-section{
  padding:110px 0;
  background:#fff;
}
.faq-layout{
  display:grid;
  grid-template-columns:minmax(280px,.7fr) minmax(0,1.3fr);
  gap:80px;
  align-items:start;
}
.faq-intro{
  position:sticky;
  top:108px;
}
.faq-image{
  margin-top:27px;
  min-height:180px;
  padding:20px;
  display:grid;
  place-items:center;
  border-radius:19px;
  background:#192522;
}
.faq-image img{
  max-height:180px;
  object-fit:contain;
}

.faq-list{border-top:1px solid var(--line)}
.faq-item{border-bottom:1px solid var(--line)}
.faq-item h3{margin:0}
.faq-item button{
  width:100%;
  min-height:82px;
  padding:20px 0;
  display:grid;
  grid-template-columns:1fr 30px;
  gap:18px;
  align-items:center;
  text-align:left;
  border:0;
  background:transparent;
  cursor:pointer;
}
.faq-item button span{
  color:#263633;
  font-size:16px;
  font-weight:800;
}
.faq-item button i{
  position:relative;
  width:28px;
  height:28px;
  border:1px solid #aec9c0;
  border-radius:50%;
}
.faq-item button i::before,
.faq-item button i::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:10px;
  height:1px;
  background:#0f866f;
  transform:translate(-50%,-50%);
  transition:transform .2s ease;
}
.faq-item button i::after{
  transform:translate(-50%,-50%) rotate(90deg);
}
.faq-item button[aria-expanded="true"] i::after{
  transform:translate(-50%,-50%);
}
.faq-answer{
  padding:0 50px 23px 0;
}
.faq-answer p{
  color:#61706d;
  font-size:14px;
}

/* Final */
.final-download{
  padding:78px 0;
  color:#eaf3f1;
  background:#111918;
}
.final-shell{
  width:min(calc(100% - 44px),1180px);
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(270px,.68fr) minmax(0,1.32fr);
  gap:62px;
  align-items:center;
}
.final-copy h2{color:#fff}
.final-copy > p:nth-of-type(2){color:#9fb0ac}
.final-options{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.final-options a{
  min-height:122px;
  padding:21px 19px;
  display:grid;
  grid-template-columns:1fr auto;
  align-content:center;
  border:1px solid rgba(255,255,255,.11);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}
.final-options a:hover{
  transform:translateY(-4px);
  border-color:rgba(87,210,184,.42);
  background:rgba(87,210,184,.06);
}
.final-options small{
  grid-column:1 / -1;
  margin-bottom:5px;
  color:#64dac4;
  font-size:8px;
  font-weight:900;
  letter-spacing:.12em;
}
.final-options strong{
  color:#fff;
  font-size:13px;
}
.final-options span{color:#64dac4}

/* Footer */
.footer{
  color:#94a6a2;
  background:#0b1110;
}
.footer-main{
  padding:54px 0 42px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:70px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.footer-brand p{
  margin:15px 0 0;
  color:#788985;
  font-size:12px;
}
.footer-links{
  display:grid;
  grid-template-columns:repeat(2,150px);
  gap:42px;
}
.footer-links strong{
  display:block;
  margin-bottom:12px;
  color:#e1e8e6;
  font-size:13px;
}
.footer-links a{
  display:block;
  width:fit-content;
  margin:7px 0;
  color:#849590;
  font-size:12px;
}
.footer-links a:hover{color:#62d8c2}

.footer-bottom{
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  color:#5e706c;
  font-size:11px;
}
.footer-bottom p{margin:0}

/* Responsive */
@media (max-width:1080px){
  .desktop-nav{display:none}
  .menu-toggle{
    width:44px;
    height:44px;
    padding:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:7px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    background:transparent;
    cursor:pointer;
  }
  .menu-toggle span{
    width:19px;
    height:1px;
    background:#dce7e4;
    transition:transform .2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child{
    transform:translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child{
    transform:translateY(-4px) rotate(-45deg);
  }
  .mobile-nav{
    position:fixed;
    left:0;
    right:0;
    top:76px;
    padding:18px 22px 24px;
    display:grid;
    gap:3px;
    background:#121b19;
    border-top:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 34px rgba(0,0,0,.18);
  }
  .mobile-nav[hidden]{display:none}
  .mobile-nav a{
    padding:11px 2px;
    color:#d7e3e0;
    font-size:13px;
    font-weight:800;
  }
  .mobile-cta{
    margin-top:7px;
    padding:12px 14px!important;
    text-align:center;
    color:#08201b!important;
    border-radius:10px;
    background:var(--mint);
  }

  .hero-wrap{gap:34px}
  .gallery-mini{display:none}
  .client-passports{grid-template-columns:1fr 1fr}
  .passport-android{grid-column:1 / -1}
  .inside-grid{gap:44px}
  .install-board{grid-template-columns:repeat(3,1fr)}
  .install-board article:nth-child(n+4){grid-column:span 1}
  .faq-layout{gap:46px}
}

@media (max-width:860px){
  .hero{
    background:linear-gradient(#f8f9f4 0%,#f8f9f4 51%,#eaece5 51%,#eaece5 100%);
  }
  .hero::before{display:none}
  .hero-wrap{
    min-height:auto;
    grid-template-columns:1fr;
    gap:14px;
    padding:58px 0 52px;
  }
  .hero-copy{max-width:700px}
  .hero-gallery{min-height:450px}

  .selector-head,
  .inside-grid,
  .install-focus,
  .update-layout,
  .first-use-grid,
  .faq-layout,
  .final-shell{
    grid-template-columns:1fr;
  }

  .inside-canvas{min-height:450px}
  .install-board{grid-template-columns:1fr 1fr}
  .install-board article:last-child{grid-column:1 / -1}
  .faq-intro{position:static}
  .first-use-media{min-height:420px}
  .final-options{grid-template-columns:1fr}
}

@media (max-width:620px){
  html{scroll-padding-top:76px}
  .container,
  .header-grid,
  .hero-wrap,
  .inside-grid,
  .final-shell{
    width:min(calc(100% - 38px),var(--container));
  }

  .site-header{height:68px}
  .header-cta{display:none}
  .mobile-nav{top:68px}
  .brand img,
  .footer-brand img{
    height:34px;
    max-width:150px;
  }

  .hero-wrap{padding-top:48px}
  .hero-copy{padding-left:0}
  .hero-number{display:none}
  .hero h1{font-size:clamp(42px,13vw,56px)}
  .hero-lead{font-size:15px}
  .hero-actions{display:grid;grid-template-columns:1fr}
  .button{width:100%}
  .hero-gallery{min-height:340px}
  .hero-gallery::before{width:300px;height:300px}
  .hero-gallery::after{width:220px;height:220px}
  .gallery-main{
    width:100%;
    min-height:280px;
    padding:48px 18px 18px;
    border-radius:22px;
    transform:none;
  }
  .gallery-main img{max-height:215px}
  .gallery-tag{
    right:0;
    bottom:0;
  }

  .client-selector,
  .inside-client,
  .install-section,
  .client-difference,
  .first-use,
  .faq-section{
    padding:72px 0;
  }

  .selector-head h2,
  .inside-copy h2,
  .install-head h2,
  .difference-head h2,
  .update-copy h2,
  .first-use-copy h2,
  .faq-intro h2,
  .final-copy h2{
    font-size:32px;
  }

  .client-passports{grid-template-columns:1fr}
  .passport-android{grid-column:auto}
  .passport{
    min-height:auto;
    padding:23px 22px;
    border-radius:20px;
  }

  .inside-canvas{min-height:370px}
  .canvas-main{
    width:100%;
    height:320px;
    padding:10px;
    border-radius:22px;
  }
  .canvas-side{
    width:52%;
    height:145px;
    border-width:7px;
    border-radius:18px;
  }
  .canvas-caption{
    left:0;
    bottom:0;
  }

  .install-board{grid-template-columns:1fr}
  .install-board article,
  .install-board article:last-child{
    grid-column:auto;
    min-height:145px;
  }
  .install-focus{border-radius:22px}
  .focus-image{min-height:250px;padding:26px}
  .focus-image img{max-height:215px}
  .focus-copy{padding:32px 24px}
  .focus-copy h3{font-size:27px}
  .focus-copy dl > div{
    grid-template-columns:1fr;
    gap:4px;
  }

  .update-section{padding:72px 0}
  .update-steps{grid-template-columns:1fr}
  .update-steps article{min-height:120px}

  .first-use-media{min-height:370px}
  .first-use-media::before{width:290px;height:290px}
  .first-use-frame{
    min-height:260px;
    padding:20px;
    border-radius:22px;
  }
  .first-use-frame img{max-height:225px}
  .first-use-note{
    left:0;
    right:0;
    bottom:0;
    width:auto;
  }

  .faq-item button{
    min-height:74px;
    gap:12px;
  }
  .faq-item button span{font-size:15px}
  .faq-answer{padding-right:34px}

  .final-download{padding:65px 0}
  .final-options a{min-height:96px}

  .footer-main{
    grid-template-columns:1fr;
    gap:34px;
    padding:46px 0 32px;
  }
  .footer-links{
    grid-template-columns:1fr 1fr;
    gap:24px;
  }
  .footer-bottom{
    min-height:0;
    padding:18px 0;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
}

@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
    animation-duration:.01ms!important;
  }
}
