@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=JetBrains+Mono:wght@500;700&display=swap");

:root {
  --gold: #b8975e;
  --gold-bright: #d4c4a0;
  --gold-muted: #8f7549;
  --bg: #071a18;
  --bg-deep: #040f0e;
  --panel: rgba(12, 40, 36, 0.85);
  --panel-solid: #0c2824;
  --panel-border: rgba(184, 151, 94, 0.22);
  --accent: #166b62;
  --accent-dim: #9ee0d4;
  --white: rgba(235, 248, 245, 0.92);
  --muted: rgba(235, 248, 245, 0.58);
  --warn: #d4a574;
  --warn-bg: rgba(180, 120, 20, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 151, 94, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(12, 40, 36, 0.5) 0%, transparent 50%);
}

body > * {
  position: relative;
  z-index: 1;
}

.ra-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.ra-skip {
  position: absolute;
  left: -9999px;
}

.ra-skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: #0c2824;
}

.ra-topnav {
  border-bottom: 1px solid var(--panel-border);
  background: rgba(4, 15, 14, 0.65);
}

.ra-topnav .ra-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  flex-wrap: wrap;
  gap: 14px;
}

.ra-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-decoration: none;
}

.ra-brand span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(235, 248, 245, 0.75);
  margin-top: 0.15rem;
}

.ra-navlinks {
  display: flex;
  gap: 22px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-items: center;
  flex-wrap: wrap;
}

.ra-navlinks a {
  color: rgba(235, 248, 245, 0.78);
  text-decoration: none;
}

.ra-navlinks a:hover,
.ra-navlinks a[aria-current="page"] {
  color: var(--gold-bright);
}

.ra-nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-bright) !important;
  padding: 7px 14px;
  border-radius: 2px;
  background: rgba(4, 15, 14, 0.45);
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.ra-nav-cta:hover {
  background: rgba(184, 151, 94, 0.12);
  border-color: var(--gold-bright);
}

.ra-hero {
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(12, 40, 36, 0.35) 0%, transparent 100%);
}

.ra-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ra-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
  line-height: 1.12;
  max-width: 760px;
  letter-spacing: 0.02em;
}

.ra-lede {
  font-size: 1rem;
  color: var(--muted);
  max-width: 660px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.ra-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ra-cta {
  display: inline-block;
  background: linear-gradient(180deg, #d4c4a0 0%, var(--gold) 50%, var(--gold-muted) 100%);
  color: #0c2824;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.12) inset, 0 8px 28px rgba(0, 0, 0, 0.3);
}

.ra-cta:hover {
  filter: brightness(1.05);
}

.ra-cta.secondary {
  background: rgba(4, 15, 14, 0.45);
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  box-shadow: none;
}

.ra-cta.secondary:hover {
  background: rgba(184, 151, 94, 0.12);
  border-color: var(--gold-bright);
}

.ra-stat-strip {
  background: var(--panel-solid);
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
  padding: 24px 0;
}

.ra-stat-strip .ra-wrap {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.ra-stat-item {
  flex: 1;
  min-width: 180px;
}

.ra-stat-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold-bright);
}

.ra-stat-label {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}

.ra-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--panel-border);
}

.ra-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: 0.02em;
}

.ra-section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.ra-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ra-inc-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  padding: 22px 24px;
}

.ra-inc-card .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-bright);
  background: rgba(184, 151, 94, 0.1);
  border: 1px solid rgba(184, 151, 94, 0.3);
  border-radius: 3px;
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.ra-inc-card h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}

.ra-inc-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.ra-dash-mock {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  padding: 28px;
  margin-top: 28px;
}

.ra-dash-mock h3 {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  margin: 0 0 18px;
}

.ra-dash-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.ra-dash-cell {
  background: var(--bg-deep);
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  padding: 16px 18px;
}

.ra-dash-cell .lbl {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.ra-dash-cell .val {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.ra-dash-cell .val.green {
  color: var(--gold-bright);
}

.ra-dash-cell .val.amber {
  color: var(--warn);
}

.ra-ci-bar {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold-bright));
  margin-top: 10px;
}

.ra-dash-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.ra-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.ra-bed-calculator {
  margin: 1.25rem 0 1.75rem;
}

.ra-calc-panel {
  max-width: 520px;
  padding: 1.5rem 1.35rem 1.35rem;
  border: 1px solid rgba(184, 151, 94, 0.45);
  border-radius: 6px;
  background: rgba(12, 40, 36, 0.65);
  box-shadow: 0 0 0 1px rgba(184, 151, 94, 0.08);
}

.ra-calc-panel h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}

.ra-calc-lede {
  margin: 0 0 1.15rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.ra-calc-bed-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.ra-calc-bed-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ra-calc-bed-count {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-bright);
}

.ra-bed-slider {
  width: 100%;
  margin: 0.25rem 0 0.35rem;
  accent-color: var(--gold);
  cursor: pointer;
}

.ra-bed-slider:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ra-calc-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  margin-bottom: 1.1rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(235, 248, 245, 0.42);
  text-align: center;
}

.ra-calc-result {
  margin-bottom: 1rem;
  padding: 0.85rem 0.75rem;
  border-radius: 4px;
  background: rgba(4, 15, 14, 0.45);
  border: 1px solid var(--panel-border);
  text-align: center;
}

.ra-calc-tier {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.ra-calc-price {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  color: var(--gold-bright);
  line-height: 1.1;
}

.ra-calc-price-note {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
}

.ra-enterprise-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  cursor: pointer;
}

.ra-enterprise-toggle input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.ra-enterprise-toggle strong {
  color: var(--white);
}

.ra-calc-panel .ra-cta {
  display: block;
  text-align: center;
  width: 100%;
}

.ra-calc-grid-label {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.ra-price-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  padding: 22px 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ra-price-card.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(184, 151, 94, 0.2);
}

.ra-price-card--enterprise {
  border-color: rgba(184, 151, 94, 0.35);
}

.ra-price-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(184, 151, 94, 0.15);
}

.ra-price-card .beds {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.ra-price-card .amt {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 26px;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.ra-price-card .amt-note {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
}

.ra-price-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(184, 151, 94, 0.1);
  border: 1px solid rgba(184, 151, 94, 0.3);
  border-radius: 3px;
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 10px;
}

.ra-actuarial-box {
  background: rgba(12, 40, 36, 0.65);
  border: 1px solid rgba(184, 151, 94, 0.28);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 26px 28px;
  margin-top: 8px;
}

.ra-actuarial-box .tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 10px;
}

.ra-actuarial-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}

.ra-actuarial-box p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 14px;
}

.ra-actuarial-box ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13.5px;
}

.ra-actuarial-box li {
  margin-bottom: 6px;
}

.ra-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ra-step {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  padding: 20px;
}

.ra-step .num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 12px;
  background: rgba(184, 151, 94, 0.12);
  border: 1px solid rgba(184, 151, 94, 0.25);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.ra-step h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}

.ra-step p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.ra-disclaimer {
  font-size: 12px;
  color: var(--muted);
  max-width: 680px;
  margin-top: 18px;
  line-height: 1.55;
}

.ra-footer {
  padding: 32px 0;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--panel-border);
  background: var(--bg-deep);
}

.ra-footer a,
.ra-footer .ra-footer-msg {
  color: var(--gold-bright);
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: none;
}

.ra-footer a:hover,
.ra-footer .ra-footer-msg:hover {
  color: #fff;
}

@media (max-width: 880px) {
  .ra-included-grid {
    grid-template-columns: 1fr;
  }

  .ra-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ra-dash-row {
    grid-template-columns: 1fr;
  }

  .ra-steps {
    grid-template-columns: 1fr 1fr;
  }
}
