:root {
  --sky-0: #f6fbff;
  --sky-1: #e9f6ff;
  --sky-2: #cfeeff;
  --ink: #0b2540;
  --muted: #3f5d77;
  --stroke: rgba(12, 44, 78, 0.12);
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 18px 50px rgba(15, 56, 92, 0.16);
  --shadow-soft: 0 10px 26px rgba(15, 56, 92, 0.12);
  --accent: #ff8a00;
  --accent-2: #ffb257;
  --radius: 22px;
  --radius-sm: 16px;
  --max: 980px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  color: var(--ink);
  font: 16px/1.55 "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(1200px 560px at 50% 26%, rgba(255, 255, 255, 0.28), transparent 74%),
    linear-gradient(180deg, #f6fbff 0%, #f5fbff 38%, #f3f9ff 64%, #edf6ff 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 0;
  height: clamp(420px, 52vw, 760px);
  opacity: 0.5;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(246, 251, 255, 0) 0%, rgba(246, 251, 255, 0.04) 34%, rgba(246, 251, 255, 0.22) 58%, rgba(243, 249, 255, 0.72) 82%, #f3f9ff 100%),
    url("assets/images/bg-sky-top.png") top center / cover no-repeat;
}

body::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 0;
  height: clamp(420px, 48vw, 720px);
  pointer-events: none;
  background:
    linear-gradient(180deg, #f3f9ff 0%, rgba(243, 249, 255, 0.72) 18%, rgba(239, 247, 255, 0.26) 46%, rgba(237, 246, 255, 0.06) 68%, rgba(237, 246, 255, 0) 100%),
    url("assets/images/bg-sun-btm.png") bottom center / cover no-repeat;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
}

.skip-link:focus {
  top: 16px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 18px 72px;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
  padding: 10px 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.brand-link:focus-visible,
.brand-home-link:focus-visible,
.btn:focus-visible,
.chip:focus-visible,
.drop-item:focus-visible,
.link:focus-visible {
  outline: 3px solid rgba(79, 168, 255, 0.35);
  outline-offset: 4px;
}

.brand-home-link {
  color: var(--ink);
}

.logo {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.logo-img {
  width: 56px;
  height: 56px;
}

.brand-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.install-menu {
  position: relative;
}

.install-menu summary {
  list-style: none;
}

.install-menu summary::-webkit-details-marker {
  display: none;
}

.install-menu[open] .chev {
  transform: rotate(180deg);
}

.chev {
  display: inline-block;
  transform-origin: center;
  transition: transform 0.16s ease;
}

.dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 270px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 26px 70px rgba(15, 56, 92, 0.22);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  color: var(--ink);
  border: 1px solid rgba(12, 44, 78, 0.08);
  background: rgba(255, 255, 255, 0.88);
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.drop-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 56, 92, 0.16);
  background: rgba(255, 255, 255, 0.96);
}

.drop-ico,
.badge {
  border: 1px solid rgba(12, 44, 78, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.drop-ico {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  flex: 0 0 auto;
}

.icon {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.drop-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.drop-txt small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.btn {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9));
  padding: 10px 14px;
  border-radius: 15px;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 10px 22px rgba(15, 56, 92, 0.1);
  transition: transform 0.12s ease, box-shadow 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btn:hover,
.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 56, 92, 0.16);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-accent {
  border-color: rgba(255, 138, 0, 0.24);
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(255, 138, 0, 0.22);
}

.topbar .btn-accent {
  border: none;
  border-radius: 5px;
  background: linear-gradient(180deg, #ff8d2f 0%, #ff7a1f 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.topbar .btn-accent:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.topbar .btn-accent:active {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  transform: translateY(0);
}

.topbar .install-menu > summary.btn {
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.topbar .install-menu > summary.btn:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.topbar .install-menu > summary.btn:active {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  transform: translateY(0);
}

#testPageBtn {
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

#testPageBtn:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

#testPageBtn:active {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  transform: translateY(0);
}

section {
  margin-top: 18px;
}

.card {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, var(--card), rgba(255, 255, 255, 0.86));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.card::before {
  display: none;
}

.hero,
.seo p,
.ui-copy,
.donate,
.site-footer {
  position: relative;
}

#why-built {
  background:
    radial-gradient(96% 46% at 50% 108%, rgba(255, 188, 140, 0.13) 0%, rgba(255, 188, 140, 0.07) 34%, rgba(255, 188, 140, 0) 78%),
    linear-gradient(180deg, var(--card), rgba(255, 255, 255, 0.86));
}

#donate {
  background:
    radial-gradient(96% 46% at 74% 108%, rgba(255, 188, 140, 0.22) 0%, rgba(255, 188, 140, 0.12) 34%, rgba(255, 188, 140, 0) 78%),
    linear-gradient(180deg, var(--card), rgba(255, 255, 255, 0.86));
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.hero h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-sub {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.hl {
  color: #1c5fa8;
  background: rgba(207, 238, 255, 0.55);
  border: 1px solid rgba(79, 168, 255, 0.22);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
}

.hl-product {
  color: var(--ink);
  background: rgba(210, 236, 255, 0.24);
  border-color: rgba(117, 184, 242, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.desc-product {
  font-weight: 650;
}

.desc-break {
  display: block;
  height: 8px;
}

.hero-break {
  display: block;
}

.stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 22px rgba(15, 56, 92, 0.1);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-width: 150px;
  justify-content: center;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.94);
}

.badge {
  width: 28px;
  height: 28px;
  border-radius: 10px;
}

.chip .icon {
  width: 19px;
  height: 19px;
}

.note {
  margin-top: 4px;
}

.section-title {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.seo h2,
.ui-copy h2,
.donate h2 {
  margin: 10px 0 0;
  font-size: 22px;
}

.seo p,
.ui-copy p,
.donate p {
  margin: 10px 0 0;
  color: var(--muted);
}

.desc-carousel {
  margin-top: 22px;
}

.desc-carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.desc-carousel-viewport {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(12, 44, 78, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.92));
  box-shadow: 0 18px 38px rgba(15, 56, 92, 0.12);
  touch-action: pan-y pinch-zoom;
  aspect-ratio: 16 / 10;
}

.desc-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.32s ease;
  will-change: transform;
}

.desc-carousel-slide {
  flex: 0 0 100%;
  margin: 0;
}

.desc-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ffffff;
  cursor: zoom-in;
}

.desc-carousel-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(12, 44, 78, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 255, 0.9));
  box-shadow: 0 12px 28px rgba(15, 56, 92, 0.12);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.desc-carousel-arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 56, 92, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(229, 242, 255, 0.94));
}

.desc-carousel-arrow:active {
  transform: translateY(0);
}

.desc-carousel-arrow span {
  transform: translateY(-1px);
}

.desc-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.desc-carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(63, 93, 119, 0.26);
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease;
}

.desc-carousel-dot[aria-current="true"] {
  background: #4c96d7;
  transform: scale(1.18);
}

.desc-carousel-arrow:focus-visible,
.desc-carousel-dot:focus-visible,
.desc-carousel-slide img:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid rgba(79, 168, 255, 0.35);
  outline-offset: 4px;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10030;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 41, 0.72);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  max-height: calc(100vh - 48px);
  padding: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(247, 252, 255, 0.96), rgba(229, 242, 255, 0.92));
  box-shadow: 0 28px 70px rgba(8, 24, 41, 0.28);
}

.lightbox-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(12, 44, 78, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 56, 92, 0.14);
}

.test-page {
  display: grid;
  gap: 10px;
}

.test-page h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.test-lede {
  max-width: 72ch;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.test-block {
  border: 1px solid rgba(12, 44, 78, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(15, 56, 92, 0.08);
  padding: 18px;
}

.test-block h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.test-demo {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(117, 184, 242, 0.14);
  background: linear-gradient(180deg, rgba(240, 248, 255, 0.92), rgba(235, 245, 255, 0.8));
  word-break: break-word;
}

.test-demo p {
  margin: 0 0 10px;
  color: var(--ink);
}

.test-demo p:last-child {
  margin-bottom: 0;
}

.test-textarea {
  width: 100%;
  min-height: 108px;
  padding: 12px;
  border: 1px solid rgba(117, 184, 242, 0.22);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.test-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullets li {
  margin: 6px 0;
}

.ui-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.ui-preview {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
}

.ui-preview::before {
  display: none;
}

.ui-header {
  position: relative;
  text-align: center;
}

.ui-visuals {
  display: grid;
  gap: 32px;
  align-content: start;
}

.ui-figure {
  margin: 0;
  position: relative;
}

.ui-shot-frame {
  position: relative;
}

.ui-shot-label {
  margin: 0 0 8px;
  color: #446179;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ui-shot-emphasis {
  font-weight: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ui-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 9px;
  border: 1px solid rgba(12, 44, 78, 0.1);
  box-shadow: 0 22px 31px rgba(15, 56, 92, 0.156);
  background: #ffffff;
}

.ui-marker {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.ui-connector {
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 0;
  border-top: 2px dotted rgba(255, 173, 106, 0.8);
  pointer-events: none;
}

.ui-connector-end {
  position: absolute;
  top: -5px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFAD6A;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.88);
}

.ui-marker-1 {
  top: calc(20% - 37px);
  right: auto;
  left: calc(100% - 17px);
}

.ui-marker-2 {
  top: calc(35% - 17px);
  left: calc(100% - 17px);
}

.ui-marker-3 {
  top: calc(50% - 17px);
  left: calc(100% - 17px);
}

.ui-marker-4 {
  top: calc(75% - 17px);
  left: calc(100% - 17px);
}

.ui-marker-5 {
  top: calc(50% - 17px);
  left: calc(100% - 17px);
}

.ui-connector-1 {
  top: calc(20% - 20px);
  left: calc(100% + 17px);
}

.ui-connector-2 {
  top: 35%;
  left: calc(100% + 17px);
}

.ui-connector-3 {
  top: 50%;
  left: calc(100% + 17px);
}

.ui-connector-4 {
  top: 75%;
  left: calc(100% + 17px);
}

.ui-connector-5 {
  top: 50%;
  left: calc(100% + 17px);
}

.ui-figure-secondary {
  width: 100%;
}

.ui-img-secondary {
  border-radius: 9px;
  box-shadow: 0 22px 31px rgba(15, 56, 92, 0.156);
}

.ui-copy {
  margin-top: 0;
  position: relative;
}

.ui-copy-items {
  position: relative;
  min-height: 412px;
}

.ui-preview .section-title,
.ui-preview .ui-copy p,
.ui-preview .ui-copy-item,
.ui-preview .ui-copy-body {
  color: #39556e;
}

.ui-preview .ui-copy h2 {
  color: var(--ink);
}

.ui-copy-item {
  position: absolute;
  left: 44px;
  right: 0;
  top: calc(var(--row) + 15px);
}

.ui-copy-mobile-icon {
  display: none;
}

.ui-copy-text {
  display: block;
}

.ui-copy-title {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.1;
}

.ui-copy-body {
  margin-top: 4px;
  line-height: 1.45;
}

.ui-item-1 {
  --row: calc(20% - 20px);
}

.ui-item-2 {
  --row: 35%;
}

.ui-item-3 {
  --row: 50%;
}

.ui-item-4 {
  --row: 75%;
  top: calc(var(--row) + 9px);
}

.ui-item-5 {
  --row: 504px;
  top: calc(var(--row) + 7px);
}

.ui-item-1,
.ui-item-2,
.ui-item-3,
.ui-item-4,
.ui-item-5 {
  transform: translateY(-4px);
}


.donate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 24px;
  align-items: start;
  margin-top: 10px;
}

.donate-copy {
  display: flex;
  justify-content: center;
  padding-top: 158px;
}

.donate-copy-card {
  width: min(100%, 460px);
  padding: 18px 20px;
  border: 1px solid rgba(12, 44, 78, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 253, 255, 0.84));
  box-shadow: 0 10px 22px rgba(15, 56, 92, 0.08);
}

.donate-copy h2 {
  margin-top: 0;
}

.donate-panel {
  width: 100%;
  max-width: 360px;
  justify-self: end;
}

.donate-actions {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.donate-actions #donateBtn {
  justify-content: center;
  text-align: center;
}

.donate-actions iframe {
  width: 100%;
  border-radius: 16px;
  background: #f9f9f9;
  box-shadow: 0 10px 22px rgba(15, 56, 92, 0.1);
}

.site-footer {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(15, 56, 92, 0.1);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 700;
  color: var(--ink);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tiny {
  font-size: 12px;
}

.link {
  color: var(--ink);
  border-bottom: 1px dashed rgba(11, 37, 64, 0.35);
}

.link:hover {
  border-bottom-style: solid;
}

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

  .ui-visuals {
    justify-items: center;
  }

  .ui-img {
    max-width: 520px;
    margin: 0 auto;
  }

  .ui-figure-secondary {
    max-width: 520px;
    width: 100%;
  }

  .ui-connector {
    display: none;
  }

  .ui-copy {
    margin-top: 0;
  }

  .ui-copy-items {
    min-height: auto;
  }

  .ui-copy-item {
    position: static;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    left: auto;
    right: auto;
    top: auto;
    margin-top: 12px;
  }

  .ui-copy-mobile-icon {
    display: block;
    width: 24px;
    height: 30px;
    flex: 0 0 24px;
    margin-top: 1px;
  }

  .ui-copy-text {
    flex: 1 1 auto;
    min-width: 0;
  }

  .ui-item-1,
  .ui-item-2,
  .ui-item-3,
  .ui-item-4,
  .ui-item-5 {
    --row: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    top: auto;
  }

  .cta {
    display: none;
  }

  .wrap {
    padding: 14px 14px 48px;
  }

  .topbar {
    padding: 10px 12px;
  }

  .brand {
    min-width: auto;
  }

  .brand-tag {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-break {
    display: none;
  }

  .desc-carousel-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    position: relative;
  }

  .desc-carousel-arrow {
    display: inline-flex;
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(15, 56, 92, 0.18);
  }

  .desc-carousel-arrow:hover {
    transform: translateY(calc(-50% - 1px));
  }

  .desc-carousel-arrow-prev {
    left: 10px;
  }

  .desc-carousel-arrow-next {
    right: 10px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 10px;
    border-radius: 20px;
  }

  .lightbox-image {
    max-height: calc(100vh - 72px);
    border-radius: 14px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
  }

  .test-page h1 {
    font-size: 34px;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .donate-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .donate-copy {
    padding-top: 0;
  }

  .donate-panel {
    max-width: none;
    justify-self: stretch;
  }

  .btn {
    padding: 10px 12px;
  }
}

@media (max-width: 600px) {
  .topbar,
  .site-footer {
    border-radius: 24px;
  }

  .topbar,
  .cta {
    flex-wrap: wrap;
  }

  .cta {
    width: 100%;
    justify-content: flex-end;
  }

  .dropdown {
    width: min(270px, calc(100vw - 44px));
  }

  .card {
    padding: 18px;
  }

  .hero .stores {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 30px;
    align-items: center;
  }

  .hero .stores .chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    min-width: 58px;
    border-radius: 12px;
    font-size: 0;
    line-height: 0;
    gap: 0;
  }

  .hero .stores .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    flex: 0 0 auto;
  }

  .hero .stores .icon {
    width: 42px;
    height: 42px;
  }

  .footer-links {
    gap: 6px;
  }
}
