:root {
  --ce-ra-ink: #0b0b0b;
  --ce-ra-paper: #f5f1e8;
  --ce-ra-gold: #b59050;
  --ce-ra-gold-light: #d5bc86;
  --ce-ra-steel: #8ea7ad;
  --ce-ra-line: rgba(255, 255, 255, 0.14);
  --ce-ra-muted: rgba(255, 255, 255, 0.66);
}

body.ce-resident-app-page .container-wrap,
body.ce-resident-app-page #ajax-content-wrap {
  background: var(--ce-ra-ink);
}

body.ce-resident-app-page .container-wrap {
  padding: 0 !important;
}

body.ce-resident-app-page #page-header-bg,
body.ce-resident-app-page .page-header-no-bg {
  display: none !important;
}

.ce-ra,
.ce-ra * {
  box-sizing: border-box;
}

.ce-ra {
  background: var(--ce-ra-ink);
  color: #fff;
  font-family: inherit;
  overflow: hidden;
}

.ce-ra-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.ce-ra h1,
.ce-ra h2,
.ce-ra h3,
.ce-ra p,
.ce-ra dl {
  margin-top: 0;
}

.ce-ra h1,
.ce-ra h2,
.ce-ra h3 {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
}

.ce-ra h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(54px, 6.2vw, 94px);
  line-height: 0.98;
  font-weight: 650;
}

.ce-ra h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1.02;
  font-weight: 580;
}

.ce-ra h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.ce-ra p {
  color: var(--ce-ra-muted);
  font-size: 18px;
  line-height: 1.65;
}

.ce-ra-kicker {
  margin-bottom: 20px !important;
  color: var(--ce-ra-gold-light) !important;
  font-size: 12px !important;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.ce-ra-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid var(--ce-ra-gold);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(181, 144, 80, 0.12);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.ce-ra-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(181, 144, 80, 0.22);
}

.ce-ra-button-primary {
  background: var(--ce-ra-gold);
  color: #0b0b0b;
}

.ce-ra-button-primary:hover {
  background: var(--ce-ra-gold-light);
  color: #0b0b0b;
}

.ce-ra-text-link {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.ce-ra-text-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--ce-ra-gold), transparent);
  content: '';
  transform: scaleX(.55);
  transform-origin: left;
  transition: transform 220ms ease;
}

.ce-ra-text-link:hover::after { transform: scaleX(1); }

.ce-ra-hero {
  position: relative;
  min-height: 860px;
  padding: clamp(90px, 10vw, 150px) 0 110px;
  background:
    linear-gradient(116deg, rgba(181, 144, 80, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(142, 167, 173, .06), transparent 36%),
    #0b0b0b;
}

.ce-ra-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: '';
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  pointer-events: none;
}

.ce-ra-hero::after {
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 72%;
  background: linear-gradient(to bottom, transparent, rgba(213,188,134,.65), transparent);
  box-shadow: -84px 90px 0 rgba(255,255,255,.05), 84px 160px 0 rgba(142,167,173,.12);
  content: '';
  pointer-events: none;
  transform: rotate(17deg);
  transform-origin: top;
}

.ce-ra-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}

.ce-ra-hero-grid > * {
  min-width: 0;
}

.ce-ra-lede {
  max-width: 670px;
  margin-bottom: 34px !important;
  color: rgba(255,255,255,.76) !important;
  font-size: clamp(19px, 2vw, 24px) !important;
  line-height: 1.55 !important;
}

.ce-ra-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-bottom: 50px;
}

.ce-ra-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  padding-top: 25px;
  border-top: 1px solid var(--ce-ra-line);
}

.ce-ra-hero-facts div {
  padding-right: 22px;
}

.ce-ra-hero-facts div + div {
  padding-left: 22px;
  border-left: 1px solid var(--ce-ra-line);
}

.ce-ra-hero-facts dt {
  color: #fff;
  font-size: 18px;
  font-weight: 720;
}

.ce-ra-hero-facts dd {
  margin: 5px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  line-height: 1.4;
}

.ce-ra-proof {
  position: relative;
  width: min(410px, 100%);
  margin-inline: auto;
  padding: 0;
  perspective: 1200px;
}

.ce-ra-proof img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  filter: drop-shadow(0 34px 54px rgba(0,0,0,.72)) drop-shadow(14px 0 24px rgba(181,144,80,.16));
  transform: rotateY(-2.5deg) translateZ(0);
  transform-origin: center;
  transition: filter 500ms ease, transform 500ms cubic-bezier(.22,1,.36,1);
}

.ce-ra-proof:hover img {
  filter: drop-shadow(0 38px 65px rgba(0,0,0,.78)) drop-shadow(15px 0 30px rgba(181,144,80,.23));
  transform: rotateY(0) translateY(-4px);
}

.ce-ra-proof-glow {
  position: absolute;
  top: 16%;
  right: -14%;
  bottom: 10%;
  left: -14%;
  border-top: 1px solid rgba(213,188,134,.28);
  border-bottom: 1px solid rgba(142,167,173,.15);
  background: linear-gradient(90deg, transparent, rgba(181,144,80,.07), transparent);
  filter: blur(10px);
  transform: skewY(-5deg);
}

.ce-ra-proof-note {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: -12px;
  padding: 18px 8px 0;
  border-top: 1px solid rgba(213,188,134,.32);
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
}

.ce-ra-proof-note span { color: rgba(255,255,255,.48); }
.ce-ra-proof-note strong { color: var(--ce-ra-gold-light); text-align: right; }

.ce-ra-band,
.ce-ra-process,
.ce-ra-modules,
.ce-ra-pricing,
.ce-ra-partners,
.ce-ra-faq,
.ce-ra-final {
  padding: clamp(84px, 10vw, 145px) 0;
}

.ce-ra-intro {
  background: var(--ce-ra-paper);
}

.ce-ra-intro h2,
.ce-ra-intro p {
  color: #15120f;
}

.ce-ra-intro .ce-ra-kicker { color: #8c692f !important; }

.ce-ra-split,
.ce-ra-pricing-grid,
.ce-ra-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(50px, 9vw, 130px);
}

.ce-ra-split > div:last-child {
  padding-top: 5px;
}

.ce-ra-section-heading {
  max-width: 850px;
  margin-bottom: 60px;
}

.ce-ra-section-heading > p:last-child {
  max-width: 650px;
}

.ce-ra-process {
  border-top: 1px solid var(--ce-ra-line);
}

.ce-ra-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ce-ra-line);
}

.ce-ra-process-item {
  min-height: 280px;
  padding: 34px 28px;
  border-bottom: 1px solid var(--ce-ra-line);
}

.ce-ra-process-item + .ce-ra-process-item {
  border-left: 1px solid var(--ce-ra-line);
}

.ce-ra-line-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  color: var(--ce-ra-gold-light);
  border: 1px solid rgba(213,188,134,.55);
  border-radius: 50%;
  font-size: 19px;
}

.ce-ra-process-item p { font-size: 15px; }

.ce-ra-modules {
  background: #15120f;
}

.ce-ra-module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ce-ra-module-list span {
  padding: 12px 15px;
  border: 1px solid rgba(213,188,134,.32);
  border-radius: 3px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.ce-ra-pricing {
  background: var(--ce-ra-paper);
}

.ce-ra-pricing h2,
.ce-ra-pricing p {
  color: #15120f;
}

.ce-ra-pricing .ce-ra-kicker { color: #8c692f !important; }
.ce-ra-small { font-size: 14px !important; opacity: .75; }

.ce-ra-calculator {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 28px 70px rgba(40,31,19,.18);
}

.ce-ra-calculator-head {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-end;
  margin-bottom: 30px;
}

.ce-ra-calculator-head div span,
.ce-ra-calculator-head label span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ce-ra-calculator-head div strong { color: #fff; font-size: 20px; }

.ce-ra-calculator-head input {
  width: 100px;
  height: 48px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid var(--ce-ra-line);
  border-radius: 4px;
  background: #1b1b1b;
  color: #fff;
  font-size: 19px;
  text-align: center;
}

.ce-ra-range {
  width: 100%;
  accent-color: var(--ce-ra-gold);
}

.ce-ra-toggle {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 26px 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.ce-ra-toggle input {
  position: absolute;
  opacity: 0;
}

.ce-ra-toggle > span {
  position: relative;
  width: 42px;
  height: 23px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  background: #232323;
}

.ce-ra-toggle > span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  content: '';
  transition: transform 180ms ease, background 180ms ease;
}

.ce-ra-toggle input:checked + span::after {
  transform: translateX(19px);
  background: var(--ce-ra-gold-light);
}

.ce-ra-toggle em {
  margin-left: auto;
  color: var(--ce-ra-gold-light);
  font-style: normal;
}

.ce-ra-results {
  margin-bottom: 30px !important;
  border-top: 1px solid var(--ce-ra-line);
}

.ce-ra-results div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ce-ra-line);
}

.ce-ra-results dt { color: rgba(255,255,255,.55); font-size: 13px; }
.ce-ra-results dd { margin: 0; color: #fff; font-size: 16px; font-weight: 720; }
.ce-ra-results .ce-ra-result-total dt,
.ce-ra-results .ce-ra-result-total dd { color: var(--ce-ra-gold-light); font-size: 19px; }

.ce-ra-calculator .ce-ra-button { width: 100%; }

.ce-ra-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ce-ra-partner {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--ce-ra-line);
  border-radius: 8px;
  background: #111;
}

.ce-ra-partner img {
  display: block;
  width: 96px;
  height: 72px;
  margin-bottom: 45px;
  object-fit: contain;
  object-position: left center;
}

.ce-ra-partner:nth-child(2) img,
.ce-ra-partner:nth-child(3) img {
  width: 140px;
}

.ce-ra-partner span { color: var(--ce-ra-gold-light); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.ce-ra-partner p { font-size: 14px; }

.ce-ra-faq {
  background: #15120f;
}

.ce-ra-faq-list details {
  border-top: 1px solid var(--ce-ra-line);
}

.ce-ra-faq-list details:last-child { border-bottom: 1px solid var(--ce-ra-line); }

.ce-ra-faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 670;
  list-style: none;
}

.ce-ra-faq-list summary::-webkit-details-marker { display: none; }
.ce-ra-faq-list summary span { color: var(--ce-ra-gold-light); font-size: 24px; font-weight: 300; transition: transform 200ms ease; }
.ce-ra-faq-list details[open] summary span { transform: rotate(45deg); }
.ce-ra-faq-list details p { max-width: 650px; padding: 0 45px 24px 0; font-size: 15px; }

.ce-ra-final {
  text-align: center;
}

.ce-ra-final .ce-ra-shell { max-width: 900px; }
.ce-ra-final h2 { margin-bottom: 38px; }

.ce-ra-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.22,1,.36,1);
}

.ce-ra-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .ce-ra-hero-grid,
  .ce-ra-split,
  .ce-ra-pricing-grid,
  .ce-ra-faq-grid { grid-template-columns: 1fr; }
  .ce-ra-hero-grid { gap: 70px; }
  .ce-ra-hero-grid { text-align: center; }
  .ce-ra-hero-copy,
  .ce-ra-lede,
  .ce-ra-hero-facts { margin-inline: auto; }
  .ce-ra-actions { justify-content: center; }
  .ce-ra-proof { width: min(390px, 84vw); }
  .ce-ra-process-grid { grid-template-columns: repeat(2, 1fr); }
  .ce-ra-process-item:nth-child(3) { border-left: 0; }
  .ce-ra-partner-grid { grid-template-columns: 1fr; }
  .ce-ra-partner { min-height: auto; }
}

@media (max-width: 600px) {
  .ce-ra-shell { width: 100%; }
  .ce-ra-hero { min-height: auto; padding: 72px 0 82px; }
  .ce-ra h1 { max-width: 100%; font-size: clamp(40px, 11vw, 52px); }
  .ce-ra h2 { font-size: clamp(34px, 9.4vw, 44px); }
  .ce-ra p { font-size: 16px; }
  .ce-ra-kicker { margin-inline: auto !important; }
  .ce-ra-actions { align-items: center; flex-direction: column; }
  .ce-ra-actions .ce-ra-button { width: min(100%, 330px); }
  .ce-ra-text-link { padding: 5px 0; text-align: center; }
  .ce-ra-hero-facts { grid-template-columns: repeat(3, 1fr); }
  .ce-ra-hero-facts div { padding: 13px 8px; }
  .ce-ra-hero-facts div + div { padding-left: 8px; border-top: 0; border-left: 1px solid var(--ce-ra-line); }
  .ce-ra-hero-facts dt { font-size: 15px; }
  .ce-ra-hero-facts dd { font-size: 10px; }
  .ce-ra-proof { width: min(100%, 340px); }
  .ce-ra-proof img { transform: none; }
  .ce-ra-proof-note { justify-content: center; flex-direction: column; gap: 6px; text-align: center; }
  .ce-ra-proof-note strong { text-align: center; }
  .ce-ra-band,
  .ce-ra-process,
  .ce-ra-modules,
  .ce-ra-pricing,
  .ce-ra-partners,
  .ce-ra-faq,
  .ce-ra-final { padding: 76px 0; }
  .ce-ra-section-heading,
  .ce-ra-split > div,
  .ce-ra-pricing-copy,
  .ce-ra-faq-grid > div:first-child { margin-inline: auto; text-align: center; }
  .ce-ra-section-heading > p:last-child,
  .ce-ra-split p,
  .ce-ra-pricing-copy p { margin-inline: auto; }
  .ce-ra-module-list { justify-content: center; }
  .ce-ra-process-grid { grid-template-columns: 1fr; }
  .ce-ra-process-item + .ce-ra-process-item { border-left: 0; }
  .ce-ra-process-item { min-height: auto; padding: 32px 16px; text-align: center; }
  .ce-ra-line-icon { margin-bottom: 28px; }
  .ce-ra-calculator { padding: 25px 20px; }
  .ce-ra-calculator-head { align-items: flex-start; flex-direction: column; }
  .ce-ra-toggle { flex-wrap: wrap; }
  .ce-ra-toggle em { width: 100%; margin-left: 53px; }
  .ce-ra-result-total dt,
  .ce-ra-result-total dd { font-size: 16px !important; }
  .ce-ra-partner { text-align: center; }
  .ce-ra-partner img { margin-right: auto; margin-left: auto; object-position: center; }
}

@media (prefers-reduced-motion: reduce) {
  .ce-ra-reveal { opacity: 1; transform: none; transition: none; }
  .ce-ra * { scroll-behavior: auto !important; }
}
