/* =========================================================
   HHPoker APP Download — Page 03
   Editorial / product-app layout, intentionally distinct
   from pages 01 and 02.
   ========================================================= */

:root{
  --sand:#f7f2ea;
  --sand-2:#eee6dc;
  --paper:#fffdf9;
  --ink:#202928;
  --muted:#65706d;
  --line:#dedbd2;
  --forest:#0d2927;
  --forest-2:#143936;
  --teal:#13a990;
  --mint:#57d5be;
  --mint-soft:#daf4ed;
  --clay:#c8704b;
  --container:1180px;
  --radius-xl:34px;
  --radius-lg:22px;
}

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

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

body{
  margin:0;
  color:var(--ink);
  background:var(--sand);
  font-family:Arial,"Microsoft YaHei","PingFang SC",sans-serif;
  font-size:16px;
  line-height:1.8;
  -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{margin-top:0}
p:last-child{margin-bottom:0}

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

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

.skip-link{
  position:fixed;
  z-index:9999;
  left:16px;
  top:12px;
  padding:10px 15px;
  border-radius:10px;
  color:#08241f;
  background:var(--mint);
  transform:translateY(-180%);
}
.skip-link:focus{transform:translateY(0)}

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

/* Header */
.site-header{
  position:sticky;
  z-index:1000;
  top:0;
  height:76px;
  color:#dce8e6;
  background:rgba(13,41,39,.95);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(16px);
  transition:box-shadow .2s ease,background-color .2s ease;
}
.site-header.is-scrolled{
  background:rgba(11,36,34,.99);
  box-shadow:0 12px 34px rgba(0,0,0,.15);
}

.header-inner{
  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;
}

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

.nav-cta{
  min-height:44px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(87,213,190,.42);
  border-radius:10px;
  color:#08231f;
  background:var(--mint);
  font-size:13px;
  font-weight:900;
  transition:transform .2s ease,background-color .2s ease;
}
.nav-cta:hover{
  transform:translateY(-2px);
  background:#7de2cf;
}

.menu-btn,
.mobile-menu{display:none}

/* Hero */
.hero{
  position:relative;
  min-height:700px;
  overflow:hidden;
  background:
    linear-gradient(90deg,var(--sand) 0%,var(--sand) 62%,#efe7dc 62%,#efe7dc 100%);
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:1px;
  background:#ddd5c9;
}

.hero-shell{
  width:min(calc(100% - 44px),1320px);
  min-height:700px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:70px minmax(0,.92fr) minmax(0,1.08fr);
  gap:52px;
  align-items:center;
  padding:56px 0 60px;
}

.hero-index{
  height:390px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:17px;
  color:#6f7772;
}
.hero-index span{
  color:#1f312f;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.04em;
}
.hero-index i{
  flex:1;
  width:1px;
  background:#cfc8bd;
}
.hero-index small{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  color:#8b918d;
  font-size:9px;
  font-weight:900;
  letter-spacing:.17em;
}

.hero-copy{
  max-width:610px;
}
.micro,
.section-label{
  margin-bottom:16px;
  color:#168d78;
  font-size:10px;
  font-weight:900;
  letter-spacing:.15em;
  line-height:1.2;
}
.section-label-dark{color:#1a8d79}
.section-label-light{color:#6ce1cc}

.hero h1{
  margin-bottom:24px;
  color:#182523;
  font-size:clamp(46px,5.2vw,72px);
  font-weight:800;
  letter-spacing:-.055em;
  line-height:1.02;
}
.hero h1 em{
  display:block;
  color:var(--clay);
  font-style:normal;
}

.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:34px;
}

.action-primary,
.action-secondary{
  min-height:52px;
  padding:0 21px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:11px;
  font-size:14px;
  font-weight:900;
  transition:transform .2s ease,background-color .2s ease,border-color .2s ease;
}
.action-primary{
  color:#f4fbf9;
  background:var(--forest);
}
.action-primary svg{
  width:18px;
  height:18px;
}
.action-primary:hover{
  transform:translateY(-2px);
  background:#143a36;
}
.action-secondary{
  color:#35403e;
  border:1px solid #cfc9bf;
  background:rgba(255,255,255,.45);
}
.action-secondary:hover{
  transform:translateY(-2px);
  border-color:#aaa398;
}

.hero-meta{
  max-width:600px;
  padding-top:19px;
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:28px;
  border-top:1px solid #d7d0c6;
}
.hero-meta span,
.hero-meta strong{
  display:block;
}
.hero-meta span{
  margin-bottom:3px;
  color:#8b8e88;
  font-size:9px;
  font-weight:900;
  letter-spacing:.09em;
}
.hero-meta strong{
  color:#394541;
  font-size:12px;
}

.hero-art{
  position:relative;
  min-height:520px;
  display:grid;
  place-items:center;
}
.art-backdrop{
  position:absolute;
  width:470px;
  height:470px;
  border-radius:50%;
  background:
    radial-gradient(circle at 42% 40%,rgba(19,169,144,.20),rgba(19,169,144,.04) 48%,transparent 70%);
  border:1px solid rgba(35,96,87,.10);
}

.app-window{
  position:relative;
  z-index:3;
  width:min(90%,590px);
  min-height:390px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:29px;
  background:linear-gradient(145deg,#102f2d,#0d2826);
  box-shadow:0 36px 75px rgba(34,45,40,.20);
  transform:rotate(1.5deg);
}
.app-window-top{
  height:52px;
  padding:0 18px;
  display:flex;
  align-items:center;
  gap:9px;
  color:#b7c9c6;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:11px;
  font-weight:800;
}
.window-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--mint);
  box-shadow:0 0 0 5px rgba(87,213,190,.08);
}
.app-window-top strong{
  margin-left:auto;
  color:#73dcc8;
  font-size:9px;
  letter-spacing:.11em;
}
.app-window-body{
  min-height:338px;
  padding:26px;
  display:grid;
  place-items:center;
}
.app-window-body img{
  width:100%;
  max-height:300px;
  object-fit:contain;
  filter:drop-shadow(0 22px 30px rgba(0,0,0,.22));
}

.app-slice{
  position:absolute;
  z-index:5;
  border:9px solid var(--sand);
  border-radius:22px;
  background:#fff;
  box-shadow:0 16px 38px rgba(40,56,50,.12);
}
.app-slice-one{
  left:-2%;
  bottom:5%;
  width:210px;
  height:150px;
  padding:10px;
  transform:rotate(-5deg);
}
.app-slice-one img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.app-slice-two{
  right:2%;
  top:9%;
  width:112px;
  height:112px;
  display:grid;
  place-items:center;
  align-content:center;
  gap:0;
  color:#194a43;
  background:#e3f3ee;
  transform:rotate(7deg);
}
.app-slice-two span{
  font-size:13px;
  font-weight:900;
}
.app-slice-two strong{
  color:#168d78;
  font-size:10px;
  letter-spacing:.1em;
}

/* Download rail */
.download-rail{
  padding:102px 0 96px;
  background:var(--paper);
}

.rail-head{
  max-width:760px;
  margin-bottom:38px;
}
.rail-head h2,
.story-copy h2,
.install-heading h2,
.inside-copy h2,
.update-side h2,
.device-notes-head h2,
.faq-title h2,
.final-download h2{
  margin-bottom:16px;
  color:var(--ink);
  font-size:clamp(32px,4vw,50px);
  font-weight:800;
  letter-spacing:-.04em;
  line-height:1.17;
}
.rail-head > p:last-child,
.install-heading > p:last-child,
.update-side > p:last-of-type,
.faq-title > p:last-of-type{
  color:var(--muted);
  line-height:1.85;
}

.system-rail{
  border-top:1px solid var(--line);
}
.system-row{
  min-height:180px;
  display:grid;
  grid-template-columns:76px minmax(220px,.8fr) minmax(320px,1.2fr) auto;
  gap:26px;
  align-items:center;
  border-bottom:1px solid var(--line);
}
.row-num{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border:1px solid #c8c2b7;
  border-radius:50%;
  color:#3b4744;
  font-weight:900;
}
.android-row .row-num{
  color:#0e6758;
  border-color:#9ccfc4;
  background:#e1f3ee;
}
.row-title small{
  display:block;
  margin-bottom:5px;
  color:#188d79;
  font-size:9px;
  font-weight:900;
  letter-spacing:.13em;
}
.row-title h3{
  margin-bottom:0;
  color:#22302d;
  font-size:23px;
  line-height:1.3;
}
.row-copy p{
  margin-bottom:0;
  color:#64716e;
  font-size:14px;
  line-height:1.8;
}
.system-row > a{
  min-width:160px;
  min-height:46px;
  padding:0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border:1px solid #cfc9bd;
  border-radius:11px;
  color:#31403d;
  font-size:12px;
  font-weight:900;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}
.system-row > a:hover{
  transform:translateY(-2px);
  border-color:#9dcfc5;
  background:#e9f5f1;
}
.system-row > a span{
  color:#128d76;
  font-size:18px;
}

/* Story */
.app-story{
  padding:110px 0;
  background:var(--sand);
}
.app-story-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:78px;
  align-items:center;
}
.story-copy > p:nth-of-type(2){
  margin-bottom:30px;
  color:var(--muted);
}
.story-lines{
  border-top:1px solid #d5cec3;
}
.story-lines > div{
  padding:19px 0;
  display:grid;
  grid-template-columns:42px 1fr;
  gap:13px;
  border-bottom:1px solid #d5cec3;
}
.story-lines b{
  color:#c26743;
  font-size:11px;
}
.story-lines strong{
  display:block;
  margin-bottom:3px;
  color:#263431;
  font-size:16px;
}
.story-lines p{
  color:#65716e;
  font-size:13px;
}

.story-media{
  position:relative;
  min-height:550px;
}
.story-main{
  width:83%;
  height:500px;
  margin:0 0 0 auto;
  overflow:hidden;
  border-radius:31px;
  background:#0e2a28;
  box-shadow:0 26px 70px rgba(59,55,46,.13);
}
.story-main img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.story-float{
  position:absolute;
  left:0;
  bottom:0;
  width:48%;
  height:220px;
  margin:0;
  padding:17px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:10px solid var(--sand);
  border-radius:26px;
  background:#153936;
}
.story-float img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* Install */
.install-section{
  padding:110px 0;
  color:#e9f3f1;
  background:#0d2927;
}
.install-heading{
  max-width:760px;
  margin-bottom:46px;
}
.install-heading h2{color:#fff}
.install-heading > p:last-child{color:#acc1bd}

.install-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(330px,.72fr);
  gap:58px;
  align-items:start;
}
.install-sequence{
  margin:0;
  padding:0;
  list-style:none;
  border-top:1px solid rgba(255,255,255,.11);
}
.install-sequence li{
  min-height:118px;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:20px;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.11);
}
.install-sequence > li > span{
  color:#69dbc6;
  font-size:11px;
  font-weight:900;
}
.install-sequence small{
  display:block;
  margin-bottom:3px;
  color:#728c88;
  font-size:8px;
  font-weight:900;
  letter-spacing:.13em;
}
.install-sequence h3{
  margin-bottom:3px;
  color:#f5f9f8;
  font-size:19px;
}
.install-sequence p{
  color:#aabebb;
  font-size:13px;
}

.install-focus{
  position:sticky;
  top:108px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.11);
  border-radius:28px;
  background:#123633;
}
.focus-image{
  min-height:250px;
  padding:28px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 50% 50%,rgba(87,213,190,.11),transparent 46%),
    #0b2422;
}
.focus-image img{
  max-height:220px;
  object-fit:contain;
}
.focus-copy{
  padding:29px 30px 32px;
}
.focus-copy small{
  display:block;
  margin-bottom:7px;
  color:#6bddc8;
  font-size:9px;
  font-weight:900;
  letter-spacing:.13em;
}
.focus-copy h3{
  margin-bottom:16px;
  color:#fff;
  font-size:23px;
  line-height:1.35;
}
.focus-copy ul{
  margin:0;
  padding:0;
  list-style:none;
}
.focus-copy li{
  position:relative;
  margin:10px 0;
  padding-left:19px;
  color:#b7c9c6;
  font-size:13px;
}
.focus-copy li::before{
  content:"";
  position:absolute;
  left:0;
  top:.75em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--mint);
}

/* Inside app */
.inside-app{
  padding:112px 0;
  background:#eef1eb;
}
.inside-shell{
  width:min(calc(100% - 44px),1320px);
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);
  gap:70px;
  align-items:center;
}
.inside-copy > p:nth-of-type(2){
  margin-bottom:31px;
  color:#5f6c69;
}
.inside-points{
  border-top:1px solid #d2d8d0;
}
.inside-points > div{
  padding:18px 0;
  display:grid;
  grid-template-columns:40px 110px 1fr;
  gap:14px;
  align-items:center;
  border-bottom:1px solid #d2d8d0;
}
.inside-points span{
  color:#c56945;
  font-size:10px;
  font-weight:900;
}
.inside-points strong{
  color:#24322f;
  font-size:15px;
}
.inside-points p{
  color:#65716e;
  font-size:13px;
}

.inside-media{
  position:relative;
}
.inside-media::before{
  content:"";
  position:absolute;
  inset:-28px 8% 28px -30px;
  border:1px solid #cdd6d0;
  border-radius:30px;
}
.inside-frame{
  position:relative;
  z-index:2;
  min-height:420px;
  padding:18px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:30px;
  background:#112e2c;
  box-shadow:0 30px 68px rgba(47,60,52,.14);
}
.inside-frame img{
  width:100%;
  max-height:500px;
  object-fit:contain;
  border-radius:18px;
}

/* Update */
.update-section{
  padding:108px 0;
  background:var(--paper);
}
.update-grid{
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);
  gap:78px;
  align-items:start;
}
.update-side{
  position:sticky;
  top:110px;
}
.text-link{
  margin-top:24px;
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:#128d77;
  font-size:13px;
  font-weight:900;
}
.text-link span{
  transition:transform .2s ease;
}
.text-link:hover span{
  transform:translateX(4px);
}

.update-board{
  border-top:1px solid var(--line);
}
.update-board article{
  min-height:145px;
  padding:23px 0;
  display:grid;
  grid-template-columns:54px 190px 1fr;
  gap:18px;
  align-items:center;
  border-bottom:1px solid var(--line);
}
.update-board span{
  color:#c46e4a;
  font-size:11px;
  font-weight:900;
}
.update-board h3{
  margin:0;
  color:#263532;
  font-size:18px;
}
.update-board p{
  color:#64716e;
  font-size:13px;
}

/* Device notes */
.device-notes{
  padding:92px 0;
  background:#e8eee9;
}
.device-notes-head{
  margin-bottom:32px;
}
.device-notes-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid #cfd7d1;
  border-left:1px solid #cfd7d1;
}
.device-notes-grid > div{
  min-height:170px;
  padding:26px 24px;
  border-right:1px solid #cfd7d1;
  border-bottom:1px solid #cfd7d1;
}
.device-notes-grid strong{
  display:block;
  margin-bottom:10px;
  color:#22312e;
  font-size:18px;
}
.device-notes-grid p{
  color:#65716e;
  font-size:13px;
}

/* FAQ */
.faq-section{
  padding:110px 0;
  background:var(--sand);
}
.faq-layout{
  display:grid;
  grid-template-columns:minmax(280px,.7fr) minmax(0,1.3fr);
  gap:82px;
  align-items:start;
}
.faq-title{
  position:sticky;
  top:108px;
}
.faq-image{
  margin-top:28px;
  min-height:180px;
  padding:20px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:20px;
  background:#102d2b;
}
.faq-image img{
  max-height:180px;
  object-fit:contain;
}

.faq-list{
  border-top:1px solid #d6cfc5;
}
.faq-item{
  border-bottom:1px solid #d6cfc5;
}
.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;
  border:0;
  background:transparent;
  text-align:left;
  cursor:pointer;
}
.faq-item button span{
  color:#263431;
  font-size:16px;
  font-weight:800;
}
.faq-item button i{
  position:relative;
  width:28px;
  height:28px;
  border:1px solid #b9afa1;
  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:#b86745;
  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:#65716e;
  font-size:14px;
}

/* Final */
.final-download{
  padding:82px 0;
  color:#eaf4f2;
  background:#0c2826;
}
.final-inner{
  width:min(calc(100% - 44px),1180px);
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(280px,.85fr) minmax(0,1.15fr);
  gap:68px;
  align-items:center;
}
.final-download h2{
  color:#fff;
}
.final-download > .final-inner > div:first-child > p:last-child{
  color:#abc0bc;
}

.final-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.final-actions a{
  min-height:124px;
  padding:22px 20px;
  display:grid;
  grid-template-columns:1fr auto;
  align-content:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(255,255,255,.035);
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}
.final-actions a:hover{
  transform:translateY(-4px);
  border-color:rgba(87,213,190,.44);
  background:rgba(87,213,190,.07);
}
.final-actions small{
  grid-column:1/-1;
  margin-bottom:4px;
  color:#6ce0cb;
  font-size:9px;
  font-weight:900;
  letter-spacing:.13em;
}
.final-actions strong{
  color:#fff;
  font-size:14px;
}
.final-actions span{
  color:#6ce0cb;
  font-size:18px;
}

/* Footer */
.site-footer{
  color:#97aaa7;
  background:#081d1b;
}
.footer-main{
  padding:54px 0 42px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:70px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand p{
  margin:15px 0 0;
  color:#7f9692;
  font-size:12px;
}
.footer-links{
  display:grid;
  grid-template-columns:repeat(2,150px);
  gap:42px;
}
.footer-links strong{
  display:block;
  margin-bottom:12px;
  color:#e4ecea;
  font-size:13px;
}
.footer-links a{
  display:block;
  width:fit-content;
  margin:7px 0;
  color:#879d99;
  font-size:12px;
}
.footer-links a:hover{color:#65dbc6}
.footer-bottom{
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  color:#667d79;
  font-size:11px;
}
.footer-bottom p{margin:0}

/* Responsive */
@media (max-width:1080px){
  .nav-main{display:none}
  .menu-btn{
    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,.13);
    border-radius:10px;
    background:transparent;
    cursor:pointer;
  }
  .menu-btn span{
    width:19px;
    height:1px;
    background:#dbe7e5;
    transition:transform .2s ease;
  }
  .menu-btn[aria-expanded="true"] span:first-child{
    transform:translateY(4px) rotate(45deg);
  }
  .menu-btn[aria-expanded="true"] span:last-child{
    transform:translateY(-4px) rotate(-45deg);
  }
  .mobile-menu{
    position:fixed;
    left:0;
    right:0;
    top:76px;
    padding:18px 22px 24px;
    display:grid;
    gap:3px;
    border-top:1px solid rgba(255,255,255,.08);
    background:#0d2927;
    box-shadow:0 20px 34px rgba(0,0,0,.18);
  }
  .mobile-menu[hidden]{display:none}
  .mobile-menu a{
    padding:11px 2px;
    color:#d7e4e1;
    font-size:13px;
    font-weight:800;
  }
  .mobile-menu-download{
    margin-top:7px;
    padding:12px 14px!important;
    text-align:center;
    color:#08231f!important;
    border-radius:10px;
    background:var(--mint);
  }

  .hero-shell{
    grid-template-columns:50px minmax(0,.94fr) minmax(420px,1.06fr);
    gap:28px;
  }
  .app-slice-one{left:-4%}
  .app-slice-two{right:-2%}

  .system-row{
    grid-template-columns:62px minmax(220px,.9fr) minmax(280px,1.1fr);
  }
  .system-row > a{
    grid-column:2 / -1;
    justify-self:start;
    margin-top:-8px;
    margin-bottom:20px;
  }

  .app-story-grid,
  .update-grid{
    gap:45px;
  }
  .install-layout{gap:38px}
  .inside-shell{gap:42px}
  .faq-layout{gap:48px}
}

@media (max-width:860px){
  .hero{
    min-height:auto;
    background:linear-gradient(var(--sand) 0%,var(--sand) 52%,#ece2d5 52%,#ece2d5 100%);
  }
  .hero-shell{
    min-height:auto;
    grid-template-columns:1fr;
    gap:15px;
    padding:58px 0 55px;
  }
  .hero-index{display:none}
  .hero-copy{max-width:700px}
  .hero-art{min-height:470px}

  .system-row{
    grid-template-columns:56px 1fr;
    gap:16px;
    padding:25px 0;
  }
  .row-copy{
    grid-column:2;
  }
  .system-row > a{
    grid-column:2;
    margin:0;
  }

  .app-story-grid,
  .install-layout,
  .inside-shell,
  .update-grid,
  .faq-layout,
  .final-inner{
    grid-template-columns:1fr;
  }

  .story-media{min-height:500px}
  .install-focus,
  .update-side,
  .faq-title{position:static}
  .inside-media{margin-top:18px}
  .device-notes-grid{grid-template-columns:1fr 1fr}
  .final-inner{gap:35px}
}

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

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

  .hero-shell{padding-top:48px}
  .hero h1{
    font-size:clamp(40px,13vw,54px);
  }
  .hero-lead{font-size:15px}
  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .action-primary,
  .action-secondary{width:100%}
  .hero-meta{grid-template-columns:1fr}
  .hero-art{min-height:340px}
  .art-backdrop{width:300px;height:300px}
  .app-window{
    width:100%;
    min-height:280px;
    border-radius:22px;
    transform:none;
  }
  .app-window-body{
    min-height:230px;
    padding:18px;
  }
  .app-window-body img{max-height:215px}
  .app-slice-one,
  .app-slice-two{display:none}

  .download-rail,
  .app-story,
  .install-section,
  .inside-app,
  .update-section,
  .faq-section{
    padding:72px 0;
  }

  .rail-head h2,
  .story-copy h2,
  .install-heading h2,
  .inside-copy h2,
  .update-side h2,
  .device-notes-head h2,
  .faq-title h2,
  .final-download h2{
    font-size:32px;
  }

  .system-row{
    grid-template-columns:48px 1fr;
  }
  .row-title h3{font-size:21px}
  .system-row > a{
    width:100%;
  }

  .story-media{min-height:390px}
  .story-main{
    width:100%;
    height:350px;
    border-radius:22px;
  }
  .story-float{
    width:52%;
    height:160px;
    border-width:7px;
    border-radius:20px;
  }

  .install-sequence li{
    grid-template-columns:44px 1fr;
  }
  .install-focus{border-radius:22px}
  .focus-image{min-height:220px}
  .focus-copy{padding:26px 24px 29px}

  .inside-points > div{
    grid-template-columns:36px 82px 1fr;
  }
  .inside-media::before{display:none}
  .inside-frame{
    min-height:260px;
    padding:10px;
    border-radius:22px;
  }

  .update-board article{
    min-height:0;
    padding:22px 0;
    grid-template-columns:42px 1fr;
    gap:12px;
  }
  .update-board p{
    grid-column:2;
  }

  .device-notes{
    padding:72px 0;
  }
  .device-notes-grid{
    grid-template-columns:1fr;
  }
  .device-notes-grid > div{
    min-height:130px;
  }

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

  .final-download{padding:66px 0}
  .final-actions{grid-template-columns:1fr}
  .final-actions a{min-height:100px}

  .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;
  }
}
