:root {
  --ink: #101114;
  --muted: #666b75;
  --line: #e9eaee;
  --paper: #f7f8fa;
  --red: #ef3d45;
  --red-dark: #d92731;
  --green: #17a673;
  --font-geist-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-geist-mono: "SF Mono", Menlo, Monaco, "Cascadia Mono", "Roboto Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-geist-sans), "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

button {
  font: inherit;
}

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

body.browser-blocked {
  overflow: hidden;
}

.telegram-guide {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 72px 18px 92px;
  display: grid;
  place-items: center;
  background: rgba(10, 11, 14, 0.52);
  backdrop-filter: blur(3px);
}

.telegram-guide[hidden] {
  display: none;
}

.telegram-guide-card {
  width: min(420px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  text-align: center;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  outline: none;
}

.telegram-guide-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.telegram-guide h2 {
  margin: 9px 0 12px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.telegram-guide p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.telegram-guide-options {
  margin-top: 22px;
  display: grid;
  gap: 9px;
}

.telegram-guide-options > div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 13px;
  text-align: left;
  background: var(--paper);
}

.telegram-guide-options > div > b {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.telegram-guide-options span,
.telegram-guide-options strong,
.telegram-guide-options small {
  display: block;
}

.telegram-guide-options strong {
  font-size: 14px;
}

.telegram-guide-options small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.telegram-guide-options em {
  color: #9a9da4;
  font-size: 11px;
  font-style: normal;
}

.telegram-guide-top,
.telegram-guide-bottom {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
  font-size: 13px;
  font-weight: 700;
}

.telegram-guide-top {
  top: max(18px, env(safe-area-inset-top));
  right: 18px;
}

.telegram-guide-top-copy {
  display: grid;
  gap: 2px;
  text-align: right;
}

.telegram-guide-top-copy strong,
.telegram-guide-top-copy small {
  display: block;
}

.telegram-guide-top-copy small {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.88;
}

.telegram-guide-bottom {
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
}

.telegram-guide-top b,
.telegram-guide-bottom b {
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.telegram-guide-options > div > b.browser-icon-button {
  border: 1px solid #e0e2e7;
  background: #fff;
}

.browser-guide-icon {
  width: 21px;
  height: 21px;
  display: block;
  opacity: 0.88;
  object-fit: contain;
}

.telegram-guide-top i,
.telegram-guide-bottom i {
  color: #fff;
  font-size: 22px;
  font-style: normal;
}

.browser-notice {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(10, 11, 14, 0.82);
  backdrop-filter: blur(10px);
}

.browser-notice[hidden] {
  display: none;
}

.browser-notice-card {
  width: min(460px, 100%);
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  text-align: center;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  outline: none;
}

.browser-notice-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border: 1px solid #e0e2e7;
  border-radius: 20px;
  display: block;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 17, 20, 0.12);
}

.browser-notice-icon img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
  object-fit: cover;
}

.browser-notice-kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.browser-notice h2 {
  margin: 9px 0 12px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.browser-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.browser-notice ol {
  margin: 24px 0;
  padding: 18px;
  border-radius: 14px;
  display: grid;
  gap: 12px;
  text-align: left;
  background: var(--paper);
  list-style: none;
}

.browser-notice li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #42464e;
  font-size: 14px;
}

.browser-notice li b {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
}

.browser-notice button {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
}

.browser-notice small {
  display: block;
  margin-top: 12px;
  color: #92959c;
  font-size: 11px;
}

.nav {
  width: min(1160px, calc(100% - 40px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  box-shadow: 0 7px 18px rgba(239, 61, 69, 0.24);
  font-weight: 800;
  transform: rotate(-5deg);
}

.nav-links {
  display: flex;
  gap: 34px;
  color: #575b63;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 11px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
}

.hero {
  width: min(1160px, calc(100% - 40px));
  min-height: 590px;
  margin: 0 auto;
  padding: 76px 0 90px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 80px;
}

.eyebrow {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid #ebebee;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #51555e;
  background: #fafafa;
  font-size: 13px;
  font-weight: 650;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(23, 166, 115, 0.13);
}

.hero h1 {
  margin: 24px 0 20px;
  font-size: clamp(44px, 5.1vw, 70px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--red);
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-button {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(239, 61, 69, 0.22);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.availability i,
.live-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.trust-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: #72767f;
  font-size: 12px;
}

.hero-card {
  position: relative;
  min-height: 398px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e8e9ed;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(19, 22, 30, 0.12);
}

.card-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -100px;
  top: -110px;
  border-radius: 50%;
  background: rgba(239, 61, 69, 0.16);
  filter: blur(15px);
}

.card-top,
.energy-line,
.mini-flow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-top > span:first-child {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--red);
  background: #fff0f0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.live-dot {
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  color: var(--green);
  background: #eefaf6;
  font-size: 12px;
  font-weight: 650;
}

.price {
  position: relative;
  margin-top: 28px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.price > strong {
  font-size: 82px;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.price div {
  padding-bottom: 7px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price b {
  font-size: 20px;
}

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

.energy-line {
  margin-top: 30px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.energy-line span {
  color: var(--muted);
}

.energy-line strong {
  color: var(--red);
}

.mini-flow {
  margin: 28px 0 24px;
}

.mini-flow > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.mini-flow b {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
}

.mini-flow span {
  color: #62666e;
  font-size: 11px;
}

.mini-flow i {
  width: 42px;
  height: 1px;
  margin-bottom: 21px;
  background: #dcdde1;
}

.hero-card > p {
  margin: 0;
  text-align: center;
  color: #8a8d94;
  font-size: 11px;
}

.stats {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats div {
  padding: 2px 34px;
  border-right: 1px solid var(--line);
}

.stats div:first-child {
  padding-left: 0;
}

.stats div:last-child {
  border: 0;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.stats span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.claim-section,
.how-section,
.faq-section {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}

.claim-section {
  padding: 82px 0 72px;
}

.section-heading {
  text-align: center;
}

.section-heading > span,
.section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--red);
  background: #fff0f0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.safety-section h2 {
  margin: 12px 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.section-heading p,
.safety-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.align-left {
  text-align: left;
}

.claim-panel {
  min-height: 445px;
  margin-top: 44px;
  padding: 32px;
  border: 1px solid #e5e6e9;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(18, 21, 29, 0.09);
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.step-label {
  color: #a0a3aa;
  font: 700 11px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.14em;
}

.panel-head h3 {
  margin: 9px 0 0;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.privacy-badge {
  padding: 7px 10px;
  border: 1px solid #d7eee6;
  border-radius: 8px;
  color: var(--green);
  background: #f6fcfa;
  font-size: 11px;
  font-weight: 650;
}

.idle-state {
  padding: 44px 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.shield {
  width: 70px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #eefaf6;
  border: 1px solid #d6f1e7;
  border-radius: 24px 24px 30px 30px;
  font-size: 24px;
}

.idle-state p {
  max-width: 530px;
  margin: 22px auto 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.claim-button {
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(239, 61, 69, 0.22);
  cursor: pointer;
  font-weight: 720;
  transition: transform 0.2s ease, background 0.2s ease;
}

.claim-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.idle-state small {
  margin-top: 13px;
  color: #9a9da4;
  font-size: 11px;
}

.checking-state {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
  padding: 45px 28px 5px;
}

.scanner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.scanner-ring {
  width: 120px;
  height: 120px;
  padding: 5px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--red) calc((var(--progress, 0)) * 1%), #f1f1f3 0);
  animation: spin 1.6s linear infinite;
}

.scanner-ring::before {
  content: "";
  position: absolute;
  width: 107px;
  height: 107px;
  border-radius: 50%;
  background: #fff;
}

.scanner-ring span {
  position: relative;
  font: 750 18px/1 var(--font-geist-mono), monospace;
  animation: counter-spin 1.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes counter-spin {
  to { transform: rotate(-360deg); }
}

.scanner strong {
  display: block;
  margin-top: 22px;
  font-size: 17px;
}

.scanner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.check-list {
  display: flex;
  flex-direction: column;
}

.check-item {
  min-height: 66px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.45;
}

.check-item.active,
.check-item.done {
  opacity: 1;
}

.check-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid #dedfe3;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #aaaeb5;
  font-weight: 700;
}

.check-item.active .check-icon {
  border: 2px solid #f2c6c9;
  border-top-color: var(--red);
  animation: spin 0.9s linear infinite;
}

.check-item.done .check-icon {
  border-color: #ccecdf;
  color: var(--green);
  background: #effaf6;
}

.check-item strong,
.check-item small {
  display: block;
}

.check-item strong {
  font-size: 14px;
}

.check-item small {
  margin-top: 5px;
  color: #8a8e95;
  font-size: 11px;
}

.ready-state {
  padding-top: 35px;
}

.success-line {
  padding: 16px 18px;
  border: 1px solid #d2eee4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #f4fbf8;
}

.success-line > span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.success-line strong,
.success-line p {
  display: block;
  margin: 0;
}

.success-line strong {
  font-size: 14px;
}

.success-line p {
  margin-top: 3px;
  color: #6f7d78;
  font-size: 11px;
}

.address-box {
  position: relative;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #dedfe3;
  border-radius: 14px;
  background: var(--paper);
}

.address-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7c8088;
  font-size: 11px;
}

.address-label b {
  padding: 4px 7px;
  border-radius: 5px;
  color: var(--red);
  background: #fff0f1;
  font-size: 10px;
}

.address-box code {
  display: block;
  margin: 16px 115px 0 0;
  overflow-wrap: anywhere;
  font: 650 14px/1.5 var(--font-geist-mono), monospace;
}

.address-box button {
  position: absolute;
  right: 16px;
  bottom: 14px;
  min-width: 92px;
  height: 38px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
}

.payment-summary {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.payment-summary div {
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.payment-summary div:first-child {
  padding-left: 0;
}

.payment-summary div:last-child {
  border: 0;
}

.payment-summary span,
.payment-summary strong {
  display: block;
}

.payment-summary span {
  color: var(--muted);
  font-size: 11px;
}

.payment-summary strong {
  margin-top: 7px;
  font-size: 14px;
}

.text-button {
  margin: 18px auto 0;
  border: 0;
  display: block;
  color: #858991;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
}

.how-section {
  width: min(1160px, calc(100% - 40px));
  padding: 28px 0 72px;
}

.how-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.how-grid article {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.how-grid article > b {
  position: absolute;
  right: 24px;
  top: 24px;
  color: #e5e6e9;
  font: 800 32px/1 var(--font-geist-mono), monospace;
}

.how-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff1f2;
  font-weight: 750;
}

.how-grid h3 {
  margin: 58px 0 10px;
  font-size: 18px;
}

.how-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.safety-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  color: #fff;
  background: var(--ink);
}

.safety-section p {
  color: #9fa2a9;
}

.safety-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.safety-items span {
  padding: 16px;
  border: 1px solid #303239;
  border-radius: 11px;
  color: #dbdce0;
  background: #191a1f;
  font-size: 13px;
}

.safety-items b {
  margin-right: 9px;
  color: var(--red);
  font-size: 18px;
}

.faq-section {
  padding: 72px 0 90px;
}

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

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

.faq-list summary {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-weight: 650;
}

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

.faq-list summary span {
  color: #9a9da4;
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -7px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

footer p,
footer > span {
  color: #8a8e95;
  font-size: 11px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 55px;
  }

  .hero-card {
    width: min(520px, 100%);
  }

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

  .stats div {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .how-grid article {
    min-height: auto;
  }

  .how-grid h3 {
    margin-top: 32px;
  }

  .safety-section {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 46px;
  }
}

@media (max-width: 640px) {
  .telegram-guide {
    padding: 70px 14px 84px;
  }

  .telegram-guide-card {
    padding: 26px 18px;
  }

  .telegram-guide h2 {
    font-size: 24px;
  }

  .telegram-guide-top,
  .telegram-guide-bottom {
    right: 14px;
    font-size: 12px;
  }

  .browser-notice {
    padding: 16px;
  }

  .browser-notice-card {
    padding: 30px 22px;
  }

  .browser-notice h2 {
    font-size: 25px;
  }

  .nav {
    width: calc(100% - 28px);
    height: 70px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 9px 13px;
    font-size: 12px;
  }

  .hero,
  .stats,
  .how-section,
  .safety-section {
    width: calc(100% - 28px);
  }

  .claim-section,
  .faq-section {
    width: calc(100% - 28px);
  }

  .hero {
    padding: 45px 0 70px;
  }

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

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .primary-button {
    width: 100%;
    justify-content: space-between;
  }

  .trust-row {
    gap: 12px;
  }

  .hero-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .price > strong {
    font-size: 67px;
  }

  .stats div:nth-child(even) {
    padding-left: 18px;
  }

  .claim-section {
    padding: 64px 0 54px;
  }

  .how-section {
    padding: 18px 0 54px;
  }

  .faq-section {
    padding: 54px 0 70px;
  }

  .claim-panel {
    min-height: 510px;
    padding: 22px 18px;
  }

  .panel-head {
    flex-direction: column;
    gap: 12px;
  }

  .idle-state {
    padding-top: 37px;
  }

  .claim-button {
    width: 100%;
    padding: 0 18px;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
  }

  .checking-state {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 0 0;
  }

  .scanner {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    text-align: left;
  }

  .scanner-ring {
    width: 78px;
    height: 78px;
  }

  .scanner-ring::before {
    width: 67px;
    height: 67px;
  }

  .scanner strong {
    margin-top: 0;
  }

  .ready-state {
    padding-top: 25px;
  }

  .address-box code {
    margin-right: 0;
    padding-bottom: 52px;
    font-size: 12px;
  }

  .address-box button {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .payment-summary {
    gap: 10px;
  }

  .payment-summary div {
    padding: 0 8px;
  }

  .payment-summary strong {
    font-size: 12px;
  }

  .safety-section {
    padding: 36px 24px;
  }

  .safety-items {
    grid-template-columns: 1fr;
  }

  footer {
    width: calc(100% - 28px);
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}
