:root {
  --bg: #f4f2ea;
  --panel: #fbfaf5;
  --panel-strong: #ffffff;
  --ink: #171717;
  --muted: #565656;
  --line: rgba(23, 23, 23, 0.1);
  --acid: #d7ff42;
  --acid-deep: #b8e024;
  --slate: #24262b;
  --slate-soft: #32353b;
  --chalk: #f9f9f3;
  --alert: #dc2626;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(215, 255, 66, 0.22), transparent 22%),
    linear-gradient(180deg, #f7f6ef 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.offerFrame,
.heroTrack,
.rowDeck,
.methodRail,
.pageFlow,
.siteFoot {
  width: min(100% - 28px, 1380px);
  margin: 0 auto;
}

.mastShell {
  padding: 18px 0 0;
}

.mastTop {
  width: min(100% - 28px, 1120px);
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.brandPulse {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.brandPulse img {
  width: 58px;
  height: 58px;
}

.brandPulse strong,
h1,
h2,
h3 {
  font-family: "Archivo Black", sans-serif;
}

.brandPulse strong {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.routeNav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.routeNav a,
.tapLink {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 0.94rem;
}

.menuToggle {
  display: none;
  justify-self: center;
  border: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--slate);
  color: #fff;
}

.menuWrap {
  display: none;
}

.heroStage {
  padding: 26px 0 0;
}

.heroTrack {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.heroCore,
.heroAid,
.offerRow,
.methodCard,
.pageCard,
.footGrid {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.heroCore {
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, var(--slate) 0%, #141518 100%);
  color: #fff;
}

.signalTag,
.badgeCue,
.metaChip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.signalTag {
  margin-bottom: 14px;
  background: rgba(215, 255, 66, 0.14);
  color: var(--acid);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  max-width: 9ch;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
}

h3 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.1;
}

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

.heroPoints div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.heroAid {
  display: grid;
  gap: 18px;
  align-content: start;
}

.aidHelpline,
.aidUpdate {
  padding: 24px;
  border-radius: 30px;
  background: var(--panel-strong);
}

.aidHelpline {
  background: linear-gradient(180deg, #fefef8, #eef0e1);
}

.helplineLinks,
.footNav,
.inlineList,
.pageActions,
.payDots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.helplineLinks a,
.payDots span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #ecefe0;
}

.badgeCue,
.metaChip {
  background: rgba(215, 255, 66, 0.22);
}

.ctaLane {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.offerGo,
.offerRead {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.offerGo {
  background: var(--acid);
  color: var(--ink);
}

.offerRead {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.offerGo:hover,
.offerRead:hover,
.tapLink:hover {
  transform: translateY(-2px);
}

.offerStage,
.methodStage,
.alertStage,
.pageStage,
.footStage {
  padding: 24px 0 0;
}

.offerFrame {
  display: grid;
  gap: 14px;
}

.offerIntro {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.offerRow {
  display: grid;
  grid-template-columns: 84px minmax(160px, 220px) minmax(240px, 1fr) minmax(160px, 220px);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 30px;
  background: var(--panel);
}

.offerRank {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--slate);
  color: #fff;
  font-family: "Archivo Black", sans-serif;
}

.offerLogo {
  padding: 18px;
  border-radius: 22px;
  background: var(--panel-strong);
}

.offerBlock strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.offerNote {
  padding: 12px 14px;
  border-left: 4px solid var(--acid-deep);
  background: #eff3d8;
  border-radius: 12px;
  margin-bottom: 10px;
}

.offerSide {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.offerScore {
  padding: 10px 14px;
  border-radius: 18px;
  background: var(--acid);
  font-family: "Archivo Black", sans-serif;
}

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

.methodCard {
  padding: 24px;
  border-radius: 28px;
  background: var(--panel-strong);
}

.methodIndex {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.alertStrip {
  width: min(100% - 28px, 1320px);
  margin: 0 auto;
  padding: 24px 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, #b51212, var(--alert));
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.alertStrip a {
  text-decoration: underline;
}

.pageFlow {
  width: min(100% - 28px, 960px);
}

.pageCard {
  padding: 28px;
  border-radius: 30px;
  background: var(--panel-strong);
}

.pageCard + .pageCard {
  margin-top: 16px;
}

.kickerLine {
  margin-bottom: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.gridTwo,
.gridThree {
  display: grid;
  gap: 16px;
}

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

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

.siteFoot {
  padding-bottom: 34px;
}

.footGrid {
  border-radius: 32px;
  background: #15161a;
  color: #f2f2eb;
  overflow: hidden;
}

.footNavRow {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footNav a {
  background: rgba(255, 255, 255, 0.06);
  border: 0;
}

.footBody {
  padding: 24px 22px;
  display: grid;
  gap: 14px;
}

.footerDisclaimer p {
  margin: 0 0 10px;
  color: rgba(242, 242, 235, 0.88);
}

.readerOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 980px) {
  .heroTrack,
  .offerRow,
  .gridTwo,
  .gridThree,
  .methodRail {
    grid-template-columns: 1fr;
  }

  .offerRow {
    justify-items: start;
  }

  .offerSide {
    justify-items: start;
  }

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

  .alertStrip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .routeNav {
    display: none;
  }

  .menuToggle {
    display: inline-flex;
  }

  .menuWrap[data-open="true"] {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 20;
  }

  .menuSheet {
    width: min(100% - 24px, 420px);
    margin: 18px auto 0;
    padding: 18px;
    border-radius: 28px;
    background: var(--panel-strong);
    box-shadow: var(--shadow);
  }

  .menuSheet nav {
    display: grid;
    gap: 12px;
    margin-top: 16px;
  }

  .menuSheet a {
    padding: 12px 14px;
    border-radius: 16px;
    background: #f1f3e3;
  }
}

@media (max-width: 640px) {
  .mastTop,
  .heroCore,
  .aidHelpline,
  .aidUpdate,
  .offerRow,
  .methodCard,
  .pageCard,
  .footBody,
  .footNavRow {
    padding: 18px;
  }

  h1 {
    max-width: 10ch;
  }
}
