:root {
  /* RPS_DESIGN_TOKENS_START */
  --bg: #0d1726;
  --bg-2: #132238;
  --surface: #ffffff;
  --surface-soft: #f4f8fc;
  --text: #132033;
  --muted: #617187;
  --line: #dce6f1;
  --brand: #173f7a;
  --brand-2: #1f6ce0;
  --accent: #0f7b6c;
  --accent-soft: #e8f7f3;
  --shadow: 0 24px 70px rgba(10, 28, 52, 0.10);
  --shadow-soft: 0 18px 44px rgba(10, 28, 52, 0.08);
  --radius: 22px;
  --radius-sm: 18px;
  /* RPS_DESIGN_TOKENS_END */
}

/* RPS_BASE_START */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

/* RPS_BASE_END */

/* RPS_LAYOUT_HELPERS_START */

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.center {
  text-align: center;
}

.aligned-top {
  align-items: start;
}

.aligned-center {
  align-items: center;
}

.right-align {
  justify-content: flex-end;
}

.stack-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* RPS_LAYOUT_HELPERS_END */

/* RPS_HEADER_START */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 230, 241, 0.8);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.logo span {
  color: var(--brand-2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: #37475e;
  font-weight: 600;
}

.nav a:hover {
  color: var(--brand-2);
}

.nav-mobile-cta {
  display: none;
}

/* RPS_HEADER_END */

/* RPS_BUTTONS_START */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}

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

.btn-sm {
  padding: 10px 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary,
.btn-primary:link,
.btn-primary:visited {
  color: #ffffff !important;
}

.btn-secondary {
  background: #f4f8fc;
  color: var(--brand);
  border: 1px solid var(--line);
}

.btn-outline {
  border: 1px solid #bfd2f3;
  color: var(--brand);
  background: #f7fbff;
}

.btn-full {
  width: 100%;
}

/* RPS_BUTTONS_END */

/* RPS_HERO_START */

.hero {
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at top right, rgba(31, 108, 224, 0.12), transparent 34%),
    radial-gradient(circle at left center, rgba(15, 123, 108, 0.08), transparent 28%),
    linear-gradient(180deg, #f9fbff, #fff);
}

.page-hero {
  padding: 78px 0 64px;
  background:
    radial-gradient(circle at top right, rgba(15, 123, 108, 0.10), transparent 30%),
    radial-gradient(circle at left center, rgba(31, 108, 224, 0.08), transparent 24%),
    linear-gradient(180deg, #f9fbff, #fff);
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.hero-copy,
.page-hero p,
.section p,
.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow,
.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-actions,
.inline-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 22px;
}

.centered-actions {
  justify-content: center;
}

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #415066;
}

.hero-points li::before {
  content: '•';
  color: var(--accent);
  margin-right: 10px;
  font-weight: 800;
}

/* RPS_HERO_END */

/* RPS_CARDS_START */

.metric-card,
.info-card,
.check-card,
.form-card,
.question-card,
.cta-panel {
  background: #fff;
  border: 1px solid #e6edf6;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 28px;
}

.card-label {
  text-transform: uppercase;
  color: #6a7b91;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 800;
}

.metric-card h3 {
  margin: 8px 0 18px;
  font-size: 1.85rem;
  line-height: 1.12;
}

.card-list {
  display: grid;
  gap: 16px;
}

.card-list > div {
  background: var(--surface-soft);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 5px;
}

.card-list span {
  color: var(--muted);
}

.info-card,
.check-card {
  padding: 28px;
}

.info-card h3,
.check-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.22rem;
}

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

.cta-panel {
  padding: 30px;
}

/* RPS_CARDS_END */

/* RPS_TRUST_STRIP_START */

.trust-strip {
  background: #fff;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

.trust-items {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: center;
  text-align: center;
  color: #53647a;
  font-weight: 700;
}

/* RPS_TRUST_STRIP_END */

/* RPS_SECTIONS_START */

.section {
  padding: 84px 0;
}

.section-light {
  background: #fff;
}

.section-dark {
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  color: #fff;
}

.section-dark .section-tag,
.section-dark h2,
.section-dark p {
  color: #fff;
}

.section-dark p {
  opacity: 0.84;
}

.alt-bg {
  background: var(--surface-soft);
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.card-grid {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

/* RPS_SECTIONS_END */

/* RPS_QUESTIONS_CHECKLISTS_START */

.question-stack {
  display: grid;
  gap: 16px;
}

.question-card {
  padding: 22px 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.check-list {
  display: grid;
  gap: 18px;
}

.check-list > div {
  padding: 18px 20px;
  border: 1px solid #e1ebf5;
  border-radius: 18px;
  background: #fff;
  display: grid;
  gap: 5px;
}

.check-list.simple > div {
  font-weight: 700;
}

.check-list span {
  color: var(--muted);
}

/* RPS_QUESTIONS_CHECKLISTS_END */

/* RPS_FORMS_START */

.form-card {
  padding: 28px;
}

.form-note {
  margin: 0 0 18px;
  color: var(--muted);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #334155;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #d7e0ec;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #93b6f1;
  box-shadow: 0 0 0 4px rgba(31, 108, 224, 0.10);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.optional {
  color: #7b8ca2;
  font-weight: 500;
}

.micro-copy {
  margin-top: 12px;
  color: #6a7b91;
  font-size: 0.92rem;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #ebfff8;
  color: #106b59;
  border: 1px solid #b7ead9;
}

.form-status.is-error {
  background: #fff2f0;
  color: #b42318;
  border: 1px solid #f0c3bb;
}

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

/* RPS_FORMS_END */

/* RPS_CALCULATOR_START */

#calculatorResult {
  background:
    radial-gradient(circle at top right, rgba(31, 108, 224, 0.08), transparent 36%),
    #fff;
}

#calculatorResult h3 {
  color: var(--brand);
  letter-spacing: -0.04em;
}

#monthlyVolume,
#effectiveRate {
  font-variant-numeric: tabular-nums;
}

/* RPS_CALCULATOR_END */

/* RPS_PATHWAYS_CLUSTERS_START */

.pathway-links {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.pathway-links li {
  margin: 0;
}

.pathway-links a {
  display: inline-block;
  color: var(--brand);
  font-weight: 700;
  line-height: 1.35;
}

.pathway-links a:hover {
  color: var(--brand-2);
}

.info-card .pathway-links {
  border-top: 1px solid #e6edf6;
  padding-top: 16px;
}

/* RPS_PATHWAYS_CLUSTERS_END */

/* RPS_FOOTER_START */

.site-footer {
  background: #0d1524;
  color: rgba(255, 255, 255, 0.84);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 28px;
}

.site-footer h4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.footer-logo {
  color: #fff;
}

/* RPS_FOOTER_END */

/* RPS_BLOG_ARTICLE_START */

.article-wrap {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--brand);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 16px;
}

.article-content {
  font-size: 1.08rem;
  color: var(--text);
}

.article-content h2 {
  margin: 56px 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.article-content h3 {
  margin: 30px 0 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.article-content p {
  margin: 0 0 22px;
  color: var(--muted);
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px 22px;
  color: var(--muted);
}

.article-content li {
  margin-bottom: 10px;
  padding-left: 2px;
}

.article-content strong {
  color: var(--text);
}

.article-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-callout {
  margin: 34px 0 12px;
  padding: 24px 24px 22px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #f8fbff, #f2f7fd);
  border: 1px solid #deebf8;
  box-shadow: var(--shadow-soft);
}

.article-callout p {
  margin: 0;
}

.article-callout .section-tag {
  margin-bottom: 10px;
}

.article-cta {
  margin-top: 60px;
  padding: 36px;
}

.related-links {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid #e4edf7;
}

.related-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.related-links li {
  margin: 0 0 12px;
}

.related-links a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.related-links a:hover {
  color: var(--brand-2);
}

.blog-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  background: #fff;
  border: 1px solid #e6edf6;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  display: grid;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.blog-card .eyebrow {
  margin-bottom: 0;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.15;
}

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

.blog-card .text-link {
  color: var(--brand);
  font-weight: 700;
}

.blog-card .text-link:hover {
  color: var(--brand-2);
}

/* RPS_BLOG_ARTICLE_END */

/* RPS_RESPONSIVE_TABLET_START */

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .card-grid.two,
  .card-grid.three,
  .trust-items,
  .footer-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .nav-mobile-cta {
    display: inline-flex;
  }

  .hero,
  .page-hero,
  .section {
    padding: 72px 0;
  }

  .container,
  .article-wrap {
    width: min(100% - 32px, 1140px);
  }

  .hero-grid,
  .two-col {
    gap: 32px;
  }

  .stack-mobile,
  .hero-actions,
  .inline-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .right-align {
    justify-content: stretch;
  }

  .btn {
    width: 100%;
  }

  .footer-grid {
    gap: 34px;
  }
}

/* RPS_RESPONSIVE_TABLET_END */

/* RPS_RESPONSIVE_PHONE_START */

@media (max-width: 760px) {
  .container,
  .article-wrap {
    width: min(100% - 26px, 1140px);
  }

  .nav-wrap {
    min-height: 66px;
  }

  .logo {
    font-size: 0.98rem;
  }

  .hero,
  .page-hero,
  .section {
    padding: 56px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .section h2 {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
    line-height: 1.12;
  }

  .hero-copy,
  .page-hero p,
  .section p,
  .section-copy,
  .article-content {
    font-size: 0.99rem;
  }

  .metric-card,
  .info-card,
  .check-card,
  .form-card,
  .question-card,
  .cta-panel,
  .blog-card,
  .article-callout,
  .article-cta {
    padding: 22px;
    border-radius: 18px;
  }

  .metric-card h3 {
    font-size: 1.55rem;
  }

  .info-card h3,
  .check-card h3,
  .blog-card h3 {
    font-size: 1.16rem;
  }

  .question-card {
    padding: 20px;
  }

  .check-list > div {
    padding: 17px;
  }

  .card-grid,
  .blog-grid,
  .question-stack,
  .check-list,
  .card-list {
    gap: 18px;
  }

  .hero-actions,
  .inline-actions,
  .cta-actions {
    gap: 12px;
  }

  .btn {
    padding: 14px 18px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .article-meta,
  .breadcrumbs {
    gap: 8px;
  }

  .article-content h2 {
    margin-top: 40px;
  }

  .article-content p {
    margin-bottom: 22px;
  }

  .site-footer {
    padding: 40px 0;
  }
}

/* RPS_RESPONSIVE_PHONE_END */

/* RPS_RESPONSIVE_SMALL_PHONE_START */

@media (max-width: 420px) {
  .container,
  .article-wrap {
    width: min(100% - 22px, 1140px);
  }

  .hero,
  .page-hero,
  .section {
    padding: 48px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.86rem, 11vw, 2.55rem);
  }

  .section h2 {
    font-size: clamp(1.52rem, 9vw, 2.05rem);
  }

  .eyebrow,
  .section-tag {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  .hero-copy,
  .page-hero p,
  .section p,
  .section-copy,
  .article-content {
    font-size: 0.96rem;
  }

  .metric-card,
  .info-card,
  .check-card,
  .form-card,
  .question-card,
  .cta-panel,
  .blog-card,
  .article-callout,
  .article-cta {
    padding: 19px;
  }

  .card-list > div {
    padding: 14px;
  }

  .btn {
    padding: 13px 16px;
  }

  .footer-grid {
    gap: 30px;
  }
}

/* RPS_RESPONSIVE_SMALL_PHONE_END */