:root{
  --orange:#FC5C02;
  --sand:#E2CEAE;
  --taupe:#7C6B51;

  --bg:#070707;
  --line: rgba(124,107,81,.22);
  --shadow: 0 18px 60px rgba(0,0,0,.38);
  --radius: 22px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--sand);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  line-height:1.55;
}

a{ color: inherit; text-decoration:none; }
a:hover{ color: var(--orange); }

.rb-container{
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

/* ✅ Slim Header: sand background, orange text */
.rb-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(226,206,174,.96);
  border-bottom: 1px solid rgba(124,107,81,.25);
  backdrop-filter: blur(10px);
  transition: transform .22s ease, box-shadow .22s ease;
}

.rb-header.is-hidden{
  transform: translateY(-110%);
}

.rb-header__inner{
  width: min(var(--max), 92vw);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 8px 0;           /* slimmer */
}

.rb-brand{ display:flex; align-items:center; gap:10px; }

.rb-brand__mark{
  width: 30px; height: 30px;     /* smaller */
  display:grid; place-items:center;
  border-radius: 12px;
  background: rgba(252,92,2,.10);
  border: 1px solid rgba(252,92,2,.28);
  color: var(--orange);
}

.rb-brand__text{
  font-weight: 950;
  letter-spacing: .02em;
  color: var(--orange);
  font-size: .98rem;            /* smaller */
}

/* Burger */
.rb-burger{
  appearance:none;
  border: 1px solid rgba(252,92,2,.30);
  background: rgba(252,92,2,.08);
  border-radius: 14px;
  padding: 8px 9px;             /* slimmer */
  display:grid;
  gap: 5px;
}
.rb-burger span{
  display:block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 99px;
}

/* Mobile menu (sand background, orange text) */
.rb-mobile{
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: 8px 0 12px;
  display:grid;
  gap: 10px;
}
.rb-mobile a{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(124,107,81,.22);
  background: rgba(226,206,174,.86);
  font-weight: 900;
  color: var(--orange);
}
.rb-mobile__cta{
  border-color: rgba(252,92,2,.45) !important;
  background: rgba(252,92,2,.14) !important;
}

/* Hero */
.rb-hero{
  position: relative;
  min-height: calc(100vh - 56px);
  display:grid;
  place-items:end center;
  padding: 18px 0 22px;
  overflow:hidden;
}

.rb-hero__bg{
  position:absolute;
  inset:0;
  background-image: url("./assets/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  transform: scale(1.03);
  filter: contrast(1.08) brightness(.96);
}

.rb-hero__shade{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 700px at 50% 15%, rgba(0,0,0,.05), rgba(0,0,0,.72)),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.88));
}

.rb-hero__wrap{
  position: relative;
  width: min(var(--max), 92vw);
  border-radius: var(--radius);
  padding: 18px 16px 16px;
  border: 1px solid rgba(226,206,174,.18);
  background: linear-gradient(180deg, rgba(0,0,0,.52), rgba(0,0,0,.74));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.rb-kicker{
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  color: rgba(226,206,174,.82);
}

.rb-h1{
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 7vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--sand);
}
.rb-h1__accent{
  display:block;
  margin-top: 10px;
  color: var(--orange);
  text-shadow: 0 10px 30px rgba(252,92,2,.18);
}

.rb-lead{
  margin: 0 0 14px;
  font-size: 1.06rem;
  color: rgba(226,206,174,.90);
}
.rb-lead--tight{ margin-bottom: 10px; }

.rb-hero__cta{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.rb-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 14px;
  border-radius: 16px;
  font-weight: 950;
  letter-spacing: .02em;
  border: 1px solid transparent;
  user-select:none;
  transition: transform .12s ease, filter .12s ease;
}
.rb-btn:active{ transform: translateY(1px); }
.rb-btn:hover{ filter: brightness(1.03); }

.rb-btn--primary{
  background: var(--orange);
  color: #0b0b0c;
  border-color: rgba(252,92,2,.55);
}
.rb-btn--ghost{
  background: rgba(0,0,0,.30);
  color: var(--sand);
  border-color: rgba(226,206,174,.20);
}

.rb-chips{
  margin-top: 12px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rb-chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(226,206,174,.14);
  background: rgba(0,0,0,.36);
  font-weight: 900;
  color: rgba(226,206,174,.88);
}

/* Sections */
.rb-section{
  padding: 42px 0;
  border-top: 1px solid rgba(226,206,174,.08);
}
.rb-section--alt{
  background: linear-gradient(180deg, rgba(124,107,51,.10), rgba(0,0,0,0));
}

.rb-h2{
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 4.2vw, 2.15rem);
  letter-spacing: -0.01em;
}
.rb-h3{
  margin: 0 0 8px;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.rb-cards{
  display:grid;
  gap: 12px;
}
.rb-card{
  padding: 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(226,206,174,.14);
  background: rgba(0,0,0,.46);
}
.rb-card p{ margin:0; color: rgba(226,206,174,.86); }

.rb-steps{
  display:grid;
  gap: 10px;
}
.rb-step{
  display:flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(226,206,174,.14);
  background: rgba(0,0,0,.46);
}
.rb-step__num{
  width: 42px; height: 42px;
  border-radius: 16px;
  display:grid; place-items:center;
  font-weight: 950;
  color: #0b0b0c;
  background: rgba(226,206,174,.95);
}

.rb-aside{
  margin-top: 14px;
  padding: 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(252,92,2,.24);
  background: rgba(252,92,2,.06);
}
.rb-aside p{ margin: 0 0 12px; color: rgba(226,206,174,.88); }

.rb-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(226,206,174,.86);
}
.rb-list li{ margin: 6px 0; }

/* Checklist */
.rb-check{
  display:grid;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(226,206,174,.14);
  background: rgba(0,0,0,.46);
}
.rb-check__item{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-weight: 850;
  color: rgba(226,206,174,.90);
}
.rb-check__item input{
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

/* CTA */
.rb-cta{
  padding: 54px 0;
  background: radial-gradient(900px 420px at 50% 0%, rgba(252,92,2,.12), rgba(0,0,0,0));
  border-top: 1px solid rgba(226,206,174,.08);
}
.rb-cta__card{
  padding: 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(226,206,174,.16);
  background: rgba(0,0,0,.56);
  box-shadow: var(--shadow);
}

.rb-form{
  margin-top: 12px;
  display:grid;
  gap: 10px;
}
.rb-input{
  width: 100%;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(226,206,174,.20);
  background: rgba(0,0,0,.35);
  color: var(--sand);
  outline: none;
  font-weight: 800;
}
.rb-input::placeholder{ color: rgba(226,206,174,.55); }

.rb-small{
  margin: 10px 0 0;
  color: rgba(226,206,174,.74);
  font-size: .95rem;
  min-height: 1.2em;
}

.rb-cta__links{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}

/* Footer */
.rb-footer{
  border-top: 1px solid rgba(226,206,174,.10);
  padding: 26px 0 34px;
  background: rgba(0,0,0,.74);
}
.rb-footer__top{
  display:grid;
  gap: 12px;
}
.rb-footer__brand{ margin:0; font-weight: 950; letter-spacing: .02em; }
.rb-footer__tag{ margin:6px 0 0; color: rgba(226,206,174,.78); }
.rb-footer__links{
  display:grid;
  gap: 8px;
  font-weight: 850;
  color: rgba(226,206,174,.86);
}
.rb-footer__legal{
  border-top: 1px solid rgba(226,206,174,.10);
  padding-top: 14px;
  color: rgba(226,206,174,.78);
  font-size: .92rem;
}
.rb-footer__legal p{ margin: 6px 0; }

/* Tablet+ */
@media (min-width: 760px){
  .rb-hero__wrap{ padding: 24px 22px 20px; }
  .rb-hero__cta{ grid-template-columns: 1fr 1fr; }
  .rb-cards{ grid-template-columns: repeat(3, 1fr); }
  .rb-footer__top{ grid-template-columns: 1fr 1fr; align-items:start; }
  .rb-footer__links{ justify-items:end; text-align:right; }
}

/* Desktop */
@media (min-width: 1040px){
  .rb-steps{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rb-cta__links{ grid-template-columns: 1fr 1fr; }
}
