:root {
  --bg: #05090a;
  --surface: #081112;
  --surface-2: #0b1719;
  --surface-3: #102124;
  --line: rgba(96, 222, 228, 0.18);
  --line-strong: rgba(96, 222, 228, 0.48);
  --text: #f3f7f7;
  --muted: #8fa0a2;
  --muted-strong: #c3cecf;
  --cyan: #39d9e5;
  --cyan-deep: #0da5b0;
  --gold: #f4c963;
  --danger: #ff7b7e;
  --ok: #47dc9b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(57, 217, 229, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 217, 229, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 88% 4%, rgba(57, 217, 229, 0.1), transparent 28%),
    #05090a;
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.readProgress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.05);
}

.readProgress i {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  box-shadow: 0 0 18px rgba(57, 217, 229, 0.65);
}

.guideHeader,
.guideFooter,
main {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.guideHeader {
  position: relative;
  z-index: 20;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.guideBrand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.guideBrand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  object-fit: cover;
}

.guideBrand span {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 5px;
  font-size: 15px;
  font-weight: 860;
  letter-spacing: 0.05em;
}

.guideBrand b {
  color: var(--cyan);
}

.guideBrand small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.backButton,
.primaryAction,
.secondaryAction {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s var(--ease), border-color 0.2s ease, background-color 0.2s ease;
}

.backButton,
.secondaryAction {
  border: 1px solid var(--line);
  background: rgba(8, 17, 18, 0.76);
  color: var(--muted-strong);
}

.backButton:hover,
.secondaryAction:hover {
  border-color: var(--line-strong);
  color: var(--text);
  transform: translateY(-2px);
}

.primaryAction {
  border: 1px solid var(--cyan);
  background: var(--cyan);
  color: #031012;
  box-shadow: 0 13px 34px rgba(57, 217, 229, 0.16);
}

.primaryAction:hover {
  background: #67e6ed;
  transform: translateY(-2px);
}

.guideHero {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 64px;
  padding: 68px 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(8, 17, 18, 0.96), rgba(4, 10, 11, 0.98));
  box-shadow: var(--shadow);
}

.guideHero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(57, 217, 229, 0.06) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(57, 217, 229, 0.05) 50%, transparent 50.2%);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, transparent 8%, #000 60%, #000);
  content: "";
}

.heroGlow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.heroGlowOne {
  width: 360px;
  height: 360px;
  top: -180px;
  right: -40px;
  background: rgba(57, 217, 229, 0.12);
}

.heroGlowTwo {
  width: 260px;
  height: 260px;
  left: 20%;
  bottom: -190px;
  background: rgba(244, 201, 99, 0.08);
}

.guideHeroCopy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guideHero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.guideHero h1 span {
  color: var(--gold);
}

.heroLead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.65;
}

.heroLead strong {
  color: var(--cyan);
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.updated {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.updated i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 10px rgba(71, 220, 155, 0.65);
}

.guidePhoneStage {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  height: 510px;
  justify-self: center;
}

.phoneHalo {
  position: absolute;
  inset: 12% -15% 8%;
  border: 1px solid rgba(57, 217, 229, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 217, 229, 0.14), transparent 67%);
  animation: haloPulse 4s ease-in-out infinite;
}

.guidePhone {
  position: absolute;
  inset: 0 35px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  background: #06111d;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.55), 0 0 44px rgba(57, 217, 229, 0.09);
  transform: rotate(2deg);
  animation: phoneFloat 6s ease-in-out infinite;
}

.guidePhone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 9%;
}

.floatingToken {
  position: absolute;
  min-width: 105px;
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(5, 12, 13, 0.92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.floatingToken b {
  color: var(--cyan);
  font-size: 13px;
}

.floatingToken span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.tokenBep {
  left: -38px;
  top: 84px;
  animation: tokenFloat 4.2s ease-in-out infinite;
}

.tokenTon {
  right: -42px;
  top: 220px;
  animation: tokenFloat 4.8s 0.5s ease-in-out infinite;
}

.tokenQr {
  left: -18px;
  bottom: 56px;
  animation: tokenFloat 5.2s 0.9s ease-in-out infinite;
}

.networkAlert {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  margin: 26px 0 0;
  padding: 26px 30px;
  border: 1px solid rgba(255, 123, 126, 0.34);
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(255, 123, 126, 0.08), rgba(8, 17, 18, 0.96) 56%);
}

.alertMark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 123, 126, 0.5);
  border-radius: 50%;
  color: var(--danger);
  font-size: 23px;
  font-weight: 900;
}

.networkAlert h2,
.sectionHead h2,
.mediaCopy h2,
.qrCopy h2,
.finalCta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.networkAlert p:last-child,
.sectionHead > p:last-child,
.mediaCopy > p,
.finalCta > div > p:last-child {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted-strong);
  line-height: 1.6;
}

code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(57, 217, 229, 0.08);
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, monospace;
}

.guideSection {
  padding: 118px 0 0;
  scroll-margin-top: 20px;
}

.sectionHead {
  max-width: 780px;
  margin-bottom: 48px;
}

.routeTimeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.routeTimeline::before {
  position: absolute;
  width: 1px;
  top: 72px;
  bottom: 72px;
  left: 40px;
  overflow: hidden;
  background: linear-gradient(var(--cyan), var(--gold), var(--cyan));
  box-shadow: 0 0 14px rgba(57, 217, 229, 0.3);
  content: "";
}

.routeStep {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 17, 18, 0.94);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.routeStepAccent {
  border-color: rgba(244, 201, 99, 0.38);
  background: linear-gradient(120deg, rgba(244, 201, 99, 0.07), rgba(8, 17, 18, 0.96) 60%);
}

.stepNumber {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.routeStepAccent .stepNumber {
  border-color: rgba(244, 201, 99, 0.5);
  color: var(--gold);
}

.stepTag {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.routeStep h3,
.useCard h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.routeStep > div > p:not(.stepTag):not(.smallWarning) {
  max-width: 820px;
  margin: 13px 0 0;
  color: var(--muted-strong);
  line-height: 1.62;
}

.addressExample {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.18);
}

.addressExample span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.compactChecks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.compactChecks li {
  padding: 7px 9px;
  border: 1px solid rgba(71, 220, 155, 0.28);
  border-radius: 6px;
  background: rgba(71, 220, 155, 0.07);
  color: #b7e8d3;
  font-size: 11px;
}

.smallWarning,
.doNotRepeat {
  max-width: 850px;
  margin: 18px 0 0;
  padding: 13px 15px;
  border-left: 2px solid var(--gold);
  background: rgba(244, 201, 99, 0.07);
  color: #d7c99d;
  font-size: 13px;
  line-height: 1.55;
}

.mediaCard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 370px);
  align-items: center;
  gap: 76px;
  padding: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(8, 17, 18, 0.98), rgba(12, 29, 32, 0.92));
  box-shadow: var(--shadow);
}

.networkFlow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.networkFlow span {
  min-width: 92px;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 12px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface-2);
}

.networkFlow b {
  color: var(--cyan);
  font-size: 12px;
}

.networkFlow small {
  color: var(--muted);
  font-size: 9px;
}

.networkFlow i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(57, 217, 229, 0.2);
}

.networkFlow i::after {
  position: absolute;
  width: 16px;
  height: 3px;
  top: -1px;
  left: -16px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  content: "";
  animation: flowLine 2.2s linear infinite;
}

.networkFlow i:nth-of-type(2)::after {
  animation-delay: 0.7s;
}

.screenFigure {
  position: relative;
  width: min(100%, 310px);
  justify-self: center;
  margin: 0;
}

.screenFigure::before {
  position: absolute;
  inset: 8% -20%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(57, 217, 229, 0.12);
  filter: blur(36px);
  content: "";
}

.screenFigure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border: 7px solid #020607;
  border-radius: 28px;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.46);
}

.screenFigure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

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

.useCard {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 17, 18, 0.94);
  transition: transform 0.24s var(--ease), border-color 0.24s ease;
}

.useCard:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}

.useCardMain {
  border-color: rgba(244, 201, 99, 0.35);
  background: linear-gradient(145deg, rgba(244, 201, 99, 0.08), rgba(8, 17, 18, 0.96) 58%);
}

.useCard > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.useCardMain > span {
  border-color: rgba(244, 201, 99, 0.5);
  color: var(--gold);
}

.useCard p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.qrSection {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: 88px;
}

.qrVisual {
  position: relative;
  width: min(100%, 380px);
  justify-self: center;
}

.qrPhone {
  margin: 0;
  overflow: hidden;
  border: 7px solid #020607;
  border-radius: 34px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
}

.qrPhone img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.scanCorners {
  position: absolute;
  inset: 28% 17% 27%;
  pointer-events: none;
}

.scanCorners i {
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(57, 217, 229, 0.65));
}

.scanCorners i:nth-child(1) { top: 0; left: 0; border-top: 3px solid var(--cyan); border-left: 3px solid var(--cyan); }
.scanCorners i:nth-child(2) { top: 0; right: 0; border-top: 3px solid var(--cyan); border-right: 3px solid var(--cyan); }
.scanCorners i:nth-child(3) { bottom: 0; left: 0; border-bottom: 3px solid var(--cyan); border-left: 3px solid var(--cyan); }
.scanCorners i:nth-child(4) { right: 0; bottom: 0; border-right: 3px solid var(--cyan); border-bottom: 3px solid var(--cyan); }

.paymentChecks {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.paymentChecks li {
  min-height: 64px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
}

.paymentChecks b {
  color: var(--cyan);
  font-size: 10px;
}

.safetyList {
  display: grid;
  gap: 10px;
}

.safetyList details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(8, 17, 18, 0.94);
}

.safetyList summary {
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  cursor: pointer;
  list-style: none;
}

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

.safetyList summary span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
}

.safetyList summary b {
  font-size: 16px;
}

.safetyList summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.safetyList summary i::before,
.safetyList summary i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: var(--cyan);
  content: "";
  transition: transform 0.2s ease;
}

.safetyList summary i::after {
  transform: rotate(90deg);
}

.safetyList details[open] summary i::after {
  transform: rotate(0);
}

.safetyList details > div {
  padding: 0 22px 22px 78px;
}

.safetyList details p {
  max-width: 850px;
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.65;
}

.safetyList details a {
  color: var(--cyan);
}

.finalCta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  margin-top: 118px;
  padding: 44px;
  border: 1px solid rgba(244, 201, 99, 0.38);
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(244, 201, 99, 0.09), rgba(8, 17, 18, 0.96) 62%);
  box-shadow: var(--shadow);
}

.finalActions {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.finalActions small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.sourceNote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 17, 18, 0.76);
}

.sourceNote p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.sourceNote div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.sourceNote a {
  color: var(--cyan);
  font-size: 11px;
}

.guideFooter {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 66px;
  border-top: 1px solid var(--line);
}

.guideFooter p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.68s var(--ease), transform 0.68s var(--ease);
}

.reveal.isVisible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes haloPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.65; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes tokenFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes flowLine {
  to { left: calc(100% + 16px); }
}

@media (max-width: 900px) {
  .guideHero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 36px 0;
  }

  .guideHeroCopy {
    max-width: 720px;
  }

  .guidePhoneStage {
    height: 440px;
  }

  .mediaCard,
  .qrSection {
    grid-template-columns: 1fr;
  }

  .mediaCard {
    gap: 46px;
  }

  .qrSection {
    gap: 48px;
  }

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

  .useCard {
    min-height: 0;
  }

  .useCard > span {
    margin-bottom: 34px;
  }
}

@media (max-width: 640px) {
  .guideHeader,
  .guideFooter,
  main {
    width: min(100% - 24px, 1180px);
  }

  .guideHeader {
    min-height: 72px;
  }

  .guideBrand small {
    display: none;
  }

  .backButton {
    min-height: 40px;
    padding: 0 12px;
    font-size: 11px;
  }

  .guideHero {
    min-height: auto;
    padding: 42px 20px 0;
    border-radius: 10px;
  }

  .guideHero h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .heroLead {
    margin-top: 22px;
    font-size: 15px;
  }

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

  .primaryAction,
  .secondaryAction {
    padding: 0 12px;
  }

  .guidePhoneStage {
    width: 290px;
    height: 390px;
  }

  .guidePhone {
    inset-inline: 28px;
    border-radius: 27px;
  }

  .floatingToken {
    min-width: 90px;
    padding: 8px 9px;
  }

  .tokenBep { left: -12px; }
  .tokenTon { right: -14px; }
  .tokenQr { left: 0; }

  .networkAlert {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .networkAlert h2,
  .sectionHead h2,
  .mediaCopy h2,
  .qrCopy h2,
  .finalCta h2 {
    font-size: 32px;
  }

  .guideSection {
    padding-top: 86px;
  }

  .sectionHead {
    margin-bottom: 30px;
  }

  .routeTimeline::before {
    display: none;
  }

  .routeStep {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 20px;
  }

  .stepNumber {
    justify-self: start;
  }

  .routeStep h3,
  .useCard h3 {
    font-size: 21px;
  }

  .addressExample {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .mediaCard {
    padding: 28px 20px;
  }

  .networkFlow {
    gap: 7px;
  }

  .networkFlow span {
    min-width: 70px;
    padding-inline: 7px;
  }

  .useCard {
    padding: 24px 20px;
  }

  .qrPhone {
    border-radius: 28px;
  }

  .safetyList summary {
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    padding: 0 16px;
  }

  .safetyList details > div {
    padding: 0 16px 18px 58px;
  }

  .finalCta {
    grid-template-columns: 1fr;
    margin-top: 86px;
    padding: 28px 22px;
  }

  .finalActions {
    justify-items: stretch;
  }

  .sourceNote,
  .guideFooter {
    align-items: flex-start;
    flex-direction: column;
  }

  .sourceNote div {
    justify-content: flex-start;
  }

  .guideFooter {
    justify-content: center;
    padding: 28px 0;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
