:root{
  --container: 1120px;
  color-scheme: light;
  --bg: #fbfcff;
  --bg-soft: #eef3f7;
  --bg-warm: #fff8ee;
  --surface: #ffffff;
  --surface-glass: rgba(255,255,255,0.92);
  --surface-strong: #f4faf6;
  --text: #14201c;
  --muted: rgba(20,32,28,0.70);
  --nav-text: rgba(20,32,28,0.80);
  --hover-bg: rgba(20,32,28,0.06);
  --border: rgba(20,32,28,0.12);
  --border-strong: rgba(20,32,28,0.20);
  --green: #1f8a70;
  --blue: #2563eb;
  --coral: #e4543d;
  --amber: #f2b544;
  --link: #1557cf;
  --shadow: 0 18px 44px rgba(20,32,28,0.12);
  --shadow-soft: 0 10px 28px rgba(20,32,28,0.08);
  --topbar-bg: rgba(251,252,255,0.82);
  --mobilemenu-bg: rgba(251,252,255,0.96);
  --hero-bg:
    linear-gradient(180deg, rgba(255,248,238,0.86), rgba(251,252,255,0.96)),
    linear-gradient(90deg, rgba(37,99,235,0.08) 0, transparent 45%, rgba(31,138,112,0.10) 100%);
  --how-bg: linear-gradient(180deg, var(--bg-soft), var(--surface));
  --map-bg: #edf5f0;
  --map-line: rgba(20,32,28,0.07);
  --cta-bg: linear-gradient(135deg, rgba(31,138,112,0.13), rgba(37,99,235,0.10), rgba(242,181,68,0.16));
  --radius: 8px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

:root[data-theme="dark"]{
  color-scheme: dark;
  --bg: #0f1412;
  --bg-soft: #151d1a;
  --bg-warm: #1b1711;
  --surface: #17211d;
  --surface-glass: rgba(23,33,29,0.92);
  --surface-strong: #12251f;
  --text: #edf7f2;
  --muted: rgba(237,247,242,0.70);
  --nav-text: rgba(237,247,242,0.78);
  --hover-bg: rgba(237,247,242,0.08);
  --border: rgba(237,247,242,0.12);
  --border-strong: rgba(237,247,242,0.22);
  --green: #48c7a0;
  --blue: #78a8ff;
  --coral: #ff7964;
  --amber: #ffc65f;
  --link: #8ab4ff;
  --shadow: 0 18px 44px rgba(0,0,0,0.36);
  --shadow-soft: 0 10px 28px rgba(0,0,0,0.24);
  --topbar-bg: rgba(15,20,18,0.84);
  --mobilemenu-bg: rgba(15,20,18,0.97);
  --hero-bg:
    linear-gradient(180deg, rgba(27,23,17,0.92), rgba(15,20,18,0.98)),
    linear-gradient(90deg, rgba(120,168,255,0.10) 0, transparent 45%, rgba(72,199,160,0.12) 100%);
  --how-bg: linear-gradient(180deg, #111a17, var(--bg));
  --map-bg: #14231f;
  --map-line: rgba(237,247,242,0.08);
  --cta-bg: linear-gradient(135deg, rgba(72,199,160,0.13), rgba(120,168,255,0.12), rgba(255,198,95,0.10));
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open{ overflow: hidden; }
img{ display: block; max-width: 100%; }
a{ color: var(--link); }
svg{ width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.skiplink{
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 200;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: var(--radius);
}
.skiplink:focus{ left: 12px; }

.section{ padding: 84px 0; }
.section-compact{ padding: 72px 0 46px; }
.section-head{
  max-width: 760px;
  margin: 0 0 30px;
}
.section-head h2{
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}
.section-sub{
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.section-tag,
.eyebrow{
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.topbar-inner{
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand,
.footer-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}
.brand-mark{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 10px 24px rgba(31,138,112,0.22);
}
.brand-mark img{
  width: 21px;
  height: 21px;
  filter: invert(1);
}
.brand-mark-small{
  width: 26px;
  height: 26px;
  flex-basis: 26px;
}
.brand-mark-small img{
  width: 16px;
  height: 16px;
}
.brand-name{ white-space: nowrap; }
.nav{
  display: flex;
  align-items: center;
  gap: 14px;
}
.navlink{
  color: var(--nav-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 8px;
  border-radius: var(--radius);
}
.navlink:hover{ background: var(--hover-bg); color: var(--text); }
.navdetails{
  position: relative;
}
.navdetails summary{
  cursor: pointer;
  list-style: none;
}
.navdetails summary::-webkit-details-marker{ display: none; }
.language-details .navlink{
  min-width: 44px;
  text-align: center;
}
.nav-menu-panel{
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.nav-menu-panel a{
  display: block;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.nav-menu-panel a:hover{
  background: var(--hover-bg);
}
.nav-menu-panel a[aria-current="page"]{
  background: var(--surface-strong);
  color: var(--green);
}
.language-details .nav-menu-panel{
  min-width: 150px;
}
.topbar-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.btn-primary{
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.btn-primary:hover{ background: #18745e; }
.btn-secondary{ background: var(--surface); }
.btn-lg{ min-height: 48px; padding: 12px 16px; }
.btn-sm{ min-height: 38px; padding: 8px 12px; }
.theme-toggle{
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.theme-toggle:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.theme-toggle svg{
  width: 18px;
  height: 18px;
}
.theme-moon{ opacity: 0; }
:root[data-theme="dark"] .theme-sun{ opacity: 0; }
:root[data-theme="dark"] .theme-moon{ opacity: 1; }

.store-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.store-badge:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.store-badge img{ width: auto; height: 44px; }
.store-badge-lg img{ height: 54px; }
.store-badge-hero img{ height: 60px; }

.navtoggle{
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}
.navtoggle-lines,
.navtoggle-lines::before,
.navtoggle-lines::after{
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.navtoggle-lines{
  margin: 0 auto;
  position: relative;
}
.navtoggle-lines::before,
.navtoggle-lines::after{
  content: "";
  position: absolute;
  left: 0;
}
.navtoggle-lines::before{ top: -6px; }
.navtoggle-lines::after{ top: 6px; }
.mobilemenu{
  border-bottom: 1px solid var(--border);
  background: var(--mobilemenu-bg);
}
.mobilemenu-inner{
  display: grid;
  gap: 8px;
  padding: 14px 20px 18px;
}
.mobilemenu a{
  color: var(--text);
  text-decoration: none;
  font-weight: 750;
  padding: 10px 10px;
  border-radius: var(--radius);
}
.mobilemenu a:hover{ background: var(--hover-bg); }
.mobile-language{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.mobile-language a{
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
}
.mobile-language a[aria-current="page"]{
  background: var(--surface-strong);
  color: var(--green);
}
.mobilemenu-cta{ margin-top: 4px; }

.hero{
  background: var(--hero-bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 38px;
  align-items: center;
}
.hero h1{
  margin: 0 0 14px;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}
.lead{
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}
.hero-ctas{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin: 22px 0 20px;
}
.trust-list{
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}
.trust-check{
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31,138,112,0.14);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.hero-visual{
  min-height: 484px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-stage{
  position: relative;
  width: min(100%, 488px);
  height: 448px;
}
.quest-card{
  position: absolute;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-glass);
  box-shadow: var(--shadow);
}
.quest-card-map{
  top: 26px;
  left: 10px;
  width: 330px;
  height: 312px;
  padding: 16px;
}
.map-topline,
.map-bottomline{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.map-topline strong{ color: var(--text); }
.map-grid{
  position: relative;
  height: 214px;
  margin: 12px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(90deg, var(--map-line) 1px, transparent 1px),
    linear-gradient(0deg, var(--map-line) 1px, transparent 1px),
    var(--map-bg);
  background-size: 34px 34px;
  overflow: hidden;
}
.pin{
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--coral);
  border: 3px solid #fff;
  box-shadow: 0 5px 12px rgba(20,32,28,0.18);
}
.pin-a{ left: 68px; top: 62px; }
.pin-b{ left: 196px; top: 108px; background: var(--blue); }
.pin-c{ left: 128px; top: 154px; background: var(--green); }
.route{
  position: absolute;
  height: 4px;
  border-radius: 4px;
  background: rgba(242,181,68,0.85);
  transform-origin: left center;
}
.route-a{ left: 82px; top: 78px; width: 134px; transform: rotate(20deg); }
.route-b{ left: 142px; top: 164px; width: 92px; transform: rotate(-32deg); }
.quest-card-scan{
  right: 14px;
  top: 86px;
  width: 206px;
  padding: 12px;
  transform: rotate(4deg);
}
.quest-card-scan img{
  aspect-ratio: 1;
  padding: 8px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  object-fit: contain;
  border-radius: var(--radius);
}
.scan-label{
  position: absolute;
  top: -13px;
  right: 14px;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.quest-card-collection{
  left: 88px;
  bottom: 16px;
  width: 292px;
  padding: 16px;
}
.collection-count{
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: var(--blue);
}
.collection-label{
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 800;
}
.mini-covers{
  display: flex;
  margin-top: 14px;
}
.mini-covers img{
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(20,32,28,0.16);
}
.mini-covers img + img{ margin-left: -12px; }

.stats-strip{
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat{
  padding: 26px 24px;
  text-align: center;
  border-left: 1px solid var(--border);
}
.stat:last-child{ border-right: 1px solid var(--border); }
.stat strong{
  display: block;
  font-size: 30px;
  line-height: 1;
  text-wrap: balance;
}
.stat span{
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.app-preview{
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.app-preview-layout{
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}
.app-preview-copy{
  position: sticky;
  top: 88px;
}
.app-preview-copy h2{
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}
.preview-points{
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.preview-points li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 720;
}
.screen-track{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.screen-card{
  margin: 0;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow-soft);
}
.phone-shell{
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background: #101412;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}
.phone-shell img{
  width: 100%;
  height: auto;
}
.screen-card figcaption{
  padding: 12px 4px 2px;
}
.screen-card figcaption strong{
  display: block;
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
}
.screen-card figcaption span{
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
  font-weight: 650;
}

.grid{
  display: grid;
  gap: 14px;
}
.grid.features,
.grid.privacy{
  grid-template-columns: repeat(3, 1fr);
}
.card{
  min-height: 196px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(20,32,28,0.06);
}
.card h3{
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 0;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.card-icon{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(31,138,112,0.12);
  color: var(--green);
}
.card:nth-child(2n) .card-icon{ background: rgba(37,99,235,0.10); color: var(--blue); }
.card:nth-child(3n) .card-icon{ background: rgba(228,84,61,0.11); color: var(--coral); }
.card-strong{
  background: var(--surface-strong);
  border-color: rgba(31,138,112,0.28);
}

.section-how{
  background: var(--how-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-grid{
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 34px;
  align-items: start;
}
.steps{
  display: grid;
  gap: 12px;
  max-width: 620px;
}
.step{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-glass);
  box-shadow: 0 8px 24px rgba(20,32,28,0.06);
  transition: transform 180ms var(--ease), border 180ms var(--ease), background 180ms var(--ease);
}
.step.is-active{
  transform: translateY(-1px);
  border-color: rgba(31,138,112,0.38);
  background: var(--surface);
}
.step-num{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31,138,112,0.13);
  color: var(--green);
  font-weight: 900;
}
.step h3{
  margin: 0 0 5px;
  font-size: 18px;
}
.step p{
  margin: 0;
  color: var(--muted);
}
.device-sticky{
  position: sticky;
  top: 92px;
}
.collection-panel{
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow);
}
.panel-hero{
  width: 100%;
  aspect-ratio: 1.35;
  padding: 10px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  object-fit: contain;
  border-radius: var(--radius);
}
.panel-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.panel-row img{
  aspect-ratio: 1;
  padding: 8px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  object-fit: contain;
  border-radius: var(--radius);
}
.device-caption{
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.gallery-strip{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 16px;
}
.gallery-strip figure{
  margin: 0;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(20,32,28,0.06);
}
.gallery-strip img{
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  object-fit: contain;
}
.gallery-strip figcaption{
  padding: 12px 2px 0;
}
.gallery-title{
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}
.gallery-meta{
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.section-privacy{
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq{ max-width: 820px; }
.faq details{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(20,32,28,0.06);
  overflow: hidden;
  margin-bottom: 10px;
}
.faq summary{
  padding: 15px 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 850;
}
.faq summary::-webkit-details-marker{ display: none; }
.faq details[open] summary{
  border-bottom: 1px solid var(--border);
  background: var(--hover-bg);
}
.faq-body{
  padding: 14px 16px 16px;
  color: var(--muted);
}
.faq-body p{ margin: 0; }

.section-cta{ padding-top: 34px; }
.cta-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(31,138,112,0.25);
  border-radius: var(--radius);
  background: var(--cta-bg);
  box-shadow: var(--shadow-soft);
}
.cta-card h2{
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.16;
}
.cta-card p{
  margin: 0;
  color: var(--muted);
}

.support-page{
  background: var(--bg);
}
.support-hero{
  padding: 58px 0 24px;
  background: var(--hero-bg);
  border-bottom: 1px solid var(--border);
}
.support-hero-inner{
  max-width: 860px;
}
.support-shell{
  padding: 38px 0 84px;
}
.support-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: start;
}
.support-form,
.support-aside{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.support-form{
  display: grid;
  gap: 16px;
  padding: 24px;
}
.form-row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-row-three{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.form-field{
  display: grid;
  gap: 7px;
}
.form-field span{
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}
.form-field strong{
  color: var(--coral);
}
.form-field input,
.form-field select,
.form-field textarea{
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  line-height: 1.35;
}
.form-field textarea{
  min-height: 180px;
  resize: vertical;
}
.form-field input::placeholder{
  color: var(--muted);
  opacity: .74;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline: 3px solid rgba(31,138,112,0.22);
  border-color: var(--green);
}
.honeypot{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.privacy-note{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.form-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.form-status{
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}
.form-status.is-success{ color: var(--green); }
.form-status.is-error{ color: var(--coral); }
.support-form.is-submitting{
  opacity: .82;
}
.support-form.is-submitting .btn{
  pointer-events: none;
}
.support-aside{
  display: grid;
  gap: 0;
  overflow: hidden;
}
.support-aside-block{
  padding: 20px;
}
.support-aside-block + .support-aside-block{
  border-top: 1px solid var(--border);
}
.support-aside h2{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.22;
}
.support-aside p{
  margin: 0;
  color: var(--muted);
}
.support-list{
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.support-list li{
  position: relative;
  padding-left: 20px;
}
.support-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.support-confirmation{
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.support-confirmation h2{
  margin: 14px 0 8px;
  font-size: 28px;
  line-height: 1.16;
}
.support-confirmation p{
  margin: 0;
  color: var(--muted);
}
.ticket-reference{
  margin-top: 16px !important;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}
.ticket-reference strong{
  color: var(--text);
}
.confirmation-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.footer{
  padding: 30px 0 42px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}
.footer-meta{
  justify-self: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.footer-links{
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a{
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}
.footer-links a:hover{ color: var(--link); text-decoration: underline; }

.legal-page{
  background: var(--bg);
}
.legal-hero{
  padding: 58px 0 24px;
  background: var(--hero-bg);
  border-bottom: 1px solid var(--border);
}
.legal-hero-inner{
  max-width: 920px;
}
.legal-kicker{
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.legal-title{
  margin: 0 0 12px;
  color: var(--text);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}
.legal-summary{
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.legal-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.legal-tabs a{
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-glass);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.legal-tabs a[aria-current="page"]{
  border-color: rgba(31,138,112,0.44);
  background: var(--surface-strong);
  color: var(--green);
}
.legal-tabs a:hover{
  background: var(--hover-bg);
}
.legal-shell{
  padding: 38px 0 84px;
}
.legal-document{
  max-width: 880px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.legal-document h1{
  margin: 1.45em 0 0.6em;
  color: var(--text);
  font-size: 22px;
  line-height: 1.24;
  letter-spacing: 0;
}
.legal-document h1:first-child,
.legal-document p:first-child + h1{
  margin-top: 0;
}
.legal-document p{
  margin: 0 0 1em;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}
.legal-document strong,
.legal-document b{
  color: var(--text);
}
.legal-document em{
  color: var(--muted);
}
.legal-document ul,
.legal-document ol{
  margin: 0 0 1.1em;
  color: var(--muted);
  line-height: 1.65;
}
.legal-document li + li{
  margin-top: 0.35em;
}
.legal-document a{
  color: var(--link);
  overflow-wrap: anywhere;
}

[data-animate]{
  opacity: 1;
  transform: none;
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
[data-animate].is-inview{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,
  *::before,
  *::after{
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-animate]{ opacity: 1; transform: none; }
}

@media (max-width: 980px){
  .nav{ display: none; }
  .navtoggle{ display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid,
  .how-grid,
  .app-preview-layout,
  .support-grid{
    grid-template-columns: 1fr;
  }
  .app-preview-copy{ position: static; }
  .hero-visual{ min-height: 418px; }
  .cover-stage{ max-width: 488px; }
  .grid.features,
  .grid.privacy{
    grid-template-columns: repeat(2, 1fr);
  }
  .screen-track{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .device-sticky{ position: static; }
}

@media (max-width: 720px){
  .section{ padding: 64px 0; }
  .section-compact{ padding: 48px 0 34px; }
  .section-head h2{ font-size: 34px; }
  .app-preview-copy h2{ font-size: 34px; }
  .hero h1{ font-size: 48px; }
  .lead{ font-size: 18px; }
  .topbar-actions .btn-sm{ display: none; }
  .legal-hero{ padding: 42px 0 22px; }
  .legal-title{ font-size: 34px; }
  .legal-summary{ font-size: 16px; }
  .legal-shell{ padding: 24px 0 64px; }
  .legal-document{ padding: 22px; }
  .legal-document h1{ font-size: 20px; }
  .support-hero{ padding: 42px 0 22px; }
  .support-shell{ padding: 24px 0 64px; }
  .support-form{ padding: 20px; }
  .form-row,
  .form-row-three{
    grid-template-columns: 1fr;
  }
  .form-actions{
    align-items: stretch;
    flex-direction: column;
  }
  .stats-grid{ grid-template-columns: 1fr; }
  .stat{
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat:last-child{ border-right: 1px solid var(--border); border-bottom: 0; }
  .grid.features,
  .grid.privacy{
    grid-template-columns: 1fr;
  }
  .screen-track{
    display: flex;
    gap: 14px;
    margin-right: -20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 2px 20px 10px 0;
    scroll-snap-type: x mandatory;
  }
  .screen-card{
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }
  .phone-shell{ border-radius: 24px; }
  .gallery-strip{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .gallery-strip figure{ padding: 10px; }
  .gallery-strip img{ padding: 8px; }
  .gallery-title{ font-size: 13px; }
  .gallery-meta{ font-size: 11px; }
  .cta-card{
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-inner{
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .footer-meta,
  .footer-links{
    justify-self: start;
  }
}

@media (max-width: 520px){
  .container{ padding: 0 16px; }
  .brand-name{ max-width: 170px; overflow: hidden; text-overflow: ellipsis; }
  .hero h1{ font-size: 40px; }
  .theme-toggle{ width: 38px; flex: 0 0 38px; }
  .legal-title{ font-size: 30px; }
  .legal-tabs{ display: grid; grid-template-columns: 1fr; }
  .legal-document{ padding: 18px; }
  .legal-document p,
  .legal-document ul,
  .legal-document ol{ font-size: 15px; }
  .hero-visual{ min-height: 360px; }
  .cover-stage{
    width: 330px;
    height: 344px;
  }
  .quest-card-map{
    width: 240px;
    height: 236px;
    left: 0;
    top: 20px;
  }
  .map-grid{ height: 146px; background-size: 28px 28px; }
  .route-a{ width: 96px; }
  .route-b{ width: 62px; }
  .pin-a{ left: 44px; top: 46px; }
  .pin-b{ left: 146px; top: 78px; }
  .pin-c{ left: 90px; top: 110px; }
  .quest-card-scan{
    width: 148px;
    right: 0;
    top: 76px;
  }
  .quest-card-collection{
    width: 236px;
    left: 34px;
    bottom: 10px;
  }
  .collection-count{ font-size: 34px; }
  .mini-covers img{
    width: 46px;
    height: 46px;
  }
}
