:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --surface: #131313;
  --surface-2: #1a1a1a;
  --line: #2b2b2b;
  --line-light: #dbdbd5;
  --ink: #f5f5ef;
  --muted: #aaa9a2;
  --paper: #f3f3ed;
  --paper-ink: #121212;
  --green: #b8f36b;
  --green-dark: #86c83d;
  --yellow: #f1d34f;
  --red: #ff6e5b;
  --blue: #75a7ff;
  --radius: 8px;
  --shell: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

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

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

svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--paper-ink);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 16px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--green);
  color: #111;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  color: #c9c9c3;
  font-size: 14px;
}

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

.site-header > .button {
  justify-self: end;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 760;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--green);
}

.button-primary {
  background: var(--green);
  color: #111;
}

.button-primary:hover {
  background: #c8ff81;
}

.button-dark {
  background: #111;
  color: white;
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 28px));
  display: flex;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid #292929;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.75) contrast(1.1);
}

.hero-shade {
  background: rgba(0, 0, 0, 0.58);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  padding: 144px 0 46px;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #d3d3cc;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(184, 243, 107, 0.15);
}

.demo-tag {
  margin-left: 6px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  color: white;
  font-size: 10px;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(54px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 850;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 600px;
  margin: 28px 0 0;
  color: #deded8;
  font-size: 18px;
  line-height: 1.7;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 720;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin: 62px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stats div {
  min-height: 92px;
  padding: 18px 22px 8px 0;
}

.hero-stats div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stats dt {
  margin-bottom: 9px;
  color: #aaa;
  font-size: 12px;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.trust-strip {
  background: var(--green);
  color: #111;
}

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

.trust-grid {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 780;
}

.trust-grid div + div {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.section-block {
  padding: 110px 0;
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: 100px;
  align-items: center;
}

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

.section-kicker {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 750;
}

.section-heading h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.compact-heading h2 {
  font-size: 34px;
}

.distribution {
  display: grid;
  gap: 34px;
}

.distribution-row > div:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.distribution-row span,
.distribution-row strong {
  font-size: 15px;
}

.bar {
  height: 14px;
  overflow: hidden;
  background: #202020;
  border: 1px solid #2c2c2c;
}

.bar span {
  display: block;
  width: var(--bar-width);
  height: 100%;
  background: var(--green);
}

.distribution-row:nth-child(2) .bar span {
  background: var(--yellow);
}

.distribution-row:nth-child(3) .bar span {
  background: var(--blue);
}

.eligibility-band {
  padding: 94px 0;
  background: var(--paper);
  color: var(--paper-ink);
}

.eligibility-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.eligibility-band .section-heading > p:last-child {
  color: #696963;
}

.eligibility-band .section-kicker {
  color: #4f7e20;
}

.address-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 760;
}

.input-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.input-icon {
  position: absolute;
  top: 0;
  left: 15px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #70706a;
}

.input-row input {
  width: 100%;
  height: 54px;
  padding: 0 16px 0 48px;
  border: 1px solid #bdbdb5;
  border-radius: var(--radius);
  outline: none;
  background: white;
  color: #111;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.input-row input:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
}

.input-row input[aria-invalid="true"] {
  border-color: #c93a2a;
}

.check-button {
  min-height: 54px;
  min-width: 142px;
}

.form-message {
  min-height: 20px;
  margin: 9px 0 0;
  color: #6b6b65;
  font-size: 12px;
}

.form-message.is-error {
  color: #b52b1d;
}

.eligibility-result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid #b7b7ae;
  border-radius: var(--radius);
  background: white;
}

.eligibility-result[hidden] {
  display: none;
}

.result-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
}

.eligibility-result > div:nth-child(2) {
  display: grid;
  gap: 3px;
}

.eligibility-result span,
.eligibility-result small {
  color: #686861;
  font-size: 12px;
}

.eligibility-result strong {
  font-size: 24px;
}

.tasks-header {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: 46px;
}

.progress-summary {
  width: 240px;
  color: var(--muted);
  font-size: 13px;
}

.progress-summary strong {
  color: var(--ink);
}

.progress-track {
  height: 7px;
  margin-top: 10px;
  overflow: hidden;
  background: #292929;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
  transition: width 300ms ease;
}

.points-dashboard {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr 0.8fr 0.8fr;
  align-items: stretch;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
}

.points-dashboard > div {
  min-height: 132px;
  padding: 24px;
}

.points-dashboard > div + div {
  border-left: 1px solid var(--line);
}

.points-balance > span,
.level-progress > div:first-child span,
.streak-stat span,
.today-stat span {
  color: var(--muted);
  font-size: 11px;
}

.points-balance > strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.points-balance > strong small {
  font-size: 13px;
}

.points-balance p {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 720;
}

.level-progress {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.level-progress > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.level-progress > div:first-child strong {
  color: var(--ink);
}

.level-track {
  height: 10px;
  margin-top: 13px;
  overflow: hidden;
  background: #2a2a2a;
}

.level-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
  transition: width 300ms ease;
}

.level-progress p {
  margin: 10px 0 0;
  color: #777;
  font-size: 11px;
}

.streak-stat,
.today-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.streak-stat svg {
  color: var(--red);
}

.today-stat svg {
  color: var(--yellow);
}

.streak-stat div,
.today-stat div {
  display: grid;
  gap: 5px;
}

.streak-stat strong,
.today-stat strong {
  font-size: 15px;
}

.task-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.task-tabs {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
}

.task-tabs button {
  min-width: 62px;
  height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

.task-tabs button.is-active {
  background: var(--green);
  color: #111;
  font-weight: 780;
}

.task-season {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.task-season svg {
  width: 16px;
}

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

.task-row {
  min-height: 104px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}

.task-row[hidden] {
  display: none;
}

.task-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #393939;
  border-radius: var(--radius);
  color: var(--green);
  background: #151515;
}

.task-copy > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.task-copy h3 {
  margin: 0;
  font-size: 16px;
}

.task-copy p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.points {
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(184, 243, 107, 0.12);
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.button-task {
  min-width: 92px;
  min-height: 40px;
  border-color: #444;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.button-task:hover {
  border-color: var(--green);
}

.button-task-accent {
  border-color: var(--green);
  background: var(--green);
  color: #111;
}

.icon-status {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #111;
}

.task-row.is-complete .task-copy h3,
.task-row.is-complete .task-copy p {
  color: #777;
}

.task-row.is-complete .task-icon {
  border-color: rgba(184, 243, 107, 0.22);
  background: rgba(184, 243, 107, 0.08);
}

.faq-band {
  padding: 100px 0;
  background: #101413;
  border-top: 1px solid #26302c;
}

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

.faq-list {
  border-top: 1px solid #37413d;
}

.faq-list details {
  border-bottom: 1px solid #37413d;
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 720;
}

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

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

.faq-list summary svg {
  transition: transform 180ms ease;
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 40px 22px 0;
  color: #aeb7b2;
  font-size: 14px;
  line-height: 1.75;
}

.site-footer {
  padding: 34px 0 100px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-inner p {
  color: #777;
  font-size: 12px;
}

.footer-links {
  display: flex;
  justify-content: end;
  gap: 20px;
  color: #aaa;
  font-size: 12px;
}

.mobile-claim-bar {
  display: none;
}

.wallet-dialog {
  width: min(460px, calc(100% - 28px));
  padding: 24px;
  border: 1px solid #3b3b3b;
  border-radius: var(--radius);
  background: #151515;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.64);
}

.wallet-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(4px);
}

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

.dialog-kicker {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.dialog-head h2 {
  margin: 7px 0 0;
  font-size: 25px;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #3b3b3b;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.dialog-copy {
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.wallet-options {
  display: grid;
  gap: 9px;
}

.wallet-options button {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid #343434;
  border-radius: var(--radius);
  background: #1d1d1d;
  color: white;
  text-align: left;
  cursor: pointer;
}

.wallet-options button:hover {
  border-color: var(--green);
}

.wallet-letter {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #111;
  font-weight: 900;
}

.wallet-letter.orange { background: #f2994a; }
.wallet-letter.blue { background: var(--blue); }
.wallet-letter.yellow { background: var(--yellow); }

.dialog-warning {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding: 13px;
  border: 1px solid rgba(255, 110, 91, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 110, 91, 0.08);
  color: #e0a39b;
  font-size: 12px;
  line-height: 1.5;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid #4b5a42;
  border-radius: var(--radius);
  background: #1b2118;
  color: #dfffc0;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  font-size: 13px;
}

.toast[hidden] {
  display: none;
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 700px);
  }

  .site-header {
    height: 64px;
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .desktop-nav {
    display: none;
  }

  .site-header .button span {
    display: none;
  }

  .site-header .button {
    width: 40px;
    min-width: 40px;
    padding: 0;
  }

  .hero {
    min-height: min(780px, calc(100svh - 24px));
  }

  .hero-content {
    padding: 122px 0 28px;
  }

  .hero h1 {
    font-size: clamp(46px, 16vw, 76px);
    line-height: 0.96;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-stats {
    margin-top: 42px;
  }

  .hero-stats dd {
    font-size: 17px;
  }

  .trust-grid {
    min-height: 72px;
  }

  .trust-grid div {
    gap: 7px;
    font-size: 11px;
  }

  .trust-grid svg {
    width: 17px;
  }

  .section-block,
  .faq-band {
    padding: 78px 0;
  }

  .overview-layout,
  .eligibility-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .overview-layout {
    gap: 54px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .compact-heading h2 {
    font-size: 31px;
  }

  .eligibility-band {
    padding: 72px 0;
  }

  .points-dashboard {
    grid-template-columns: 1fr 1fr;
  }

  .points-dashboard > div:nth-child(3) {
    border-left: 0;
  }

  .points-dashboard > div:nth-child(3),
  .points-dashboard > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .points-dashboard > div {
    min-height: 112px;
  }

  .tasks-header {
    align-items: start;
  }

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

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .hero {
    min-height: min(760px, calc(100svh - 18px));
  }

  .hero-media {
    object-position: 56% center;
  }

  .hero-content {
    padding-top: 110px;
  }

  .eyebrow-row {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 52px;
  }

  .hero h1 span:last-child {
    font-size: 42px;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 17px;
    margin-top: 26px;
  }

  .hero-actions .button {
    min-height: 48px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
  }

  .hero-stats div {
    min-height: 72px;
    padding: 14px 10px 8px 0;
  }

  .hero-stats div + div {
    padding-left: 14px;
  }

  .hero-stats div:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
    padding-left: 0;
  }

  .hero-stats dt {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .hero-stats dd {
    font-size: 16px;
  }

  .trust-grid {
    min-height: 64px;
  }

  .trust-grid div {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    line-height: 1.25;
  }

  .section-block {
    padding: 66px 0;
  }

  .section-heading h2,
  .compact-heading h2 {
    font-size: 29px;
  }

  .section-heading > p:last-child {
    margin-top: 16px;
    font-size: 14px;
  }

  .distribution {
    gap: 28px;
  }

  .eligibility-band {
    padding: 64px 0 70px;
  }

  .eligibility-layout {
    gap: 34px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .check-button {
    width: 100%;
  }

  .eligibility-result {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 17px;
  }

  .eligibility-result .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .tasks-header {
    display: grid;
    gap: 28px;
    margin-bottom: 34px;
  }

  .points-dashboard {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
  }

  .points-dashboard > div {
    min-height: 100px;
    padding: 18px;
  }

  .points-dashboard > div:nth-child(1),
  .points-dashboard > div:nth-child(2) {
    grid-column: 1 / -1;
  }

  .points-dashboard > div:nth-child(2) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .points-dashboard > div:nth-child(3),
  .points-dashboard > div:nth-child(4) {
    min-height: 84px;
    padding: 14px;
  }

  .points-balance > strong {
    font-size: 30px;
  }

  .task-toolbar {
    display: grid;
    gap: 12px;
  }

  .task-tabs {
    width: 100%;
  }

  .task-tabs button {
    min-width: 0;
    flex: 1;
    padding: 0 8px;
  }

  .task-season {
    justify-self: end;
  }

  .progress-summary {
    width: 100%;
  }

  .task-row {
    min-height: 112px;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    padding: 16px 0;
  }

  .task-icon {
    width: 42px;
    height: 42px;
  }

  .task-copy > div {
    display: grid;
    justify-items: start;
    gap: 6px;
  }

  .task-copy h3 {
    font-size: 14px;
  }

  .task-copy p {
    max-width: 190px;
    line-height: 1.45;
  }

  .button-task {
    min-width: 72px;
    padding: 0 11px;
    font-size: 12px;
  }

  .faq-band {
    padding: 70px 0;
  }

  .faq-layout {
    gap: 36px;
  }

  .faq-list summary {
    min-height: 68px;
    font-size: 14px;
  }

  .site-footer {
    padding: 28px 0 116px;
  }

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

  .footer-links {
    justify-content: start;
  }

  .mobile-claim-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 30;
    min-height: 74px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid #343434;
    background: rgba(12, 12, 12, 0.94);
    backdrop-filter: blur(16px);
  }

  .mobile-claim-bar > div {
    display: grid;
    gap: 2px;
  }

  .mobile-claim-bar span {
    color: var(--muted);
    font-size: 10px;
  }

  .mobile-claim-bar strong {
    font-size: 14px;
  }

  .mobile-claim-bar .button {
    min-height: 44px;
  }

  .toast {
    right: 14px;
    bottom: 88px;
    left: 14px;
    justify-content: center;
  }
}

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