:root {
  color-scheme: light;
  --ink: #0b1739;
  --ink-soft: #243150;
  --coral: #e72053;
  --coral-dark: #c81643;
  --paper: #ffffff;
  --mist: #f4f6fa;
  --line: #dfe4ee;
  --muted: #64708a;
  --shadow: 0 24px 70px rgba(11, 23, 57, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--coral-dark);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  border-radius: 0.5rem;
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(223, 228, 238, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner,
.shell,
.footer-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.header-inner {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  background: var(--ink);
  color: white;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  box-shadow: 0 8px 22px rgba(11, 23, 57, 0.2);
}

.brand-mark span {
  color: var(--coral);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.brand-copy small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.button,
.button-secondary {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  padding: 0.65rem 1.05rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  background: var(--coral);
  color: white;
  box-shadow: 0 10px 28px rgba(231, 32, 83, 0.22);
}

.button:hover {
  transform: translateY(-1px);
  background: var(--coral-dark);
  color: white;
  box-shadow: 0 14px 32px rgba(231, 32, 83, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.button-secondary:hover {
  transform: translateY(-1px);
  border-color: #c7cfdd;
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 18%, rgba(231, 32, 83, 0.12), transparent 22rem),
    linear-gradient(135deg, #f7f9fc 0%, #ffffff 60%);
}

.hero::after {
  content: "RC";
  position: absolute;
  right: max(-1rem, calc((100vw - 1120px) / 2 - 2rem));
  bottom: -5.5rem;
  color: rgba(11, 23, 57, 0.035);
  font-size: clamp(13rem, 27vw, 25rem);
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 0.75;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  min-height: 35rem;
  margin-inline: auto;
  padding: 7.3rem 0 6.5rem;
}

.eyebrow,
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(231, 32, 83, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--coral-dark);
  padding: 0.36rem 0.72rem;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.status::before {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 13ch;
  margin: 1.4rem 0 1.3rem;
  font-size: clamp(3.2rem, 7.5vw, 6.7rem);
  font-weight: 880;
}

.hero-copy {
  max-width: 45rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2.1vw, 1.32rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.section {
  padding: 6rem 0;
}

.section-muted {
  border-block: 1px solid var(--line);
  background: var(--mist);
}

.section-kicker {
  margin: 0 0 0.6rem;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.section-lead {
  max-width: 45rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.6rem;
}

.card {
  min-height: 15rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: white;
  padding: 1.55rem;
  box-shadow: 0 12px 38px rgba(11, 23, 57, 0.045);
}

.card-number {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.card h3 {
  margin: 2.1rem 0 0.75rem;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.data-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.data-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.data-row {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.9rem;
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}

.data-row strong {
  color: var(--coral);
  font-size: 0.86rem;
}

.data-row p {
  margin: 0;
  color: var(--ink-soft);
}

.privacy-band {
  margin-top: 5rem;
  border-radius: 1.4rem;
  background: var(--ink);
  color: white;
  padding: clamp(1.7rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.privacy-band-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.privacy-band h2 {
  max-width: none;
  margin-bottom: 0.75rem;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
}

.privacy-band p {
  max-width: 47rem;
  margin: 0;
  color: #cfd7e8;
}

.privacy-band .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(150deg, #f3f6fb, white 65%);
  padding: 6.2rem 0 4.7rem;
}

.page-hero h1 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
}

.page-hero p {
  max-width: 48rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.updated {
  display: block;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: 4.5rem 0 7rem;
  align-items: start;
}

.toc {
  position: sticky;
  top: 6.5rem;
  border-left: 3px solid var(--coral);
  padding: 0.2rem 0 0.2rem 1.1rem;
}

.toc p {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 0.25rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.toc a:hover {
  color: var(--coral-dark);
}

.legal-content {
  max-width: 49rem;
}

.summary-box {
  margin-bottom: 3.5rem;
  border: 1px solid #ffd0dc;
  border-radius: 1rem;
  background: #fff5f8;
  padding: 1.35rem 1.5rem;
}

.summary-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--coral-dark);
}

.summary-box p {
  margin: 0;
}

.legal-section {
  scroll-margin-top: 7rem;
  padding: 0 0 2.7rem;
}

.legal-section + .legal-section {
  border-top: 1px solid var(--line);
  padding-top: 2.7rem;
}

.legal-section h2 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
}

.legal-section h3 {
  margin: 1.6rem 0 0.45rem;
  font-size: 1.1rem;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
}

.legal-section p {
  margin: 0.8rem 0;
}

.legal-section ul {
  margin: 0.9rem 0;
  padding-left: 1.2rem;
}

.legal-section li + li {
  margin-top: 0.55rem;
}

.legal-section a {
  color: var(--coral-dark);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.footer-inner {
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links a {
  font-weight: 750;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(231, 32, 83, 0.38);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .nav > a:not(.button) {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding: 5.5rem 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 0;
  }

  .card h3 {
    margin-top: 1.35rem;
  }

  .data-panel,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
    columns: 2;
  }

  .toc p {
    column-span: all;
  }

  .privacy-band-grid {
    grid-template-columns: 1fr;
  }

  .privacy-band .button-secondary {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .shell,
  .footer-inner,
  .hero-inner {
    width: min(100% - 1.5rem, 1120px);
  }

  .header-inner {
    min-height: 4.2rem;
  }

  .brand-copy small {
    display: none;
  }

  .nav .button {
    min-height: 2.4rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .hero-inner {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .section {
    padding: 4.5rem 0;
  }

  .page-hero {
    padding: 4.5rem 0 3.4rem;
  }

  .legal-layout {
    padding: 3rem 0 5rem;
  }

  .toc {
    columns: 1;
  }

  .footer-inner {
    min-height: 9rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .toc,
  .site-footer,
  .hero-actions {
    display: none;
  }

  .page-hero,
  .legal-layout {
    padding: 1.5rem 0;
  }

  .legal-layout {
    display: block;
  }
}
