:root {
  --rrm-ink: #101820;
  --rrm-muted: #5b6670;
  --rrm-paper: #fffdf8;
  --rrm-cloud: #eef5f4;
  --rrm-teal: #00a69c;
  --rrm-teal-dark: #007b76;
  --rrm-coral: #ff6b4a;
  --rrm-navy: #0b2138;
  --rrm-gold: #f5b84b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--rrm-ink);
  background: var(--rrm-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 5;
  width: 100%;
  padding: 22px 0;
  color: #fff;
  animation: rrm-drop-in .7s ease both;
}

.site-header__inner,
.rrm-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  font-size: 18px;
  font-weight: 950;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: color .18s ease;
}

.site-nav a:hover {
  color: #fff;
}

.rrm-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--rrm-navy);
}

.rrm-hero__media,
.rrm-hero__shade {
  position: absolute;
  inset: 0;
}

.rrm-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: .9;
  animation: rrm-hero-drift 18s ease-in-out infinite alternate;
}

.rrm-hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 20, 34, .96) 0%, rgba(8, 20, 34, .78) 39%, rgba(8, 20, 34, .14) 76%),
    linear-gradient(180deg, rgba(8, 20, 34, .08), rgba(8, 20, 34, .46));
}

.rrm-hero__inner {
  position: relative;
  z-index: 1;
  padding: 118px 0 96px;
  color: #fff;
}

.rrm-kicker,
.rrm-hero h1,
.rrm-lede,
.rrm-actions,
.rrm-proof {
  animation: rrm-rise .7s ease both;
}

.rrm-hero h1 {
  animation-delay: .08s;
}

.rrm-lede {
  animation-delay: .16s;
}

.rrm-actions {
  animation-delay: .24s;
}

.rrm-proof {
  animation-delay: .32s;
}

.rrm-kicker,
.rrm-eyebrow {
  margin: 0 0 14px;
  color: var(--rrm-gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rrm-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 7vw, 86px);
  line-height: .95;
  letter-spacing: 0;
}

.rrm-lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.48;
}

.rrm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rrm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.rrm-button:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
  transform: translateY(-3px);
}

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

.rrm-button--primary {
  color: #071725;
  background: var(--rrm-gold);
}

.rrm-button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .08);
}

.rrm-button--full {
  width: 100%;
}

.rrm-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin: 54px 0 0;
}

.rrm-proof div {
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.rrm-proof div:hover {
  border-color: rgba(245, 184, 75, .58);
  background: rgba(255, 255, 255, .13);
  transform: translateY(-5px);
}

.rrm-proof dt {
  margin-bottom: 8px;
  color: #fff;
  font-weight: 900;
}

.rrm-proof dd {
  margin: 0;
  color: rgba(255, 255, 255, .75);
  line-height: 1.45;
}

.rrm-band {
  padding: 46px 0;
}

.rrm-band--intro {
  background: var(--rrm-cloud);
}

.rrm-split,
.rrm-form-wrap,
.rrm-card-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.rrm-split h2,
.rrm-section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.rrm-split p,
.rrm-section p {
  margin: 0;
  color: var(--rrm-muted);
  font-size: 18px;
  line-height: 1.65;
}

.rrm-section {
  padding: 88px 0;
}

.rrm-section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.rrm-steps article,
.rrm-form-panel {
  border: 1px solid #dbe5e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(16, 24, 32, .08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.rrm-steps article {
  padding: 28px;
}

.rrm-steps article:hover,
.rrm-form-panel:hover {
  border-color: rgba(0, 166, 156, .35);
  box-shadow: 0 26px 60px rgba(16, 24, 32, .13);
  transform: translateY(-6px);
}

.rrm-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--rrm-teal-dark);
  font-weight: 900;
}

.rrm-steps h3,
.rrm-form-panel h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.rrm-section--dark {
  color: #fff;
  background: linear-gradient(135deg, #081522 0%, #13324c 62%, #0c655f 100%);
}

.rrm-section--dark p,
.rrm-section--dark .rrm-checks {
  color: rgba(255, 255, 255, .82);
}

.rrm-postcard {
  min-height: 390px;
  padding: 18px;
  border-radius: 8px;
  background: #f8faf9;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
  transform: rotate(-2deg);
  animation: rrm-postcard-float 6s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}

.rrm-postcard:hover {
  box-shadow: 0 38px 100px rgba(0, 0, 0, .36);
  transform: rotate(0deg) translateY(-8px);
}

.rrm-postcard__top {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  border-radius: 6px;
  color: #081522;
  background: linear-gradient(135deg, var(--rrm-gold), var(--rrm-coral));
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 950;
  text-align: center;
}

.rrm-postcard__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.rrm-postcard__grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  border: 2px dashed #aab9b8;
  border-radius: 6px;
  color: #31505a;
  background: #fff;
  font-weight: 850;
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.rrm-postcard__grid span:hover {
  border-color: var(--rrm-teal);
  color: #071725;
  background: var(--rrm-cloud);
  transform: scale(1.03);
}

.rrm-checks {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.rrm-checks li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
  line-height: 1.45;
}

.rrm-checks li::before {
  content: "";
  position: absolute;
  top: .25em;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rrm-gold);
}

.rrm-checks li::after {
  content: "";
  position: absolute;
  top: .54em;
  left: 6px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #081522;
  border-bottom: 2px solid #081522;
  transform: rotate(-45deg);
}

.rrm-form-wrap {
  align-items: start;
}

.rrm-form-panel {
  padding: 30px;
}

.rrm-form-panel p {
  margin-bottom: 18px;
  font-size: 16px;
}

.rrm-lead-form {
  display: grid;
  gap: 14px;
}

.rrm-lead-form label {
  display: grid;
  gap: 7px;
}

.rrm-lead-form span {
  color: #263642;
  font-size: 13px;
  font-weight: 850;
}

.rrm-hidden {
  display: none;
}

.rrm-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rrm-lead-form input,
.rrm-lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cbd8d6;
  border-radius: 6px;
  color: var(--rrm-ink);
  background: #fbfefd;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.rrm-lead-form textarea {
  resize: vertical;
}

.rrm-lead-form input:focus,
.rrm-lead-form textarea:focus {
  outline: 3px solid rgba(0, 166, 156, .18);
  border-color: var(--rrm-teal-dark);
  box-shadow: 0 10px 24px rgba(0, 166, 156, .12);
  transform: translateY(-1px);
}

.rrm-form-status {
  min-height: 24px;
  margin: 0;
  color: var(--rrm-muted);
  font-size: 14px;
  font-weight: 800;
}

.rrm-email-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--rrm-teal-dark);
  font-size: 14px;
  font-weight: 850;
  transition: color .18s ease, transform .18s ease;
}

.rrm-email-link:hover {
  color: var(--rrm-coral);
  transform: translateX(3px);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, .7);
  background: #081522;
  font-size: 14px;
}

.rrm-success-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, #081522 0%, #13324c 62%, #0c655f 100%);
}

.rrm-success {
  padding: 80px 0;
}

.rrm-success h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}

.rrm-success p {
  max-width: 620px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .rrm-hero {
    min-height: auto;
  }

  .rrm-hero__media img {
    object-position: 70% center;
  }

  .rrm-hero__shade {
    background: linear-gradient(180deg, rgba(8, 20, 34, .98) 0%, rgba(8, 20, 34, .82) 58%, rgba(8, 20, 34, .52) 100%);
  }

  .rrm-proof,
  .rrm-steps,
  .rrm-split,
  .rrm-form-wrap,
  .rrm-card-grid {
    grid-template-columns: 1fr;
  }

  .rrm-proof {
    max-width: 520px;
  }

  .rrm-section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .site-header__inner,
  .rrm-shell {
    width: min(100% - 28px, 1120px);
  }

  .rrm-hero__inner {
    padding: 96px 0 64px;
  }

  .rrm-actions {
    display: grid;
  }

  .rrm-button {
    width: 100%;
  }

  .rrm-postcard {
    min-height: 320px;
  }

  .rrm-postcard__grid,
  .rrm-form-row {
    grid-template-columns: 1fr;
  }
}

@keyframes rrm-drop-in {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rrm-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rrm-hero-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06) translateX(-1.5%);
  }
}

@keyframes rrm-postcard-float {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(-1deg) translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
