/* =========================
   RMC30 / ResetMonth
   Basic, high-clarity, mobile-first
   ========================= */

:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #555555;
  --border: #e6e6e6;
  --alt: #f7f7f8;

  /* Accent color: blue is a safe default for trust + clarity */
  --accent: #2563eb;
  --accentDark: #1d4ed8;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text); }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  font-size: 18px;
}

a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

.wrap{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.hide-mobile{ display: none; }
@media (min-width: 820px){
  .hide-mobile{ display: inline; }
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.brand__mark{
  font-weight: 800;
  letter-spacing: .5px;
}
.brand__sub{
  color: var(--muted);
  font-size: 14px;
}

.brand{ line-height: 1; }

.brand__logo{
  display:block;
  height:56px;
  width:auto;
  max-width:none;
}

@media (max-width: 820px){
  .brand__logo{ height:48px; }
}

@media (max-width: 480px){
  .brand__logo{ height:44px; }
}

/* accessibility helper */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}


.topbar__nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.navlink{
  color: var(--muted);
  font-size: 14px;
}
.navlink:hover{ color: var(--text); text-decoration: none; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 6px 18px rgba(37,99,235,.18);
  white-space: nowrap;
}
.btn:hover{
  background: var(--accentDark);
  text-decoration:none;
}
.btn--ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn--ghost:hover{
  background: rgba(0,0,0,.03);
}
.btn--sm{
  padding: 9px 14px;
  font-size: 14px;
}

.hero{
  padding: 56px 0 20px 0;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px){
  .hero__inner{
    grid-template-columns: 1.15fr .85fr;
    align-items: start;
    gap: 26px;
  }
}

.pill{
  display:inline-block;
  background: rgba(37,99,235,.10);
  color: var(--accentDark);
  border: 1px solid rgba(37,99,235,.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

h1{
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.05;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}
h2{
  font-size: clamp(24px, 2.6vw, 34px);
  margin: 0 0 12px 0;
  letter-spacing: -0.2px;
}
h3{
  font-size: 18px;
  margin: 0 0 8px 0;
}

.lead{
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  margin: 0 0 18px 0;
}
.body{
  color: var(--muted);
  margin: 0 0 12px 0;
}
.sub{
  color: var(--muted);
  margin: 0;
}
.small{
  font-size: 14px;
  color: var(--muted);
}
.microline{
  margin-top: 10px;
  color: var(--text);
}

.ctaRow{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 14px 0;
}

.microtrust{
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.microtrust li{
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
}

.hero__card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}
.cardTitle{
  margin: 0 0 6px 0;
  font-size: 14px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--muted);
}
.cardCopy{
  margin: 0 0 8px 0;
  font-weight: 800;
  font-size: 20px;
}
.cardSmall{
  margin: 0;
  color: var(--muted);
}

.hr{
  border: 0;
  border-top: 1px solid var(--border);
  margin: 12px 0;
}

.section{
  padding: 44px 0;
}
.section--alt{
  background: var(--alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sectionHead{
  margin-bottom: 14px;
}

.callout{
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px 16px 6px 16px;
  box-shadow: var(--shadow);
}

.bullets{
  margin: 10px 0 16px 0;
  padding-left: 18px;
  color: var(--text);
}
.bullets li{
  margin: 8px 0;
  color: var(--muted);
}

.grid2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 820px){
  .grid2{
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

.panel{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.accordion{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.acc{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.acc__sum{
  list-style: none;
  cursor: pointer;
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}
.acc__sum::-webkit-details-marker{ display:none; }
.acc__title{
  font-weight: 800;
}
.acc__tag{
  font-size: 14px;
  color: var(--muted);
}
.acc__body{
  padding: 0 16px 14px 16px;
  color: var(--muted);
}
.rules{
  margin: 10px 0 6px 0;
  padding-left: 18px;
}
.rules li{ margin: 8px 0; }
.note{
  margin: 10px 0 0 0;
  font-size: 14px;
  color: var(--muted);
}
.hint{
  margin-top: 14px;
  border-left: 4px solid var(--accent);
  padding: 12px 14px;
  background: rgba(37,99,235,.06);
  border-radius: 12px;
}

.steps{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 820px){
  .steps{
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.step{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display:flex;
  gap: 12px;
}
.step__num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.18);
  color: var(--accentDark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  flex: 0 0 auto;
}
.step__body p{ margin: 6px 0 0 0; color: var(--muted); }

.ctaCenter{
  margin-top: 18px;
  text-align: center;
}

.recovery{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}
.recovery__line{
  font-size: 20px;
  margin: 6px 0;
}

.finalCta{
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  text-align: center;
}

.disclaimer{
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}

.footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
  background: #fff;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
