:root {
  --bg: #eeeef5;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-ink: #1e2643;
  --text: #1e2643;
  --text-soft: #5e7191;
  --text-muted: #8fa3bd;
  --line: #e8ecf2;
  --accent: #3b6dea;
  --accent-soft: #eaf2ff;
  --accent-deep: #1a4ec2;
  --brand-red: #b11c2c;
  --shadow: 0 24px 60px rgba(30, 38, 67, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(59, 109, 234, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(177, 28, 44, 0.08), transparent 24%),
    linear-gradient(180deg, #f5f7fc 0%, var(--bg) 100%);
}

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

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

.page-shell {
  min-height: 100vh;
}

.wrap {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(30, 38, 67, 0.08);
  box-shadow: 0 12px 28px rgba(30, 38, 67, 0.05);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-lockup {
  width: auto;
  height: 44px;
  max-width: min(210px, 48vw);
  object-fit: contain;
}

.brand-label {
  color: var(--surface-ink);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-size: 1.08rem;
}

.brand-tag {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a:not(.button) {
  color: rgba(30, 38, 67, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--surface-ink);
}

.button-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  font-size: 0.96rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--surface-ink), #2a3356);
  box-shadow: 0 18px 36px rgba(30, 38, 67, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.button-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 16px 32px rgba(59, 109, 234, 0.22);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  background: var(--accent-soft);
  border: 1px solid rgba(59, 109, 234, 0.18);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero {
  padding: 4.6rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.4rem;
  align-items: stretch;
}

.hero-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 1.7rem;
  box-shadow: var(--shadow);
  height: 100%;
  box-sizing: border-box;
}

.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
  color: var(--surface-ink);
}

.hero-mark {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin: 1rem 0 1rem;
}

.hero-copy p {
  margin: 0 0 1.4rem;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.62;
  max-width: 590px;
}

.meta-chips {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 1.55rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  background: #f4f6fa;
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.hero-note .text-link {
  color: var(--accent-deep);
}

.hero-note .text-link:hover {
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: auto;
  margin-top: 0;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.screens-panel {
  position: relative;
  min-height: 34rem;
  padding: 1rem;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.screens-collage {
  position: relative;
  min-height: 32rem;
}

.screen-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(30, 38, 67, 0.08);
  transform-origin: center center;
}

.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-frame--primary {
  z-index: 3;
  top: 0.25rem;
  right: 2.75rem;
  width: min(14.5rem, 45%);
  height: 28rem;
  transform: rotate(-4deg);
}

.screen-frame--secondary {
  z-index: 2;
  top: 8.75rem;
  left: 0.2rem;
  width: min(12.5rem, 39%);
  height: 24rem;
  transform: rotate(6deg);
}

.screen-frame--tertiary {
  z-index: 1;
  top: 12rem;
  right: 0.4rem;
  width: min(11.25rem, 35%);
  height: 21rem;
  transform: rotate(8deg);
}

.download-panel {
  margin-top: 1.1rem;
  padding: 1.2rem;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.download-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.download-head h2 {
  margin: 0 0 0.3rem;
  color: var(--surface-ink);
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.download-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.qr-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.qr-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.qr-code {
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(30, 38, 67, 0.88) 9%, transparent 9% 18%, rgba(30, 38, 67, 0.88) 18% 27%, transparent 27% 36%, rgba(30, 38, 67, 0.88) 36% 45%, transparent 45% 55%, rgba(30, 38, 67, 0.88) 55% 64%, transparent 64% 73%, rgba(30, 38, 67, 0.88) 73% 82%, transparent 82%),
    linear-gradient(rgba(30, 38, 67, 0.88) 9%, transparent 9% 18%, rgba(30, 38, 67, 0.88) 18% 27%, transparent 27% 36%, rgba(30, 38, 67, 0.88) 36% 45%, transparent 45% 55%, rgba(30, 38, 67, 0.88) 55% 64%, transparent 64% 73%, rgba(30, 38, 67, 0.88) 73% 82%, transparent 82%),
    #ffffff;
  overflow: hidden;
}

.qr-code::before,
.qr-code::after,
.qr-code span {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 5px solid var(--surface-ink);
  background: #ffffff;
  border-radius: 4px;
}

.qr-code::before {
  top: 8px;
  left: 8px;
}

.qr-code::after {
  top: 8px;
  right: 8px;
}

.qr-code span {
  left: 8px;
  bottom: 8px;
}

.qr-meta {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}

.qr-kicker {
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qr-title {
  color: var(--surface-ink);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
}

.qr-text {
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.section {
  padding: 1.65rem 0 0.5rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-head h2 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-head p,
.lead {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1rem;
  max-width: 720px;
}

.stats-grid,
.cards-grid,
.steps-grid,
.two-up,
.legal-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.stat-card,
.step-card,
.legal-card,
.faq-card,
.article-card,
.support-card,
.highlight-banner,
.shot-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.stat-card,
.step-card,
.card,
.legal-card,
.faq-card,
.support-card,
.highlight-banner,
.article-card,
.shot-card {
  padding: 1.35rem;
}

.step-card {
  background: #ffffff;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-value {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--surface-ink);
}

.stat-body {
  margin-top: 0.55rem;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.96rem;
}

.icon-badge {
  display: none;
}

.card h3,
.step-card h3,
.legal-card h3,
.support-card h3,
.faq-card h3,
.article-card h2 {
  margin: 0.95rem 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.card p,
.step-card p,
.legal-card p,
.support-card p,
.article-card p,
.article-card li {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
  font-size: 0.97rem;
}

.link-row {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-deep);
  font-weight: 800;
  font-size: 0.94rem;
}

.feature-list,
.inline-list,
.article-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.inline-list li,
.article-list li {
  position: relative;
  padding-left: 1.3rem;
}

.feature-list li::before,
.inline-list li::before,
.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.highlight-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(234, 242, 255, 0.92)),
    var(--surface);
}

.highlight-banner strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.muted {
  color: var(--text-muted);
}

.release-card {
  background: linear-gradient(160deg, rgba(30, 38, 67, 0.98), #2c3760);
  color: #fff;
}

.release-card h3,
.release-card p,
.release-card li,
.release-card .muted {
  color: inherit;
}

.release-card .muted {
  opacity: 0.75;
}

.shot-card {
  overflow: hidden;
}

.shot-card img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(23, 40, 77, 0.08);
  margin-bottom: 1rem;
}

.release-list li::before {
  background: #fff;
}

.cta-panel {
  margin: 2rem 0 0;
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(234, 242, 255, 0.95), rgba(255, 255, 255, 0.94));
  border: 1px solid var(--line);
}

.cta-panel h3 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.cta-panel p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.site-footer {
  margin-top: 3.5rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #1e2643;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a,
.footer-meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.article-page {
  padding: 3rem 0 0.5rem;
}

.article-page .wrap {
  display: grid;
  gap: 1rem;
}

.article-layout {
  max-width: 880px;
  margin: 0 auto;
}

.article-hero {
  margin-bottom: 0;
}

.article-stack {
  gap: 1rem;
}

.article-hero {
  margin-bottom: 1rem;
}

.article-top-card {
  background: linear-gradient(180deg, #1e2643 0%, #273154 100%);
  border-radius: 32px;
  padding: 1.6rem;
  margin-bottom: 0;
  box-shadow: 0 28px 70px rgba(30, 38, 67, 0.16);
}

.article-top-card strong,
.hero-panel strong {
  color: inherit;
}

.article-hero h1 {
  margin: 0.9rem 0 0.7rem;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.article-hero p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}

.article-stack {
  display: grid;
  gap: 1rem;
}

.article-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.article-card > p + p,
.article-card > ul,
.article-card > .inline-list {
  margin-top: 0.8rem;
}

.article-card strong {
  color: var(--surface-ink);
}

.note-banner {
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(59, 109, 234, 0.16);
  background: linear-gradient(135deg, rgba(234, 242, 255, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow);
}

.note-banner strong {
  display: block;
  margin-bottom: 0.35rem;
}

.support-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  margin-top: 1rem;
}

.details-group {
  display: grid;
  gap: 0.85rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  font-weight: 800;
  color: var(--surface-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

details[open] summary::after {
  content: "-";
}

.details-body {
  padding: 0 1.3rem 1.25rem;
  color: var(--text-soft);
  line-height: 1.72;
  font-size: 0.97rem;
}

.details-body p,
.details-body ul {
  margin: 0;
}

.details-body ul {
  padding-left: 1.1rem;
}

.details-body ul li + li {
  margin-top: 0.45rem;
}

.text-link {
  color: var(--accent-deep);
  font-weight: 800;
}

.kicker-list {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.kicker {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-form-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--surface-ink);
  letter-spacing: -0.01em;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: #f8f9fc;
  color: var(--text);
  font-size: 0.96rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  box-sizing: border-box;
  appearance: none;
}

.form-input:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 109, 234, 0.12);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235e7191' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 520px;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-status--success {
  background: #edfaf3;
  border: 1px solid #a3e6c3;
  color: #1a7a4a;
}

.form-status--error {
  background: #fff0f0;
  border: 1px solid #f5b8b8;
  color: #b11c2c;
}

/* Download page */
.download-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.download-store-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.download-store-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 72px rgba(30, 38, 67, 0.12);
}

.download-store-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.download-store-qr {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(30, 38, 67, 0.88) 9%, transparent 9% 18%, rgba(30, 38, 67, 0.88) 18% 27%, transparent 27% 36%, rgba(30, 38, 67, 0.88) 36% 45%, transparent 45% 55%, rgba(30, 38, 67, 0.88) 55% 64%, transparent 64% 73%, rgba(30, 38, 67, 0.88) 73% 82%, transparent 82%),
    linear-gradient(rgba(30, 38, 67, 0.88) 9%, transparent 9% 18%, rgba(30, 38, 67, 0.88) 18% 27%, transparent 27% 36%, rgba(30, 38, 67, 0.88) 36% 45%, transparent 45% 55%, rgba(30, 38, 67, 0.88) 55% 64%, transparent 64% 73%, rgba(30, 38, 67, 0.88) 73% 82%, transparent 82%),
    #ffffff;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.download-store-qr::before,
.download-store-qr::after,
.download-store-qr span {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 5px solid var(--surface-ink);
  background: #ffffff;
  border-radius: 4px;
}

.download-store-qr::before { top: 9px; left: 9px; }
.download-store-qr::after  { top: 9px; right: 9px; }
.download-store-qr span    { left: 9px; bottom: 9px; }

.download-store-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.download-store-platform {
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-store-name {
  color: var(--surface-ink);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.download-store-note {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.download-store-btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 680px) {
  .download-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Nav download CTA — smaller than standard .button */
.nav-cta {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
}

/* Trust grid — 3 columns */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.trust-card h3 {
  margin: 0.95rem 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.trust-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
  font-size: 0.97rem;
}

/* Scenario card */
.scenario-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.scenario-route {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.35rem 1.35rem 1.1rem;
  background: linear-gradient(135deg, rgba(30, 38, 67, 0.97), #2c3760);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.scenario-leg {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.scenario-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-place {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.scenario-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
}

.scenario-traveler {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.scenario-traveler .chip {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
}

.scenario-items {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.scenario-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.35rem;
  border-bottom: 1px solid var(--line);
}

.scenario-item:last-child {
  border-bottom: none;
}

.scenario-item-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
}

.scenario-item--ok .scenario-item-icon {
  background: #edfaf3;
  color: #1a7a4a;
  border: 1px solid #a3e6c3;
}

.scenario-item--warn .scenario-item-icon {
  background: #fff8ed;
  color: #8a5a00;
  border: 1px solid #f5d98e;
}

.scenario-item--declare .scenario-item-icon {
  background: var(--accent-soft);
  color: var(--accent-deep);
  border: 1px solid rgba(59, 109, 234, 0.2);
}

.scenario-item-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.scenario-item-name {
  color: var(--surface-ink);
  font-size: 0.97rem;
  font-weight: 700;
}

.scenario-item-qty {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.scenario-item-status {
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.scenario-item--ok .scenario-item-status    { color: #1a7a4a; }
.scenario-item--warn .scenario-item-status  { color: #8a5a00; }
.scenario-item--declare .scenario-item-status { color: var(--accent-deep); }

.scenario-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.35rem;
  background: #f8f9fc;
}

.scenario-result-summary {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.scenario-result-line {
  font-size: 0.88rem;
  font-weight: 700;
}

.scenario-result-line--ok      { color: #1a7a4a; }
.scenario-result-line--warn    { color: #8a5a00; }
.scenario-result-line--declare { color: var(--accent-deep); }

.scenario-result-note {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.55;
  max-width: 340px;
}

.scenario-result-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .support-intro,
  .stats-grid,
  .cards-grid.four,
  .cards-grid.three,
  .steps-grid,
  .two-up,
  .legal-grid,
  .faq-grid,
  .form-row.two-col {
    grid-template-columns: 1fr;
  }

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

  .scenario-result {
    grid-template-columns: 1fr;
  }

  .scenario-traveler {
    margin-left: 0;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 0;
  }

  .screens-panel {
    min-height: 32rem;
  }

  .screens-collage {
    min-height: 30rem;
  }

  .screen-frame--primary {
    right: 2rem;
    width: min(13.5rem, 44%);
    height: 26rem;
  }

  .screen-frame--secondary {
    top: 8.75rem;
    left: 0;
    width: min(11.5rem, 38%);
    height: 22rem;
  }

  .screen-frame--tertiary {
    top: 12rem;
    width: min(10.25rem, 33%);
    height: 19.5rem;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links,
  .footer-grid {
    justify-content: flex-start;
  }

  .hero-visual {
    min-height: auto;
  }

  .screens-panel {
    min-height: 24rem;
  }

  .screens-collage {
    min-height: 22rem;
  }

  .screen-frame {
    border-radius: 22px;
  }

  .screen-frame--primary {
    top: 0.1rem;
    right: 1.2rem;
    width: 43%;
    height: 18.75rem;
  }

  .screen-frame--secondary {
    top: 5.8rem;
    left: 0;
    width: 36%;
    height: 15rem;
  }

  .screen-frame--tertiary {
    top: 8.4rem;
    right: 0;
    width: 31%;
    height: 13.5rem;
  }

  .download-head {
    align-items: start;
    flex-direction: column;
  }

  .qr-strip {
    grid-template-columns: 1fr;
  }

  .qr-card {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .qr-code {
    width: 74px;
    height: 74px;
  }

  .section-head {
    align-items: start;
  }

  .scenario-item {
    grid-template-columns: 32px minmax(0, 1fr);
    row-gap: 0.3rem;
  }

  .scenario-item-status {
    grid-column: 2;
  }

  .scenario-result-action {
    align-items: flex-start;
  }

  .scenario-result-note {
    max-width: 100%;
  }

  .highlight-banner {
    grid-template-columns: 1fr;
  }
}
