
:root {
  color-scheme: light;
  --lime: #A5F46D;          
  --lime-hover: #97EA5B;
  --lime-soft: #E8FAD8;     
  --lime-bar: #8FE052;      
  --green: #226603;         
  --purple: #7635DF;        
  --purple-soft: #EEE6FB;   
  --ink: #000000;
  --ink-900: #14181B;
  --ink-2: #707070;         
  --ink-2-on-grey: #616161; 
  --bg: #FFFFFF;
  --bg-page: #F9F9F9;
  --info: #F2F2F2;          
  --chip: #EBEBEB;
  --line: #EFEFEF;
  --line-2: #E6E6E6;        
  --divider: #DADADA;
  --night: #14181B;         
  --r-img: 12px;
  --r-btn: 16px;
  --r-card: 20px;
  --r-badge: 8px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, .06);
  --shadow-pin: 0 3px 10px rgba(0, 0, 0, .2);
  --font: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --gutter: 16px;
  --header-h: 64px;
}
@media (min-width: 600px) { :root { --gutter: 24px; } }
@media (min-width: 1024px) { :root { --gutter: 40px; --header-h: 72px; } }
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 8px);
  background: var(--bg);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
:root:lang(zh-Hans) {
  --font: "Onest", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
}
:lang(zh-Hans) body, body:lang(zh-Hans) { line-height: 1.65; }
:lang(zh-Hans) :is(h1, h2, h3, .lead, .btn, .store b) { letter-spacing: 0; }
:lang(zh-Hans) .hero h1 { line-height: 1.12; }
:lang(zh-Hans) .hl { white-space: nowrap; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3 { font-weight: 700; text-wrap: balance; }
p, li, dd { text-wrap: pretty; }
a { color: inherit; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 6px;
}
.sr {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: absolute;
  left: 12px; top: -100px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}
.skip:focus { top: 12px; }
.wrap {
  width: 100%;
  max-width: calc(1200px + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.i { width: 20px; height: 20px; flex: none; }
.lead {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-900);
}
@media (min-width: 1024px) { .lead { font-size: 20px; } }
.small { font-size: 14px; color: var(--ink-2); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--r-btn);
  border: 1.5px solid transparent;
  font: 600 16px/1.2 var(--font);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover { background: var(--lime-hover); }
.btn-outline { background: var(--bg); border-color: var(--line-2); color: var(--ink); }
.btn-outline:hover { border-color: var(--divider); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 15px; border-radius: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px 20px 8px 16px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: background-color .15s ease, transform .15s ease;
}
.store:hover { background: #262626; }
.store:active { transform: scale(.98); }
.store .i { width: 26px; height: 26px; }
.store span { display: flex; flex-direction: column; line-height: 1.1; }
.store small { font-size: 11px; font-weight: 500; opacity: .85; }
.store b { font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-in {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
  white-space: nowrap;
  border-radius: 10px;
}
.logo img { border-radius: 10px; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-900);
}
.site-nav a:hover { text-decoration: underline; }
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.menu-btn {
  display: none;
  place-items: center;
  width: 44px; height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--info);
  color: var(--ink);
  cursor: pointer;
}
.menu-btn .i { width: 22px; height: 22px; }
.menu-btn .i-close { display: none; }
.menu-btn[aria-expanded="true"] .i-menu { display: none; }
.menu-btn[aria-expanded="true"] .i-close { display: block; }
.lang { position: relative; }
.lang summary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  padding: 0 8px 0 10px;
  border-radius: 12px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 14px;
  user-select: none;
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary:hover { background: var(--info); }
.lang summary .i { width: 16px; height: 16px; transition: transform .15s ease; }
.lang[open] summary .i { transform: rotate(180deg); }
.lang-badge {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 26px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--chip);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 200px;
  padding: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
  z-index: 60;
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 6px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}
.lang-menu a:hover { background: var(--info); }
.lang-menu a[aria-current="true"] { background: var(--lime-soft); }
.lang-menu a[aria-current="true"] .lang-badge { background: var(--lime); }
@media (max-width: 959px) {
  .menu-btn { display: inline-grid; }
  .js .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    margin: 0;
    padding: 8px var(--gutter) 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 24px rgba(0, 0, 0, .06);
  }
  .js .site-nav.is-open { display: block; }
  .js .site-nav ul { flex-direction: column; gap: 0; }
  .js .site-nav a { min-height: 52px; font-size: 20px; font-weight: 600; width: 100%; border-bottom: 1px solid var(--line); }
  .js .site-nav li:last-child a { border-bottom: 0; }
  html:not(.js) .header-in { flex-wrap: wrap; }
  html:not(.js) .site-nav { order: 3; width: 100%; margin: 0 0 8px; }
  html:not(.js) .menu-btn { display: none; }
}
@media (max-width: 479px) {
  .header-download { display: none; }
}
.section { padding-block: 72px; }
@media (min-width: 1024px) { .section { padding-block: 112px; } }
.section-head { display: grid; gap: 14px; margin-bottom: 36px; max-width: 720px; }
.section-head h2 {
  font-size: clamp(30px, 3vw + 18px, 48px);
  line-height: 1.08;
  letter-spacing: -.028em;
}
@media (min-width: 1024px) {
  .section-head { margin-bottom: 56px; }
  .section-head-row { max-width: none; grid-template-columns: 1fr 1fr; align-items: end; gap: 48px; }
  .section-head-row .lead { max-width: 520px; justify-self: end; }
}
.hero { padding-block: 24px 16px; overflow: clip; }
.hero-in { display: grid; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
}
.hero h1 {
  font-size: clamp(42px, 5.4vw + 18px, 84px);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}
.hl {
  background: linear-gradient(transparent 64%, var(--lime) 64%, var(--lime) 94%, transparent 94%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-inline: .06em;
  margin-inline: -.06em;
}
.hero .lead { max-width: 560px; margin-bottom: 28px; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.hero-facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero-facts li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime-bar);
}
@media (min-width: 960px) {
  .hero { padding-block: 32px 96px; }
  .hero-in { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 32px; min-height: min(760px, calc(100svh - var(--header-h) - 24px)); }
}
.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  padding-block: 12px 24px;
  --pw: 280px;
}
@media (min-width: 400px) { .hero-visual { --pw: 300px; } }
@media (min-width: 1200px) { .hero-visual { --pw: 318px; } }
.halo {
  position: absolute;
  z-index: 0;
  top: 50%; left: 50%;
  width: calc(var(--pw) * 1.8);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--lime-soft) 0 58%, rgba(232, 250, 216, 0) 70.5%);
  transform: translate(-50%, -50%);
}
.phone {
  position: relative;
  z-index: 1;
  width: var(--pw);
  aspect-ratio: 300 / 640;
  padding: 10px;
  border-radius: 48px;
  background: #0B0B0C;
  box-shadow:
    0 0 0 1.5px #3A3A3C inset,
    0 40px 80px -28px rgba(20, 24, 27, .45),
    0 12px 24px -12px rgba(20, 24, 27, .3);
}
.screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background: #ECEDEA;
  isolation: isolate;
}
.map { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-letter { font: 700 11px/1 var(--font); fill: #fff; }
.map-pulse { transform-box: fill-box; transform-origin: center; opacity: 0; }
.statusbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
  padding: 4px 20px 0 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.sb-icons { display: flex; align-items: flex-end; gap: 3px; }
.sb-icons i { display: block; background: var(--ink); border-radius: 2px; }
.sb-icons i:nth-child(1) { width: 16px; height: 10px; clip-path: polygon(0 100%, 100% 0, 100% 100%); border-radius: 1px; }
.sb-icons i:nth-child(2) { width: 14px; height: 10px; border-radius: 10px 10px 2px 2px; clip-path: polygon(50% 100%, 0 20%, 20% 0, 80% 0, 100% 20%); }
.sb-icons i:nth-child(3) { width: 22px; height: 11px; border-radius: 3.5px; box-shadow: inset 0 0 0 1.5px var(--ink); background: linear-gradient(90deg, var(--ink) 70%, transparent 70%); background-clip: content-box; padding: 2.5px; }
.island {
  position: absolute;
  z-index: 3;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px; height: 30px;
  padding: 0 10px 0 9px;
  border-radius: 999px;
  background: #000;
  color: var(--lime);
}
.island-glyph .i { width: 15px; height: 15px; }
.island-val { font-size: 12px; font-weight: 600; font-variant-numeric: tabular-nums; }
.sheet {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: 8px 16px 18px;
  background: var(--bg);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, .10);
}
.handle { width: 36px; height: 4px; margin: 0 auto 12px; border-radius: 2px; background: var(--divider); }
.sheet-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.sheet-title { font-size: 16px; font-weight: 600; line-height: 1.25; }
.sheet-sub { font-size: 12px; color: var(--ink-2); margin-top: 2px; }
.sheet-eta { text-align: right; line-height: 1.1; white-space: nowrap; }
.sheet-eta b { display: block; font-size: 22px; font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.sheet-eta span { font-size: 11px; color: var(--ink-2); }
.bar { position: relative; height: 6px; margin: 12px 0 14px; border-radius: 3px; background: var(--line); }
.bar i { position: absolute; inset: 0 auto 0 0; width: 62%; border-radius: 3px; background: var(--lime-bar); }
.points { position: relative; display: grid; gap: 12px; font-size: 13px; font-weight: 500; line-height: 1.25; }
.points::before {
  content: "";
  position: absolute;
  left: 8.5px; top: 18px; bottom: 18px;
  border-left: 2px dotted var(--divider);
}
.points li { display: flex; align-items: center; gap: 10px; }
.pt {
  position: relative;
  display: grid;
  place-items: center;
  flex: none;
  width: 19px; height: 19px;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.pt-a { background: var(--ink); }
.pt-b { background: var(--purple); }
.sheet-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; }
.sheet-foot img { width: 92px; }
.sheet-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--lime);
  font-size: 14px;
  font-weight: 600;
}
.sheet-call .i { width: 16px; height: 16px; }
.live-card {
  position: absolute;
  z-index: 4;
  top: 22%;
  left: 0;
  width: min(268px, 88%);
  padding: 14px 14px 16px;
  border-radius: 24px;
  background: #000;
  color: #fff;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, .45);
}
.lc-row { display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; gap: 10px; align-items: center; }
.lc-glyph { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--lime); color: #000; }
.lc-glyph .i { width: 18px; height: 18px; }
.lc-text { display: grid; min-width: 0; line-height: 1.2; }
.lc-text b { font-size: 14px; font-weight: 600; }
.lc-text span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; 
  line-clamp: 3;
  overflow: hidden;
  font-size: 12px;
  color: rgba(255, 255, 255, .62);
}
.lc-val { display: grid; justify-items: end; line-height: 1.1; white-space: nowrap; }
.lc-val b { font-size: 22px; font-weight: 700; color: var(--lime); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.lc-val span { font-size: 11px; color: rgba(255, 255, 255, .62); }
.lc-bar { position: relative; height: 6px; margin-top: 14px; border-radius: 3px; background: rgba(255, 255, 255, .16); }
.lc-bar i { position: absolute; inset: 0 auto 0 0; width: 62%; border-radius: 3px; background: var(--lime-bar); }
.lc-bar i::after {
  content: "";
  position: absolute;
  right: -6px; top: 50%;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}
@media (min-width: 400px) { .live-card { left: max(0px, calc(50% - var(--pw) / 2 - 56px)); } }
@media (min-width: 960px) {
  .hero-visual { justify-items: end; padding-right: 4%; }
  .halo { left: auto; right: calc(4% + var(--pw) / 2); transform: translate(50%, -50%); }
  .live-card { top: 30%; left: auto; right: calc(4% + var(--pw) - 64px); width: 280px; }
}
@media (prefers-reduced-motion: no-preference) {
  html.smooth { scroll-behavior: smooth; }
  .is-moving .bar i,
  .is-moving .lc-bar i { animation: grow 6s cubic-bezier(.4, 0, .2, 1) both; }
  .is-moving .map-pulse { animation: pulse 2.4s ease-out 1s infinite; }
  .is-moving .live-card { animation: rise .7s cubic-bezier(.2, .7, .2, 1) .3s both; }
}
@keyframes grow { from { width: 28%; } to { width: 62%; } }
@keyframes pulse { 0% { opacity: .35; transform: scale(1); } 100% { opacity: 0; transform: scale(2.6); } }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.services-in { display: grid; gap: 8px; }
.extras { font-size: 15px; color: var(--ink-2); max-width: 460px; }
.extras-after { margin-top: 32px; }
@media (max-width: 1023px) { .section-head .extras { display: none; } }
@media (min-width: 1024px) { .extras-after { display: none; } }
.extras b { color: var(--ink); font-weight: 600; }
.svc-grid { display: grid; gap: 40px 24px; }
.svc h3 { font-size: 22px; line-height: 1.2; letter-spacing: -.015em; margin: 16px 0 8px; }
.svc p { color: var(--ink-2); }
.svc-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--r-img);
  background: var(--lime-soft);
  color: var(--ink-900) !important;
  font-size: 15px;
}
.svc-more { margin-top: 10px; }
.svc-more a { display: inline-flex; align-items: center; gap: 4px; min-height: 44px; font-weight: 600; color: var(--ink); text-decoration: none; }
.svc-more a:hover { text-decoration: underline; }
.svc-more .i { width: 18px; height: 18px; }
.svc-img { position: relative; aspect-ratio: 562 / 224; }
.svc-img img { width: 100%; height: 100%; object-fit: contain; }
.svc-wide .svc-img { aspect-ratio: 562 / 224; overflow: hidden; border-radius: 26px; }
.svc-wide .svc-img img { object-fit: cover; }
.badge {
  position: absolute;
  top: 10px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
  border-radius: var(--r-badge);
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}
.badge .i { width: 14px; height: 14px; }
@media (min-width: 720px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-wide { grid-column: 1 / -1; }
  .svc-wide .svc-img { aspect-ratio: 1252 / 224; border-radius: 0; overflow: visible; }
  .svc-wide .svc-img img { object-fit: contain; }
  .svc-wide p { max-width: 560px; }
}
@media (min-width: 1024px) {
  .services-in { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 64px; align-items: start; }
  .services .section-head { position: sticky; top: calc(var(--header-h) + 32px); margin-bottom: 0; }
  .services .section-head h2 { font-size: clamp(32px, 1.6vw + 18px, 42px); }
  .services .extras { margin-top: 12px; }
}
.safari { background: var(--bg-page); }
.safari-in { display: grid; gap: 32px; }
.safari-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 36% 60%;
  border-radius: var(--r-card);
}
.safari-body h2 {
  font-size: clamp(30px, 3vw + 18px, 48px);
  line-height: 1.08;
  letter-spacing: -.028em;
  margin-bottom: 14px;
}
.safari-body > .lead { margin-bottom: 28px; }
.pkgs { display: grid; gap: 10px; }
.pkg {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.pkg h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.pkg dl { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.pkg dt { font-size: 12px; color: var(--ink-2); }
.pkg dd { font-size: 14px; font-weight: 500; }
.programme-title { font-size: 17px; font-weight: 600; margin: 28px 0 12px; }
.programme { display: grid; gap: 10px; margin-bottom: 18px; }
.programme li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.programme img {
  flex: none;
  width: 40px; height: 40px;
  padding: 7px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
}
@media (min-width: 600px) {
  .pkg dl { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .programme { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .safari-in { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 56px; align-items: start; }
  .safari-photo { position: sticky; top: calc(var(--header-h) + 32px); }
  .safari-photo img { aspect-ratio: 4 / 5; }
}
.photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.photo { position: relative; overflow: hidden; border-radius: 16px; }
.photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .6));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
@media (min-width: 900px) {
  .photos { grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
  .photo img { aspect-ratio: 3 / 4; }
  .photo figcaption { padding: 40px 16px 14px; font-size: 15px; }
}
.regions { display: grid; gap: 12px; }
.region {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: var(--r-card);
  background: var(--bg);
  border: 1px solid var(--line);
}
.region-top { display: flex; justify-content: space-between; gap: 8px; font-size: 14px; color: var(--ink-2); }
.region-cur { font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: .02em; }
.region h3 { font-size: 24px; line-height: 1.15; letter-spacing: -.02em; margin-top: -4px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips li {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--info);
  font-size: 13px;
  font-weight: 500;
}
.region-now {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  margin-top: auto;
  padding: 5px 9px;
  border-radius: var(--r-badge);
  background: var(--lime);
  font-size: 12px;
  font-weight: 600;
}
.region-now .i { width: 14px; height: 14px; }
@media (min-width: 600px) { .regions { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .regions { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.how { background: var(--bg-page); }
.steps { position: relative; display: grid; gap: 36px; --dot: 44px; --gap: 36px; }
.step { position: relative; padding-left: calc(var(--dot) + 20px); }
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(var(--dot) / 2 - 2px);
  top: calc(var(--dot) / 2);
  width: 4px;
  height: calc(100% + var(--gap));
  border-radius: 2px;
  background: var(--purple);
}
.step-dot {
  position: absolute;
  z-index: 1;
  left: 0; top: 0;
  display: grid;
  place-items: center;
  width: var(--dot); height: var(--dot);
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: 4px solid var(--bg-page);
  box-shadow: var(--shadow-pin);
}
.step-a { background: var(--ink); }
.step-b { background: var(--purple); }
.step-mid { background: var(--bg); box-shadow: inset 0 0 0 4px var(--purple), var(--shadow-pin); }
.step h3 { font-size: 22px; line-height: 1.2; letter-spacing: -.015em; margin: 8px 0 8px; }
.step p { color: var(--ink-2); max-width: 420px; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); --gap: 32px; gap: var(--gap); }
  .step { padding-left: 0; padding-top: calc(var(--dot) + 20px); }
  .step:not(:last-child)::before {
    left: calc(var(--dot) / 2);
    top: calc(var(--dot) / 2 - 2px);
    width: calc(100% + var(--gap));
    height: 4px;
  }
  .step h3 { margin-top: 0; }
}
.feat-grid { display: grid; gap: 28px 24px; }
@media (max-width: 599px) {
  .feat, .role { display: grid; grid-template-columns: 52px minmax(0, 1fr); column-gap: 16px; align-items: start; }
  .feat-ic, .role-ic { grid-row: span 2; }
  .feat h3, .role h3 { margin-top: 2px !important; }
}
.feat h3 { font-size: 18px; line-height: 1.25; margin: 16px 0 6px; letter-spacing: -.01em; }
.feat p { color: var(--ink-2); font-size: 15px; }
.feat-ic {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--info);
  color: var(--ink);
}
.feat-ic .i { width: 26px; height: 26px; }
.feat-accent .feat-ic { background: var(--purple-soft); color: var(--purple); }
@media (min-width: 600px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .feat-grid { grid-template-columns: repeat(4, 1fr); gap: 48px 32px; } }
.partners { background: var(--night); color: #fff; }
.partners .lead { color: rgba(255, 255, 255, .78); }
.partners :focus-visible { outline-color: var(--lime); }
.roles { display: grid; gap: 28px 24px; margin-bottom: 48px; }
.role h3 { font-size: 20px; margin: 16px 0 6px; letter-spacing: -.01em; }
.role p { color: rgba(255, 255, 255, .72); font-size: 15px; }
.role-ic {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  color: var(--lime);
}
.role-ic .i { width: 26px; height: 26px; }
@media (min-width: 600px) { .roles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .roles { grid-template-columns: repeat(5, 1fr); gap: 32px; } }
.join {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: var(--r-card);
  background: #1F2428;
}
.join-art {
  width: 100%; max-width: 360px; margin: -8px auto -16px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}
.join h3 { font-size: 26px; letter-spacing: -.02em; margin-bottom: 10px; }
.join p { color: rgba(255, 255, 255, .78); margin-bottom: 22px; max-width: 560px; }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, .32); color: #fff; }
.btn-ghost:hover { border-color: rgba(255, 255, 255, .6); }
.btn .i { width: 20px; height: 20px; }
@media (min-width: 900px) {
  .join { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: center; gap: 40px; padding: 40px 48px; }
  .join-art { margin: 0; }
}
.about-in { display: grid; gap: 32px; }
.about-text h2 {
  font-size: clamp(30px, 3vw + 18px, 48px);
  line-height: 1.08;
  letter-spacing: -.028em;
  margin-bottom: 18px;
}
.about-text .lead { margin-bottom: 14px; }
.about-text p:not(.lead) { color: var(--ink-2); font-size: 17px; }
.facts {
  display: grid;
  gap: 0;
  padding: 8px 24px;
  border-radius: var(--r-card);
  background: var(--info);
}
.facts > div { padding: 16px 0; border-bottom: 1px solid var(--divider); }
.facts > div:last-child { border-bottom: 0; }
.facts dt { font-size: 14px; color: var(--ink-2-on-grey); margin-bottom: 2px; }
.facts dd { font-size: 17px; font-weight: 600; }
@media (min-width: 1024px) {
  .about-in { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 64px; align-items: start; }
}
.contacts { padding-top: 0; }
.contacts-in { display: grid; gap: 16px; }
.contact-card, .download-card { padding: 28px 24px; border-radius: var(--r-card); }
.contact-card { border: 1px solid var(--line); background: var(--bg); }
.contact-card h2, .download-card h2 { font-size: clamp(28px, 2vw + 18px, 40px); letter-spacing: -.025em; line-height: 1.1; margin-bottom: 10px; }
.contact-card > p:not(.small) { color: var(--ink-2); margin-bottom: 20px; }
.contact-list { display: grid; gap: 10px; margin-bottom: 16px; }
.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--info);
  text-decoration: none;
  transition: background-color .15s ease;
}
.contact-list a:hover { background: var(--chip); }
.contact-list small { display: block; font-size: 13px; color: var(--ink-2-on-grey); }
.contact-list b { font-size: 18px; font-weight: 600; }
.c-ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--bg); flex: none; }
.download-card { background: var(--lime); color: var(--ink); display: flex; flex-direction: column; align-items: flex-start; }
.download-card img { border-radius: 18px; margin-bottom: 20px; box-shadow: 0 10px 24px -10px rgba(34, 102, 3, .6); }
.download-card p { margin-bottom: 24px; font-size: 17px; }
.download-card :focus-visible { outline-color: var(--ink); }
@media (min-width: 900px) {
  .contacts-in { grid-template-columns: 1fr 1fr; gap: 20px; }
  .contact-card, .download-card { padding: 40px; }
}
.site-footer { background: var(--bg-page); border-top: 1px solid var(--line); padding-top: 48px; }
.footer-in { display: grid; gap: 32px; }
.footer-brand p { color: var(--ink-2); margin-top: 12px; max-width: 320px; font-size: 15px; }
.footer-col h2 { font-size: 14px; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-size: 15px;
  text-decoration: none;
}
.footer-col a:hover { text-decoration: underline; }
.footer-col a[aria-current="true"] { font-weight: 600; }
.footer-bottom { padding-block: 24px 32px; margin-top: 32px; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-2); }
@media (max-width: 719px) {
  .footer-in { grid-template-columns: 1fr 1fr; column-gap: 16px; }
  .footer-brand, .footer-col:last-child { grid-column: 1 / -1; }
  .footer-col:last-child ul { display: flex; flex-wrap: wrap; column-gap: 20px; }
}
@media (min-width: 720px) {
  .footer-in { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.page-404 { background: var(--bg); }
.nf { min-height: 100svh; display: grid; align-items: center; padding-block: 48px; }
.nf-in { display: grid; justify-items: start; gap: 16px; max-width: 640px; }
.nf .logo { margin-bottom: 32px; }
.nf h1 { font-size: clamp(36px, 4vw + 20px, 60px); letter-spacing: -.035em; line-height: 1.05; }
.nf .lead { color: var(--ink-2); margin-bottom: 8px; }
.nf-route { display: flex; align-items: center; gap: 0; margin-bottom: 8px; --dot: 40px; }
.nf-route .step-dot { position: static; border-color: var(--bg); }
.nf-route i { width: 96px; height: 4px; background: repeating-linear-gradient(90deg, var(--purple) 0 10px, transparent 10px 18px); }
.nf-q { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 3px dashed var(--purple); color: var(--purple); font-weight: 700; }
.nf-langs-title { font-size: 15px; font-weight: 600; color: var(--ink-2); margin-top: 24px; }
.nf-langs { display: flex; flex-wrap: wrap; gap: 8px; }
.nf-langs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 4px 14px 4px 6px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  text-decoration: none;
  font-weight: 500;
}
.nf-langs a:hover { border-color: var(--divider); background: var(--info); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
