:root {
  --bg: #dce8dc;
  --bg-elevated: #d1e0d2;
  --panel: rgba(237, 243, 234, 0.92);
  --panel-strong: #e7eee4;
  --border: rgba(38, 82, 57, 0.16);
  --text: #1f3b2b;
  --muted: #637b6a;
  --primary: #72d63c;
  --primary-deep: #215e49;
  --accent: #f2c34b;
  --accent-soft: rgba(242, 195, 75, 0.14);
  --shadow: 0 24px 72px rgba(39, 67, 46, 0.15);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
  --header-container: min(1500px, calc(100vw - 40px));
  --header-height: 78px;
  --font-heading: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  background:
    radial-gradient(circle at top right, rgba(101, 155, 107, 0.34), transparent 30%),
    radial-gradient(circle at 16% 0%, rgba(242, 195, 75, 0.12), transparent 18%),
    linear-gradient(180deg, #dfe9de 0%, #d3e0d5 100%);
  min-height: 100vh;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -12% -18% auto;
  width: 560px;
  height: 560px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 116, 80, 0.22), transparent 68%);
  filter: blur(22px);
  opacity: 0.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(56, 130, 86, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(56, 130, 86, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 92%);
  opacity: 0.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(220, 232, 219, 0.9);
  border-bottom: 1px solid rgba(38, 82, 57, 0.12);
  box-shadow: 0 14px 28px rgba(64, 93, 69, 0.06);
}

.header-inner {
  width: var(--header-container);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(234, 242, 231, 0.94);
  box-shadow: 0 12px 32px rgba(82, 161, 111, 0.18);
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-title {
  display: block;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-subtitle {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
  max-width: 220px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(239, 245, 236, 0.92);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(233, 241, 230, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 10px 24px rgba(56, 86, 61, 0.05);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(114, 214, 60, 0.26);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

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

.lang-switch {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(233, 241, 230, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 10px 24px rgba(56, 86, 61, 0.05);
}

.lang-switch a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
}

.lang-switch a.is-active,
.variant-switch a.is-active {
  color: var(--text);
  background: rgba(114, 214, 60, 0.24);
}

.variant-switch {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(233, 241, 230, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 10px 24px rgba(56, 86, 61, 0.05);
}

.variant-switch a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
}

.button,
.button-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button-inline {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
}

.button:hover,
.button:focus-visible,
.button-inline:hover,
.button-inline:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.button-inline.button-primary {
  background: linear-gradient(135deg, var(--primary), #8be64b);
  color: #193725;
  border-color: rgba(58, 108, 72, 0.08);
  box-shadow: 0 16px 34px rgba(82, 153, 58, 0.22);
}

.button-secondary,
.button-inline.button-secondary {
  background: rgba(231, 239, 229, 0.92);
  color: var(--text);
  border-color: var(--border);
}

.button-gold,
.button-inline.button-gold {
  background: linear-gradient(135deg, #f0b94b, #f9de7d);
  color: #3f2200;
  box-shadow: 0 16px 36px rgba(242, 195, 75, 0.18);
}

.page-shell {
  padding: 22px 0 110px;
}

.hero {
  padding: 34px 0 24px;
}

.hero-grid,
.split-grid,
.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.hero-panel,
.card,
.stat-panel,
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(238, 244, 235, 0.96), rgba(225, 236, 226, 0.92)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: stretch;
}

.hero-copy {
  padding: 34px 36px 30px;
}

.hero-copy::before,
.hero-visual::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: -25% auto auto -15%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 136, 92, 0.24), transparent 72%);
  filter: blur(6px);
}

.hero-visual {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(29, 80, 67, 0.94), rgba(20, 58, 47, 0.94)),
    var(--panel);
  border-color: rgba(242, 195, 75, 0.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 195, 75, 0.18), transparent 70%);
  filter: blur(8px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(114, 214, 60, 0.14);
  color: #37684a;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(114, 214, 60, 0.12);
}

.title-xl {
  margin: 18px 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-copy .title-xl {
  max-width: 10.8ch;
  font-size: clamp(2.5rem, 4.3vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.title-lg {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.title-md {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.2;
}

.lede,
.copy,
.card p,
.faq-answer p,
.faq-answer li {
  color: var(--muted);
}

.hero-copy .lede {
  max-width: 48ch;
  font-size: 0.98rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}

.trust-strip,
.pill-row,
.detail-grid,
.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-chip,
.pill,
.mini-stat {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(41, 113, 73, 0.1);
  background: rgba(231, 239, 229, 0.82);
}

.trust-chip strong,
.pill strong,
.mini-stat strong {
  display: block;
  font-size: 0.95rem;
}

.trust-chip span,
.pill span,
.mini-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
}

.device-stack {
  position: relative;
  min-height: 316px;
  display: grid;
  align-items: center;
}

.device-stack::before {
  content: "";
  position: absolute;
  inset: 10% 11% 10% 18%;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(120, 173, 118, 0.24), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(242, 195, 75, 0.14);
  z-index: 0;
}

.device-frame,
.floating-card {
  border-radius: 34px;
  border: 1px solid rgba(242, 195, 75, 0.14);
  background: rgba(226, 236, 225, 0.16);
  box-shadow: var(--shadow);
}

.device-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 314px);
  margin-left: auto;
  overflow: hidden;
  padding: 12px;
}

.device-frame img,
.floating-card img,
.proof-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-frame img {
  aspect-ratio: 9 / 19.5;
  border-radius: 24px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 156px;
  overflow: hidden;
  padding: 10px;
  backdrop-filter: blur(14px);
}

.floating-card.card-a {
  left: 8px;
  top: 34px;
  transform: rotate(-7deg);
}

.floating-card.card-b {
  right: -2px;
  bottom: 14px;
  transform: rotate(8deg);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-trust .trust-chip {
  min-width: 0;
  padding: 11px 12px;
}

.hero-trust .trust-chip strong {
  font-size: 0.92rem;
}

.hero-trust .trust-chip span {
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-visual-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-visual-stat {
  padding: 14px 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(242, 195, 75, 0.14);
  background: rgba(234, 244, 233, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-visual-stat strong {
  display: block;
  color: #eef6ee;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.hero-visual-stat span {
  display: block;
  color: rgba(238, 246, 238, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-update-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.hero-update-card .actions {
  margin-top: 2px;
}

.hero-update-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.hero-update-foot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-update-item {
  padding: 15px 14px;
  border-radius: 18px;
  border: 1px solid rgba(38, 82, 57, 0.12);
  background: rgba(228, 237, 226, 0.84);
}

.hero-update-pill {
  padding: 14px 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(38, 82, 57, 0.12);
  background: rgba(228, 237, 226, 0.7);
}

.hero-update-item strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.hero-update-pill strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.hero-update-item span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.hero-update-pill span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-faq-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-faq-item {
  padding: 16px 15px;
  border-radius: 18px;
  border: 1px solid rgba(38, 82, 57, 0.12);
  background: rgba(228, 237, 226, 0.8);
}

.hero-faq-item strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.hero-faq-item span {
  display: block;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.45;
}

.hero-faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.floating-card img {
  aspect-ratio: 9 / 16;
  border-radius: 18px;
}

.section {
  padding: 30px 0;
}

.section-header {
  margin-bottom: 22px;
}

.section-header p {
  max-width: 720px;
}

.grid-2,
.grid-3,
.grid-4,
.proof-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.card {
  padding: 24px;
}

.card.highlight {
  background:
    linear-gradient(180deg, rgba(242, 195, 75, 0.14), rgba(231, 239, 229, 0.96)),
    var(--panel);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(242, 195, 75, 0.18);
  color: #9b6a00;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.bonus-card,
.game-card,
.update-card,
.contact-card {
  background:
    linear-gradient(180deg, rgba(238, 244, 235, 0.98), rgba(227, 237, 227, 0.92)),
    var(--panel);
}

.card-list,
.number-list,
.clean-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.clean-list {
  list-style: none;
  padding-left: 0;
}

.clean-list li + li {
  margin-top: 10px;
}

.number-list li + li,
.card-list li + li {
  margin-top: 8px;
}

.detail-grid {
  margin-top: 20px;
}

.detail-item {
  min-width: 170px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(228, 237, 226, 0.94);
  border: 1px solid rgba(41, 113, 73, 0.1);
}

.detail-item small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.detail-item strong {
  font-size: 0.98rem;
}

.page-address-section {
  padding-top: 8px;
}

.page-address-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-address-card .title-lg {
  margin: 0;
}

.page-address-main {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(41, 113, 73, 0.12);
  background: rgba(228, 237, 226, 0.92);
}

.page-address-main small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.page-address-link,
.page-address-card .detail-item a {
  color: var(--primary-deep);
  font-weight: 700;
  word-break: break-all;
}

.page-address-grid {
  margin-top: 0;
}

.bonus-card,
.game-card,
.contact-card,
.update-card {
  height: 100%;
}

.bonus-card h3,
.game-card h3,
.contact-card h3,
.update-card h3 {
  margin-top: 0;
}

.proof-card,
.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(233, 241, 230, 0.86);
  box-shadow: var(--shadow);
}

.proof-card,
.gallery-card,
.card,
.hero-panel,
.cta-band {
  box-shadow:
    0 22px 52px rgba(48, 77, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.proof-card img,
.gallery-card img {
  aspect-ratio: 3 / 4;
  object-position: top;
}

.proof-caption,
.gallery-caption {
  padding: 14px;
}

.proof-caption strong,
.gallery-caption strong {
  display: block;
  margin-bottom: 6px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  position: relative;
  padding: 22px 22px 22px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(233, 241, 230, 0.86);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-deep), rgba(139, 199, 155, 0.12));
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(139, 199, 155, 0.18);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(233, 241, 230, 0.88);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.faq-question strong {
  font-size: 1rem;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 22px 20px;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-band {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}

.cta-band .button-row {
  margin-bottom: 0;
}

.site-footer {
  padding: 28px 0 100px;
  border-top: 1px solid rgba(41, 113, 73, 0.08);
  background: rgba(209, 224, 210, 0.94);
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 20px;
}

.footer-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(229, 237, 227, 0.86);
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-note {
  width: var(--container);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.floating-download {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 110;
  display: none;
}

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

.text-accent {
  color: #a46d00;
}

.nowrap {
  white-space: nowrap;
}

.spaced-top {
  margin-top: 18px;
}

.hero-note {
  margin-top: 16px;
  color: rgba(24, 57, 42, 0.68);
  font-size: 0.9rem;
}

@media (max-width: 1320px) {
  :root {
    --header-container: min(1320px, calc(100vw - 28px));
  }

  .brand {
    flex-basis: 228px;
    min-width: 228px;
  }

  .brand-subtitle {
    max-width: 172px;
    font-size: 0.77rem;
  }

  .nav-links a {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .lang-switch a,
  .variant-switch a {
    padding: 8px 10px;
  }

  .hero-copy .title-xl {
    max-width: 8.7ch;
    font-size: clamp(2.35rem, 4.2vw, 4rem);
  }
}

@media (max-width: 1080px) {
  .grid-4,
  .proof-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

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

  .hero-trust,
  .hero-visual-meta {
    grid-template-columns: 1fr;
  }

  .hero-update-grid {
    grid-template-columns: 1fr;
  }

  .hero-update-foot {
    grid-template-columns: 1fr;
  }

  .hero-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-subtitle {
    max-width: none;
    font-size: 0.86rem;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-links,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(229, 238, 228, 0.97);
    box-shadow: var(--shadow);
  }

  .header-actions {
    gap: 12px;
  }

  .lang-switch {
    justify-content: center;
  }

  .switch-stack {
    width: 100%;
    flex-direction: column;
  }

  .variant-switch {
    justify-content: center;
  }

  .hero-grid,
  .split-grid,
  .two-up,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 30px 26px 28px;
  }

  .hero-copy .title-xl {
    max-width: none;
    font-size: clamp(2.4rem, 8vw, 3.8rem);
  }

  .hero-visual-meta {
    grid-template-columns: 1fr;
  }

  .hero-update-grid {
    grid-template-columns: 1fr;
  }

  .hero-update-foot {
    grid-template-columns: 1fr;
  }

  .hero-faq-grid {
    grid-template-columns: 1fr;
  }

  .device-frame {
    margin-left: 0;
  }

  .device-stack {
    min-height: 0;
    padding-top: 116px;
  }

  .floating-card.card-a {
    top: 0;
  }
}

body[data-page="download"][data-variant="desktop"] .hero-panel,
body[data-page="download"][data-variant="desktop"] .hero .card {
  background: linear-gradient(180deg, rgba(33, 87, 72, 0.95), rgba(21, 60, 49, 0.95));
  border-color: rgba(242, 195, 75, 0.18);
}

body[data-page="download"][data-variant="desktop"] .hero-panel .title-xl,
body[data-page="download"][data-variant="desktop"] .hero-panel .lede,
body[data-page="download"][data-variant="desktop"] .hero-panel .eyebrow,
body[data-page="download"][data-variant="desktop"] .hero .card,
body[data-page="download"][data-variant="desktop"] .hero .card h2,
body[data-page="download"][data-variant="desktop"] .hero .card p,
body[data-page="download"][data-variant="desktop"] .hero .card strong,
body[data-page="download"][data-variant="desktop"] .hero .card small {
  color: #eef6ee;
}

body[data-page="download"][data-variant="desktop"] .hero-panel .eyebrow {
  background: rgba(242, 195, 75, 0.16);
}

body[data-page="download"][data-variant="desktop"] .hero-panel .eyebrow::before {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(242, 195, 75, 0.12);
}

body[data-page="download"][data-variant="desktop"] .hero .detail-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(242, 195, 75, 0.14);
}

body[data-page="download"][data-variant="desktop"] .hero .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f5fbf6;
  border-color: rgba(242, 195, 75, 0.18);
}

body[data-page="updates"][data-variant="desktop"] .split-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
}

body[data-page="updates"][data-variant="desktop"] .hero-copy .title-xl {
  max-width: 11.6ch;
  font-size: clamp(2.35rem, 3.9vw, 3.95rem);
}

body[data-page="updates"][data-variant="desktop"] .hero-copy .lede {
  max-width: 52ch;
}

body[data-page="faq"][data-variant="desktop"] .split-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
}

body[data-page="faq"][data-variant="desktop"] .hero-copy .title-xl {
  max-width: 10.4ch;
  font-size: clamp(2.3rem, 3.8vw, 4rem);
}

body[data-page="faq"][data-variant="desktop"] .hero-copy .lede {
  max-width: 48ch;
}

@media (max-width: 640px) {
  .header-inner,
  .container,
  .footer-grid,
  .footer-note {
    width: min(100vw - 24px, 1180px);
  }

  .page-shell {
    padding-bottom: 130px;
  }

  .hero-copy,
  .hero-visual,
  .card,
  .cta-band,
  .footer-card {
    padding: 20px;
  }

  .proof-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .title-xl {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .button-row,
  .trust-strip,
  .pill-row,
  .detail-grid,
  .mini-stats {
    flex-direction: column;
  }

  .button,
  .button-inline {
    width: 100%;
  }

  .floating-download {
    display: block;
  }
}
