/* ==========================================================================
   ResumeCreating — Homepage Design System
   Enterprise tokens + reusable component styles
   ========================================================================== */

html {
  scroll-padding-top: calc(var(--rc-header-h) + 12px);
}

:root {
  --rc-font: "Plus Jakarta Sans", "Segoe UI", sans-serif;

  --rc-primary: #2563eb;
  --rc-primary-dark: #1d4ed8;
  --rc-primary-soft: #eff6ff;
  --rc-primary-mid: #3b82f6;

  --rc-success: #16a34a;
  --rc-success-soft: #dcfce7;
  --rc-warning: #f59e0b;
  --rc-danger: #ef4444;

  --rc-ink: #0f172a;
  --rc-ink-soft: #1e293b;
  --rc-muted: #64748b;
  --rc-muted-light: #94a3b8;
  --rc-border: #e2e8f0;
  --rc-border-soft: #f1f5f9;
  --rc-surface: #ffffff;
  --rc-surface-alt: #f8fafc;
  --rc-footer: #0b1b33;

  --rc-blue-50: #eff6ff;
  --rc-cyan-50: #ecfeff;
  --rc-teal-50: #f0fdfa;
  --rc-indigo-50: #eef2ff;
  --rc-slate-50: #f8fafc;
  --rc-violet-50: #f5f3ff;
  --rc-green-50: #f0fdf4;
  --rc-orange-50: #fff7ed;
  --rc-amber-50: #fffbeb;
  --rc-sky-50: #f0f9ff;
  --rc-purple-50: #faf5ff;

  --rc-radius-sm: 8px;
  --rc-radius: 12px;
  --rc-radius-lg: 16px;
  --rc-radius-xl: 24px;
  --rc-radius-full: 999px;

  --rc-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --rc-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --rc-shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
  --rc-shadow-nav: 0 1px 0 rgba(15, 23, 42, 0.06);

  --rc-container: 1200px;
  --rc-section-y: clamp(3rem, 5vw, 4.75rem);
  --rc-header-h: 72px;

  --rc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --rc-transition: 180ms var(--rc-ease);
}

/* Reset scoped to home layout */
.rc-body {
  margin: 0;
  font-family: var(--rc-font);
  color: var(--rc-ink);
  background: var(--rc-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.rc-body *,
.rc-body *::before,
.rc-body *::after {
  box-sizing: border-box;
}

.rc-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.rc-body a {
  text-decoration: none;
}

.rc-body a:not(.rc-btn) {
  color: inherit;
}

.rc-body button {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rc-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rc-container {
  width: min(100% - 2.5rem, var(--rc-container));
  margin-inline: auto;
}

.rc-section {
  padding-block: var(--rc-section-y);
  scroll-margin-top: var(--rc-header-h);
}

.rc-section--alt {
  background: var(--rc-surface-alt);
}

.rc-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.rc-section__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.25rem;
}

.rc-section__title {
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0b1220;
  line-height: 1.25;
}

.rc-section__title .accent {
  color: var(--rc-primary);
}

.rc-section__title--sm {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.rc-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--rc-primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color var(--rc-transition);
}

.rc-section__link:hover {
  color: var(--rc-primary-dark);
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */

.rc-btn {
  --btn-bg: var(--rc-primary);
  --btn-color: #fff;
  --btn-border: transparent;
  --btn-hover-bg: var(--rc-primary-dark);
  --btn-hover-color: #000;
  --btn-hover-border: transparent;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 1.5px solid var(--btn-border);
  border-radius: var(--rc-radius);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    background var(--rc-transition),
    color var(--rc-transition),
    border-color var(--rc-transition),
    box-shadow var(--rc-transition),
    transform var(--rc-transition);
  white-space: nowrap;
}

.rc-btn:hover {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  border-color: var(--btn-hover-border);
  transform: translateY(-1px);
}

.rc-btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

.rc-btn--primary {
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}

.rc-btn--primary:hover {
  color: #000;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
}

.rc-btn--secondary {
  --btn-bg: var(--rc-surface);
  --btn-color: var(--rc-ink-soft);
  --btn-border: var(--rc-border);
  --btn-hover-bg: var(--rc-surface-alt);
  --btn-hover-color: var(--rc-ink);
  --btn-hover-border: #cbd5e1;
}

.rc-btn--ghost {
  --btn-bg: transparent;
  --btn-color: var(--rc-ink-soft);
  --btn-border: transparent;
  --btn-hover-bg: var(--rc-surface-alt);
  --btn-hover-color: var(--rc-ink);
  min-height: 42px;
  padding-inline: 1rem;
  font-weight: 600;
}

.rc-btn--outline {
  --btn-bg: transparent;
  --btn-color: var(--rc-primary);
  --btn-border: var(--rc-primary);
  --btn-hover-bg: var(--rc-primary);
  --btn-hover-color: #fff;
  --btn-hover-border: var(--rc-primary);
  width: 100%;
  min-height: 42px;
  font-size: 0.875rem;
}

.rc-btn--sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.rc-btn--lg {
  min-height: 52px;
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  border-radius: 14px;
}

.rc-btn__icon {
  display: inline-flex;
  font-size: 1.1em;
}

/* -------------------------------------------------------------------------- */
/* Logo                                                                       */
/* -------------------------------------------------------------------------- */

.rc-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.rc-logo__img {
  display: block;
  width: auto;
  max-width: none;
  height: 44px;
  object-fit: contain;
}

.rc-body .rc-logo--footer .rc-logo__img {
  height: 48px;
  width: auto;
  max-width: none;
}

.rc-header .rc-logo__img {
  height: 56px;
  max-width: none;
}

/* -------------------------------------------------------------------------- */
/* Header / Nav                                                               */
/* -------------------------------------------------------------------------- */

.rc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--rc-header-h);
  background: #fff;
  border-bottom: 1px solid #eef2f7;
}

.rc-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.rc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex: 1;
}

.rc-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    color var(--rc-transition),
    background var(--rc-transition);
}

.rc-nav__link:hover,
.rc-nav__link:focus-visible,
.rc-nav__link.is-active {
  color: var(--rc-primary);
  background: var(--rc-primary-soft);
}

.rc-nav__link:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

.rc-nav__mobile-actions {
  display: none;
}

.rc-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.rc-header__actions .rc-btn--secondary {
  min-height: 40px;
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  border-color: #dbe3ef;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
  background: #fff;
  box-shadow: none;
}

.rc-header__actions .rc-btn--secondary:hover,
.rc-header__actions .rc-btn--secondary:focus-visible {
  background: var(--rc-primary-soft);
  border-color: #bfdbfe;
  color: var(--rc-primary);
  transform: none;
}

.rc-header__actions .rc-btn--primary {
  min-height: 40px;
  padding: 0.5rem 1.15rem;
  border-radius: 10px;
  background: #2563eb;
  border: 0;
  color: #fff;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.22);
  font-size: 0.875rem;
  font-weight: 700;
}

.rc-header__actions .rc-btn--primary:hover {
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  color: #000;
  transform: none;
}

.rc-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius-sm);
  background: var(--rc-surface);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.rc-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--rc-ink);
  position: relative;
}

.rc-nav-toggle span::before,
.rc-nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--rc-ink);
}

.rc-nav-toggle span::before { top: -6px; }
.rc-nav-toggle span::after { top: 6px; }

/* -------------------------------------------------------------------------- */
/* Hero — matches design screen 2                                             */
/* -------------------------------------------------------------------------- */

.rc-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.25rem, 4vw, 3.5rem) 2.35rem;
  background: #ffffff;
}

.rc-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: center;
}

.rc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #e8faf4;
  color: #0f766e;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.rc-badge__icon {
  width: 14px;
  height: 14px;
  color: #14b8a6;
}

.rc-hero__title {
  margin: 0 0 1.05rem;
  font-size: clamp(2.15rem, 4.1vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #0b1220;
}

.rc-hero__title .accent {
  color: #2563eb;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.rc-hero__title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05em;
  height: 0.32em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 18' fill='none'%3E%3Cpath d='M2 6.5c34-5 66-6 95-2 27 4 55 4 81-2.5' stroke='%232563eb' stroke-width='2.6' stroke-linecap='round'/%3E%3Cpath d='M3 12c32-4 64-5 93-1.5 26 3.2 53 3.2 78-2' stroke='%2360a5fa' stroke-width='2.1' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events: none;
}

.rc-hero__subtitle {
  margin: 0 0 1.5rem;
  max-width: 30rem;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

.rc-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-auto-flow: column;
  gap: 0.85rem 1.75rem;
  margin: 0 0 1.7rem;
  padding: 0;
  list-style: none;
  max-width: 32rem;
}

.rc-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #1e293b;
  font-size: 0.92rem;
  font-weight: 600;
}

.rc-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.rc-check .rc-icon {
  width: 12px;
  height: 12px;
  color: #fff;
}

.rc-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}

.rc-hero__cta-primary {
  min-height: 50px;
  padding-inline: 1.45rem;
  border-radius: 12px;
  background: #2563eb;
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
  font-size: 0.95rem;
  font-weight: 700;
}

.rc-hero__cta-primary:hover {
  background: #1d4ed8;
  color: #000;
}

.rc-hero__cta-secondary {
  min-height: 50px;
  padding-inline: 1.35rem;
  border-radius: 12px;
  border-color: #d7dee8;
  color: #0f172a;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: none;
}

.rc-hero__cta-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: none;
}

.rc-social-proof {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.rc-avatars {
  display: flex;
  align-items: center;
}

.rc-avatars__item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  background: #e2e8f0;
}

.rc-avatars__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-avatars__item:first-child {
  margin-left: 0;
}

.rc-avatars__item svg {
  width: 18px;
  height: 18px;
  opacity: 0.55;
}

.rc-avatars__item--blue {
  background: #3b82f6;
  color: #dbeafe;
}

.rc-avatars__item--pink {
  background: #ec4899;
  color: #fce7f3;
}

.rc-avatars__item--purple {
  background: #a855f7;
  color: #f3e8ff;
}

.rc-avatars__item--green {
  background: #10b981;
  color: #d1fae5;
}

.rc-social-proof__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.rc-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.rc-stars {
  display: inline-flex;
  gap: 2px;
  color: #fbbf24;
}

.rc-stars__icon,
.rc-stars .rc-icon {
  width: 14px;
  height: 14px;
}

.rc-stars__icon--empty {
  opacity: 0.28;
}

.rc-social-proof__text {
  margin: 0;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 500;
}

.rc-hero__visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem 0 0;
}

.rc-hero__blob {
  position: absolute;
  inset: -2% -10% 0% -4%;
  background:
    radial-gradient(ellipse 80% 72% at 55% 45%, rgba(125, 211, 252, 0.95) 0%, rgba(147, 197, 253, 0.75) 28%, rgba(191, 219, 254, 0.55) 52%, rgba(239, 246, 255, 0.35) 72%, transparent 85%);
  border-radius: 48% 52% 45% 55% / 52% 48% 52% 48%;
  opacity: 1;
  z-index: 0;
  filter: blur(2px);
}

.rc-hero__dots {
  position: absolute;
  top: 12px;
  right: 8px;
  width: 88px;
  height: 88px;
  background-image: radial-gradient(#94a3b8 1.6px, transparent 1.6px);
  background-size: 11px 11px;
  opacity: 0.5;
  z-index: 0;
}

.rc-resume-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 22px 48px rgba(15, 23, 42, 0.1);
  padding: 1.25rem 1.3rem 1.25rem;
}

.rc-resume-card__top {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #eef2f7;
}

.rc-resume-card__identity {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  min-width: 0;
}

.rc-resume-card__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  background: #e8f1fb;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #e2e8f0;
}

.rc-resume-card__who h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.rc-resume-card__role {
  margin: 0.08rem 0 0.35rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 500;
}

.rc-resume-card__contacts {
  list-style: none;
  margin: 0.15rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
}

.rc-resume-card__contacts li {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  color: #94a3b8;
  font-size: 0.62rem;
  line-height: 1.2;
}

.rc-resume-card__contacts .rc-icon {
  width: 10px;
  height: 10px;
}

.rc-ats-gauge {
  text-align: center;
  flex-shrink: 0;
}

.rc-ats-gauge__ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, #fff 68%, transparent 69% 100%),
    conic-gradient(#14b8a6 0 94%, #e2e8f0 94% 100%);
  display: grid;
  place-items: center;
  margin: 0 auto 0.2rem;
}

.rc-ats-gauge__ring span {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0d9488;
}

.rc-ats-gauge small {
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #14b8a6;
}

.rc-resume-card__section {
  margin-bottom: 0.75rem;
}

.rc-resume-card__section:last-child {
  margin-bottom: 0;
}

.rc-resume-card__section h4 {
  margin: 0 0 0.4rem;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid #eef2f7;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: #0f172a;
  text-transform: uppercase;
}

.rc-resume-card__section > p,
.rc-resume-card__section li {
  margin: 0;
  color: #64748b;
  font-size: 0.68rem;
  line-height: 1.45;
}

.rc-resume-card__section ul {
  margin: 0.12rem 0 0;
  padding-left: 0.9rem;
}

.rc-resume-card__job {
  display: flex;
  justify-content: space-between;
  gap: 0.45rem;
  font-size: 0.7rem;
}

.rc-resume-card__job strong {
  color: #0f172a;
  font-weight: 750;
}

.rc-resume-card__job span {
  color: #94a3b8;
  white-space: nowrap;
  font-size: 0.64rem;
}

.rc-resume-card__company {
  margin: 0.05rem 0 0.15rem !important;
  color: #64748b !important;
  font-size: 0.66rem !important;
  font-weight: 600;
}

.rc-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.8rem;
  border-left: 2px solid #dbeafe;
  display: grid;
  gap: 0.6rem;
}

.rc-timeline__item {
  position: relative;
  padding-left: 0.7rem;
}

.rc-timeline__item::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 0.28rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 3px #eff6ff;
}

.rc-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.rc-skill-tags span {
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.62rem;
  font-weight: 650;
}

.rc-score-toast {
  position: absolute;
  right: -0.5rem;
  bottom: 2.85rem;
  z-index: 2;
  display: block;
  width: min(176px, 58%);
  padding: 0.85rem 0.9rem 1.25rem;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.14),
    0 4px 10px rgba(15, 23, 42, 0.06);
  text-align: left;
  transform: rotate(8deg);
  transform-origin: center center;
}

.rc-score-toast__body {
  width: 100%;
}

.rc-score-toast__icon {
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.25);
  border: 2px solid #fff;
}

.rc-score-toast__icon .rc-icon {
  width: 12px;
  height: 12px;
  color: #fff;
}

.rc-score-toast strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #22c55e;
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.01em;
}

.rc-score-toast p {
  margin: 0;
  font-size: 0.74rem;
  color: #1e293b;
  line-height: 1.45;
  font-weight: 500;
  text-align: left;
}

/* -------------------------------------------------------------------------- */
/* Stats bar                                                                  */
/* -------------------------------------------------------------------------- */

.rc-stats {
  position: relative;
  z-index: 3;
  margin-top: -3.15rem;
  padding-bottom: 0.5rem;
  background: transparent;
}

.rc-stats__bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.rc-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.45rem 1.4rem;
  border-right: 1px solid #eef2f7;
  background: #fff;
}

.rc-stat:last-child {
  border-right: 0;
}

.rc-stat__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.rc-stat__icon .rc-icon {
  width: 22px;
  height: 22px;
}

.rc-stat__icon--blue { background: #eff6ff; color: #2563eb; }
.rc-stat__icon--green { background: #ecfdf5; color: #16a34a; }
.rc-stat__icon--purple { background: #f5f3ff; color: #7c3aed; }
.rc-stat__icon--orange { background: #fff7ed; color: #ea580c; }

.rc-stat__copy {
  min-width: 0;
}

.rc-stat__value {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.15;
}

.rc-stat__caption {
  margin: 0.12rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: #64748b;
}

.rc-stat .rc-stars {
  margin-top: 0.18rem;
  color: #f5b942;
}

.rc-stat .rc-stars .rc-icon {
  width: 13px;
  height: 13px;
}
/* -------------------------------------------------------------------------- */
/* Feature cards                                                              */
/* -------------------------------------------------------------------------- */

.rc-features {
  padding-top: 2.25rem;
  padding-bottom: 1.25rem;
}

.rc-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.rc-feature-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 1.25rem 1.1rem 1.3rem;
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 16px;
  box-shadow: none;
  transition: border-color var(--rc-transition), box-shadow var(--rc-transition), transform var(--rc-transition);
}

.rc-feature-card:hover {
  border-color: #dbe7f3;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.rc-feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}

.rc-feature-card__icon svg {
  width: 20px;
  height: 20px;
}

.rc-feature-card__icon--blue { background: #eff6ff; color: #2563eb; }
.rc-feature-card__icon--cyan { background: #ecfeff; color: #0891b2; }
.rc-feature-card__icon--teal { background: #f0fdfa; color: #0d9488; }
.rc-feature-card__icon--indigo { background: #eef2ff; color: #4f46e5; }
.rc-feature-card__icon--slate { background: #f8fafc; color: #64748b; border: 1px solid #e8eef6; }
.rc-feature-card__icon--violet { background: #f5f3ff; color: #7c3aed; }
.rc-feature-card__icon--mint { background: #ecfdf5; color: #14b8a6; }

.rc-feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 750;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.rc-feature-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.55;
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/* Template carousel                                                          */
/* -------------------------------------------------------------------------- */

.rc-carousel {
  --rc-slides: 3;
  --rc-slide-gap: 1.5rem;
  position: relative;
}

.rc-carousel[data-rc-carousel="templates"] {
  --rc-slides: 3;
  --rc-slide-gap: 1.5rem;
}

.rc-carousel[data-rc-carousel="testimonials"] {
  --rc-slides: 3;
  --rc-slide-gap: 1.25rem;
}

.rc-carousel__track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  margin-inline: 2.25rem;
  /* Room for hover lift + shadow so the card's top border is not clipped */
  padding-block: 12px;
  margin-block: -12px;
  container-type: inline-size;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.rc-carousel__track-wrap::-webkit-scrollbar {
  display: none;
}

.rc-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--rc-slide-gap);
  width: max-content;
}

.rc-template-card {
  position: relative;
  flex: 0 0 calc((100cqi - (var(--rc-slides) - 1) * var(--rc-slide-gap)) / var(--rc-slides));
  width: calc((100cqi - (var(--rc-slides) - 1) * var(--rc-slide-gap)) / var(--rc-slides));
  min-width: calc((100cqi - (var(--rc-slides) - 1) * var(--rc-slide-gap)) / var(--rc-slides));
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--rc-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 20px rgba(15, 23, 42, 0.05);
  transition: box-shadow var(--rc-transition), transform var(--rc-transition), border-color var(--rc-transition);
}

.rc-template-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.rc-template-card__link:focus-visible {
  outline: 2px solid var(--rc-primary);
  outline-offset: 3px;
  border-radius: 16px;
}

.rc-template-card:hover,
.rc-template-card:focus-within {
  z-index: 1;
  border-color: #cbd5e1;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  transform: translate3d(0, -3px, 0);
}

.rc-template-card__preview {
  position: relative;
  aspect-ratio: 210 / 297;
  overflow: hidden;
  background: var(--rc-surface-alt);
  border-bottom: 1px solid var(--rc-border);
}

.rc-template-card__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #fff;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.rc-template-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.15rem 1rem 1.25rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 46%, rgba(15, 23, 42, 0.62) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--rc-ease);
}

.rc-template-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 0.8125rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
  transform: translateY(10px);
  opacity: 0;
  transition:
    background 180ms var(--rc-ease),
    color 180ms var(--rc-ease),
    box-shadow 180ms var(--rc-ease),
    transform 220ms var(--rc-ease),
    opacity 220ms var(--rc-ease);
}

.rc-template-card:hover .rc-template-card__overlay,
.rc-template-card:focus-within .rc-template-card__overlay {
  opacity: 1;
}

.rc-template-card:hover .rc-template-card__cta,
.rc-template-card:focus-within .rc-template-card__cta {
  opacity: 1;
  transform: translateY(0);
  background: var(--rc-primary);
  color: #fff;
}

.rc-template-card__body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.75rem 0.85rem 0.85rem;
  background: #fff;
  text-align: center;
}

.rc-template-card__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 750;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

@media (hover: none) {
  .rc-template-card__overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 68%, rgba(15, 23, 42, 0.52) 100%);
  }

  .rc-template-card__cta {
    opacity: 1;
    transform: none;
    background: var(--rc-primary);
    color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-template-card,
  .rc-template-card__overlay,
  .rc-template-card__cta {
    transition: none;
    transform: none;
  }
}

.rc-carousel__btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: var(--rc-surface);
  color: #64748b;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: background var(--rc-transition), color var(--rc-transition), box-shadow var(--rc-transition);
  z-index: 2;
}

.rc-carousel__btn:hover:not(:disabled) {
  background: var(--rc-primary);
  border-color: var(--rc-primary);
  color: #fff;
  box-shadow: var(--rc-shadow);
}

.rc-carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.rc-carousel__btn--prev { left: 0; }
.rc-carousel__btn--next { right: 0; }

/* -------------------------------------------------------------------------- */
/* How it works                                                               */
/* -------------------------------------------------------------------------- */

#templates {
  padding-top: 1.5rem;
  padding-bottom: 1.75rem;
  background: #fff;
}

.rc-how {
  padding-block: 0 1.75rem;
  background: #fff;
}

.rc-how__card {
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 20px;
  padding: 1.75rem 1.25rem 2rem;
}

#examples {
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
}

#examples .rc-section__title {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
}

.rc-how .rc-section__head--center {
  margin-bottom: 1.75rem;
}

.rc-how .rc-section__title {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
}

.rc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.rc-step {
  text-align: center;
  position: relative;
  padding: 0 0.75rem;
}

.rc-step__connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 42px);
  width: calc(100% - 84px);
  height: 0;
  border-top: 1.5px dashed #cbd5e1;
  z-index: 0;
  pointer-events: none;
}

.rc-step__connector::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translate(50%, -50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #94a3b8;
}

.rc-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 0.95rem;
  position: relative;
  z-index: 1;
}

.rc-step__icon svg {
  width: 24px;
  height: 24px;
}

.rc-step__icon--blue { background: #eff6ff; color: #3b82f6; }
.rc-step__icon--green { background: #ecfdf5; color: #22c55e; }
.rc-step__icon--purple { background: #f5f3ff; color: #8b5cf6; }
.rc-step__icon--orange { background: #fff7ed; color: #f97316; }
.rc-step__icon--cyan { background: #ecfeff; color: #0891b2; }
.rc-step__icon--indigo { background: #eef2ff; color: #4f46e5; }

.rc-step h3 {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
  font-weight: 750;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.rc-step p {
  margin: 0 auto;
  max-width: 250px;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/* Profession examples                                                        */
/* -------------------------------------------------------------------------- */

.rc-profession-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.85rem;
}

.rc-profession-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 0.5rem 1.1rem;
  background: var(--rc-surface);
  border: 1px solid #e8eef6;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: box-shadow var(--rc-transition), transform var(--rc-transition), border-color var(--rc-transition);
}

.rc-profession-card:hover {
  border-color: #bfdbfe;
  box-shadow: var(--rc-shadow);
  transform: translateY(-3px);
}

.rc-profession-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.rc-profession-card__icon svg {
  width: 22px;
  height: 22px;
}

.rc-profession-card__icon--blue { background: #eff6ff; color: #3b82f6; }
.rc-profession-card__icon--green { background: #ecfdf5; color: #22c55e; }
.rc-profession-card__icon--orange { background: #fff7ed; color: #f97316; }
.rc-profession-card__icon--sky { background: #eff6ff; color: #3b82f6; }
.rc-profession-card__icon--cyan { background: #ecfeff; color: #06b6d4; }
.rc-profession-card__icon--violet { background: #f5f3ff; color: #8b5cf6; }
.rc-profession-card__icon--amber { background: #fff7ed; color: #f97316; }
.rc-profession-card__icon--indigo { background: #eef2ff; color: #6366f1; }

.rc-profession-card span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

/* -------------------------------------------------------------------------- */
/* Testimonials                                                               */
/* -------------------------------------------------------------------------- */

.rc-testimonials {
  position: relative;
}

#testimonials {
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
}

#testimonials .rc-section__head--center {
  margin-bottom: 1.35rem;
}

.rc-testimonials__track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  margin-inline: 2.5rem;
  container-type: inline-size;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
}

.rc-testimonials__track-wrap::-webkit-scrollbar {
  display: none;
}

.rc-testimonials__track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--rc-slide-gap, 1.25rem);
  width: max-content;
}

.rc-testimonials .rc-carousel__btn {
  top: 50%;
}

.rc-testimonial-card {
  flex: 0 0 calc((100cqi - (var(--rc-slides, 3) - 1) * var(--rc-slide-gap, 1.25rem)) / var(--rc-slides, 3));
  width: calc((100cqi - (var(--rc-slides, 3) - 1) * var(--rc-slide-gap, 1.25rem)) / var(--rc-slides, 3));
  min-width: calc((100cqi - (var(--rc-slides, 3) - 1) * var(--rc-slide-gap, 1.25rem)) / var(--rc-slides, 3));
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.4rem 1.25rem;
  background: var(--rc-surface);
  border: 1px solid #e8eef6;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.rc-testimonial-card__quote {
  margin: 0.7rem 0 1.15rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

.rc-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.rc-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  overflow: hidden;
}

.rc-testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rc-testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.rc-testimonial-card__author span {
  color: #64748b;
  font-size: 0.78rem;
}

/* -------------------------------------------------------------------------- */
/* FAQ                                                                        */
/* -------------------------------------------------------------------------- */

.rc-faq {
  background: #f8fafc;
  padding-top: 1.5rem;
  padding-bottom: 2.25rem;
}

.rc-faq .rc-section__head--center {
  margin-bottom: 0.75rem;
}

.rc-faq__lead {
  margin: 0 auto 1.75rem;
  max-width: none;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: nowrap;
}

.rc-faq-card {
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.rc-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.rc-faq-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.rc-faq-col + .rc-faq-col {
  border-left: 1px solid #eef2f7;
}

.rc-faq-item {
  background: transparent;
  border-bottom: 1px solid #eef2f7;
  overflow: hidden;
  transition: background var(--rc-transition);
}

.rc-faq-col .rc-faq-item:last-child {
  border-bottom: 0;
}

.rc-faq-item:hover,
.rc-faq-item.is-open {
  background: #f8fafc;
}

.rc-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 1.15rem 1.35rem 1.15rem 1.5rem;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: #0f172a;
  transition: color var(--rc-transition), background var(--rc-transition);
}

.rc-faq-item__trigger:hover {
  color: var(--rc-primary);
}

.rc-faq-item__trigger:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.35);
  outline-offset: -2px;
}

.rc-faq-item.is-open .rc-faq-item__trigger {
  color: #0f172a;
}

.rc-faq-item__toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  flex-shrink: 0;
  position: relative;
  transition: background var(--rc-transition), color var(--rc-transition);
}

.rc-faq-item__toggle::before,
.rc-faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
}

.rc-faq-item__toggle::before {
  width: 11px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.rc-faq-item__toggle::after {
  width: 2px;
  height: 11px;
  transform: translate(-50%, -50%);
  transition: transform var(--rc-transition), opacity var(--rc-transition);
}

.rc-faq-item.is-open .rc-faq-item__toggle {
  background: var(--rc-primary-soft);
  color: var(--rc-primary);
}

.rc-faq-item.is-open .rc-faq-item__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.rc-faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 280ms var(--rc-ease);
}

.rc-faq-item.is-open .rc-faq-item__panel {
  grid-template-rows: 1fr;
}

.rc-faq-item__panel-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 1.5rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

.rc-faq-item.is-open .rc-faq-item__panel-inner {
  padding-bottom: 1.25rem;
}

.rc-faq__cta {
  margin: 1.5rem 0 0;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
}

.rc-faq__cta a {
  color: var(--rc-primary);
  font-weight: 700;
}

.rc-faq__cta a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.rc-footer {
  background: var(--rc-footer);
  color: #cbd5e1;
  padding-top: 3.5rem;
}

.rc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.35fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.rc-footer__brand p {
  margin: 0.85rem 0 0;
  max-width: 240px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
}

.rc-footer__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
  max-width: 280px;
}

.rc-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.4rem 0.9rem;
  border-radius: var(--rc-radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  transition:
    background var(--rc-transition),
    color var(--rc-transition),
    border-color var(--rc-transition),
    box-shadow var(--rc-transition),
    transform var(--rc-transition);
}

.rc-footer__cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.rc-footer__cta--primary {
  background: var(--rc-primary);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
}

.rc-footer__cta--primary:hover,
.rc-footer__cta--primary:focus-visible {
  background: var(--rc-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.36);
}

.rc-footer__cta--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.rc-footer__cta--ghost:hover,
.rc-footer__cta--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(147, 197, 253, 0.55);
  transform: translateY(-1px);
}

.rc-footer__cta:focus-visible {
  outline: 3px solid rgba(147, 197, 253, 0.45);
  outline-offset: 2px;
}

.rc-social {
  display: flex;
  gap: 0.55rem;
}

.rc-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: grid;
  place-items: center;
  color: #e2e8f0;
  transition: background var(--rc-transition), border-color var(--rc-transition), color var(--rc-transition);
}

.rc-social a:hover {
  background: var(--rc-primary);
  border-color: var(--rc-primary);
  color: #fff;
}

.rc-social svg {
  width: 16px;
  height: 16px;
}

.rc-footer__col h4,
.rc-footer__heading {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.rc-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.rc-footer__col a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color var(--rc-transition);
}

.rc-footer__col a:hover {
  color: #fff;
}

.rc-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.rc-footer__social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rc-footer__newsletter p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.55;
}

.rc-newsletter {
  display: flex;
  gap: 0.5rem;
}

.rc-newsletter input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 0.9rem;
  border: 0;
  border-radius: var(--rc-radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
}

.rc-newsletter input:focus {
  outline: 3px solid rgba(147, 197, 253, 0.45);
}

.rc-newsletter button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--rc-radius-sm);
  background: var(--rc-primary);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--rc-transition);
  flex-shrink: 0;
}

.rc-newsletter button:hover {
  background: var(--rc-primary-dark);
}

.rc-footer__bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .rc-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rc-stat {
    padding: 1.25rem 1rem;
    gap: 0.75rem;
  }

  .rc-stat__icon {
    width: 46px;
    height: 46px;
  }

  .rc-carousel[data-rc-carousel="templates"] {
    --rc-slides: 3;
  }

  .rc-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .rc-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .rc-nav {
    display: none;
    flex: none;
    margin-left: 0;
  }

  .rc-nav-toggle {
    display: inline-flex;
  }

  .rc-header__actions .rc-header__action.rc-btn--secondary {
    display: none;
  }

  .rc-header__actions .rc-header__action.rc-btn--primary {
    min-height: 36px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8125rem;
  }

  .rc-header.is-open .rc-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--rc-header-h);
    left: 0;
    right: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid var(--rc-border);
    padding: 0.75rem 1.25rem 1.15rem;
    box-shadow: var(--rc-shadow);
    gap: 0.15rem;
    max-height: calc(100vh - var(--rc-header-h));
    overflow: auto;
  }

  .rc-header.is-open .rc-nav__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--rc-border-soft);
  }

  .rc-header.is-open .rc-nav__link {
    width: 100%;
  }

  .rc-header.is-open .rc-nav__mobile-actions .rc-btn {
    width: 100%;
  }

  .rc-hero__grid {
    grid-template-columns: 1fr;
  }

  .rc-hero__visual {
    min-height: auto;
    padding-bottom: 0;
  }

  .rc-hero__title {
    max-width: none;
  }

  .rc-resume-card {
    width: min(100%, 380px);
  }

  .rc-score-toast {
    right: 12px;
    bottom: 2.5rem;
    transform: rotate(8deg);
  }

  .rc-stats__bar {
    grid-template-columns: 1fr 1fr;
  }

  .rc-stat:nth-child(2) {
    border-right: 0;
  }

  .rc-stat:nth-child(1),
  .rc-stat:nth-child(2) {
    border-bottom: 1px solid var(--rc-border-soft);
  }

  .rc-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rc-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }

  .rc-step__connector {
    display: none;
  }

  .rc-carousel,
  .rc-carousel[data-rc-carousel="templates"] {
    --rc-slides: 2;
  }

  .rc-faq-grid {
    grid-template-columns: 1fr;
  }

  .rc-faq__lead {
    white-space: normal;
  }

  .rc-faq-col + .rc-faq-col {
    border-left: 0;
  }

  .rc-faq-col:first-child .rc-faq-item:last-child {
    border-bottom: 1px solid #eef2f7;
    flex: none;
  }

  .rc-faq-item__trigger,
  .rc-faq-item.is-open .rc-faq-item__panel-inner,
  .rc-faq-item__panel-inner {
    padding-inline: 1.15rem;
  }

  .rc-profession-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .rc-container {
    width: min(100% - 1.5rem, var(--rc-container));
  }

  .rc-checklist {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .rc-stats__bar,
  .rc-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rc-steps {
    grid-template-columns: 1fr;
  }

  .rc-footer__grid {
    grid-template-columns: 1fr;
  }

  .rc-footer__ctas {
    max-width: none;
  }

  .rc-footer__cta {
    min-height: 42px;
    padding: 0.5rem 1rem;
  }

  .rc-profession-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rc-stat {
    border-right: 1px solid var(--rc-border-soft);
    border-bottom: 1px solid var(--rc-border-soft);
  }

  .rc-stat:nth-child(2n) {
    border-right: 0;
  }

  .rc-stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .rc-carousel__track-wrap,
  .rc-testimonials__track-wrap {
    margin-inline: 1.75rem;
  }

  .rc-carousel,
  .rc-carousel[data-rc-carousel="templates"] {
    --rc-slides: 1;
  }

  .rc-carousel__btn {
    width: 34px;
    height: 34px;
  }

  .rc-template-card__overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 68%, rgba(15, 23, 42, 0.52) 100%);
  }

  .rc-template-card__cta {
    opacity: 1;
    transform: none;
    background: var(--rc-primary);
    color: #fff;
  }

  .rc-hero__ctas {
    flex-direction: column;
  }

  .rc-hero__ctas .rc-btn {
    width: 100%;
  }

  .rc-newsletter {
    flex-direction: column;
  }

  .rc-newsletter button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-resume-card,
  .rc-score-toast,
  .rc-carousel__track,
  .rc-testimonials__track {
    animation: none !important;
    transition: none !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Shared form controls                                                       */
/* -------------------------------------------------------------------------- */

.rc-btn--block {
  width: 100%;
}

.rc-btn .rc-icon {
  width: 18px;
  height: 18px;
}

.rc-form {
  display: grid;
  gap: 1rem;
}

.rc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rc-form__row {
  display: flex;
  align-items: center;
}

.rc-form__row--end {
  justify-content: flex-end;
  margin-top: -0.35rem;
}

.rc-form__link {
  color: var(--rc-primary);
  font-size: 0.8125rem;
  font-weight: 700;
}

.rc-form__link:hover {
  color: var(--rc-primary-dark);
}

.rc-field,
.rc-checkbox-wrap {
  scroll-margin-top: calc(var(--rc-header-h) + 16px);
}

.rc-field {
  display: grid;
  gap: 0.45rem;
}

.rc-field__label {
  color: #0f172a;
  font-size: 0.8125rem;
  font-weight: 700;
}

.rc-field__control {
  position: relative;
}

.rc-field__input {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  color: var(--rc-ink);
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.4;
  appearance: none;
  transition:
    border-color var(--rc-transition),
    box-shadow var(--rc-transition);
}

.rc-field--icon .rc-field__input {
  padding-left: 2.75rem;
}

.rc-field--toggle .rc-field__input {
  padding-right: 2.75rem;
}

.rc-field__input::placeholder,
.rc-field__textarea::placeholder {
  color: #94a3b8;
}

.rc-field__input:hover {
  border-color: #cbd5e1;
}

.rc-field__input:focus {
  border-color: var(--rc-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  outline: none;
}

.rc-field.has-error .rc-field__input {
  border-color: #fca5a5;
}

.rc-field.has-error .rc-field__input:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.rc-field__icon {
  position: absolute;
  top: 50%;
  left: 0.95rem;
  display: grid;
  place-items: center;
  color: #94a3b8;
  transform: translateY(-50%);
  pointer-events: none;
}

.rc-field__icon .rc-icon {
  width: 18px;
  height: 18px;
}

.rc-field__toggle {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  transform: translateY(-50%);
}

.rc-field__toggle:hover,
.rc-field__toggle:focus-visible {
  color: var(--rc-ink-soft);
  background: var(--rc-surface-alt);
}

.rc-field__toggle .rc-icon {
  width: 18px;
  height: 18px;
}

.rc-field__toggle-hide,
.rc-field.is-revealed .rc-field__toggle-show {
  display: none;
}

.rc-field.is-revealed .rc-field__toggle-hide {
  display: inline-block;
}

.rc-field__textarea {
  min-height: 128px;
  padding: 0.9rem 1rem;
  resize: vertical;
}

.rc-field__error {
  margin: 0;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 600;
}

.rc-field__error[hidden] {
  display: none;
}

.rc-field__hint[hidden] {
  display: none;
}

.rc-field__hint {
  margin: 0;
  color: var(--rc-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.rc-checkbox-wrap {
  display: grid;
  gap: 0.35rem;
}

.rc-checkbox-wrap.has-error .rc-checkbox__box {
  border-color: #fca5a5;
}

.rc-checkbox {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}

.rc-checkbox__input {
  position: absolute;
  top: 0.15rem;
  left: 0;
  z-index: 1;
  width: 18px;
  height: 18px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.rc-checkbox__box {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 5px;
  background: #fff;
  flex-shrink: 0;
  position: relative;
}

.rc-checkbox__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(0.4);
  transition: opacity var(--rc-transition), transform var(--rc-transition);
}

.rc-checkbox__input:checked + .rc-checkbox__box {
  border-color: var(--rc-primary);
  background: var(--rc-primary);
}

.rc-checkbox__input:checked + .rc-checkbox__box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.rc-checkbox__input:focus-visible + .rc-checkbox__box {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

.rc-checkbox__label {
  color: #334155;
  font-size: 0.875rem;
  line-height: 1.45;
}

.rc-checkbox__label a {
  color: var(--rc-primary);
  font-weight: 700;
}

.rc-checkbox__label a:hover {
  color: var(--rc-primary-dark);
}

.rc-captcha {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 0.75rem;
  row-gap: 0.45rem;
  align-items: center;
}

.rc-captcha .rc-field {
  display: contents;
}

.rc-captcha .rc-field__label {
  grid-column: 1 / -1;
}

.rc-captcha .rc-field__control {
  grid-column: 1;
}

.rc-captcha .rc-field__error {
  grid-column: 1 / -1;
}

.rc-captcha__image {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 2;
  min-width: 148px;
  height: 50px;
  padding: 0 0.7rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.rc-captcha__image img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.rc-alert {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.45;
}

.rc-alert p,
.rc-alert ul {
  margin: 0;
}

.rc-alert ul {
  padding-left: 1.1rem;
}

.rc-alert--danger {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.rc-alert--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.rc-alert--info {
  background: var(--rc-primary-soft);
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.rc-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #eff6ff;
  color: #1e3a8a;
}

.rc-note .rc-icon {
  width: 22px;
  height: 22px;
  color: var(--rc-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.rc-note p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 500;
}

.rc-note--warn {
  background: #fff7ed;
  color: #9a3412;
}

.rc-note--warn .rc-icon {
  color: #ea580c;
}

.rc-icon-badge {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  background: #dbeafe;
  color: var(--rc-primary);
}

.rc-icon-badge .rc-icon {
  width: 24px;
  height: 24px;
}

.rc-icon-badge--sm {
  width: 40px;
  height: 40px;
  margin: 0;
  flex-shrink: 0;
}

.rc-icon-badge--sm .rc-icon {
  width: 18px;
  height: 18px;
}

/* -------------------------------------------------------------------------- */
/* Auth pages                                                                 */
/* -------------------------------------------------------------------------- */

.rc-auth {
  min-height: calc(100vh - var(--rc-header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.75rem 1.25rem 3.5rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.08), transparent 26%),
    radial-gradient(circle at 92% 88%, rgba(59, 130, 246, 0.08), transparent 30%),
    #f4f7ff;
}

.rc-auth--wide {
  align-items: safe center;
  padding: 1.5rem 1.25rem 1.75rem;
}

.rc-auth__card {
  width: min(100%, 440px);
  padding: 2.25rem 2rem 1.85rem;
  border: 1px solid #eef2f7;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.rc-auth__card--wide {
  width: min(100%, 780px);
  padding: 1.65rem 1.85rem 1.4rem;
}

.rc-auth__card--wide .rc-icon-badge {
  width: 46px;
  height: 46px;
  margin-bottom: 0.7rem;
}

.rc-auth__card--wide .rc-icon-badge .rc-icon {
  width: 22px;
  height: 22px;
}

.rc-auth__title {
  margin: 0 0 0.45rem;
  color: #0b1220;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.rc-auth__card--wide .rc-auth__title {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.rc-auth__subtitle {
  margin: 0 auto 1.6rem;
  max-width: 22rem;
  color: var(--rc-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.rc-auth__card--wide .rc-auth__subtitle {
  margin-bottom: 1.15rem;
  max-width: 32rem;
  font-size: 0.9rem;
}

.rc-auth__hint {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  color: #64748b;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.rc-auth__card:has(.rc-auth__hint) .rc-auth__subtitle {
  margin-bottom: 0.35rem;
}

.rc-auth__card--thanks {
  width: min(100%, 480px);
}

.rc-auth__card--thanks .rc-auth__subtitle {
  max-width: none;
  margin-bottom: 0.45rem;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 700;
}

.rc-auth__card--thanks .rc-auth__hint {
  max-width: 26rem;
  margin-bottom: 1.5rem;
  color: var(--rc-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.rc-auth__card--wide .rc-form {
  gap: 0.9rem;
}

.rc-auth__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 0;
}

.rc-auth__section {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  text-align: left;
}

.rc-auth__section + .rc-auth__section {
  padding-left: 1.35rem;
  margin-left: 1.35rem;
  border-left: 1px solid #e8eef7;
}

.rc-auth__section-title {
  margin: 0;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-auth__card--wide .rc-auth__footer {
  margin-top: 1.05rem;
}

.rc-auth__card .rc-form,
.rc-auth__card .rc-alert,
.rc-auth__card .rc-note {
  text-align: left;
}

.rc-auth__card .rc-btn {
  margin-top: 0.35rem;
  min-height: 50px;
  border-radius: 12px;
}

.rc-auth__footer {
  margin: 1.35rem 0 0;
  color: #334155;
  font-size: 0.875rem;
}

.rc-auth__footer a {
  color: var(--rc-primary);
  font-weight: 700;
}

.rc-auth__footer a:hover {
  color: var(--rc-primary-dark);
}

.rc-auth__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 1.15rem;
  color: var(--rc-primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.rc-auth__back .rc-icon {
  width: 16px;
  height: 16px;
}

.rc-auth__back:hover {
  color: var(--rc-primary-dark);
}

/* -------------------------------------------------------------------------- */
/* Contact page                                                               */
/* -------------------------------------------------------------------------- */

.rc-contact {
  position: relative;
  min-height: calc(100vh - var(--rc-header-h));
  padding: 1.25rem 0 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 10%, rgba(37, 99, 235, 0.08), transparent 22%),
    #f7f9ff;
}

.rc-contact__header {
  max-width: none;
  margin: 0 auto 1.1rem;
  text-align: center;
}

.rc-contact__header .rc-icon-badge {
  width: 46px;
  height: 46px;
  margin-bottom: 0.6rem;
}

.rc-contact__header .rc-icon-badge .rc-icon {
  width: 22px;
  height: 22px;
}

.rc-contact__header h1 {
  margin: 0 0 0.3rem;
  color: #0b1220;
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.rc-contact__header p {
  margin: 0;
  color: var(--rc-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
  white-space: nowrap;
}

.rc-contact__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.25fr);
  gap: 1.1rem;
  align-items: stretch;
}

.rc-contact-info,
.rc-contact__form-card,
.rc-faq-banner {
  border: 1px solid #e8eef7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.rc-contact-info {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.25rem;
  background: #f4f8ff;
}

.rc-contact-info h2,
.rc-contact__form-card h2 {
  margin: 0 0 0.3rem;
  color: #0b1220;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rc-contact-info__lead {
  margin: 0 0 1rem;
  color: var(--rc-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.rc-contact-info__list {
  display: grid;
  gap: 0.9rem;
}

.rc-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.rc-contact-info__item h3 {
  margin: 0 0 0.1rem;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 800;
}

.rc-contact-info__item p,
.rc-contact-info__item a {
  margin: 0;
  color: var(--rc-muted);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.rc-contact-info__item a {
  color: var(--rc-primary);
  font-weight: 700;
}

.rc-contact__form-card {
  padding: 1.2rem 1.3rem 1.15rem;
}

.rc-contact .rc-form,
.rc-contact .rc-form-grid {
  gap: 0.7rem;
}

.rc-contact .rc-field {
  gap: 0.3rem;
}

.rc-contact .rc-field__input {
  min-height: 46px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.rc-contact .rc-field__textarea {
  min-height: 84px;
  padding: 0.65rem 0.95rem;
}

.rc-contact__actions {
  display: grid;
  gap: 0.75rem;
}

.rc-contact .g-recaptcha {
  transform: scale(0.94);
  transform-origin: left top;
  height: 74px;
  overflow: hidden;
}

.rc-contact .rc-captcha {
  align-items: end;
}

.rc-contact__form-card .rc-btn {
  margin-top: 0;
  width: 100%;
  min-height: 46px;
}

.rc-faq-banner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
  padding: 0.85rem 1.15rem;
}

.rc-faq-banner__copy {
  display: grid;
  gap: 0.15rem;
  flex: 1;
}

.rc-faq-banner__copy strong {
  color: #0b1220;
  font-size: 0.95rem;
  font-weight: 800;
}

.rc-faq-banner__copy span {
  color: var(--rc-muted);
  font-size: 0.8125rem;
}

.rc-faq-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--rc-primary);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

.rc-faq-banner__link .rc-icon {
  width: 16px;
  height: 16px;
}

.rc-faq-banner:hover .rc-faq-banner__link {
  color: var(--rc-primary-dark);
}

@media (max-width: 900px) {
  .rc-contact {
    min-height: 0;
    padding: 1.15rem 0 1.5rem;
  }

  .rc-contact__header p {
    white-space: normal;
  }

  .rc-contact__grid,
  .rc-form-grid {
    grid-template-columns: 1fr;
  }

  .rc-faq-banner {
    flex-wrap: wrap;
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  .rc-contact {
    padding: 0.85rem 0 1.15rem;
  }

  .rc-contact__header {
    margin-bottom: 0.8rem;
  }

  .rc-contact__header .rc-icon-badge {
    width: 40px;
    height: 40px;
    margin-bottom: 0.4rem;
  }

  .rc-contact .rc-field__textarea {
    min-height: 76px;
  }
}

@media (max-width: 720px) {
  .rc-auth__grid,
  .rc-captcha {
    grid-template-columns: 1fr;
  }

  .rc-auth__section + .rc-auth__section {
    padding-left: 0;
    margin-left: 0;
    padding-top: 0.9rem;
    margin-top: 0.15rem;
    border-left: 0;
    border-top: 1px solid #e8eef7;
  }

  .rc-captcha__image {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .rc-auth,
  .rc-auth--wide {
    align-items: flex-start;
    padding: 1.75rem 1rem 2.5rem;
  }

  .rc-auth__card,
  .rc-auth__card--wide {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .rc-contact {
    padding: 1rem 0 1.35rem;
  }

  .rc-contact-info,
  .rc-contact__form-card {
    padding: 1.1rem 1rem;
  }

  .rc-contact__header h1 {
    font-size: 1.5rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Inner pages: about, legal, blog                                            */
/* -------------------------------------------------------------------------- */

.rc-page {
  position: relative;
  min-height: calc(100vh - var(--rc-header-h));
  padding: 1.25rem 0 2.5rem;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 6% 10%, rgba(37, 99, 235, 0.08), transparent 22%),
    #f7f9ff;
}

.rc-page__header {
  max-width: 42rem;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.rc-page__header .rc-icon-badge {
  width: 46px;
  height: 46px;
  margin-bottom: 0.6rem;
}

.rc-page__header .rc-icon-badge .rc-icon {
  width: 22px;
  height: 22px;
}

.rc-page__header h1 {
  margin: 0 0 0.3rem;
  color: #0b1220;
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.rc-page__header p {
  margin: 0;
  color: var(--rc-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.rc-page__card,
.rc-about__founder,
.rc-blog-card,
.rc-toc {
  border: 1px solid #e8eef7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.rc-page__card {
  padding: 1.25rem 1.35rem 1.3rem;
}

.rc-page .rc-faq-banner {
  margin-top: 1.1rem;
}

/* About */

.rc-about__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.7fr);
  gap: 1.1rem;
  margin-bottom: 1.1rem;
  align-items: stretch;
}

.rc-about__purpose h2,
.rc-about__process h2 {
  margin: 0 0 0.45rem;
  color: #0b1220;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rc-about__lead {
  margin: 0 0 0.7rem;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rc-about__purpose p,
.rc-about__process > p {
  margin: 0;
  color: var(--rc-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.rc-about__founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.4rem 1.2rem;
  text-align: center;
  background: #f4f8ff;
}

.rc-about__founder img,
.rc-about__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.rc-about__avatar {
  display: grid;
  place-items: center;
  background: #dbeafe;
  color: var(--rc-primary);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.rc-about__founder strong {
  color: #0b1220;
  font-size: 0.95rem;
  font-weight: 800;
}

.rc-about__founder span {
  color: var(--rc-muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

.rc-about__process {
  margin-bottom: 1.1rem;
}

.rc-about__process > p {
  margin-bottom: 1.15rem;
}

.rc-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.rc-process__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  min-height: 76px;
  padding: 0.85rem 0.95rem;
  border: 1px solid #e8eef7;
  border-radius: 14px;
  background: #f8fbff;
}

.rc-process__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
}

.rc-process__icon .rc-icon {
  width: 20px;
  height: 20px;
}

.rc-process__icon--blue { background: #eff6ff; color: #3b82f6; }
.rc-process__icon--green { background: #ecfdf5; color: #16a34a; }
.rc-process__icon--purple { background: #f5f3ff; color: #7c3aed; }
.rc-process__icon--orange { background: #fff7ed; color: #ea580c; }
.rc-process__icon--cyan { background: #ecfeff; color: #0891b2; }
.rc-process__icon--indigo { background: #eef2ff; color: #4f46e5; }

.rc-process__copy {
  min-width: 0;
}

.rc-process__copy span {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--rc-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.rc-process__copy h3 {
  margin: 0;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.rc-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.rc-compare__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.2rem 1.3rem 1.3rem;
}

.rc-compare__col + .rc-compare__col {
  border-left: 1px solid #e8eef7;
}

.rc-compare__col h2 {
  margin: 0 0 0.85rem;
  color: #0b1220;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rc-compare__col ul {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.rc-compare__col li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #334155;
  font-size: 0.875rem;
  line-height: 1.45;
  font-weight: 500;
}

.rc-compare__icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.rc-compare__icon .rc-icon {
  width: 12px;
  height: 12px;
}

.rc-compare__col--yes .rc-compare__icon {
  background: #dcfce7;
  color: #16a34a;
}

.rc-compare__col--no .rc-compare__icon {
  background: #fee2e2;
  color: #dc2626;
}

/* Legal / prose */

.rc-legal__layout {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.rc-toc {
  position: sticky;
  top: calc(var(--rc-header-h) + 16px);
  padding: 1rem 1rem 1.1rem;
  background: #f4f8ff;
}

.rc-toc strong {
  display: block;
  margin-bottom: 0.7rem;
  color: #0b1220;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rc-toc ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rc-toc a {
  display: block;
  padding: 0.28rem 0.4rem;
  border-radius: 8px;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}

.rc-toc a:hover {
  background: #fff;
  color: var(--rc-primary);
}

.rc-prose {
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.rc-prose > *:first-child {
  margin-top: 0;
}

.rc-prose h1,
.rc-prose h2,
.rc-prose h3,
.rc-prose h4 {
  margin: 1.6rem 0 0.55rem;
  color: #0b1220;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  scroll-margin-top: calc(var(--rc-header-h) + 18px);
}

.rc-prose h1,
.rc-prose h2 {
  font-size: 1.15rem;
}

.rc-prose h3 {
  font-size: 1.02rem;
}

.rc-prose p {
  margin: 0 0 0.9rem;
}

.rc-prose ul,
.rc-prose ol {
  margin: 0 0 0.95rem;
  padding-left: 1.2rem;
}

.rc-prose li {
  margin: 0 0 0.35rem;
}

.rc-prose a {
  color: var(--rc-primary);
  font-weight: 700;
}

.rc-prose a:hover {
  color: var(--rc-primary-dark);
}

.rc-prose strong {
  color: #0f172a;
}

.rc-prose img {
  margin: 0.75rem 0 1rem;
  border-radius: 14px;
  border: 1px solid #e8eef7;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.rc-prose figure {
  margin: 0 0 1.15rem;
}

.rc-prose table {
  width: 100%;
  margin: 0 0 1.15rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.rc-prose th,
.rc-prose td {
  padding: 0.55rem 0.7rem;
  border: 1px solid #e8eef7;
  text-align: left;
}

.rc-prose iframe,
.rc-prose video {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0.75rem 0 1rem;
  border: 0;
  border-radius: 14px;
}

.rc-prose form,
.rc-prose input,
.rc-prose select,
.rc-prose textarea,
.rc-prose button {
  pointer-events: none;
}

.rc-prose blockquote {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid #93c5fd;
  background: #f8fbff;
  border-radius: 0 12px 12px 0;
  color: #334155;
}

.rc-prose .rc-note {
  margin: 0 0 1.15rem;
}

.rc-prose .rc-note p {
  margin: 0;
}

.rc-page .rc-faq-banner {
  align-items: flex-start;
}

.rc-page .rc-faq-banner__copy span {
  white-space: normal;
}

/* Blog */

.rc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.25rem;
}

.rc-blog-card {
  overflow: hidden;
  height: 100%;
  transition: transform var(--rc-transition), box-shadow var(--rc-transition), border-color var(--rc-transition);
}

.rc-blog-card:hover {
  transform: translateY(-3px);
  border-color: #dbe7f3;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.rc-blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rc-blog-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #f8fafc;
  overflow: hidden;
}

.rc-blog-card__media img,
.rc-blog-card__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
}

.rc-blog-card__placeholder {
  display: grid;
  place-items: center;
  color: var(--rc-primary);
}

.rc-blog-card__placeholder .rc-icon {
  width: 36px;
  height: 36px;
}

.rc-blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
}

.rc-blog-card__kicker {
  color: var(--rc-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  color: var(--rc-muted);
  font-size: 0.75rem;
  font-weight: 650;
}

.rc-blog-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--rc-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.rc-blog-card h2 {
  margin: 0;
  color: #0b1220;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.rc-blog-card p {
  margin: 0;
  color: var(--rc-muted);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.rc-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.45rem;
  color: var(--rc-primary);
  font-size: 0.8125rem;
  font-weight: 700;
}

.rc-blog-card__link .rc-icon {
  width: 14px;
  height: 14px;
  transition: transform var(--rc-transition);
}

.rc-blog-card:hover .rc-blog-card__link {
  color: var(--rc-primary-dark);
}

.rc-blog-card:hover .rc-blog-card__link .rc-icon {
  transform: translateX(3px);
}

.rc-blog-card--featured {
  height: auto;
}

.rc-blog-card--featured a {
  display: grid;
  grid-template-columns: minmax(260px, 36%) minmax(0, 1fr);
  align-items: stretch;
  min-height: 236px;
}

.rc-blog-card--featured .rc-blog-card__media {
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: auto;
  max-height: none;
  align-self: center;
}

.rc-blog-card--featured .rc-blog-card__body {
  justify-content: center;
  gap: 0.5rem;
  padding: 1.35rem 1.6rem 1.4rem 1.4rem;
}

.rc-blog-card--featured .rc-blog-card__link {
  margin-top: 0.35rem;
  padding-top: 0;
}

.rc-blog-card--featured h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.04em;
}

.rc-blog-card--featured p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.rc-blog__empty {
  max-width: 36rem;
  margin: 0 auto 1.1rem;
  text-align: center;
}

.rc-blog__empty p {
  margin: 0.7rem 0 0;
  color: var(--rc-muted);
}

.rc-blog .rc-faq-banner {
  margin-top: 1.25rem;
}

/* Article */

.rc-article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem 0.35rem 0.45rem;
  border: 1px solid #e8eef7;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.rc-article__back .rc-icon {
  width: 16px;
  height: 16px;
}

.rc-article__back:hover {
  border-color: #dbe7f3;
  color: var(--rc-primary);
}

.rc-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.7fr);
  gap: 1.25rem;
  align-items: start;
}

.rc-article__main {
  overflow: hidden;
}

.rc-article__header {
  margin-bottom: 1.15rem;
}

.rc-article__header h1 {
  margin: 0.7rem 0 0.65rem;
  color: #0b1220;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.22;
}

.rc-article__lead {
  margin: 0;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.65;
}

.rc-article__hero {
  margin: 0 0 1.35rem;
  overflow: hidden;
  border: 1px solid #e8eef7;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.rc-article__hero-chrome {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem 0.8rem 0.45rem;
}

.rc-article__hero-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dbe4f0;
}

.rc-article__hero-chrome span:nth-child(1) { background: #fca5a5; }
.rc-article__hero-chrome span:nth-child(2) { background: #fcd34d; }
.rc-article__hero-chrome span:nth-child(3) { background: #86efac; }

.rc-article__hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: top center;
  border-top: 1px solid #e8eef7;
}

.rc-article__body {
  overflow-x: auto;
}

.rc-article__sidebar {
  align-self: start;
}

@media (max-width: 980px) {
  .rc-about__intro,
  .rc-compare,
  .rc-legal__layout,
  .rc-article__layout,
  .rc-blog-grid,
  .rc-blog-card--featured a {
    grid-template-columns: 1fr;
  }

  .rc-blog-card--featured a {
    min-height: 0;
  }

  .rc-blog-card--featured .rc-blog-card__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
    max-height: 200px;
  }

  .rc-blog-card--featured .rc-blog-card__body {
    padding: 1.1rem 1.15rem 1.2rem;
  }

  .rc-article__sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .rc-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-compare__col + .rc-compare__col {
    border-left: 0;
    border-top: 1px solid #e8eef7;
  }

  .rc-toc {
    position: static;
  }
}

@media (max-width: 640px) {
  .rc-page {
    padding: 1rem 0 1.75rem;
  }

  .rc-page__header h1 {
    font-size: 1.5rem;
  }

  .rc-page__card {
    padding: 1.1rem 1rem;
  }

  .rc-compare {
    padding: 0;
  }

  .rc-compare__col {
    padding: 1.1rem 1rem;
  }

  .rc-process {
    grid-template-columns: 1fr;
  }

  .rc-blog-grid {
    gap: 0.9rem;
  }

  .rc-blog-card--featured .rc-blog-card__body {
    padding: 1rem 1rem 1.1rem;
  }

  .rc-article__hero img {
    height: auto;
    max-height: none;
  }

  .rc-article__sidebar {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* FAQ / help center                                                          */
/* -------------------------------------------------------------------------- */

.rc-help__layout {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1.55fr) minmax(230px, 280px);
  gap: 1.1rem;
  align-items: start;
}

.rc-help-nav {
  display: grid;
  gap: 0.2rem;
  padding: 0.35rem;
}

.rc-help-nav__item {
  width: 100%;
  padding: 0.72rem 0.95rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #64748b;
  text-align: left;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
  transition: background var(--rc-transition), color var(--rc-transition);
}

.rc-help-nav__item:hover {
  color: #0f172a;
  background: #f8fafc;
}

.rc-help-nav__item.is-active {
  background: #eef4ff;
  color: var(--rc-primary);
}

.rc-help-list {
  border: 1px solid #e8eef7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.rc-help-list .rc-faq-item:hover,
.rc-help-list .rc-faq-item.is-open {
  background: #fff;
}

.rc-help-list .rc-faq-item__trigger {
  min-height: 58px;
  padding: 1rem 1.2rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.rc-help-list .rc-faq-item.is-open .rc-faq-item__trigger {
  color: #0b1220;
}

.rc-help-list .rc-faq-item__panel-inner {
  padding: 0 1.2rem;
  padding-bottom: 0;
}

.rc-help-list .rc-faq-item.is-open .rc-faq-item__panel-inner {
  padding-bottom: 1.05rem;
}

.rc-help-item[hidden] {
  display: none !important;
}

.rc-help-item__chevron {
  width: 18px;
  height: 18px;
  color: #64748b;
  flex-shrink: 0;
  transition: transform var(--rc-transition), color var(--rc-transition);
}

.rc-help-item.is-open .rc-help-item__chevron {
  transform: rotate(180deg);
  color: var(--rc-primary);
}

.rc-help-aside {
  display: grid;
  gap: 1rem;
}

.rc-help-card,
.rc-help-articles {
  border: 1px solid #e8eef7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  padding: 1.35rem 1.2rem 1.25rem;
}

.rc-help-card {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(37, 99, 235, 0.14), transparent 46%),
    #f4f7ff;
}

.rc-help-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: #fff;
  color: var(--rc-primary);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.rc-help-card__icon .rc-icon {
  width: 32px;
  height: 32px;
}

.rc-help-card h2,
.rc-help-articles h2 {
  margin: 0 0 0.35rem;
  color: #0b1220;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rc-help-card p {
  margin: 0 0 1rem;
  color: var(--rc-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.rc-help-card .rc-btn,
.rc-help-articles .rc-btn {
  margin-top: 0.25rem;
  color: var(--rc-primary);
}

.rc-help-card .rc-btn:hover,
.rc-help-articles .rc-btn:hover {
  color: #fff;
}

.rc-help-articles ul {
  display: grid;
  gap: 0.15rem;
  margin: 0.7rem 0 1rem;
  padding: 0;
  list-style: none;
}

.rc-help-articles ul a {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0.15rem;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1.4;
}

.rc-help-articles ul a img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top center;
  background: #eef4ff;
  flex-shrink: 0;
}

.rc-help-articles ul a .rc-icon {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  color: var(--rc-primary);
  flex-shrink: 0;
}

.rc-help-articles ul a span {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.rc-help-articles ul a strong {
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 750;
}

.rc-help-articles ul a small {
  color: var(--rc-muted);
  font-size: 0.75rem;
  font-weight: 650;
}

.rc-help-articles ul a:hover,
.rc-help-articles ul a:hover strong {
  color: var(--rc-primary);
}

@media (max-width: 1100px) {
  .rc-help__layout {
    grid-template-columns: minmax(170px, 200px) minmax(0, 1fr);
  }

  .rc-help__layout .rc-help-aside {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .rc-help__layout,
  .rc-help__layout .rc-help-aside {
    grid-template-columns: 1fr;
  }

  .rc-help-nav {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    padding: 0 0 0.35rem;
  }

  .rc-help-nav__item {
    width: auto;
    white-space: nowrap;
  }
}

.rc-templates-page {
  padding-bottom: 3.25rem;
  background-image:
    radial-gradient(circle at 8% 8%, rgba(37, 99, 235, 0.07), transparent 24%),
    radial-gradient(#d7e3f4 1.15px, transparent 1.15px);
  background-size: auto, 18px 18px;
}

.rc-templates-page .rc-container {
  width: min(100% - 2.5rem, 1180px);
}

.rc-templates-intro {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.rc-templates-intro__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: #e8faf4;
  color: #0f766e;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rc-templates-intro__badge .rc-icon {
  width: 13px;
  height: 13px;
  color: #14b8a6;
}

.rc-templates-intro h1 {
  margin: 0 0 0.4rem;
  color: #0b1220;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.rc-templates-intro p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--rc-muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .rc-templates-intro p {
    font-size: 0.9375rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Template gallery                                                           */
/* -------------------------------------------------------------------------- */

.rc-gallery {
  --rc-gallery-accent: var(--rc-primary);
}

.rc-gallery-filters {
  position: sticky;
  top: calc(var(--rc-header-h) + 10px);
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.35rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid #e6eef8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}

.rc-gallery-filters__group {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  min-height: 42px;
}

.rc-gallery-filters__label {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.rc-gallery-select {
  position: relative;
  display: inline-flex;
  min-width: 176px;
}

.rc-gallery-select select {
  appearance: none;
  width: 100%;
  min-height: 42px;
  padding: 0.4rem 2.2rem 0.4rem 0.95rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.rc-gallery-select .rc-icon {
  position: absolute;
  top: 50%;
  right: 0.85rem;
  width: 16px;
  height: 16px;
  color: #94a3b8;
  pointer-events: none;
  transform: translateY(-50%);
}

.rc-gallery-select select:hover {
  border-color: #cbd5e1;
}

.rc-gallery-select select:focus-visible,
.rc-gallery-seg__btn:focus-within,
.rc-gallery-colors__swatch:focus-within,
.rc-gallery-card__link:focus-visible,
.rc-gallery__more:focus-visible,
.rc-gallery-filters__apply:focus-visible {
  outline: 2px solid var(--rc-primary);
  outline-offset: 2px;
}

.rc-gallery-seg {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
}

.rc-gallery-seg__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--rc-transition), color var(--rc-transition), box-shadow var(--rc-transition);
}

.rc-gallery-seg__btn input,
.rc-gallery-colors__swatch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.rc-gallery-seg__btn:hover {
  color: #0f172a;
}

.rc-gallery-seg__btn.is-active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}

.rc-gallery-colors {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.rc-gallery-colors__swatch {
  position: relative;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 50%;
  background: var(--rc-swatch, #cbd5e1);
  cursor: pointer;
  transition: transform var(--rc-transition), box-shadow var(--rc-transition);
}

.rc-gallery-colors__swatch:hover {
  transform: scale(1.1);
}

.rc-gallery-colors__swatch.is-active {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px var(--rc-gallery-accent, var(--rc-primary));
}

.rc-gallery-colors__swatch.is-active::after {
  content: "";
  width: 5px;
  height: 8px;
  margin-top: -1px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.rc-gallery-colors__swatch.is-active[data-neutral="1"]::after,
.rc-gallery-colors__swatch.is-active:has(input[data-neutral="1"])::after {
  border-color: #0f172a;
}

.rc-gallery-filters__apply {
  min-height: 42px;
  padding: 0.4rem 0.95rem;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #fff;
  color: var(--rc-primary);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
}

.rc-gallery-filters__apply[hidden] {
  display: none !important;
}

.rc-gallery__count {
  margin: 0 0 0.9rem;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 650;
}

.rc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}

.rc-gallery-card {
  min-width: 0;
  border: 1px solid var(--rc-border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 20px rgba(15, 23, 42, 0.05);
  transition: box-shadow var(--rc-transition), transform var(--rc-transition), border-color var(--rc-transition);
}

.rc-gallery-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.rc-gallery-card__preview {
  position: relative;
  aspect-ratio: 491 / 549;
  overflow: hidden;
  background: var(--rc-surface-alt);
  border-bottom: 1px solid var(--rc-border);
}

.rc-gallery-card__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #fff;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.rc-gallery-card__check {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: none;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--rc-gallery-accent);
  color: #fff;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.28);
}

.rc-gallery-card__check .rc-icon {
  width: 13px;
  height: 13px;
}

.rc-gallery-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.15rem 1rem 1.25rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 46%, rgba(15, 23, 42, 0.62) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--rc-ease);
}

.rc-gallery-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 0.8125rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: auto;
  transition:
    background 180ms var(--rc-ease),
    color 180ms var(--rc-ease),
    box-shadow 180ms var(--rc-ease),
    transform 220ms var(--rc-ease),
    opacity 220ms var(--rc-ease);
}

.rc-gallery-card.is-selected .rc-gallery-card__check {
  display: grid;
}

.rc-gallery-card:hover,
.rc-gallery-card:focus-within {
  border-color: #cbd5e1;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.rc-gallery-card:hover .rc-gallery-card__overlay,
.rc-gallery-card:focus-within .rc-gallery-card__overlay {
  opacity: 1;
}

.rc-gallery-card:hover .rc-gallery-card__cta,
.rc-gallery-card:focus-within .rc-gallery-card__cta {
  opacity: 1;
  transform: translateY(0);
  background: #2563eb;
  color: #fff;
}

.rc-gallery-card:hover .rc-gallery-card__cta:hover,
.rc-gallery-card:focus-within .rc-gallery-card__cta:hover {
  color: #000;
}

.rc-gallery-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.85rem 0.95rem 0.95rem;
  background: #fff;
}

.rc-gallery-card__name {
  margin: 0;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.rc-gallery-card__category {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.rc-gallery-card__category--accent {
  background: #eff6ff;
  color: var(--rc-primary);
}

@media (hover: none) {
  .rc-gallery-card__overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 68%, rgba(15, 23, 42, 0.52) 100%);
  }

  .rc-gallery-card__cta {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-gallery-card,
  .rc-gallery-card__overlay,
  .rc-gallery-card__cta {
    transition: none;
    transform: none;
  }
}

.rc-gallery__empty {
  margin: 1.5rem 0 0;
  color: var(--rc-muted);
  text-align: center;
}

.rc-gallery__footer {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.rc-gallery__more[hidden],
.rc-gallery-card[hidden],
.rc-gallery__empty[hidden],
.rc-gallery__count[hidden] {
  display: none !important;
}

.rc-gallery__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 220px;
  min-height: 46px;
  padding: 0.55rem 1.2rem;
  border: 1.5px solid #bfdbfe;
  border-radius: 12px;
  background: #fff;
  color: var(--rc-primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--rc-transition), border-color var(--rc-transition), box-shadow var(--rc-transition);
}

.rc-gallery__more .rc-icon {
  width: 16px;
  height: 16px;
}

.rc-gallery__more:hover {
  background: var(--rc-primary-soft);
  border-color: var(--rc-primary);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.08);
}

@media (max-width: 900px) {
  .rc-gallery-filters {
    position: static;
    padding: 0.85rem 0.9rem;
  }

  .rc-gallery-filters__group--colors {
    width: 100%;
    justify-content: space-between;
  }

  .rc-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.85rem;
  }
}

@media (max-width: 640px) {
  .rc-templates-page .rc-container {
    width: min(100% - 1.5rem, 1180px);
  }

  .rc-gallery-filters__group,
  .rc-gallery-select {
    width: 100%;
  }

  .rc-gallery-seg {
    width: 100%;
  }

  .rc-gallery-seg__btn {
    flex: 1 1 0;
  }

  .rc-gallery-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .rc-gallery-card__overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 68%, rgba(15, 23, 42, 0.52) 100%);
  }

  .rc-gallery-card__cta {
    opacity: 1;
    transform: none;
  }

  .rc-gallery__more {
    width: 100%;
  }
}

.rc-blog-pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.75rem 0 0;
}

.rc-blog-pagination a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.rc-blog-pagination a:hover {
  text-decoration: underline;
}

.rc-summary-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.rc-summary-examples h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.rc-summary-examples ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #334155;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .rc-summary-examples {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* Mobile / tablet polish — keep important sections, hide decorative ones     */
/* -------------------------------------------------------------------------- */

html {
  overflow-x: clip;
}

.rc-body {
  overflow-x: clip;
}

.rc-body.rc-nav-locked {
  overflow: hidden;
}

@media (max-width: 900px) {
  .rc-hero {
    padding-block: 1.75rem 1.5rem;
  }

  .rc-hero__title {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .rc-hero__title br {
    display: none;
  }

  .rc-resume-card {
    width: min(100%, 420px);
  }

  .rc-stats {
    margin-top: -1.5rem;
  }

  .rc-stat {
    padding: 1rem 0.85rem;
    gap: 0.65rem;
  }

  .rc-feature-card {
    padding: 1.1rem 1rem;
  }

  .rc-how__card {
    padding: 1.35rem 1rem 1.5rem;
  }

  .rc-footer {
    padding-top: 2rem;
  }
}

@media (max-width: 720px) {
  .rc-mobile-hide {
    display: none !important;
  }

  :root {
    --rc-header-h: 60px;
    --rc-section-y: 2.15rem;
  }

  .rc-header .rc-logo__img {
    height: 40px;
  }

  .rc-body .rc-logo--footer .rc-logo__img {
    height: 40px;
  }

  .rc-nav-toggle {
    width: 40px;
    height: 40px;
  }

  .rc-hero__visual,
  .rc-score-toast {
    display: none !important;
  }

  .rc-hero {
    padding-block: 1.35rem 1.15rem;
  }

  .rc-hero__subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }

  .rc-social-proof {
    gap: 0.7rem;
    flex-wrap: nowrap;
  }

  .rc-social-proof__text {
    font-size: 0.75rem;
  }

  .rc-stats {
    margin-top: 0;
    padding: 0 0 0.25rem;
  }

  .rc-stat__icon {
    width: 38px;
    height: 38px;
  }

  .rc-stat__icon .rc-icon {
    width: 18px;
    height: 18px;
  }

  .rc-stat__value {
    font-size: 1.05rem;
  }

  .rc-stat__caption {
    font-size: 0.72rem;
  }

  .rc-section__head {
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 1.1rem;
  }

  .rc-section__head--center {
    align-items: center;
    text-align: center;
  }

  .rc-section__head:not(.rc-section__head--center) .rc-section__link {
    margin-left: auto;
  }

  .rc-section__title {
    font-size: 1.28rem;
  }

  .rc-section__title--sm {
    font-size: 1.12rem;
  }

  .rc-section__link {
    font-size: 0.78rem;
  }

  .rc-how__card {
    padding: 1.25rem 1rem 1.35rem;
  }

  .rc-how .rc-section__head--center {
    margin-bottom: 1.15rem;
  }

  .rc-how .rc-section__title {
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
  }

  .rc-steps {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .rc-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    column-gap: 0.85rem;
    text-align: left;
    padding: 0.85rem 0.9rem;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    background: #f8fbff;
  }

  .rc-step__icon {
    width: 46px;
    height: 46px;
    margin: 0;
    grid-row: 1 / span 2;
  }

  .rc-step__icon svg {
    width: 20px;
    height: 20px;
  }

  .rc-step h3 {
    margin: 0.1rem 0 0.2rem;
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .rc-step p {
    margin: 0;
    max-width: none;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .rc-feature-card h3 {
    font-size: 0.92rem;
  }

  .rc-feature-card p {
    font-size: 0.8rem;
  }

  .rc-faq__lead {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .rc-footer__grid {
    gap: 1.25rem;
  }

  .rc-footer__bottom {
    padding: 1rem 0;
    font-size: 0.78rem;
  }

  /* Auth */
  .rc-auth,
  .rc-auth--wide {
    min-height: 0;
    align-items: flex-start;
    padding: 1.15rem 0.85rem 1.75rem;
  }

  .rc-auth__card,
  .rc-auth__card--wide {
    padding: 1.35rem 1.05rem 1.2rem;
    border-radius: 18px;
  }

  .rc-auth__title {
    font-size: 1.4rem;
  }

  .rc-auth__subtitle,
  .rc-auth__hint {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .rc-auth__hint {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .rc-icon-badge {
    width: 48px;
    height: 48px;
    margin-bottom: 0.85rem;
  }

  .rc-field__input,
  .rc-field__textarea,
  .rc-gallery-select select,
  .rc-newsletter input {
    font-size: 16px;
  }

  .rc-captcha {
    grid-template-columns: 1fr;
  }

  .rc-captcha__image {
    width: 100%;
    min-width: 0;
    grid-column: 1;
    grid-row: auto;
  }

  /* Contact */
  .rc-contact {
    min-height: 0;
    padding: 1rem 0 1.5rem;
  }

  .rc-contact__header {
    margin-bottom: 0.9rem;
  }

  .rc-contact__header .rc-icon-badge {
    width: 42px;
    height: 42px;
    margin-bottom: 0.4rem;
  }

  .rc-contact__grid,
  .rc-form-grid {
    grid-template-columns: 1fr;
  }

  .rc-contact__form-card {
    padding: 1.05rem 0.95rem 1.1rem;
  }

  .rc-faq-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.9rem 1rem;
  }

  .rc-faq-banner__link {
    white-space: normal;
  }

  /* Inner pages */
  .rc-page {
    min-height: 0;
    padding: 1rem 0 1.6rem;
  }

  .rc-page__header {
    margin-bottom: 1rem;
  }

  .rc-page__header .rc-icon-badge {
    width: 42px;
    height: 42px;
    margin-bottom: 0.4rem;
  }

  .rc-page__header h1,
  .rc-contact__header h1 {
    font-size: 1.45rem;
  }

  .rc-page__header p,
  .rc-contact__header p {
    font-size: 0.875rem;
  }

  .rc-about__intro,
  .rc-compare,
  .rc-legal__layout,
  .rc-article__layout,
  .rc-help__layout,
  .rc-help__layout .rc-help-aside {
    grid-template-columns: 1fr;
  }

  .rc-process {
    grid-template-columns: 1fr;
  }

  .rc-prose {
    font-size: 0.9rem;
    overflow-wrap: anywhere;
  }

  .rc-prose table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rc-article__sidebar {
    grid-template-columns: 1fr;
  }

  .rc-article__header h1 {
    font-size: 1.4rem;
  }

  .rc-article__lead {
    font-size: 0.9375rem;
  }

  .rc-blog-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .rc-blog-card--featured p {
    -webkit-line-clamp: 4;
  }

  /* FAQ tabs */
  .rc-help-nav {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding: 0 0 0.2rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .rc-help-nav::-webkit-scrollbar {
    display: none;
  }

  .rc-help-nav__item {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.55rem 0.8rem;
    font-size: 0.8125rem;
  }

  .rc-help-list .rc-faq-item__trigger {
    min-height: 52px;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }

  /* Templates gallery */
  .rc-templates-page .rc-container {
    width: min(100% - 1.25rem, 1180px);
  }

  .rc-gallery-filters {
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding: 0.8rem 0.85rem;
  }

  .rc-gallery-filters__label {
    min-width: 3.5rem;
  }

  .rc-gallery-filters__group,
  .rc-gallery-select,
  .rc-gallery-seg {
    width: 100%;
  }

  .rc-gallery-seg__btn {
    flex: 1 1 0;
    padding: 0.28rem 0.45rem;
    font-size: 0.75rem;
  }

  .rc-gallery-filters__group--colors {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .rc-gallery-grid {
    grid-template-columns: 1fr;
    max-width: none;
    margin-inline: 0;
  }

  .rc-gallery-card__cta {
    min-width: 0;
    width: calc(100% - 0.5rem);
  }

  .rc-g-recaptcha,
  .g-recaptcha {
    transform: scale(0.86);
    transform-origin: left top;
  }
}

@media (max-width: 360px) {
  .rc-container {
    width: min(100% - 1.15rem, var(--rc-container));
  }

  .rc-hero__title {
    font-size: 1.55rem;
  }

  .rc-stats__bar,
  .rc-feature-grid,
  .rc-steps,
  .rc-profession-grid {
    grid-template-columns: 1fr;
  }

  .rc-stat {
    border-right: 0;
  }

  .rc-stat:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--rc-border-soft);
  }

  .rc-stat:last-child {
    border-bottom: 0;
  }

  .rc-gallery-filters__label {
    display: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Resume examples gallery                                                    */
/* -------------------------------------------------------------------------- */

.rc-examples-page,
.rc-example-page,
.rc-article {
  padding-bottom: 3.25rem;
  background-image:
    radial-gradient(circle at 8% 8%, rgba(37, 99, 235, 0.07), transparent 24%),
    radial-gradient(#d7e3f4 1.15px, transparent 1.15px);
  background-size: auto, 18px 18px;
}

.rc-examples-page {
  padding-top: 1.75rem;
}

.rc-examples-page .rc-container,
.rc-example-page .rc-container,
.rc-article .rc-container {
  width: min(100% - 2.5rem, 1180px);
}

.rc-examples-intro {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0 0 1.15rem;
}

.rc-examples-intro__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.rc-examples-intro__copy {
  min-width: 0;
  max-width: 40rem;
}

.rc-examples-intro__kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.7rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: #e8faf4;
  color: #0f766e;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rc-examples-intro h1 {
  margin: 0;
  color: #0b1220;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.rc-examples-intro__subtitle {
  margin: 0;
  color: var(--rc-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  white-space: nowrap;
}

.rc-examples-intro__note {
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  padding: 0.55rem 0.85rem;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.rc-examples-intro__note .rc-icon {
  width: 16px;
  height: 16px;
  margin-top: 0.05rem;
}

.rc-examples-intro__note p {
  font-size: 0.78rem;
}

.rc-examples-toolbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 0.5rem;
  padding: 0.35rem;
  border: 1px solid #e8eef7;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
}

.rc-examples-search,
.rc-examples-select {
  position: relative;
  display: flex;
  align-items: center;
}

.rc-examples-search .rc-icon,
.rc-examples-select .rc-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  color: var(--rc-muted);
  pointer-events: none;
}

.rc-examples-search .rc-icon {
  left: 0.9rem;
}

.rc-examples-select .rc-icon {
  right: 0.8rem;
}

.rc-examples-search input,
.rc-examples-select select {
  height: 44px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #f8fafc;
  color: var(--rc-ink);
  font-family: inherit;
  font-size: 0.9rem;
  transition: background var(--rc-transition), border-color var(--rc-transition), box-shadow var(--rc-transition);
}

.rc-examples-search input {
  width: 220px;
  padding: 0 0.9rem 0 2.4rem;
}

.rc-examples-select select {
  appearance: none;
  width: 168px;
  min-width: 168px;
  padding: 0 2.2rem 0 0.95rem;
  cursor: pointer;
}

.rc-examples-search input:hover,
.rc-examples-select select:hover {
  background: #fff;
  border-color: #e2e8f0;
}

.rc-examples-search input:focus-visible,
.rc-examples-select select:focus-visible,
.rc-examples-tabs__item:focus-visible,
.rc-examples-card__link:focus-visible,
.rc-examples__more:focus-visible,
.rc-example-back:focus-visible {
  outline: 2px solid var(--rc-primary);
  outline-offset: 2px;
}

.rc-examples-search input:focus,
.rc-examples-select select:focus {
  background: #fff;
  border-color: #bfdbfe;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.rc-examples-toolbar__apply {
  height: 44px;
  padding: 0 1rem;
  border: 0;
  border-radius: 12px;
  background: var(--rc-primary);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.rc-examples-tabs {
  position: sticky;
  top: calc(var(--rc-header-h) + 8px);
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0.55rem 0;
  background: linear-gradient(180deg, rgba(247, 249, 255, 0.94) 70%, rgba(247, 249, 255, 0.72));
  backdrop-filter: blur(14px);
}

.rc-examples-tabs__item,
.rc-examples-more summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  color: #475569;
  border: 1px solid #e8eef7;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  transition:
    background var(--rc-transition),
    color var(--rc-transition),
    border-color var(--rc-transition),
    box-shadow var(--rc-transition),
    transform var(--rc-transition);
}

.rc-examples-tabs__item .rc-icon,
.rc-examples-more__item .rc-icon {
  width: 14px;
  height: 14px;
  color: currentColor;
  opacity: 0.78;
}

.rc-body a.rc-examples-tabs__item.is-active {
  background: var(--rc-primary);
  border-color: var(--rc-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.rc-examples-more {
  position: relative;
}

.rc-examples-more summary {
  list-style: none;
  white-space: nowrap;
}

.rc-examples-more summary::-webkit-details-marker {
  display: none;
}

.rc-examples-more summary .rc-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.18s ease;
}

.rc-examples-more[open] summary .rc-icon {
  transform: rotate(180deg);
}

.rc-examples-more.is-open summary,
.rc-examples-more[open] summary {
  color: var(--rc-primary);
  border-color: #bfdbfe;
  background: #eff6ff;
}

.rc-examples-more.is-active summary {
  background: var(--rc-primary);
  border-color: var(--rc-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.rc-examples-more.is-active summary .rc-icon {
  color: #fff;
}

.rc-body a.rc-examples-tabs__item:hover,
.rc-examples-more summary:hover {
  border-color: #bfdbfe;
  color: var(--rc-primary);
  background: #eff6ff;
  transform: translateY(-1px);
}

.rc-body a.rc-examples-tabs__item.is-active:hover,
.rc-examples-more.is-active summary:hover {
  background: var(--rc-primary-dark);
  border-color: var(--rc-primary-dark);
  color: #fff;
}

.rc-examples-more summary:hover .rc-icon,
.rc-examples-more.is-active summary:hover .rc-icon {
  color: currentColor;
}

.rc-examples-more__menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 30;
  min-width: 240px;
  max-height: min(22rem, 60vh);
  overflow-y: auto;
  padding: 0.4rem;
  border: 1px solid #e8eef7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.rc-examples-more__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 0.75rem;
  border-radius: 10px;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 650;
  text-decoration: none;
}

.rc-examples-more__item:hover {
  background: #f8fafc;
  color: var(--rc-ink);
}

.rc-examples-more__item.is-active {
  background: #eff6ff;
  color: var(--rc-primary);
}

.rc-examples-more__item.is-active::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.rc-examples__count {
  margin: 0 0 0.95rem;
  color: var(--rc-muted);
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.rc-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.rc-examples-card {
  --rc-example-accent: var(--rc-primary);
  border: 1px solid #e8eef7;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition:
    transform 220ms var(--rc-ease),
    box-shadow 220ms var(--rc-ease),
    border-color 220ms var(--rc-ease);
}

.rc-examples-card:hover,
.rc-examples-card:focus-within {
  z-index: 1;
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--rc-example-accent) 38%, #e8eef7);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.rc-examples-card[hidden] {
  display: none;
}

.rc-examples-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.rc-examples-card__preview {
  position: relative;
  height: 228px;
  overflow: hidden;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--rc-example-accent) 10%, #f8fafc) 0%, #f8fafc 48%);
}

.rc-examples-card__preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

.rc-examples-card__badge {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0.15rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--rc-example-accent) 12%, #fff);
  color: var(--rc-example-accent);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rc-examples-card__scale {
  width: 210%;
  transform: scale(0.476);
  transform-origin: top left;
  pointer-events: none;
  transition: transform 420ms var(--rc-ease);
}

.rc-examples-card:hover .rc-examples-card__scale,
.rc-examples-card:focus-within .rc-examples-card__scale {
  transform: scale(0.476) translateY(-16px);
}

.rc-examples-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.95rem 1.1rem 1.1rem;
}

.rc-examples-card__body h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.rc-examples-card__body p {
  margin: 0;
  color: var(--rc-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.rc-examples-card__sep {
  margin: 0 0.28rem;
  color: #cbd5e1;
}

.rc-examples-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.7rem;
  color: var(--rc-primary);
  font-size: 0.82rem;
  font-weight: 750;
}

.rc-examples-card__cta .rc-icon {
  width: 14px;
  height: 14px;
  transition: transform 180ms var(--rc-ease);
}

.rc-examples-card:hover .rc-examples-card__cta,
.rc-examples-card:focus-within .rc-examples-card__cta {
  color: var(--rc-primary-dark);
}

.rc-examples-card:hover .rc-examples-card__cta .rc-icon,
.rc-examples-card:focus-within .rc-examples-card__cta .rc-icon {
  transform: translateX(3px);
}

.rc-examples__empty {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  margin: 0.35rem 0 0;
  padding: 2.4rem 1.25rem;
  border: 1px dashed #d7e3f4;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--rc-muted);
  text-align: center;
}

.rc-examples__empty .rc-icon {
  width: 28px;
  height: 28px;
  color: var(--rc-primary);
}

.rc-examples__empty p {
  margin: 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.rc-examples__empty[hidden] {
  display: none;
}

.rc-examples__footer {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.rc-examples__more[hidden] {
  display: none;
}

.rc-examples__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.3rem;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #fff;
  color: var(--rc-primary);
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
  transition:
    background var(--rc-transition),
    color var(--rc-transition),
    border-color var(--rc-transition),
    box-shadow var(--rc-transition);
}

.rc-examples__more .rc-icon {
  width: 16px;
  height: 16px;
}

.rc-examples__more:hover {
  background: var(--rc-primary);
  border-color: var(--rc-primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.rc-example-doc {
  --rc-example-accent: var(--rc-primary);
  box-sizing: border-box;
  width: 100%;
  padding: 1.35rem 1.45rem 1.6rem;
  background: #fff;
  color: #0f172a;
  font-size: 0.78rem;
  line-height: 1.45;
}

.rc-example-doc--full {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  font-size: 0.92rem;
}

.rc-example-doc__header {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.95rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--rc-example-accent);
}

.rc-example-doc__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--rc-example-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}

.rc-example-doc__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rc-example-doc--full .rc-example-doc__name {
  font-size: 1.45rem;
}

.rc-example-doc__role {
  margin: 0.1rem 0 0;
  color: var(--rc-example-accent);
  font-weight: 750;
}

.rc-example-doc__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  margin: 0.25rem 0 0;
  color: #64748b;
  font-size: 0.75rem;
}

.rc-example-doc__section {
  margin-top: 0.85rem;
}

.rc-example-doc__section h3 {
  margin: 0 0 0.4rem;
  color: var(--rc-example-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-example-doc__section p,
.rc-example-doc__job p {
  margin: 0 0 0.35rem;
}

.rc-example-doc__job + .rc-example-doc__job {
  margin-top: 0.55rem;
}

.rc-example-doc__job-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
}

.rc-example-doc__job-head span {
  color: #64748b;
  white-space: nowrap;
  font-size: 0.75rem;
}

.rc-example-doc ul {
  margin: 0.2rem 0 0;
  padding-left: 1.05rem;
}

.rc-example-doc li + li {
  margin-top: 0.2rem;
}

.rc-example-doc--sidebar .rc-example-doc__header {
  grid-column: 1 / -1;
  background: var(--rc-example-accent);
  color: #fff;
  margin: -1.35rem -1.45rem 0.9rem;
  padding: 1.15rem 1.45rem 1rem;
  border-bottom: 0;
}

.rc-example-doc--sidebar .rc-example-doc__role,
.rc-example-doc--sidebar .rc-example-doc__contact {
  color: rgba(255, 255, 255, 0.86);
}

.rc-example-doc--sidebar .rc-example-doc__avatar {
  background: rgba(255, 255, 255, 0.18);
}

.rc-example-doc--modern .rc-example-doc__header {
  border-bottom: 0;
  background: linear-gradient(90deg, var(--rc-example-accent), #60a5fa);
  color: #fff;
  margin: -1.35rem -1.45rem 1rem;
  padding: 1.2rem 1.45rem;
  border-radius: 0;
}

.rc-example-doc--modern .rc-example-doc__role,
.rc-example-doc--modern .rc-example-doc__contact {
  color: rgba(255, 255, 255, 0.9);
}

.rc-example-doc--split .rc-example-doc__header {
  border-bottom-width: 6px;
}

.rc-example-doc--minimal .rc-example-doc__header {
  border-bottom: 1px solid #e2e8f0;
}

.rc-example-doc--minimal .rc-example-doc__avatar {
  display: none;
}

.rc-example-back {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--rc-muted);
  font-weight: 700;
  text-decoration: none;
}

.rc-example-back .rc-icon {
  width: 16px;
  height: 16px;
}

.rc-example-back:hover {
  color: var(--rc-primary);
}

.rc-example-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.7fr);
  gap: 1.25rem;
  align-items: start;
}

.rc-example-aside__card,
.rc-example-related {
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.rc-example-aside__kicker {
  margin: 0 0 0.35rem;
  color: var(--rc-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rc-example-aside h1,
.rc-example-related h2 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.rc-example-aside__meta {
  margin: 0 0 0.7rem;
  color: var(--rc-muted);
  font-weight: 650;
}

.rc-example-aside__card p {
  color: var(--rc-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.rc-example-aside__cta {
  margin-top: 0.85rem;
  width: 100%;
  justify-content: center;
}

.rc-example-aside__cta .rc-icon {
  width: 15px;
  height: 15px;
  margin-left: 0.3rem;
}

.rc-example-related {
  margin-top: 1rem;
}

.rc-example-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.rc-example-related a {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.45rem;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
}

.rc-example-related a:hover {
  background: #f8fafc;
}

.rc-example-related__preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--rc-example-accent, var(--rc-primary));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.rc-example-related strong,
.rc-example-related em {
  display: block;
}

.rc-example-related em {
  color: var(--rc-muted);
  font-style: normal;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .rc-examples-intro,
  .rc-example-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .rc-examples-intro {
    align-items: stretch;
  }

  .rc-examples-intro__top {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .rc-examples-intro__copy {
    max-width: none;
  }

  .rc-examples-intro__subtitle {
    white-space: normal;
  }

  .rc-examples-intro__note {
    width: 100%;
    border-radius: 14px;
  }

  .rc-examples-toolbar {
    flex-wrap: wrap;
    width: 100%;
  }

  .rc-examples-search,
  .rc-examples-select,
  .rc-examples-search input,
  .rc-examples-select select {
    width: 100%;
  }

  .rc-examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rc-examples-page .rc-container,
  .rc-example-page .rc-container,
  .rc-article .rc-container {
    width: min(100% - 1.25rem, 1180px);
  }

  .rc-examples-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: -0.2rem;
    padding: 0.45rem 0.2rem 0.55rem;
    -webkit-overflow-scrolling: touch;
  }

  .rc-examples-tabs__item,
  .rc-examples-more summary {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .rc-examples-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-examples-card,
  .rc-examples-card__scale,
  .rc-examples-card__cta .rc-icon,
  .rc-examples-tabs__item,
  .rc-examples-more summary {
    transition: none;
  }

  .rc-examples-card:hover,
  .rc-examples-card:focus-within,
  .rc-examples-card:hover .rc-examples-card__scale,
  .rc-examples-card:focus-within .rc-examples-card__scale {
    transform: none;
  }
}

@media print {
  .rc-header,
  .rc-footer,
  .rc-example-back,
  .rc-example-aside {
    display: none !important;
  }

  .rc-example-layout {
    display: block;
  }

  .rc-example-doc--full {
    box-shadow: none;
    border: 0;
  }
}
