:root {
  --rp-brand: #d40511;
  --rp-brand-2: #004041;
  --rp-ink: #0b1220;
  --rp-muted: rgba(11, 18, 32, 0.72);
  --rp-bg: #f7f9fc;
  --rp-surface: #ffffff;
  --rp-border: rgba(2, 6, 23, 0.08);
}

body {
  background: var(--rp-bg);
  color: var(--rp-ink);
  /*font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;*/
   font-family: "Inter", Roboto, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.rp-section-title,
.rp-hero-title,
.rp-hero-kicker,
.rp-card-title,
.rp-post-title,
.rp-adv-title,
.rp-section-kicker,
.rp-footer-col-title,
.rp-founder-name {
  font-family: "Montserrat", "Poppins", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.rp-tile {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.99);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--rp-delay, 0ms);
  will-change: transform, opacity;
}

.rp-tile.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (hover: hover) {
  .rp-tile.is-visible:hover {
    transform: translate3d(0, -6px, 0) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rp-tile {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.rp-nav {
  position: sticky;
  top: 0;
  z-index: 1080;
  background: linear-gradient(90deg, #070b1a, rgba(7, 11, 26, 0.72));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.rp-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.rp-brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(212, 5, 17, 0.12);
  border: 1px solid rgba(212, 5, 17, 0.35);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.4px;
  background-image: radial-gradient(circle at 30% 30%, rgba(212, 5, 17, 0.9), rgba(212, 5, 17, 0) 55%);
}

.rp-brand-logo {
  height: 89px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 991.98px) {
  .rp-brand-logo {
    height: 73px;
  }
}

.rp-brand-text {
  font-weight: 600;
  letter-spacing: 0.2px;
}

.rp-brand-text {
  display: none; /* Logo already contains the brand text */
}

.rp-nav-links .rp-nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  padding: 10px 10px;
}

.rp-nav-links .rp-nav-link:hover {
  color: #ffffff;
}

.rp-nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.rp-btn-solid {
  background: var(--rp-brand);
  border-color: var(--rp-brand);
  color: #ffffff;
  font-weight: 600;
}

.rp-btn-solid:hover {
  background: #b8020f;
  border-color: #b8020f;
  color: #ffffff;
}

.rp-btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.rp-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.rp-hero {
  position: relative;
  padding: 72px 0 54px;
  background: #070b1a;
  color: #ffffff;
  overflow: hidden;
}

.rp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../portfolio/banner_new10.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.02) contrast(0.94);
  transform: scale(1.02);
}

.rp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 520px at 20% 10%, rgba(212, 5, 17, 0.10), rgba(212, 5, 17, 0) 62%),
    radial-gradient(900px 420px at 80% 0%, rgba(0, 64, 65, 0.10), rgba(0, 64, 65, 0) 55%),
    linear-gradient(180deg, rgba(7, 11, 26, 0.58), rgba(7, 11, 26, 0.50));
  pointer-events: none;
}

.rp-hero .container {
  position: relative;
  z-index: 1;
}

.rp-hero-kicker {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  margin-bottom: 12px;
}

.rp-hero-title {
  font-size: clamp(36px, 5.1vw, 56px);
  line-height: 1.03;
  font-weight: 600;
  margin: 0 0 14px;
}

.rp-hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.rp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.rp-hero-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.rp-hero-meta-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.28);
}

.rp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.rp-hero-media {
  position: relative;
}

.rp-hero-img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.rp-hero-media-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
}

.rp-hero-overlay-card {
  width: min(340px, 90%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 16px 16px 14px;
  backdrop-filter: blur(10px);
}

.rp-overlay-title {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.rp-overlay-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.rp-hero-panel {
  display: grid;
  gap: 14px;
}

.rp-hero-mini {
  display: grid;
  gap: 10px;
}

.rp-hero-mini-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 12px 12px 11px;
  backdrop-filter: blur(10px);
}

.rp-hero-mini-title {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 4px;
}

.rp-hero-mini-text {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  font-weight: 600;
  font-size: 14px;
}

.rp-section {
  padding: 72px 0;
  background: transparent;
}

.rp-section.rp-alt {
  background: linear-gradient(180deg, rgba(212, 5, 17, 0.04), rgba(212, 5, 17, 0) 80%);
}

.rp-video-wrap {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--rp-border);
  background: #0b1220;
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.06);
}

.rp-video-wrap .ratio {
  width: 100%;
}

.rp-video-el {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.rp-section-head {
  max-width: 980px;
  margin-bottom: 26px;
}

.rp-section-kicker {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(212, 5, 17, 0.9);
  margin-bottom: 10px;
}

.rp-section-title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
}

.rp-collab-headline {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(11, 18, 32, 0.88);
  margin: 0 0 12px;
}

.rp-collab-block {
  margin-top: 1.75rem;
}

.rp-collab-block > .rp-collab-headline {
  margin-bottom: 1.25rem;
}

.rp-story-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rp-story-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--rp-border);
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.rp-story-card .rp-story-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.rp-story-date {
  font-weight: 600;
  color: rgba(11, 18, 32, 0.62);
  font-size: 13px;
}

.rp-story-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  color: rgba(11, 18, 32, 0.92);
  line-height: 1.35;
}

.rp-story-body {
  color: var(--rp-muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.rp-story-body p {
  margin: 0 0 12px;
}

.rp-story-body p:last-child {
  margin-bottom: 0;
}

.rp-story-body a {
  color: rgba(212, 5, 17, 0.95);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rp-story-body a:hover {
  color: rgba(11, 18, 32, 0.9);
}

.rp-story-media {
  margin-bottom: 12px;
}

.rp-story-media .rp-gallery-item {
  max-width: 100%;
}

.rp-story-card .rp-gallery-caption {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--rp-muted);
  font-weight: 600;
}

.rp-career-overview-head {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rp-border);
}

.rp-career-overview-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: rgba(11, 18, 32, 0.94);
}

.rp-career-overview-lead {
  color: var(--rp-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  font-weight: 600;
}

.rp-blog-figure {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--rp-border);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.035);
  text-decoration: none;
  height: 100%;
}

.rp-blog-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

@media (hover: hover) {
  .rp-blog-figure:hover .rp-blog-img {
    transform: scale(1.02);
  }
}

.rp-blog-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--rp-border);
  border-radius: 18px;
  padding: 20px 18px 18px;
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.035);
}

.rp-blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.rp-blog-date {
  font-weight: 600;
  color: rgba(11, 18, 32, 0.62);
  font-size: 13px;
}

.rp-blog-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: rgba(11, 18, 32, 0.94);
}

.rp-blog-lead,
.rp-blog-text {
  color: var(--rp-muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
  margin: 0 0 12px;
}

.rp-blog-subtitle {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(11, 18, 32, 0.55);
  margin: 16px 0 8px;
}

.rp-blog-bullets {
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--rp-muted);
  line-height: 1.7;
  font-weight: 600;
}

.rp-blog-bullets li {
  margin: 6px 0;
}

.rp-blog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

#about .rp-section-title {
  font-weight: 600;
}

.rp-section-title,
.rp-hero-title,
.rp-hero-kicker,
.rp-card-title,
.rp-post-title,
.rp-adv-title {
  letter-spacing: -0.01em;
}

.rp-section-lead,
.rp-section-text {
  color: var(--rp-muted);
  font-size: 16px;
  line-height: 1.75;
}

#about .rp-section-lead,
#about .rp-section-text {
  font-size: 18px;
  line-height: 1.8;
}

#about .rp-section-kicker {
  font-weight: 800;
}

.rp-section-bullets {
  padding-left: 18px;
  margin: 0;
}

.rp-section-bullets li {
  margin: 6px 0;
}

.rp-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(212, 5, 17, 0.04);
  border: 1px solid var(--rp-border);
}

.rp-check i {
  margin-top: 1px;
  color: var(--rp-brand);
  font-size: 18px;
}

.rp-check span {
  font-weight: 600;
  color: rgba(11, 18, 32, 0.86);
}

.rp-founder {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--rp-border);
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.04);
}

.rp-founder-img {
  width: 406px;
  height: 471px;
  border-radius: 24px;
  object-fit: contain;
  border: 1px solid rgba(2, 6, 23, 0.08);
  flex: 0 0 auto;
}

@media (max-width: 767.98px) {
  .rp-founder {
    flex-direction: column;
    align-items: flex-start;
  }

  .rp-founder-img {
    width: 100%;
    max-width: 406px;
    height: auto;
    aspect-ratio: 406 / 471;
  }
}

.rp-founder-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}

.rp-founder-role {
  font-weight: 600;
  color: rgba(11, 18, 32, 0.66);
  margin-bottom: 8px;
}

.rp-founder-text {
  color: var(--rp-muted);
  line-height: 1.65;
  font-weight: 600;
}

.rp-about-founder-card {
  height: 100%;
  background: var(--rp-surface);
  border: 1px solid var(--rp-border);
  border-radius: 22px;
  padding: 14px 14px 18px;
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.04);
}

.rp-about-founder-imgWrap {
  background: rgba(212, 5, 17, 0.04);
  border: 1px solid rgba(212, 5, 17, 0.12);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.rp-about-founder-meta {
  padding: 0 4px;
}

.rp-about-founder-img {
  border-radius: 18px;
}

.rp-about-tile {
  height: 100%;
  background: rgba(212, 5, 17, 0.04);
  border: 1px solid rgba(212, 5, 17, 0.12);
  border-radius: 18px;
  padding: 14px 14px 13px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rp-about-tile-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(212, 5, 17, 0.08);
  border: 1px solid rgba(212, 5, 17, 0.18);
  color: rgba(212, 5, 17, 0.98);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.rp-about-tile-title {
  font-weight: 600;
  color: rgba(11, 18, 32, 0.86);
  line-height: 1.45;
  padding-top: 2px;
  font-size: 14px;
}

.rp-about-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.rp-about-cta-btn {
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.rp-about-cta-btn:hover {
  color: #ffffff;
}

.rp-side-card {
  background: var(--rp-surface);
  border: 1px solid var(--rp-border);
  border-radius: 20px;
  padding: 18px 18px 20px;
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.04);
}

.rp-side-card-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(11, 18, 32, 0.9);
}

.rp-bullets {
  padding-left: 18px;
  margin: 0;
  color: var(--rp-muted);
  line-height: 1.7;
}

.rp-card {
  height: 100%;
  background: var(--rp-surface);
  border: 1px solid var(--rp-border);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.035);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.rp-card:hover {
  transform: translate3d(0, -6px, 0) scale(1.02);
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.06);
}

.rp-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(212, 5, 17, 0.08);
  border: 1px solid rgba(212, 5, 17, 0.18);
  margin-bottom: 12px;
  color: var(--rp-brand);
}

.rp-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.rp-card-text {
  color: var(--rp-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.rp-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 992px) {
  .rp-posts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.rp-post-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--rp-border);
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.rp-post-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.rp-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(212, 5, 17, 0.08);
  border: 1px solid rgba(212, 5, 17, 0.18);
  color: rgba(212, 5, 17, 0.98);
  font-weight: 600;
  font-size: 12px;
}

.rp-post-date {
  font-weight: 600;
  color: rgba(11, 18, 32, 0.62);
  font-size: 13px;
}

.rp-post-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.rp-post-text {
  color: var(--rp-muted);
  line-height: 1.7;
  margin: 0;
}

.rp-exp-bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--rp-muted);
  line-height: 1.7;
  font-weight: 600;
}

.rp-exp-bullets li {
  margin: 6px 0;
}

.rp-gallery-with-caption {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.rp-gallery-caption-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rp-gallery-caption-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(11, 18, 32, 0.9);
  margin: 0;
}

.rp-gallery-caption {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--rp-muted);
  font-weight: 600;
}

.rp-gallery-item {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--rp-border);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.035);
  text-decoration: none;
}

.rp-gallery-item img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

@media (hover: hover) {
  .rp-gallery-item:hover img {
    transform: scale(1.03);
  }
}

@media (max-width: 575.98px) {
  .rp-gallery-item img {
    height: 200px;
  }
}

.rp-gallery-extra {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rp-border);
}

.rp-gallery-extra-head {
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.rp-gallery-extra-title {
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: rgba(11, 18, 32, 0.94);
}

.rp-gallery-extra-lead {
  color: var(--rp-muted);
  font-size: 15px;
  line-height: 1.65;
}

.rp-adv-card {
  background: var(--rp-surface);
  border: 1px solid var(--rp-border);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.03);
}

.rp-adv-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: rgba(11, 18, 32, 0.94);
  position: relative;
  padding-bottom: 10px;
}

.rp-adv-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 99px;
  background: rgba(212, 5, 17, 0.7);
}

.rp-adv-text {
  color: var(--rp-muted);
  line-height: 1.75;
  margin: 0;
  font-weight: 600;
}

.rp-contact-side-title {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(11, 18, 32, 0.92);
  margin-bottom: 6px;
}

.rp-contact-email {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  color: rgba(212, 5, 17, 0.98);
  text-decoration: none;
}

.rp-contact-email:hover {
  text-decoration: underline;
}

.rp-contact-link {
  color: rgba(11, 18, 32, 0.86);
  text-decoration: none;
  font-weight: 600;
}

.rp-contact-link:hover {
  text-decoration: underline;
}

.rp-contact-side {
  background: var(--rp-surface);
  border: 1px solid var(--rp-border);
  border-radius: 20px;
  padding: 18px 18px 20px;
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.04);
}

.rp-contact-note {
  color: var(--rp-muted);
  font-weight: 600;
  line-height: 1.6;
}

.rp-form-card {
  background: var(--rp-surface);
  border: 1px solid var(--rp-border);
  border-radius: 20px;
  padding: 18px 18px 20px;
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.04);
}

.rp-contact-form .form-label {
  font-weight: 600;
  color: rgba(11, 18, 32, 0.78);
  margin-bottom: 8px;
}

.rp-contact-form .form-control {
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: rgba(247, 249, 252, 0.75);
  padding: 12px 14px;
  box-shadow: none;
  color: rgba(11, 18, 32, 0.9);
  font-weight: 600;
}

.rp-contact-form .form-control:focus {
  border-color: rgba(212, 5, 17, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(212, 5, 17, 0.14);
  background: #ffffff;
}

.rp-contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.rp-contact-form .rp-btn-solid {
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 600;
}

.rp-contact-note {
  background: rgba(212, 5, 17, 0.04);
  border: 1px solid rgba(212, 5, 17, 0.12);
  padding: 12px 12px;
  border-radius: 16px;
}

#contact {
  background: #ffffff;
}

#contact .rp-contact-side {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

#contact .rp-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

#contact .rp-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(212, 5, 17, 0.06);
  border: 1px solid rgba(212, 5, 17, 0.14);
  color: rgba(212, 5, 17, 0.98);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

#contact .rp-contact-sub {
  color: var(--rp-muted);
  font-weight: 600;
  line-height: 1.55;
  margin-top: 2px;
}

.rp-contact-website {
  padding-top: 14px;
  border-top: 1px solid var(--rp-border);
}

.rp-contact-email,
.rp-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rp-footer {
  background: #070b1a;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 54px 0 28px;
}

.rp-footer-top {
  align-items: flex-start;
}

.rp-footer-brand-block {
  max-width: 280px;
}

.rp-footer-logo {
  width: 74px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.rp-footer-blurb {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 14px;
}

.rp-footer-col-title {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-bottom: 14px;
}

.rp-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.rp-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.rp-footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.rp-footer-social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
}

.rp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.rp-footer-copy {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.rp-footer-made {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.rp-footer-brand {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.rp-footer-link {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 600;
}

.rp-footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.rp-form-status {
  margin-top: 10px;
  font-weight: 600;
  color: rgba(11, 18, 32, 0.82);
}

.rp-form-status--ok {
  color: rgba(0, 120, 64, 0.95);
}

.rp-form-status--err {
  color: rgba(160, 32, 32, 0.95);
}

