:root {
  --bg: #090b10;
  --bg-deep: #050608;
  --surface: #12151b;
  --surface-soft: #191d24;
  --text: #f7f1e6;
  --muted: #c4b9a4;
  --muted-strong: #efe2c3;
  --gold: #d7b65d;
  --gold-strong: #f2d889;
  --wine: #7e2632;
  --olive: #53633e;
  --line: rgba(242, 216, 137, 0.18);
  --line-strong: rgba(242, 216, 137, 0.34);
  --shadow-warm: 0 24px 70px rgba(215, 182, 93, 0.13);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body,
button,
input {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  color: #141006;
  background: var(--gold-strong);
}

.ra-hero {
  min-height: 86svh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: start;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.9) 0%, rgba(5, 6, 8, 0.72) 42%, rgba(5, 6, 8, 0.2) 78%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.1) 68%, var(--bg) 100%),
    url("assets/reviewagent-hero.png") center / cover no-repeat;
}

.ra-nav,
.ra-hero-content,
.ra-section,
.ra-contact,
.ra-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ra-nav {
  min-height: 86px;
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ra-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.ra-brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(9, 11, 16, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ra-brand-mark img {
  width: 34px;
  height: 34px;
}

.ra-brand strong,
.ra-brand small {
  display: block;
}

.ra-brand strong {
  font-size: 15px;
  font-weight: 900;
}

.ra-brand small {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.ra-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.5);
  backdrop-filter: blur(14px);
}

.ra-nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.ra-nav-links a:hover,
.ra-nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.ra-nav-links .ra-nav-cta {
  color: #141006;
  background: var(--gold-strong);
}

.ra-nav-links .ra-nav-cta:hover,
.ra-nav-links .ra-nav-cta:focus-visible {
  color: #141006;
  background: #ffe69a;
}

.ra-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 2px;
  padding: 3px;
  border: 1px solid rgba(242, 216, 137, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.ra-nav-links .ra-lang-link {
  min-height: 32px;
  padding: 0 9px;
  color: var(--muted);
  font-size: 12px;
  border-radius: 4px;
}

.ra-nav-links .ra-lang-link.is-active {
  color: #141006;
  background: var(--gold-strong);
}

.ra-nav-toggle,
.ra-mobile-menu {
  display: none;
}

.ra-nav-toggle {
  width: 48px;
  height: 48px;
  place-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 226, 143, 0.58);
  border-radius: var(--radius);
  color: #0b0904;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 247, 203, 0.92), transparent 32%),
    linear-gradient(145deg, #ffe08a 0%, #d4af37 52%, #916820 100%);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.38),
    0 0 26px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.ra-nav-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.36) 44%, transparent 62%);
  opacity: 0.56;
  transform: translateX(-58%) skewX(-18deg);
  transition:
    opacity 220ms ease,
    transform 360ms ease;
}

.ra-nav-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  position: absolute;
  left: 13px;
  border-radius: 999px;
  background: #0b0904;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    opacity 180ms ease,
    transform 220ms ease,
    top 220ms ease;
}

.ra-nav-toggle span:nth-child(1) {
  top: 16px;
}

.ra-nav-toggle span:nth-child(2) {
  top: 23px;
}

.ra-nav-toggle span:nth-child(3) {
  top: 30px;
}

.ra-nav-toggle:hover,
.ra-nav-toggle:focus-visible {
  outline: none;
  filter: saturate(1.14);
  transform: translateY(-2px);
  border-color: rgba(255, 241, 173, 0.95);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(242, 216, 137, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.ra-nav-toggle:hover::before,
.ra-nav-toggle:focus-visible::before {
  opacity: 0.86;
  transform: translateX(58%) skewX(-18deg);
}

.ra-nav.is-menu-open .ra-nav-toggle span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.ra-nav.is-menu-open .ra-nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.ra-nav.is-menu-open .ra-nav-toggle span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.ra-mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 40;
}

.ra-mobile-menu[hidden] {
  display: none !important;
}

.ra-mobile-menu-inner {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(242, 216, 137, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(242, 216, 137, 0.16), transparent 38%),
    radial-gradient(circle at bottom left, rgba(126, 38, 50, 0.16), transparent 38%),
    rgba(7, 8, 10, 0.96);
  box-shadow:
    0 26px 76px rgba(0, 0, 0, 0.62),
    0 0 44px rgba(215, 182, 93, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.ra-mobile-menu-inner > a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
  border: 1px solid rgba(242, 216, 137, 0.13);
  border-radius: 6px;
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.035);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.ra-mobile-menu-inner > a span {
  color: rgba(242, 216, 137, 0.78);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.ra-mobile-menu-inner > a:hover,
.ra-mobile-menu-inner > a:focus-visible {
  color: var(--text);
  outline: none;
  border-color: rgba(242, 216, 137, 0.34);
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(3px);
}

.ra-mobile-menu-inner > .ra-mobile-menu-cta {
  color: #141006;
  border-color: rgba(255, 241, 173, 0.72);
  background:
    linear-gradient(135deg, #ffe8a7 0%, #d7b65d 56%, #a87a28 100%);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.36),
    0 0 26px rgba(215, 182, 93, 0.2);
}

.ra-mobile-menu-inner > .ra-mobile-menu-cta span {
  color: rgba(20, 16, 6, 0.66);
}

.ra-mobile-menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 2px 0;
}

.ra-mobile-menu-meta a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(242, 216, 137, 0.16);
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.035);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.ra-mobile-menu-meta a:hover,
.ra-mobile-menu-meta a:focus-visible {
  color: var(--gold-strong);
  outline: none;
  border-color: rgba(242, 216, 137, 0.32);
  background: rgba(255, 255, 255, 0.07);
}

.ra-hero-content {
  padding: 90px 0 82px;
}

.ra-hero-content h1 {
  max-width: 720px;
  margin: 0;
  font-size: 78px;
  line-height: 0.96;
  letter-spacing: 0;
}

.ra-hero-content p {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: 22px;
  line-height: 1.48;
}

.ra-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.ra-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.ra-button:hover,
.ra-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.ra-button-primary {
  color: #141006;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}

.ra-button-primary:hover,
.ra-button-primary:focus-visible {
  box-shadow: 0 16px 36px rgba(242, 216, 137, 0.28);
  filter: saturate(1.08);
}

.ra-button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}

.ra-button-secondary:hover,
.ra-button-secondary:focus-visible {
  border-color: rgba(242, 216, 137, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.ra-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  max-width: 520px;
  margin: 42px 0 0;
}

.ra-hero-facts div {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(242, 216, 137, 0.22);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.44);
  backdrop-filter: blur(12px);
}

.ra-hero-facts dt {
  color: var(--gold-strong);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.ra-hero-facts dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.ra-proof-band {
  background: linear-gradient(90deg, var(--wine), #3c1c22 55%, var(--olive));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ra-proof-band p {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  color: #fff8e8;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.ra-section {
  padding: 96px 0;
}

.ra-section h2,
.ra-contact h2 {
  margin: 0;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: 0;
}

.ra-section h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: 0;
}

.ra-lead,
.ra-section-heading p,
.ra-product-copy p,
.ra-about-slide p,
.ra-about-signature p,
.ra-about-principles p,
.ra-contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.ra-split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: start;
}

.ra-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ra-process article,
.ra-about-deck,
.ra-about-signature,
.ra-about-principles article,
.ra-price-card,
.ra-module-grid article,
.ra-calc-panel,
.ra-dashboard,
.ra-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.ra-process article {
  min-height: 214px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.ra-process article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(242, 216, 137, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 190ms ease;
}

.ra-process span {
  display: block;
  color: var(--gold-strong);
  font-weight: 950;
  margin-bottom: 30px;
}

.ra-process p,
.ra-price-card p,
.ra-module-grid p,
.ra-faq p {
  color: var(--muted);
  line-height: 1.6;
}

.ra-product {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 38px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ra-product-copy p {
  max-width: 540px;
}

.ra-section-kicker,
.ra-about-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ra-section-kicker {
  margin-bottom: 14px;
}

.ra-about {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 16%, rgba(126, 38, 50, 0.32), transparent 32%),
    radial-gradient(circle at 82% 28%, rgba(83, 99, 62, 0.26), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 58%);
}

.ra-about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.ra-about-signature {
  min-height: 238px;
  display: grid;
  align-content: end;
  gap: 14px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(242, 216, 137, 0.14), rgba(126, 38, 50, 0.08)),
    rgba(5, 6, 8, 0.38);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.ra-about-signature-person {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.ra-about-signature-person img {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(242, 216, 137, 0.38);
  border-radius: 50%;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.34),
    0 0 0 6px rgba(242, 216, 137, 0.07);
  filter: grayscale(1) contrast(1.08);
}

.ra-about-signature-person div {
  min-width: 0;
}

.ra-about-signature::after,
.ra-about-deck::after,
.ra-about-deck-nav button::before,
.ra-about-slide-visual::after,
.ra-about-principles article::before,
.ra-about-controls button::before {
  content: "";
  position: absolute;
  inset: -55% -90%;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 33%,
    rgba(255, 255, 255, 0.08) 43%,
    rgba(242, 216, 137, 0.3) 50%,
    rgba(255, 255, 255, 0.07) 57%,
    transparent 68%
  );
  opacity: 0;
  transform: translateX(-34%) rotate(8deg);
  transition: opacity 240ms ease, transform 760ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.ra-about-signature-person span {
  display: block;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ra-about-signature-person strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
}

.ra-about-signature p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.ra-about-deck {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(242, 216, 137, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)),
    #10131a;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.ra-about-deck::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 216, 137, 0.18), transparent 28%, transparent 72%, rgba(83, 99, 62, 0.16)),
    radial-gradient(circle at 78% 18%, rgba(242, 216, 137, 0.12), transparent 24%);
  opacity: 0.82;
}

.ra-about-deck-nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.ra-about-deck-nav button {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 216, 137, 0.16);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-weight: 950;
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ra-about-deck-nav button span {
  color: var(--gold-strong);
  font-size: 13px;
}

.ra-about-deck-nav button.is-active {
  color: var(--text);
  border-color: rgba(242, 216, 137, 0.46);
  background: linear-gradient(135deg, rgba(242, 216, 137, 0.16), rgba(255, 255, 255, 0.045));
  box-shadow: 0 14px 34px rgba(242, 216, 137, 0.1);
}

.ra-about-slide-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(242, 216, 137, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(5, 6, 8, 0.36), rgba(255, 255, 255, 0.035)),
    rgba(5, 6, 8, 0.48);
}

.ra-about-slide-track {
  display: flex;
  transition: transform 460ms cubic-bezier(0.2, 0.75, 0.18, 1);
  will-change: transform;
}

.ra-about-slide {
  min-width: 100%;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
}

.ra-about-label {
  margin-bottom: 18px;
}

.ra-about-slide h3 {
  max-width: 680px;
  margin-bottom: 18px;
}

.ra-about-slide-copy {
  display: grid;
  align-content: center;
}

.ra-about-slide-copy p {
  margin: 0;
}

.ra-about-slide-copy p + p {
  margin-top: 16px;
}

.ra-about-slide-visual {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-left: 1px solid rgba(242, 216, 137, 0.16);
  background:
    linear-gradient(145deg, rgba(242, 216, 137, 0.1), rgba(83, 99, 62, 0.14)),
    rgba(255, 255, 255, 0.035);
}

.ra-visual-kicker {
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ra-signal-row {
  display: grid;
  gap: 10px;
}

.ra-signal-row strong {
  color: var(--muted-strong);
  font-size: 15px;
}

.ra-signal-row span {
  height: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ra-signal-row span::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
}

.ra-profile-mark {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
  border: 1px solid rgba(242, 216, 137, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(242, 216, 137, 0.2), transparent 46%),
    rgba(5, 6, 8, 0.42);
}

.ra-profile-mark img {
  display: block;
  width: min(176px, 68%);
  height: auto;
  filter:
    drop-shadow(0 18px 32px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 22px rgba(242, 216, 137, 0.16));
}

.ra-profile-mark span {
  display: block;
  color: var(--muted-strong);
  font-weight: 900;
}

.ra-profile-lines {
  display: grid;
  gap: 12px;
}

.ra-profile-lines span {
  height: 11px;
  border-radius: 999px;
  background: rgba(242, 216, 137, 0.18);
}

.ra-profile-lines span:nth-child(2) {
  width: 78%;
}

.ra-profile-lines span:nth-child(3) {
  width: 54%;
}

.ra-safety-stack {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: safety;
}

.ra-safety-stack li {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(242, 216, 137, 0.16);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--muted-strong);
  background: rgba(5, 6, 8, 0.36);
  font-weight: 900;
}

.ra-safety-stack li::before {
  counter-increment: safety;
  content: "0" counter(safety);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #141006;
  background: var(--gold-strong);
  font-size: 13px;
  font-weight: 950;
}

.ra-about-controls {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.ra-about-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 216, 137, 0.28);
  border-radius: 50%;
  color: var(--gold-strong);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: color 170ms ease, border-color 170ms ease, background 170ms ease, transform 170ms ease;
}

.ra-about-controls svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ra-about-progress {
  min-width: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ra-about-progress span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(242, 216, 137, 0.22);
  transition: width 220ms ease, background 220ms ease;
}

.ra-about-progress span.is-active {
  width: 34px;
  background: var(--gold-strong);
}

.ra-about-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.ra-about-principles article {
  min-height: 156px;
  display: grid;
  align-content: start;
  gap: 8px;
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022)),
    rgba(5, 6, 8, 0.26);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.ra-about-principles article > span {
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 950;
}

.ra-about-principles strong {
  display: block;
  color: var(--gold-strong);
  font-size: 18px;
}

.ra-about-principles p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.ra-dashboard {
  min-height: 390px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(215, 182, 93, 0.12), transparent 38%),
    #10131a;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.ra-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.ra-dashboard-header span,
.ra-dashboard-grid small {
  color: var(--muted);
  font-weight: 800;
}

.ra-dashboard-header strong {
  color: var(--gold-strong);
  font-size: 64px;
  line-height: 0.9;
}

.ra-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.ra-dashboard-grid div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ra-dashboard-grid strong {
  font-size: 32px;
}

.ra-review-lines {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.ra-review-lines span {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ra-review-lines span::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
  transition: filter 180ms ease, transform 180ms ease;
}

.ra-section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.ra-campaign {
  max-width: 780px;
  display: grid;
  gap: 8px;
  margin: -4px 0 22px;
  padding: 18px 20px;
  border: 1px solid rgba(242, 216, 137, 0.46);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 216, 137, 0.18), rgba(126, 38, 50, 0.2)),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-warm);
}

.ra-campaign span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #141006;
  background: var(--gold-strong);
  font-size: 13px;
  font-weight: 950;
}

.ra-campaign strong {
  font-size: 22px;
  line-height: 1.2;
}

.ra-campaign p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.5;
}

.ra-term-switch {
  width: fit-content;
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.ra-term-switch button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.ra-term-switch button.is-active {
  color: #141006;
  background: var(--gold-strong);
  box-shadow: 0 8px 20px rgba(242, 216, 137, 0.18);
}

.ra-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ra-price-card {
  min-height: 596px;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  gap: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.ra-price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(242, 216, 137, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 200ms ease;
}

.ra-price-card-featured {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(242, 216, 137, 0.13), rgba(255, 255, 255, 0.035)),
    var(--surface);
}

.ra-price {
  padding-top: 10px;
}

.ra-price-kicker {
  display: inline-block;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 8px;
  border: 1px solid rgba(242, 216, 137, 0.38);
  border-radius: 999px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 950;
}

.ra-price strong {
  display: block;
  color: var(--gold-strong);
  font-size: 42px;
  line-height: 1;
}

.ra-price small,
.ra-setup {
  color: var(--muted);
}

.ra-setup {
  margin: 0;
  font-weight: 850;
}

.ra-setup > span,
.ra-setup > small {
  display: block;
}

.ra-setup small {
  margin-top: 5px;
  font-weight: 750;
}

.ra-price s,
.ra-setup s {
  color: rgba(196, 185, 164, 0.72);
  text-decoration-color: rgba(242, 216, 137, 0.72);
  text-decoration-thickness: 2px;
}

.ra-price-card ul {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.ra-price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-strong);
  line-height: 1.45;
}

.ra-price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.ra-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ra-module-grid article {
  min-height: 286px;
  padding: 22px;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.ra-module-grid strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--gold-strong);
  font-size: 18px;
}

.ra-calculator {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.ra-calc-panel {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.ra-calc-panel label {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-weight: 850;
}

.ra-calc-panel input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}

.ra-calc-panel span {
  color: var(--muted-strong);
}

.ra-calc-result {
  min-height: 142px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(126, 38, 50, 0.42), rgba(83, 99, 62, 0.44));
}

.ra-calc-result strong {
  color: var(--gold-strong);
  font-size: 62px;
  line-height: 0.9;
}

.ra-calc-result span {
  color: var(--text);
  font-weight: 900;
}

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

.ra-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.ra-faq details {
  padding: 20px 24px;
  transition: border-color 170ms ease, background 170ms ease, transform 170ms ease;
}

.ra-faq details[open] {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(242, 216, 137, 0.08), rgba(255, 255, 255, 0.025));
}

.ra-faq summary {
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.ra-faq summary::marker {
  color: var(--gold-strong);
}

.ra-contact {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: 30px;
  margin-bottom: 64px;
  padding: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(242, 216, 137, 0.16), transparent 48%),
    linear-gradient(120deg, var(--wine), #141820 55%, var(--olive));
}

.ra-contact p {
  max-width: 520px;
  margin-bottom: 0;
}

.ra-contact-form {
  display: grid;
  gap: 16px;
}

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

.ra-contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 900;
}

.ra-contact-form input,
.ra-contact-form select,
.ra-contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(242, 216, 137, 0.28);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(5, 6, 8, 0.56);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ra-contact-form textarea {
  min-height: 118px;
  resize: vertical;
  padding-top: 12px;
  line-height: 1.45;
}

.ra-contact-form input::placeholder,
.ra-contact-form textarea::placeholder {
  color: rgba(196, 185, 164, 0.72);
}

.ra-contact-form input:focus,
.ra-contact-form select:focus,
.ra-contact-form textarea:focus {
  border-color: rgba(242, 216, 137, 0.78);
  background: rgba(5, 6, 8, 0.72);
  box-shadow: 0 0 0 3px rgba(242, 216, 137, 0.15);
}

.ra-consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.ra-consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.ra-consent-row a {
  color: var(--gold-strong);
  text-decoration-color: rgba(242, 216, 137, 0.54);
  text-underline-offset: 3px;
}

.ra-contact-form .ra-button {
  width: fit-content;
  min-width: 180px;
  cursor: pointer;
}

.ra-contact-form .ra-button:disabled {
  cursor: wait;
  filter: grayscale(0.25);
  opacity: 0.72;
  transform: none;
}

.ra-form-status {
  min-height: 22px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.ra-form-status.is-success {
  color: #d7f4bd;
}

.ra-form-status.is-error {
  color: #ffc2c2;
}

.ra-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.ra-footer {
  display: block;
  padding: 20px 0 42px;
  color: var(--muted);
}

.ra-footer-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(190px, 0.75fr) minmax(260px, 0.9fr);
  gap: 30px;
  align-items: start;
  padding: 32px;
  border: 1px solid rgba(242, 216, 137, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 216, 137, 0.14), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(126, 38, 50, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(19, 22, 28, 0.94), rgba(7, 8, 10, 0.96));
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ra-footer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0 24%, rgba(255, 240, 184, 0.08) 42%, transparent 62% 100%);
  transform: translateX(-32%);
  pointer-events: none;
}

.ra-footer-brandline {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.ra-footer-logo {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 216, 137, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(242, 216, 137, 0.14), transparent 64%),
    rgba(4, 5, 7, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ra-footer-logo img {
  width: 36px;
  height: 36px;
}

.ra-footer-brandline strong,
.ra-footer-brandline small {
  display: block;
}

.ra-footer-brandline strong {
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.ra-footer-brandline small {
  margin-top: 3px;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 850;
}

.ra-footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.ra-footer-group {
  display: grid;
  gap: 13px;
}

.ra-footer-heading {
  color: rgba(242, 216, 137, 0.82);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ra-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.ra-footer-nav a,
.ra-footer-mail {
  width: fit-content;
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.4;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.ra-footer-nav a:hover,
.ra-footer-nav a:focus-visible,
.ra-footer-mail:hover,
.ra-footer-mail:focus-visible {
  color: var(--gold-strong);
  transform: translateX(3px);
}

.ra-footer-socials {
  width: fit-content;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.ra-social-link {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 226, 143, 0.72);
  border-radius: var(--radius);
  color: transparent;
  font-size: 0;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 245, 194, 0.95), transparent 30%),
    linear-gradient(115deg, transparent 0 24%, rgba(255, 249, 218, 0.42) 38%, transparent 52% 100%),
    linear-gradient(145deg, #ffe08a 0%, #d4af37 48%, #8e641c 100%);
  background-size: 100% 100%, 240% 100%, 100% 100%;
  background-position: center, -120% center, center;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(212, 175, 55, 0.28),
    0 0 0 1px rgba(255, 241, 173, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: ra-social-button-glow 4.2s ease-in-out infinite;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    filter 180ms ease,
    background-position 420ms ease;
}

.ra-social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 249, 219, 0.22), transparent 52%),
    linear-gradient(135deg, transparent 18%, rgba(255, 255, 255, 0.36) 42%, transparent 58%);
  opacity: 0.44;
  transform: translateX(-36%) skewX(-16deg);
  transition:
    opacity 220ms ease,
    transform 420ms ease;
}

.ra-social-link::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  background: #080806;
  transition: transform 180ms ease;
}

.ra-social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.ra-social-instagram::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='3' rx='4.2'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.1' fill='black' stroke='none'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='3' rx='4.2'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.1' fill='black' stroke='none'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ra-social-facebook::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.2 8H17V4h-3.2C10.7 4 9 5.9 9 9v2H6v4h3v7h4v-7h3.1l.8-4H13V9c0-.7.4-1 1.2-1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.2 8H17V4h-3.2C10.7 4 9 5.9 9 9v2H6v4h3v7h4v-7h3.1l.8-4H13V9c0-.7.4-1 1.2-1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ra-social-linkedin::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5.3 8.8h3.2V19H5.3V8.8Zm1.6-5a1.85 1.85 0 1 1 0 3.7 1.85 1.85 0 0 1 0-3.7Zm3.7 5h3.1v1.4h.1c.4-.8 1.5-1.7 3-1.7 3.2 0 3.8 2.1 3.8 4.9V19h-3.2v-5c0-1.2 0-2.7-1.7-2.7s-1.9 1.3-1.9 2.7v5h-3.2V8.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5.3 8.8h3.2V19H5.3V8.8Zm1.6-5a1.85 1.85 0 1 1 0 3.7 1.85 1.85 0 0 1 0-3.7Zm3.7 5h3.1v1.4h.1c.4-.8 1.5-1.7 3-1.7 3.2 0 3.8 2.1 3.8 4.9V19h-3.2v-5c0-1.2 0-2.7-1.7-2.7s-1.9 1.3-1.9 2.7v5h-3.2V8.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ra-social-link:hover,
.ra-social-link:focus-visible {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(255, 241, 173, 0.95);
  filter: saturate(1.16);
  background-position: center, 120% center, center;
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.52),
    0 0 22px rgba(255, 235, 170, 0.46),
    0 0 44px rgba(242, 216, 137, 0.34),
    0 0 0 1px rgba(255, 241, 173, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.ra-social-link:hover::before,
.ra-social-link:focus-visible::before {
  opacity: 0.78;
  transform: translateX(34%) skewX(-16deg);
}

.ra-social-link:hover::after,
.ra-social-link:focus-visible::after {
  transform: scale(1.08);
}

@keyframes ra-social-button-glow {
  0%,
  100% {
    box-shadow:
      0 16px 36px rgba(0, 0, 0, 0.42),
      0 0 20px rgba(212, 175, 55, 0.22),
      0 0 0 1px rgba(255, 241, 173, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  50% {
    box-shadow:
      0 17px 38px rgba(0, 0, 0, 0.44),
      0 0 30px rgba(255, 226, 143, 0.34),
      0 0 0 1px rgba(255, 241, 173, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.58);
  }
}

.ra-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 4px 0;
  color: rgba(196, 185, 164, 0.78);
  font-size: 13px;
  font-weight: 750;
}

.ra-legal-body {
  background:
    radial-gradient(circle at top left, rgba(126, 38, 50, 0.28), transparent 34%),
    radial-gradient(circle at 78% 8%, rgba(83, 99, 62, 0.22), transparent 30%),
    var(--bg);
}

.ra-legal-header {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.66);
  backdrop-filter: blur(16px);
}

.ra-legal-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 86px;
}

.ra-legal-hero {
  padding-bottom: 34px;
}

.ra-legal-back,
.ra-legal-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.ra-legal-back {
  margin-bottom: 28px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.ra-legal-kicker {
  margin-bottom: 14px;
  color: var(--gold-strong);
  text-transform: uppercase;
}

.ra-legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

.ra-legal-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 20px;
  line-height: 1.58;
}

.ra-legal-section {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.026));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.ra-legal-section h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 27px;
  line-height: 1.14;
  letter-spacing: 0;
}

.ra-legal-section h3 {
  margin: 0 0 12px;
  color: var(--gold-strong);
  font-size: 18px;
  line-height: 1.25;
}

.ra-legal-section p,
.ra-legal-section li {
  color: var(--muted);
  line-height: 1.68;
}

.ra-legal-section p {
  margin: 0;
}

.ra-legal-section p + p,
.ra-legal-section ul + p,
.ra-legal-section p + ul {
  margin-top: 14px;
}

.ra-legal-section a {
  color: var(--gold-strong);
  text-decoration-color: rgba(242, 216, 137, 0.54);
  text-underline-offset: 3px;
}

.ra-legal-section code {
  display: inline-block;
  max-width: 100%;
  padding: 2px 6px;
  border: 1px solid rgba(242, 216, 137, 0.24);
  border-radius: 6px;
  color: var(--muted-strong);
  background: rgba(5, 6, 8, 0.58);
  overflow-wrap: anywhere;
}

.ra-legal-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 19px;
}

.ra-legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.ra-legal-grid article {
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(242, 216, 137, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.34);
}

.ra-motion-ready .ra-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.ra-motion-ready .ra-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .ra-brand:hover .ra-brand-mark,
  .ra-brand:focus-visible .ra-brand-mark {
    border-color: var(--line-strong);
    box-shadow: 0 14px 34px rgba(242, 216, 137, 0.12);
    transform: translateY(-1px);
  }

  .ra-nav-links a:hover,
  .ra-nav-links a:focus-visible {
    transform: translateY(-1px);
  }

  .ra-term-switch button:hover:not(.is-active),
  .ra-term-switch button:focus-visible:not(.is-active) {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
  }

  .ra-process article:hover,
  .ra-about-deck:hover,
  .ra-about-signature:hover,
  .ra-about-principles article:hover,
  .ra-price-card:hover,
  .ra-module-grid article:hover,
  .ra-faq details:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-warm);
    transform: translateY(-4px);
  }

  .ra-process article:hover::after,
  .ra-price-card:hover::before {
    opacity: 1;
  }

  .ra-about-deck:hover::after,
  .ra-about-signature:hover::after,
  .ra-about-signature:focus-within::after,
  .ra-about-deck-nav button:hover::before,
  .ra-about-deck-nav button:focus-visible::before,
  .ra-about-slide-window:hover .ra-about-slide.is-active .ra-about-slide-visual::after,
  .ra-about-principles article:hover::before,
  .ra-about-controls button:hover::before,
  .ra-about-controls button:focus-visible::before {
    opacity: 1;
    transform: translateX(34%) rotate(8deg);
  }

  .ra-about-deck:hover .ra-about-slide-visual {
    background:
      linear-gradient(145deg, rgba(242, 216, 137, 0.15), rgba(83, 99, 62, 0.18)),
      rgba(255, 255, 255, 0.045);
  }

  .ra-about-principles article:hover {
    background:
      linear-gradient(180deg, rgba(242, 216, 137, 0.105), rgba(255, 255, 255, 0.032)),
      rgba(5, 6, 8, 0.3);
  }

  .ra-about-deck-nav button:hover,
  .ra-about-deck-nav button:focus-visible,
  .ra-about-controls button:hover,
  .ra-about-controls button:focus-visible {
    color: var(--text);
    border-color: rgba(242, 216, 137, 0.56);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    transform: translateY(-2px);
  }

  .ra-price-card:hover .ra-price strong,
  .ra-about-principles article:hover strong,
  .ra-module-grid article:hover strong {
    color: #fff0aa;
  }

  .ra-dashboard:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-warm);
    transform: translateY(-3px);
  }

  .ra-dashboard:hover .ra-dashboard-grid div {
    border-color: rgba(242, 216, 137, 0.24);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
  }

  .ra-dashboard:hover .ra-review-lines span::before {
    filter: saturate(1.16) brightness(1.08);
    transform: scaleX(1.018);
    transform-origin: left center;
  }

  .ra-legal-back:hover,
  .ra-legal-back:focus-visible {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    transform: translateY(-1px);
  }
}

@media (max-width: 1080px) {
  .ra-hero-content h1 {
    font-size: 62px;
  }

  .ra-section h2,
  .ra-contact h2 {
    font-size: 42px;
  }

  .ra-price-grid,
  .ra-about-principles,
  .ra-module-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ra-footer-panel {
    grid-template-columns: 1fr 1fr;
  }

  .ra-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .ra-hero {
    min-height: auto;
    background-position: 62% center;
  }

  .ra-nav {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .ra-nav-links {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .ra-hero-content {
    padding: 74px 0 64px;
  }

  .ra-hero-content h1 {
    font-size: 52px;
  }

  .ra-hero-content p {
    font-size: 19px;
  }

  .ra-split,
  .ra-product,
  .ra-calculator {
    grid-template-columns: 1fr;
  }

  .ra-about-intro,
  .ra-about-slide {
    grid-template-columns: 1fr;
  }

  .ra-about-signature {
    min-height: auto;
  }

  .ra-about-slide {
    min-height: auto;
  }

  .ra-about-slide-visual {
    min-height: 300px;
    border-top: 1px solid rgba(242, 216, 137, 0.16);
    border-left: 0;
  }

  .ra-process,
  .ra-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .ra-contact {
    grid-template-columns: 1fr;
  }

  .ra-footer-panel {
    gap: 26px;
  }
}

@media (max-width: 620px) {
  .ra-nav,
  .ra-hero-content,
  .ra-section,
  .ra-contact,
  .ra-footer,
  .ra-legal-main,
  .ra-proof-band p {
    width: min(100% - 24px, 1180px);
  }

  .ra-brand small,
  .ra-nav-links a:not(.ra-nav-cta):not(.ra-lang-link) {
    display: none;
  }

  .ra-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .ra-brand {
    min-width: 0;
  }

  .ra-nav-links {
    display: none;
  }

  .ra-nav-toggle {
    display: grid;
  }

  .ra-mobile-menu {
    display: block;
    grid-column: 1 / -1;
  }

  .ra-hero {
    background:
      linear-gradient(90deg, rgba(5, 6, 8, 0.94) 0%, rgba(5, 6, 8, 0.72) 100%),
      linear-gradient(180deg, rgba(5, 6, 8, 0.1) 70%, var(--bg) 100%),
      url("assets/reviewagent-hero.png") 66% center / cover no-repeat;
  }

  .ra-hero-content {
    padding: 58px 0 42px;
  }

  .ra-hero-content h1 {
    font-size: 42px;
  }

  .ra-hero-facts,
  .ra-price-grid,
  .ra-about-principles,
  .ra-module-grid {
    grid-template-columns: 1fr;
  }

  .ra-about-intro {
    gap: 18px;
    margin-bottom: 20px;
  }

  .ra-about-deck {
    padding: 12px;
  }

  .ra-about-deck-nav {
    gap: 6px;
  }

  .ra-about-deck-nav button {
    min-height: 54px;
    display: grid;
    gap: 3px;
    justify-items: start;
    padding: 10px;
    font-size: 13px;
  }

  .ra-about-slide {
    gap: 0;
    padding: 0;
  }

  .ra-about-slide-copy,
  .ra-about-slide-visual {
    padding: 22px 18px;
  }

  .ra-about-slide-visual {
    min-height: auto;
  }

  .ra-about-principles article {
    min-height: auto;
  }

  .ra-hero-facts {
    display: none;
  }

  .ra-section {
    padding: 68px 0;
  }

  .ra-section h2,
  .ra-contact h2 {
    font-size: 34px;
  }

  .ra-price-card {
    min-height: auto;
  }

  .ra-contact {
    padding: 26px 18px;
  }

  .ra-form-row {
    grid-template-columns: 1fr;
  }

  .ra-contact-form .ra-button {
    width: 100%;
  }

  .ra-footer {
    padding: 10px 0 30px;
  }

  .ra-footer-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px 18px;
  }

  .ra-footer-brand {
    grid-column: auto;
  }

  .ra-footer-brand p {
    font-size: 14px;
  }

  .ra-footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }

  .ra-footer-socials {
    gap: 9px;
  }

  .ra-social-link {
    width: 46px;
    height: 46px;
  }

  .ra-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-top: 14px;
  }

  .ra-legal-main {
    padding: 48px 0 62px;
  }

  .ra-legal-hero h1 {
    font-size: 42px;
  }

  .ra-legal-hero p {
    font-size: 18px;
  }

  .ra-legal-section {
    padding: 22px 18px;
  }

  .ra-legal-grid {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
