:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #101110;
  --surface-strong: #1b1d1b;
  --text: #f7f8f5;
  --muted: #a8aca5;
  --line: rgba(255, 255, 255, 0.12);
  --lime: #9cff2e;
  --lime-soft: #beff64;
  --ink: #071000;
  --shell: min(1160px, calc(100% - 40px));
  --header-height: 76px;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 10%, rgba(156, 255, 46, 0.04), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.92);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand img {
  border-radius: 11px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #c5c8c2;
  font-size: 14px;
  font-weight: 700;
}

.header-nav a {
  transition: color 150ms ease;
}

.header-nav a:hover {
  color: var(--text);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(156, 255, 46, 0.42), transparent);
}

.hero-glow {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  top: -260px;
  right: -90px;
  background: radial-gradient(circle, rgba(156, 255, 46, 0.2), rgba(156, 255, 46, 0) 68%);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  bottom: -270px;
  left: -160px;
  background: radial-gradient(circle, rgba(190, 255, 100, 0.12), rgba(190, 255, 100, 0) 70%);
}

.hero-grid {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  align-items: center;
  gap: 72px;
  padding-block: 74px 86px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--lime);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(44px, 5.35vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.065em;
  word-break: keep-all;
}

.hero h1 strong {
  display: block;
  color: var(--lime);
  font-weight: 900;
}

.hero-description {
  max-width: 620px;
  margin: 28px 0 0;
  color: #c2c6bf;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.65;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.store-area {
  margin-top: 34px;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.store-link {
  width: 194px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 11px;
  background: transparent;
  transition: transform 150ms ease, opacity 150ms ease, filter 150ms ease;
}

.store-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.store-badge {
  display: block;
  max-width: none;
  flex: none;
}

.store-badge-apple {
  width: auto;
  height: 56px;
}

.store-badge-google {
  width: auto;
  height: 74px;
}

.store-link[aria-disabled="true"] {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
}

.store-link[aria-disabled="true"]:hover {
  filter: none;
}

.store-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #858a82;
  font-size: 13px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: #b3b7af;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-facts span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(156, 255, 46, 0.45);
  border-radius: 50%;
  color: var(--lime);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(156, 255, 46, 0.2);
  border-radius: 50%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 120px rgba(156, 255, 46, 0.18);
}

.phone {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid #414440;
  border-radius: 34px;
  background: #121312;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.52);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 27px;
  object-fit: contain;
}

.phone-main {
  width: 278px;
  height: auto;
  z-index: 4;
  left: 72px;
  transform: rotate(-4deg);
}

.phone-side {
  width: 230px;
  height: auto;
  right: 12px;
  z-index: 3;
  opacity: 0.87;
  transform: rotate(7deg);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 50%;
  width: 70px;
  height: 19px;
  border-radius: 20px;
  background: #090909;
  transform: translateX(-50%);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: #0a0b0a;
}

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

.trust-grid p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 25px 30px;
  border-right: 1px solid var(--line);
}

.trust-grid p:first-child {
  padding-left: 0;
}

.trust-grid p:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.trust-grid span {
  color: #d8dbd6;
  font-size: 15px;
  font-weight: 700;
}

.section {
  padding-block: 140px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.safety-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  word-break: keep-all;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.feature-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 4;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #111211;
}

.feature-card-lime {
  background: var(--lime);
  color: var(--ink);
}

.feature-number {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-card-lime .feature-number {
  color: rgba(7, 16, 0, 0.6);
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
}

.feature-card-lime p {
  color: rgba(7, 16, 0, 0.7);
}

.mini-proof,
.post-preview {
  padding: 18px;
  border-radius: 13px;
  background: #080908;
  color: var(--text);
}

.mini-proof {
  display: grid;
  gap: 6px;
}

.mini-proof span,
.post-preview span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.mini-proof strong {
  font-size: 19px;
}

.ground-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ground-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: #050505;
  color: #d9dcd7;
  font-size: 12px;
  font-weight: 800;
}

.ground-tags span:first-child {
  background: var(--lime);
  color: var(--ink);
}

.post-preview {
  display: grid;
  gap: 10px;
}

.post-preview strong {
  font-size: 14px;
  line-height: 1.45;
}

.post-preview small {
  color: #9ba097;
}

.steps-section {
  border-block: 1px solid var(--line);
  background: #0b0c0b;
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: 100px;
}

.steps-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.steps-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li:first-child {
  padding-top: 0;
}

.steps-list li:last-child {
  border-bottom: 0;
}

.steps-list > li > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(156, 255, 46, 0.34);
  border-radius: 50%;
  color: var(--lime);
  font-size: 18px;
  font-weight: 900;
}

.steps-list h3 {
  margin: 2px 0 7px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.screens-section {
  overflow: hidden;
}

.screens-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 80px;
}

.screens-heading > p:last-child {
  margin-bottom: 8px;
}

.screen-gallery {
  width: calc(100vw - max(40px, (100vw - 1160px) / 2));
  display: grid;
  grid-auto-columns: minmax(230px, 290px);
  grid-auto-flow: column;
  gap: 18px;
  margin-top: 60px;
  padding: 10px max(40px, calc((100vw - 1160px) / 2)) 30px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--lime) #1b1d1b;
}

.screen-gallery figure {
  margin: 0;
  scroll-snap-align: start;
}

.screen-gallery img {
  width: 100%;
  height: auto;
  border: 1px solid #363936;
  border-radius: 27px;
  background: #1d1f1d;
  object-fit: contain;
  object-position: center top;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.25);
}

.screen-gallery figcaption {
  display: grid;
  gap: 3px;
  padding: 16px 4px 0;
}

.screen-gallery figcaption strong {
  font-size: 17px;
}

.screen-gallery figcaption span {
  color: var(--muted);
  font-size: 13px;
}

.safety-section {
  background: var(--lime);
  color: var(--ink);
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.9fr);
  gap: 100px;
}

.safety-copy .section-kicker {
  color: rgba(7, 16, 0, 0.58);
}

.safety-copy > p:last-child {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(7, 16, 0, 0.7);
  font-size: 18px;
  line-height: 1.7;
  word-break: keep-all;
}

.safety-list {
  border-top: 1px solid rgba(7, 16, 0, 0.26);
}

.safety-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(7, 16, 0, 0.26);
}

.safety-list article > span {
  font-size: 12px;
  font-weight: 900;
}

.safety-list h3 {
  margin: -3px 0 7px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.safety-list p {
  margin: 0;
  color: rgba(7, 16, 0, 0.67);
  line-height: 1.65;
  word-break: keep-all;
}

.faq-section {
  border-bottom: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 6px;
  color: var(--lime);
  font-size: 28px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 620px;
  margin: -8px 0 28px;
  color: var(--muted);
  line-height: 1.75;
  word-break: keep-all;
}

.final-cta {
  padding-block: 110px;
  background: #111311;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
  align-items: center;
  gap: 84px;
}

.final-download {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.store-link-light {
  width: 194px;
}

.store-qr-grid {
  width: 100%;
  max-width: 400px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.store-qr-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #080908;
}

.store-qr-card .qr-code {
  width: 118px;
  height: 118px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
}

.store-qr-card figcaption {
  display: grid;
  justify-items: center;
  gap: 2px;
  text-align: center;
}

.store-qr-card strong {
  font-size: 15px;
}

.store-qr-card span {
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding-block: 44px calc(44px + env(safe-area-inset-bottom));
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px 50px;
  align-items: start;
}

.footer-brand {
  font-size: 20px;
}

.footer-grid > div > p {
  margin: 10px 0 0;
  color: #777c74;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  color: #a3a79f;
  font-size: 13px;
  font-weight: 700;
}

.site-footer nav a:hover,
.site-footer nav button:hover {
  color: var(--text);
}

.site-footer nav button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #62665f;
  font-size: 12px;
}

.mobile-download {
  position: fixed;
  z-index: 80;
  right: 14px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 14px;
}

.mobile-download a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.44);
  font-weight: 900;
}

.mobile-download a[aria-disabled="true"] {
  background: #272927;
  color: #a3a79f;
}

.consent-banner {
  position: fixed;
  z-index: 150;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 860px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 16px;
  background: rgba(18, 19, 18, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  font-size: 16px;
}

.consent-banner p {
  margin: 5px 0 3px;
  color: #b6bab3;
  font-size: 13px;
  line-height: 1.55;
  word-break: keep-all;
}

.consent-banner a {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.consent-actions {
  display: flex;
  gap: 8px;
}

.consent-actions button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.button-secondary {
  border: 1px solid var(--line);
  background: #080908;
  color: var(--text);
}

.button-primary {
  border: 1px solid var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.noscript-message {
  position: fixed;
  z-index: 160;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #161716;
  color: var(--text);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 30px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .hero-visual::before {
    width: 400px;
    height: 400px;
  }

  .hero-visual::after {
    width: 310px;
    height: 310px;
  }

  .phone-main {
    width: 245px;
    height: 530px;
    left: 28px;
  }

  .phone-side {
    width: 196px;
    height: 425px;
    right: 0;
  }

  .feature-card {
    grid-column: span 6;
  }

  .feature-card:last-child {
    grid-column: 4 / span 6;
  }

  .steps-layout,
  .safety-layout,
  .faq-layout {
    gap: 60px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 767px) {
  :root {
    --shell: min(100% - 32px, 680px);
    --header-height: 66px;
  }

  body.has-mobile-download {
    padding-bottom: 86px;
  }

  .header-nav,
  .header-cta {
    display: none;
  }

  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 64px 72px;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: 12px;
  }

  .hero h1 {
    max-width: 590px;
    font-size: clamp(42px, 12.4vw, 62px);
    line-height: 1.08;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 17px;
  }

  .store-area {
    margin-top: 28px;
  }

  .store-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .store-link {
    width: 194px;
  }

  body.device-ios .store-link[data-store="google_play"],
  body.device-android .store-link[data-store="app_store"] {
    display: none;
  }

  .hero-facts {
    gap: 10px 14px;
    margin-top: 22px;
    font-size: 13px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-visual::before {
    width: min(110vw, 430px);
    height: min(110vw, 430px);
  }

  .hero-visual::after {
    width: min(82vw, 330px);
    height: min(82vw, 330px);
  }

  .phone-main {
    width: min(68vw, 252px);
    height: auto;
    aspect-ratio: auto;
    left: calc(50% - min(40vw, 150px));
  }

  .phone-side {
    width: min(54vw, 200px);
    height: auto;
    aspect-ratio: auto;
    right: calc(50% - min(46vw, 170px));
  }

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

  .trust-grid p,
  .trust-grid p:first-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid p:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 92px;
  }

  .section-heading h2,
  .safety-copy h2,
  .final-cta h2 {
    font-size: clamp(36px, 10.8vw, 50px);
  }

  .section-heading > p:last-child,
  .safety-copy > p:last-child {
    margin-top: 20px;
    font-size: 16px;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 42px;
  }

  .feature-card,
  .feature-card:last-child {
    min-height: 360px;
    grid-column: auto;
    padding: 24px;
  }

  .steps-layout,
  .safety-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .steps-heading {
    position: static;
  }

  .steps-list li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 26px 0;
  }

  .steps-list > li > span {
    width: 44px;
    height: 44px;
  }

  .steps-list h3 {
    font-size: 21px;
  }

  .screens-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .screen-gallery {
    width: calc(100vw - 16px);
    grid-auto-columns: minmax(210px, 67vw);
    gap: 14px;
    margin-top: 42px;
    padding-right: 28px;
  }

  .screen-gallery img {
    border-radius: 23px;
  }

  .safety-layout {
    gap: 54px;
  }

  .faq-list summary {
    font-size: 16px;
    line-height: 1.5;
  }

  .final-cta {
    padding-block: 86px;
  }

  .final-cta-inner {
    gap: 38px;
  }

  .store-qr-grid {
    display: none;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-download:not([hidden]) {
    display: block;
  }

  body.consent-open .mobile-download {
    display: none;
  }

  .consent-banner {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .mobile-download {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 39px;
  }

  .hero-facts {
    display: grid;
  }

  .hero-visual {
    min-height: 510px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
