/* =============================================================
   RecommendedClaims — marketing site stylesheet
   Pure CSS, custom properties, mobile-first, no dependencies.
   ============================================================= */

:root {
  /* Brand palette */
  --rc-navy: #0b1220;
  --rc-navy-soft: #101a30;
  --rc-navy-panel: #131f3a;
  --rc-ink: #131a2c;
  --rc-indigo: #4c5df0;
  --rc-indigo-dark: #3a49c9;
  --rc-teal: #17c3b2;
  --rc-teal-dark: #0fa595;
  --rc-amber: #ffb238;
  --rc-coral: #ff6b6b;
  --rc-paper: #f7f8fc;
  --rc-paper-2: #eef0f8;
  --rc-line: #e1e4ef;
  --rc-line-dark: #263453;
  --rc-gray: #5b6478;
  --rc-gray-light: #8a92a6;
  --rc-white: #ffffff;

  --rc-gradient: linear-gradient(135deg, var(--rc-indigo) 0%, var(--rc-teal) 100%);
  --rc-gradient-soft: linear-gradient(135deg, rgba(76, 93, 240, 0.14) 0%, rgba(23, 195, 178, 0.14) 100%);

  --rc-radius-sm: 10px;
  --rc-radius-md: 16px;
  --rc-radius-lg: 24px;
  --rc-radius-pill: 999px;

  --rc-shadow-sm: 0 2px 8px rgba(11, 18, 32, 0.06);
  --rc-shadow-md: 0 12px 32px rgba(11, 18, 32, 0.10);
  --rc-shadow-lg: 0 24px 60px rgba(11, 18, 32, 0.16);

  --rc-container: 1180px;
  --rc-container-narrow: 760px;

  --rc-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--rc-font);
  color: var(--rc-ink);
  background: var(--rc-paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--rc-container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: var(--rc-container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

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

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }
  .section-tight {
    padding: 48px 0;
  }
}

.section-dark {
  background: var(--rc-navy);
  color: var(--rc-white);
}

.section-soft {
  background: var(--rc-paper-2);
}

.text-center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rc-indigo);
  margin-bottom: 16px;
}

.section-dark .eyebrow {
  color: var(--rc-teal);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rc-gradient);
  display: inline-block;
}

h1,
.h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2,
.h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.015em;
}

h3,
.h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--rc-gray);
  max-width: 640px;
}

.section-dark .lede {
  color: #b7bfd9;
}

.section-header {
  max-width: 680px;
  margin: 0 0 48px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--rc-radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--rc-gradient);
  /* span the gradient across the full border-box: with the default
     padding-box origin, the gradient tiles into the 2px transparent
     border ring and wraps the opposite end's color around the pill caps */
  background-origin: border-box;
  color: var(--rc-white);
  box-shadow: var(--rc-shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--rc-shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--rc-line);
  color: var(--rc-ink);
}

.btn-outline:hover {
  border-color: var(--rc-indigo);
  color: var(--rc-indigo);
}

.section-dark .btn-outline {
  border-color: var(--rc-line-dark);
  color: var(--rc-white);
}

.section-dark .btn-outline:hover {
  border-color: var(--rc-teal);
  color: var(--rc-teal);
}

/* Outline buttons on the dark CTA banner (light-on-dark variant) */
.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--rc-white);
}

.cta-banner .btn-outline:hover {
  border-color: var(--rc-teal);
  color: var(--rc-teal);
}

.btn-ghost {
  background: transparent;
  color: var(--rc-ink);
  padding: 13px 16px;
}

.btn-ghost:hover {
  color: var(--rc-indigo);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.nav-actions .btn-primary span.short {
  display: none;
}

.btn-block {
  width: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 252, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--rc-line);
  box-shadow: 0 4px 20px rgba(11, 18, 32, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--rc-container);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--rc-ink);
  flex-shrink: 0;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.brand-word {
  letter-spacing: -0.01em;
}

.brand-word b {
  color: var(--rc-indigo);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: var(--rc-radius-pill);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--rc-ink);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--rc-paper-2);
  color: var(--rc-indigo);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

.nav-toggle:hover {
  background: var(--rc-paper-2);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--rc-navy);
  color: var(--rc-white);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 200;
  font-weight: 700;
  font-size: 0.9rem;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 72px 16px auto 16px;
    background: var(--rc-white);
    border: 1px solid var(--rc-line);
    border-radius: var(--rc-radius-md);
    box-shadow: var(--rc-shadow-lg);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 2px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .btn-outline {
    display: none;
  }
}

@media (max-width: 560px) {
  .nav-actions .btn-primary span.long {
    display: none;
  }

  .nav-actions .btn-primary span.short {
    display: inline;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 40px;
  background: radial-gradient(circle at 85% -10%, rgba(76, 93, 240, 0.14), transparent 55%),
    radial-gradient(circle at 0% 110%, rgba(23, 195, 178, 0.14), transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero h1 {
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  background: var(--rc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede {
  margin-bottom: 32px;
}

.hero-proof {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-proof div {
  min-width: 120px;
}

.hero-proof strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--rc-ink);
}

.hero-proof span {
  font-size: 0.85rem;
  color: var(--rc-gray);
}

.hero-art {
  position: relative;
}

.hero-art svg {
  width: 100%;
  height: auto;
}

/* ---------- Logo strip ---------- */
.logo-strip {
  padding: 40px 0 64px;
}

.logo-strip p {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rc-gray-light);
  margin-bottom: 28px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
}

.logo-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--rc-gray);
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.logo-chip:hover {
  opacity: 1;
  filter: none;
}

.logo-chip svg {
  width: 22px;
  height: 22px;
}

/* ---------- Problem / feature grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.tile {
  background: var(--rc-white);
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius-md);
  padding: 24px;
}

.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rc-gradient-soft);
  color: var(--rc-indigo);
  margin-bottom: 16px;
}

.tile-icon svg {
  width: 24px;
  height: 24px;
}

.tile h3 {
  margin-bottom: 8px;
}

.tile p {
  color: var(--rc-gray);
  font-size: 0.94rem;
}

.section-dark .tile {
  background: var(--rc-navy-panel);
  border-color: var(--rc-line-dark);
}

.section-dark .tile p {
  color: #aab3ce;
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 940px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative;
  background: var(--rc-white);
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--rc-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rc-shadow-md);
}

.product-card .tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--rc-radius-pill);
  background: var(--rc-gradient-soft);
  color: var(--rc-indigo-dark);
}

.product-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--rc-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .icon-wrap svg {
  width: 30px;
  height: 30px;
  stroke: var(--rc-white);
}

.product-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.product-card ul li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--rc-gray);
  align-items: flex-start;
}

.product-card ul li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--rc-teal-dark);
}

.product-card p {
  color: var(--rc-gray);
  font-size: 0.95rem;
}

.product-card .card-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--rc-indigo);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
}

.product-card .card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.15s ease;
}

.product-card:hover .card-link svg {
  transform: translateX(3px);
}

/* ---------- Pipeline / how it works ---------- */
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

@media (max-width: 940px) {
  .pipeline {
    grid-template-columns: 1fr;
  }
}

.pipeline-step {
  position: relative;
  background: var(--rc-white);
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius-md);
  padding: 26px 22px;
}

.section-dark .pipeline-step {
  background: var(--rc-navy-panel);
  border-color: var(--rc-line-dark);
}

.pipeline-step .step-index {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--rc-teal-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.section-dark .pipeline-step .step-index {
  color: var(--rc-teal);
}

.pipeline-step .step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--rc-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rc-white);
  margin-bottom: 14px;
}

.pipeline-step .step-icon svg {
  width: 22px;
  height: 22px;
}

.pipeline-step h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.pipeline-step p {
  font-size: 0.9rem;
  color: var(--rc-gray);
}

.section-dark .pipeline-step p {
  color: #aab3ce;
}

.pipeline-arrow {
  display: none;
  position: absolute;
  top: 50%;
  /* center the 24px arrow inside the 32px grid gap: (32+24)/2 = 28 */
  right: -28px;
  transform: translateY(-50%);
  color: var(--rc-gray-light);
  z-index: 1;
}

.section-dark .pipeline-arrow {
  color: #55628a;
}

@media (min-width: 941px) {
  .pipeline {
    gap: 32px;
  }

  .pipeline-step:not(:last-child) .pipeline-arrow {
    display: block;
  }
}

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--rc-navy);
  color: var(--rc-white);
  border-radius: var(--rc-radius-lg);
  padding: 56px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(23, 195, 178, 0.22), transparent 60%),
    radial-gradient(circle at 5% 100%, rgba(76, 93, 240, 0.22), transparent 60%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 24px;
  }
}

@media (max-width: 560px) {
  .stats-band {
    grid-template-columns: 1fr;
  }
}

.stat {
  position: relative;
  z-index: 1;
}

.stat strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  background: var(--rc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.stat span {
  font-size: 0.88rem;
  color: #b7bfd9;
  line-height: 1.5;
}

/* ---------- Testimonials ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 940px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

.quote-card {
  background: var(--rc-white);
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-card .stars {
  display: flex;
  gap: 4px;
  color: var(--rc-amber);
}

.quote-card .stars svg {
  width: 16px;
  height: 16px;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1rem;
  color: var(--rc-ink);
  line-height: 1.6;
}

.quote-card .attribution {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rc-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rc-white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.attribution .name {
  font-weight: 700;
  font-size: 0.9rem;
}

.attribution .role {
  font-size: 0.8rem;
  color: var(--rc-gray);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--rc-navy);
  border-radius: var(--rc-radius-lg);
  padding: 64px 48px;
  color: var(--rc-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rc-gradient-soft);
  opacity: 0.4;
  pointer-events: none;
}

.cta-banner > div {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.cta-banner .cta-row {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  margin-bottom: 10px;
}

.cta-banner p {
  color: #b7bfd9;
}

@media (max-width: 700px) {
  .cta-banner {
    padding: 40px 28px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--rc-navy);
  color: #b7bfd9;
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rc-line-dark);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand {
  color: var(--rc-white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
  color: #8892b0;
}

.footer-col h4 {
  color: var(--rc-white);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.92rem;
  color: #b7bfd9;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--rc-teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: #7c86a3;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--rc-teal);
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- Page hero (secondary pages) ---------- */
.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--rc-navy) 0%, #0e1830 100%);
  color: var(--rc-white);
}

.page-hero .lede {
  color: #b7bfd9;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--rc-gray-light);
  margin-bottom: 16px;
}

.section-dark .breadcrumb a:hover,
.breadcrumb a:hover {
  color: var(--rc-teal);
}

/* ---------- Layer detail (platform page) ---------- */
.layer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--rc-line);
}

.layer:last-child {
  border-bottom: none;
}

.layer.reverse .layer-copy {
  order: 2;
}

@media (max-width: 900px) {
  .layer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }
  .layer.reverse .layer-copy {
    order: 0;
  }
}

.layer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rc-white);
  background: var(--rc-navy);
  padding: 6px 14px;
  border-radius: var(--rc-radius-pill);
  margin-bottom: 18px;
}

.layer-copy h2 {
  margin-bottom: 14px;
}

.layer-copy p {
  color: var(--rc-gray);
  margin-bottom: 20px;
}

.layer-copy ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.layer-copy ul li {
  display: flex;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--rc-ink);
}

.layer-copy ul li svg {
  width: 18px;
  height: 18px;
  color: var(--rc-teal-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.layer-art {
  background: var(--rc-paper-2);
  border-radius: var(--rc-radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layer-art svg {
  width: 100%;
  max-width: 340px;
}

/* ---------- Security page ---------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 760px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
}

.security-card {
  background: var(--rc-white);
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius-md);
  padding: 28px;
  display: flex;
  gap: 18px;
}

.security-card .tile-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

.security-card h3 {
  margin-bottom: 8px;
}

.security-card p {
  color: var(--rc-gray);
  font-size: 0.93rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--rc-radius-pill);
  background: var(--rc-white);
  border: 1px solid var(--rc-line);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rc-ink);
}

.badge svg {
  width: 16px;
  height: 16px;
  color: var(--rc-teal-dark);
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.checklist li .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--rc-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rc-white);
}

.checklist li .check svg {
  width: 14px;
  height: 14px;
}

.checklist li div strong {
  display: block;
  font-size: 0.96rem;
  margin-bottom: 3px;
}

.checklist li div span {
  font-size: 0.88rem;
  color: var(--rc-gray);
}

/* ---------- 404 page ---------- */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px;
}

.error-page .error-code {
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  background: var(--rc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}

/* ---------- Misc ---------- */
.divider {
  height: 1px;
  background: var(--rc-line);
  margin: 0;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--rc-radius-pill);
  background: var(--rc-paper-2);
  color: var(--rc-gray);
}

/* ---------- POC notice banner ---------- */
.poc-banner {
  background: var(--rc-navy);
  color: #c8d0e6;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.4;
}
