/* =========================================================
   RHEMA LIFE DESIGN SYSTEM
   Version: 1.0
   ========================================================= */

/* ===================== */
/* CSS VARIABLES         */
/* ===================== */

:root {
  --rl-navy: #071b3a;
  --rl-navy-2: #0d254c;
  --rl-blue: #123b78;
  --rl-blue-soft: #eaf1fb;

  --rl-gold: #d4a32a;
  --rl-gold-2: #e5bc4b;
  --rl-gold-light: #f2cf63;

  --rl-white: #ffffff;
  --rl-bg: #f8f9fc;
  --rl-bg-soft: #f3f6fb;

  --rl-text: #243047;
  --rl-muted: #6b7280;
  --rl-border: #e5e7eb;

  --rl-success: #16a34a;
  --rl-warning: #f59e0b;
  --rl-danger: #dc2626;

  --rl-heading: Georgia, "Times New Roman", serif;
  --rl-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --space-xs: .35rem;
  --space-sm: .75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 6px 18px rgba(7, 27, 58, .08);
  --shadow-md: 0 14px 35px rgba(7, 27, 58, .14);
  --shadow-lg: 0 24px 70px rgba(7, 27, 58, .22);

  --container: 1180px;
  --container-wide: 1380px;
  --container-narrow: 850px;
}

/* ===================== */
/* RESET / BASE          */
/* ===================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--rl-body);
  color: var(--rl-text);
  background: var(--rl-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

section {
  position: relative;
}

::selection {
  background: var(--rl-gold);
  color: var(--rl-navy);
}

/* ===================== */
/* TYPOGRAPHY            */
/* ===================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-md);
  font-family: var(--rl-heading);
  color: var(--rl-navy);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

p {
  margin: 0 0 var(--space-md);
}

.text-gold {
  color: var(--rl-gold);
}

.text-white {
  color: var(--rl-white);
}

.text-muted {
  color: var(--rl-muted);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--rl-muted);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: var(--space-sm);
  color: var(--rl-gold);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

.section-title {
  max-width: 760px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

/* ===================== */
/* LAYOUT                */
/* ===================== */

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2rem, var(--container-wide));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2rem, var(--container-narrow));
  margin-inline: auto;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-light {
  background: var(--rl-white);
}

.section-soft {
  background: var(--rl-bg);
}

.section-dark {
  color: var(--rl-white);
  background:
    radial-gradient(circle at top right, rgba(212, 163, 42, .22), transparent 35%),
    linear-gradient(135deg, var(--rl-navy), #031126 75%);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--rl-white);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ===================== */
/* BUTTONS               */
/* ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 46px;
  padding: .8rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--rl-navy);
  background: linear-gradient(135deg, var(--rl-gold-light), var(--rl-gold));
  box-shadow: 0 10px 22px rgba(212, 163, 42, .28);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(212, 163, 42, .38);
}

.btn-outline-light {
  color: var(--rl-white);
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .04);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
}

.btn-outline-dark {
  color: var(--rl-navy);
  border-color: rgba(7, 27, 58, .25);
  background: transparent;
}

.btn-dark {
  color: var(--rl-white);
  background: var(--rl-navy);
}

.btn-sm {
  min-height: 38px;
  padding: .6rem .95rem;
  font-size: .9rem;
}

.btn-lg {
  min-height: 56px;
  padding: 1rem 1.55rem;
}

/* ===================== */
/* CARDS                 */
/* ===================== */

.card {
  background: var(--rl-white);
  border: 1px solid var(--rl-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-body {
  padding: var(--space-lg);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.feature-card {
  padding: var(--space-lg);
  text-align: center;
  background: var(--rl-white);
  border: 1px solid var(--rl-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.icon-circle {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--rl-gold);
  border: 2px solid rgba(212, 163, 42, .35);
  background: rgba(212, 163, 42, .08);
  font-size: 1.6rem;
}

/* ===================== */
/* HEADER / NAV          */
/* ===================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(5, 18, 45, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 2rem;
}

/* ===================== */
/* HEADER BRAND          */
/* ===================== */

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-brand-image,
.site-brand-logo {
  display: block;
  width: 260px;
  height: auto;
}

/* ===================== */
/* DESKTOP NAVIGATION    */
/* ===================== */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2vw, 2rem);
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 2rem 0 1.9rem;
  color: rgba(255, 255, 255, .92);
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 1rem;
  left: 50%;
  height: 2px;
  border-radius: 999px;
  background: var(--rl-gold);
  transition: right .22s ease, left .22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rl-gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
  left: 0;
}

/* ===================== */
/* HEADER ACTIONS        */
/* ===================== */

.nav-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 16px;
}

.header-cta {
  min-width: 180px;
  height: 48px;
  border-radius: 8px;
  box-shadow:
    0 7px 18px rgba(212, 163, 42, .26),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}

.header-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 48px;
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.header-login-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, .10);
  border-color: var(--rl-gold);
  transform: translateY(-2px);
}

/* ===================== */
/* MOBILE TOGGLE         */
/* ===================== */

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--rl-white);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

/* ===================== */
/* FORMS                 */
/* ===================== */

.form-card {
  background: var(--rl-white);
  border: 1px solid var(--rl-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-md);
}

label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 800;
  color: var(--rl-navy);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--rl-border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  background: var(--rl-white);
  color: var(--rl-text);
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(212, 163, 42, .22);
  border-color: var(--rl-gold);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* ===================== */
/* FOOTER                */
/* ===================== */

.site-footer {
  color: rgba(255, 255, 255, .78);
  background: #031126;
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--space-xl);
}

.footer-logo img {
  width: 210px;
}

.footer-title {
  color: var(--rl-white);
  font-weight: 900;
  margin-bottom: var(--space-sm);
}

.footer-links {
  display: grid;
  gap: .45rem;
}

.footer-links a:hover {
  color: var(--rl-gold-light);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: .9rem;
}

/* ===================== */
/* UTILITIES             */
/* ===================== */

.center {
  text-align: center;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }

.hidden {
  display: none !important;
}

/* ===================== */
/* RESPONSIVE            */
/* ===================== */

@media (max-width: 1100px) {
  .nav-links {
    gap: 1.15rem;
  }

  .nav-links a {
    font-size: .82rem;
  }

  .header-cta {
    min-width: auto;
  }
}

@media (max-width: 940px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .section {
    padding: var(--space-2xl) 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav-wrap {
    min-height: 74px;
  }

  .site-brand-image,
  .site-brand-logo {
    width: 210px;
  }
}

/* =========================================================
   RHEMA LIFE HOMEPAGE
   ========================================================= */

/* ===================== */
/* HOMEPAGE HERO         */
/* ===================== */

.home-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2560 / 1400;
  min-height: 760px;
  overflow: hidden;
  color: var(--rl-white);
  background: #03152e;
}

.home-hero-artwork {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 175px;
}

.home-hero-content {
  width: 46%;
  max-width: 650px;
  padding-left: 1rem;
}

.home-hero-content h1 {
  max-width: 620px;
  margin-bottom: 1rem;
  color: var(--rl-white);
  font-family: var(--rl-heading);
  font-size: clamp(2.6rem, 4.2vw, 4.3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.home-hero-content h1 span {
  display: block;
  margin-top: .25rem;
  color: var(--rl-gold-light);
  font-size: .82em;
  font-style: italic;
  font-weight: 500;
}

.home-hero-content > p {
  max-width: 520px;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, .88);
  font-size: 1rem;
  line-height: 1.75;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-hero-partners {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
}

.hero-partner-item {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.hero-partner-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .22);
}

/* ===================== */
/* WHY SECTION           */
/* ===================== */

.why-section {
  position: relative;
  z-index: 2;
  margin-top: 0;
  background: #ffffff;
  padding: 2.5rem 0 1.75rem;
}

.why-section.section-sm {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 2.8fr;
    gap: 4rem;
    align-items: center;
}

.why-intro h2 {
    font-size: clamp(2rem, 2.7vw, 2.9rem);
    line-height: 1.08;
    margin-bottom: 1.2rem;
}

.why-intro p {
  font-size: .93rem;
}

.why-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

.why-item {
  text-align: center;
  padding: 0 1rem;
}

.why-item > i {
  display: block;
  margin-bottom: .7rem;
  color: var(--rl-gold);
  font-size: 2.2rem;
}

.why-item h3 {
  margin-bottom: .6rem;
  font-family: var(--rl-body);
  font-size: 1rem;
  line-height: 1.05;
}

.why-item p {
  margin: 0;
  color: #4b5563;
  font-size: .78rem;
  line-height: 1.45;
}

.why-item svg,
.why-item img {
    margin-bottom: .8rem;
}

.why-item h3 {
    margin-bottom: .6rem;
}

.why-item p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===================== */
/* ECOSYSTEM             */
/* ===================== */

.ecosystem-section {
  padding: 1.7rem 0 2.6rem;
  color: var(--rl-white);
  background:
    radial-gradient(circle at 50% 50%, rgba(18, 59, 120, .5), transparent 45%),
    #031a38;
}

.ecosystem-heading {
  text-align: center;
}

.ecosystem-heading h2 {
  color: var(--rl-white);
  font-size: clamp(2rem, 3vw, 3rem);
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(260px, 1fr);
  align-items: center;
  gap: 3rem;
}

.ecosystem-graphic img {
  width: 100%;
  height: auto;
  display: block;
}

.ecosystem-map {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  align-items: center;
  gap: 1rem;
}

.ecosystem-column {
  display: grid;
  gap: 1.35rem;
}

.ecosystem-node {
  display: flex;
  align-items: center;
  gap: .7rem;
  position: relative;
}

.ecosystem-map {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 430px;
}

.ecosystem-connectors {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.ecosystem-connectors path {
  fill: none;
  stroke: url("#connectorGold");
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.ecosystem-connectors circle {
  fill: #f2cf63;
  stroke: rgba(255, 255, 255, .55);
  stroke-width: 1;
  filter: url("#connectorGlow");
}

.ecosystem-column,
.ecosystem-center {
  position: relative;
  z-index: 2;
}

.ecosystem-node span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  border: 1px solid var(--rl-gold);
  border-radius: 50%;
  color: var(--rl-gold-light);
}

.ecosystem-node strong {
  font-size: .8rem;
}

.ecosystem-center {
  text-align: center;
}

.ecosystem-logo {
  display: grid;
  place-items: center;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.ecosystem-logo img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 50%;
}

.ecosystem-bottom {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: .8rem;
}

.ecosystem-node.compact {
  display: grid;
  justify-items: center;
  gap: .3rem;
}

.ecosystem-node.compact::after {
  display: none;
}

.ecosystem-copy {
  font-size: .9rem;
}

.ecosystem-left {
  padding-right: 1rem;
}

.ecosystem-right {
  padding-left: 1rem;
}

.ecosystem-logo {
  position: relative;
  z-index: 3;
  width: 250px;
  height: 250px;
}

.gold-check-list {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
}

.gold-check-list li {
  position: relative;
  margin-bottom: .45rem;
  padding-left: 1.25rem;
}

.gold-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rl-gold);
  font-weight: 900;
}

/* ===================== */
/* AUDIENCE CARDS        */
/* ===================== */

.audience-section {
  background: #fbfcfe;
}

.audience-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.audience-card {
  overflow: hidden;
  border: 1px solid var(--rl-border);
  border-radius: 11px;
  background: var(--rl-white);
  box-shadow: var(--shadow-sm);
}

.audience-image {
  position: relative;
  height: 190px;
  background-color: #dce3ec;
  background-size: cover;
  background-position: center;
}

.audience-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 17, 38, .28), transparent 62%);
}

.admin-image {
  background-image: url("/assets/img/home/school-administrator.png");
}

.teacher-image {
  background-image: url("/assets/img/home/teacher.png");
}

.parent-image {
  background-image: url("/assets/img/home/parents.png");
}

.student-image {
  background-image: url("/assets/img/home/student.png");
}

.audience-icon {
  position: absolute;
  z-index: 2;
  bottom: -20px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 3px solid var(--rl-white);
  border-radius: 50%;
  color: var(--rl-white);
  background: #3978c5;
}

.audience-icon.gold {
  background: var(--rl-gold);
}

.audience-icon.teal {
  background: #2699a6;
}

.audience-icon.purple {
  background: #7655bd;
}

.audience-body {
  padding: 1.8rem 1.25rem 1.3rem;
}

.audience-body h3 {
  font-family: var(--rl-body);
  text-align: center;
  font-size: 1rem;
}

.compact-list {
  font-size: .78rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .4rem;
  color: var(--rl-navy);
  font-size: .78rem;
  font-weight: 900;
}

/* ===================== */
/* LEARNING POINT        */
/* ===================== */

.learning-point-section {
  padding: 2rem 0;
  color: var(--rl-white);
  background:
    radial-gradient(circle at center, rgba(18, 59, 120, .42), transparent 35%),
    #031a38;
}

.learning-point-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  align-items: center;
  gap: 2rem;
}

.learning-point-copy h2 {
  color: var(--rl-white);
}

.learning-point-copy h2 span {
  display: block;
  color: var(--rl-gold-light);
}

.learning-point-copy p,
.learning-point-cta p {
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
}

.learning-point-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin-top: 1.2rem;
  text-align: center;
}

.learning-point-features i {
  display: block;
  margin-bottom: .25rem;
  color: var(--rl-gold-light);
  font-size: 1.4rem;
}

.learning-point-features span {
  font-size: .62rem;
}

.learning-point-cta h3 {
  color: var(--rl-white);
}

/* ===================== */
/* LPMS Dashboard Image  */
/* ===================== */

.learning-point-device{
  display:flex;
  justify-content:center;
  align-items:center;
}

.lpms-dashboard-image{
  display:block;
  width:100%;
  max-width:780px;
  height:auto;

  filter:drop-shadow(0 25px 45px rgba(0,0,0,.35));

  transition:.35s ease;
}

.lpms-dashboard-image:hover{
  transform:translateY(-8px);
}

.btn-outline-gold {
  color: var(--rl-gold-light);
  border-color: var(--rl-gold);
  background: transparent;
}

/* ===================== */
/* ROADMAP               */
/* ===================== */

.roadmap-heading {
  text-align: center;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) .9fr;
  gap: 0;
  margin-top: 2rem;
}

.roadmap-card {
  position: relative;
  min-height: 255px;
  padding: 2.2rem 1.2rem 1.3rem;
  border: 1px solid #dde3eb;
  border-radius: 9px;
  background: var(--rl-white);
  box-shadow: var(--shadow-sm);
}

.roadmap-card + .roadmap-card {
  margin-left: -1px;
}

.roadmap-number {
  position: absolute;
  top: -18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--rl-white);
  background: var(--rl-blue);
  font-weight: 900;
}

.roadmap-number.gold-number {
  color: var(--rl-navy);
  background: var(--rl-gold-light);
}

.roadmap-card h3 {
  font-family: var(--rl-body);
  font-size: 1rem;
}

.roadmap-mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roadmap-mission > i {
  color: var(--rl-navy);
  font-size: 2.2rem;
}

.roadmap-mission h3 {
  margin-top: .8rem;
}

.roadmap-mission p {
  margin: 0;
  font-size: .75rem;
}

/* ===================== */
/* REASONS               */
/* ===================== */

.reasons-section {
  padding: 1rem 0 2rem;
  background: var(--rl-white);
}

.reasons-heading {
  text-align: center;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 1.5rem;
}

.reason-item {
  padding: .8rem 1rem;
  text-align: center;
  border-right: 1px solid #e3e7ed;
}

.reason-item:last-child {
  border-right: 0;
}

.reason-item i {
  display: block;
  margin-bottom: .5rem;
  color: var(--rl-gold);
  font-size: 2rem;
}

.reason-item h3 {
  margin-bottom: .2rem;
  font-family: var(--rl-body);
  font-size: .92rem;
}

.reason-item p {
  margin: 0;
  color: #4b5563;
  font-size: .7rem;
  line-height: 1.35;
}

/* ===================== */
/* FINAL CTA             */
/* ===================== */

.future-cta {
  position: relative;
  min-height: 290px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--rl-white);
  background:
    linear-gradient(90deg, rgba(3, 17, 38, .92), rgba(3, 17, 38, .74)),
    url("/assets/img/home/future-education.jpg") center/cover no-repeat;
}

.future-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(212, 163, 42, .16), transparent 50%);
}

.future-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.future-cta h2 {
  color: var(--rl-white);
}

.future-cta p {
  color: rgba(255, 255, 255, .88);
}

.future-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
}

/* ===================== */
/* HOMEPAGE RESPONSIVE   */
/* ===================== */

@media (max-width: 1180px) {
  .home-hero {
    min-height: 720px;
    background-position: 58% bottom;
  }

  .home-hero-grid {
    min-height: 720px;
    padding-top: 150px;
    padding-bottom: 165px;
  }

  .home-hero-content {
    width: 48%;
    padding-left: 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-layout,
  .learning-point-grid {
    grid-template-columns: 1fr;
  }

  .learning-point-copy,
  .learning-point-cta {
    text-align: center;
  }

  .learning-point-features {
    max-width: 600px;
    margin-inline: auto;
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .roadmap-card + .roadmap-card {
    margin-left: 0;
  }

  .roadmap-mission {
    grid-column: span 2;
  }

  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reason-item:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 940px) {
  .home-hero {
    min-height: 760px;
    background-position: 66% bottom;
  }

  .home-hero-grid {
    min-height: 760px;
    padding-top: 125px;
    padding-bottom: 180px;
  }

  .home-hero-content {
    width: 58%;
    max-width: 610px;
  }
}

@media (max-width: 850px) {
  .why-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-map {
    grid-template-columns: 1fr;
  }

  .ecosystem-column {
    grid-template-columns: repeat(3, 1fr);
  }

  .ecosystem-node {
    justify-content: center;
  }

  .ecosystem-node::after {
    display: none;
  }

  .ecosystem-logo {
    width: 210px;
    height: 210px;
  }

  .audience-grid,
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reason-item:nth-child(odd) {
    border-right: 1px solid #e3e7ed;
  }

  .reason-item:nth-child(even) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .home-hero {
    min-height: 850px;
    background-position: 71% bottom;
  }

  .home-hero-grid {
    min-height: 850px;
    padding-top: 105px;
    padding-bottom: 245px;
  }

  .home-hero-content {
    width: 100%;
    max-width: 100%;
  }

  .home-hero-content h1 {
    font-size: 2.7rem;
  }

  .home-hero-actions,
  .future-cta-actions {
    flex-direction: column;
  }

  .home-hero-partners {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-partner-divider {
    display: none;
  }

  .why-items,
  .audience-grid,
  .roadmap-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-column {
    grid-template-columns: 1fr;
  }

  .ecosystem-bottom {
    flex-direction: column;
  }

  .roadmap-mission {
    grid-column: auto;
  }

  .reason-item,
  .reason-item:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid #e3e7ed;
  }

  .learning-point-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================== */
/* HERO RESPONSIVE       */
/* ===================== */

@media (max-width: 1180px) {
  .home-hero {
    aspect-ratio: auto;
    min-height: 760px;
  }

  .home-hero-artwork {
    object-fit: cover;
    object-position: center top;
  }

  .home-hero-grid {
    padding-top: 150px;
  }

  .home-hero-content {
    width: 48%;
    padding-left: 0;
  }
}

@media (max-width: 940px) {
  .home-hero {
    min-height: 800px;
  }

  .home-hero-artwork {
    object-position: 66% top;
  }

  .home-hero-grid {
    padding-top: 125px;
  }

  .home-hero-content {
    width: 60%;
    max-width: 610px;
  }
}

@media (max-width: 720px) {
  .home-hero {
    min-height: 900px;
  }

  .home-hero-artwork {
    object-position: 70% top;
  }

  .home-hero-grid {
    padding-top: 105px;
  }

  .home-hero-content {
    width: 100%;
    max-width: 100%;
  }

  .home-hero-content h1 {
    font-size: 2.7rem;
  }

  .home-hero-actions {
    flex-direction: column;
  }

  .home-hero-partners {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-partner-divider {
    display: none;
  }
}

@media (max-width: 850px) {
  .ecosystem-connectors {
    display: none;
  }

  .ecosystem-map {
    min-height: auto;
  }
}

/* =========================================================
   RHEMA LIFE ABOUT PAGE
   ========================================================= */

/* ===================== */
/* ABOUT HERO            */
/* ===================== */

.about-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--rl-white);
  background: #03152e;
}

.about-hero-artwork {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 21, 46, .98) 0%,
      rgba(3, 21, 46, .92) 35%,
      rgba(3, 21, 46, .42) 64%,
      rgba(3, 21, 46, .08) 100%
    );
}

.about-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 70px;
}

.about-hero-copy {
  width: min(100%, 760px);
  max-width: 760px;
}

.about-hero-copy h1 {
  margin: 0 0 1.25rem;
  max-width: none;

  color: #ffffff;

  font-size: clamp(2.75rem, 3.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.03em;

  white-space: nowrap;
}

.about-hero-copy h1 span {
  display: block;
  margin-top: .15rem;

  color: var(--rl-gold-light);

  font-size: .88em;
  font-style: italic;
  font-weight: 500;

  white-space: nowrap;
}

.about-hero-copy > p {
  max-width: 560px;
  color: rgba(255, 255, 255, .9);
}

.about-scripture-card {
  position: relative;
  max-width: 440px;
  margin: 1.7rem 0 0;
  padding: 1rem 1.25rem 1rem 3rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .07);
}

.about-scripture-card i {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--rl-gold-light);
  font-size: 1.25rem;
}

.about-scripture-card p {
  margin: 0;
  color: var(--rl-white);
  font-size: .95rem;
}

.about-scripture-card cite {
  display: block;
  margin-top: .35rem;
  color: var(--rl-gold-light);
  font-size: .75rem;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.about-hero-curve {
  position: absolute;
  z-index: 3;
  right: -5%;
  bottom: -58px;
  left: -5%;
  height: 115px;
  border-top: 5px solid var(--rl-gold);
  border-radius: 50% 50% 0 0;
  background: var(--rl-white);
}

/* ===================== */
/* ABOUT VALUES          */
/* ===================== */

.about-values {
  padding: 2.5rem 0 2.75rem;
  background: var(--rl-white);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.about-value-item {
  padding: 1rem 1.4rem;
  text-align: center;
  border-right: 1px solid var(--rl-border);
}

.about-value-item:last-child {
  border-right: 0;
}

.about-value-item i {
  display: block;
  margin-bottom: .75rem;
  color: var(--rl-gold);
  font-size: 2.5rem;
}

.about-value-item h2 {
  margin-bottom: .45rem;
  font-family: var(--rl-body);
  font-size: 1rem;
  line-height: 1.25;
}

.about-value-item p {
  margin: 0;
  color: #4b5563;
  font-size: .78rem;
  line-height: 1.5;
}

/* ===================== */
/* RHEMA MEANING         */
/* ===================== */

.rhema-meaning-section {
  padding: 1rem 0 2.75rem;
  background:
    linear-gradient(
      90deg,
      rgba(245, 239, 226, .72) 0%,
      #ffffff 34%,
      #ffffff 66%,
      rgba(245, 239, 226, .72) 100%
    );
}

.rhema-meaning-intro {
  display: grid;
  grid-template-columns: 1fr .85fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.meaning-card {
  padding: 1.6rem 1.8rem;
  border: 1px solid #e6dfd2;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-sm);
}

.meaning-card h2 {
  font-size: 1.55rem;
}

.meaning-card p {
  font-size: .9rem;
}

.meaning-logo {
  text-align: center;
}

.meaning-logo img {
  width: min(100%, 320px);
  margin: 0 auto;
}

.meaning-logo p {
  margin-top: .75rem;
  color: var(--rl-gold);
  font-family: var(--rl-heading);
  font-size: 1.2rem;
  font-style: italic;
}

/* ===================== */
/* RHEMA DEFINITION      */
/* ===================== */

.rhema-definition-section {
  padding: 4rem 0;
  color: var(--rl-white);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 163, 42, .18), transparent 36%),
    linear-gradient(135deg, #071b3a, #031126);
}

.rhema-definition-content {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.rhema-definition-content h2 {
  margin-bottom: 1rem;
  color: var(--rl-white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.rhema-definition-content h2 span {
  display: block;
  margin-top: .15rem;
  color: var(--rl-gold-light);
  font-size: .9em;
  font-style: italic;
  font-weight: 500;
}

.rhema-definition-content > p {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, .86);
  font-size: .95rem;
  line-height: 1.65;
}

.rhema-definition-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;

  width: 100%;
  max-width: 1120px;
  margin: 2.25rem auto 1.5rem;
}

.rhema-definition-highlight,
.rhema-large-scripture {
  min-height: 230px;
  margin: 0;
  padding: 1.75rem 2.25rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rhema-definition-highlight {
  border: 1px solid rgba(212, 163, 42, .6);
  border-radius: var(--radius-lg);
  background: rgba(212, 163, 42, .08);
  text-align: center;
}

.rhema-definition-highlight span {
  display: block;
  margin-bottom: .75rem;

  color: rgba(255, 255, 255, .78);

  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rhema-definition-highlight strong {
  display: block;

  color: var(--rl-gold-light);

  font-family: var(--rl-heading);
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
  font-style: italic;
  line-height: 1.2;
}

.rhema-large-scripture {
  position: relative;

  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .07);

  text-align: left;
}

.rhema-large-scripture i {
  margin-bottom: .5rem;

  color: var(--rl-gold-light);
  font-size: 1.5rem;
}

.rhema-large-scripture p {
  max-width: none;
  margin: 0 0 .85rem;

  color: var(--rl-white);

  font-family: var(--rl-heading);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.35;
}

.rhema-large-scripture cite {
  display: block;
  margin-top: auto;

  color: var(--rl-gold-light);

  font-size: .8rem;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.rhema-closing-line {
  margin-top: 1.25rem;
  font-family: var(--rl-heading);
  font-size: 1.1rem;
}

.rhema-closing-line strong {
  display: block;
  color: var(--rl-gold-light);
  font-size: 1.4rem;
  font-style: italic;
}

/* ===================== */
/* WHO WE ARE            */
/* ===================== */

.about-who-section {
  padding: 4.75rem 0;
  background: var(--rl-white);
  border-bottom: 1px solid rgba(7, 27, 58, .08);
}

.about-who-grid {
  display: grid;
  grid-template-columns: .85fr 1.35fr;
  gap: 4rem;
  align-items: center;
}

.about-who-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.about-who-copy h2 span {
  display: block;
  color: var(--rl-gold);
  font-style: italic;
  font-weight: 500;
  margin-top: .15rem;
  font-size: .82em;
}

.about-who-copy p {
  font-size: .95rem;
}

.about-who-visual {
  position: relative;
  min-height: 410px;
}

.about-who-visual img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.purpose-card {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 235px;              /* was 260-300px */
  padding: 1.4rem 1.2rem;
  border-radius: 18px;
  background: rgba(7, 27, 58, .96);
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%);
}

.purpose-card h3 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.purpose-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.purpose-card li {
  display: flex;
  align-items: center;
  gap: .6rem;

  color: #ffffff !important;
  opacity: 1;

  font-size: .85rem;
  font-weight: 500;
}

.purpose-card li i {
  color: var(--rl-gold-light);
  flex-shrink: 0;
}

.purpose-card i {
  color: var(--rl-gold-light);
}

/* ===================== */
/* CONNECTED ROLES       */
/* ===================== */

.connected-roles-section {
  padding: 5rem 0;
  background:
    linear-gradient(
      180deg,
      #f7f9fc 0%,
      #eef3f8 100%
    );
}

.connected-roles-heading {
  max-width: 760px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.connected-roles-heading p {
  color: var(--rl-muted);
}

.connected-roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.connected-role-card {
  padding: 1.75rem;
  border: 1px solid var(--rl-border);
  border-radius: var(--radius-lg);
  background: var(--rl-white);
  box-shadow: var(--shadow-sm);
}

.connected-role-card.featured {
  color: var(--rl-white);
  background: var(--rl-navy);
}

.connected-role-card > i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  color: var(--rl-gold);
  border: 1px solid rgba(212, 163, 42, .35);
  border-radius: 50%;
  font-size: 1.4rem;
  background: rgba(212, 163, 42, .08);
}

.connected-role-card h3 {
  font-family: var(--rl-body);
  font-size: 1.05rem;
}

.connected-role-card.featured h3 {
  color: var(--rl-white);
}

.connected-role-card span {
  display: block;
  margin-bottom: .85rem;
  color: var(--rl-gold);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.connected-role-card p {
  margin: 0;
  color: #526071;
  font-size: .84rem;
}

.connected-role-card.featured p {
  color: rgba(255, 255, 255, .82);
}

/* ===================== */
/* WHY RHEMA EXISTS      */
/* ===================== */

.why-rhema-exists-section {
  padding: 5rem 0;
  background:
    linear-gradient(
      135deg,
      #fffdf8 0%,
      #f8f2e6 100%
    );
  border-top: 1px solid rgba(212, 163, 42, .12);
  border-bottom: 1px solid rgba(212, 163, 42, .18);
}

.why-rhema-exists-grid {
  display: grid;
  grid-template-columns: .95fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.why-rhema-exists-copy h2 span {
  display: block;
  color: var(--rl-gold);
  font-style: italic;
  font-weight: 500;
}

.why-rhema-exists-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.why-rhema-exists-copy h2 span {
  display: block;
  margin-top: .15rem;
  color: var(--rl-gold);
  font-size: .82em;
  font-style: italic;
  font-weight: 500;
}

.why-rhema-exists-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.why-rhema-exists-cards article {
  padding: 1.4rem;
  border: 1px solid rgba(212, 163, 42, .22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 30px rgba(7, 27, 58, .06);
}

.why-rhema-exists-cards article {
  position: relative;
  overflow: hidden;
}

.why-rhema-exists-cards article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--rl-gold),
    var(--rl-gold-light)
  );
}

.why-rhema-exists-copy {
  padding-right: 1rem;
}

.why-rhema-exists-copy > p {
  max-width: 590px;
  color: #4b5563;
}

.why-rhema-exists-copy .section-eyebrow {
  position: relative;
  display: inline-block;
  padding-bottom: .65rem;
}

.why-rhema-exists-copy .section-eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 2px;
  background: var(--rl-gold);
}

.why-rhema-exists-cards i {
  color: var(--rl-gold);
  font-size: 1.75rem;
}

.why-rhema-exists-cards h3 {
  margin: .65rem 0 .35rem;
  font-family: var(--rl-body);
  font-size: 1rem;
}

.why-rhema-exists-cards p {
  margin: 0;
  color: #526071;
  font-size: .82rem;
}

/* ===================== */
/* ABOUT VISION          */
/* ===================== */

.about-vision-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;

    background:
        radial-gradient(circle at top right,
            rgba(212,163,42,.18),
            transparent 35%),

        linear-gradient(
            rgba(5,20,45,.90),
            rgba(5,20,45,.92)
        ),

        url("/assets/img/about/vision-bg.jpg");

    background-size: cover;
    background-position: center;
}

.about-vision-content {
  text-align: center;
}

.about-vision-content h2 {
  color: var(--rl-white);
}

.about-vision-content p {
  color: rgba(255, 255, 255, .84);
}

/* ===================== */
/* ABOUT IMPACT          */
/* ===================== */

.about-impact-section {
  padding: 2.75rem 0 3rem;
  color: var(--rl-white);
  background: #061b3a;
}

.about-impact-heading {
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-impact-heading h2 {
  color: var(--rl-white);
  font-size: clamp(2rem, 3vw, 3rem);
}

.about-impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.about-impact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon number"
    "icon label";
  gap: .1rem .85rem;
  align-items: center;
  padding: .75rem 1.35rem;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.about-impact-item:last-child {
  border-right: 0;
}

.about-impact-item i {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--rl-gold-light);
  border: 1px solid rgba(212, 163, 42, .45);
  border-radius: 50%;
  font-size: 1.5rem;
  background: rgba(212, 163, 42, .12);
}

.about-impact-item strong {
  grid-area: number;
  color: var(--rl-white);
  font-size: 1.8rem;
  line-height: 1;
}

.about-impact-item span {
  grid-area: label;
  color: rgba(255, 255, 255, .84);
  font-size: .75rem;
  line-height: 1.35;
}

.about-impact-note {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: .8rem;
  text-align: center;
}

/* ===================== */
/* ABOUT CTA             */
/* ===================== */

.about-cta-section {
  padding: 1.5rem 0 2.5rem;
  background: #061b3a;
}

.about-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--rl-gold-light), var(--rl-gold));
}

.about-cta-icon {
  color: rgba(7, 27, 58, .45);
  font-size: 2.4rem;
}

.about-cta-copy h2 {
  margin-bottom: .2rem;
  font-size: 1.5rem;
}

.about-cta-copy p {
  margin: 0;
  color: rgba(7, 27, 58, .82);
  font-size: .86rem;
}

/* ===================== */
/* ABOUT RESPONSIVE      */
/* ===================== */

@media (max-width: 1180px) {
  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-value-item:nth-child(3) {
    border-right: 0;
  }

  .about-value-item:nth-child(-n + 3) {
    border-bottom: 1px solid var(--rl-border);
  }

  .connected-roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-impact-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .about-impact-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 940px) {
  .about-hero-artwork {
    object-position: 68% center;
  }

  .about-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(3, 21, 46, .98) 0%,
        rgba(3, 21, 46, .91) 52%,
        rgba(3, 21, 46, .38) 100%
      );
  }

  .rhema-meaning-intro,
  .about-who-grid,
  .why-rhema-exists-grid {
    grid-template-columns: 1fr;
  }

  .meaning-logo {
    order: -1;
  }

  .about-who-copy {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .about-hero {
    min-height: 720px;
  }

  .about-hero-grid {
    min-height: 720px;
    padding-top: 120px;
    padding-bottom: 110px;
  }

  .about-hero-artwork {
    object-position: 70% center;
    opacity: .42;
  }

  .about-hero-overlay {
    background: rgba(3, 21, 46, .82);
  }

  .about-values-grid,
  .connected-roles-grid,
  .why-rhema-exists-cards,
  .about-impact-grid {
    grid-template-columns: 1fr;
  }

  .about-value-item {
    border-right: 0;
    border-bottom: 1px solid var(--rl-border);
  }

  .about-value-item:last-child {
    border-bottom: 0;
  }

  .about-who-visual > img {
    min-height: 500px;
  }

  .purpose-card {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    transform: none;
  }

  .about-impact-item:last-child {
    grid-column: auto;
  }

  .about-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-cta-icon {
    display: none;
  }
}

@media (max-width: 900px) {
  .rhema-definition-cards {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .rhema-definition-highlight,
  .rhema-large-scripture {
    min-height: auto;
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .rhema-definition-highlight,
  .rhema-large-scripture {
    padding: 1.5rem;
  }

  .rhema-definition-highlight strong {
    font-size: 1.9rem;
  }

  .rhema-large-scripture p {
    font-size: 1.45rem;
  }
}

/* =========================================================
   RHEMA LIFE FEATURES PAGE
   ========================================================= */

/* ===================== */
/* FEATURES HERO         */
/* ===================== */

.features-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  padding: 145px 0 95px;
  color: var(--rl-white);
  background:
    radial-gradient(circle at 72% 38%, rgba(18, 59, 120, .42), transparent 34%),
    linear-gradient(135deg, #031126 0%, #061d3d 58%, #08234a 100%);
}

.features-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(212, 163, 42, .45) 1px, transparent 1px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent 18%, #000 50%, transparent 92%);
  mask-image: linear-gradient(90deg, transparent 18%, #000 50%, transparent 92%);
}

.features-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.18fr;
  gap: 3rem;
  align-items: center;
}

.features-hero-copy {
  padding-left: .6rem;
}

.features-hero-copy .section-eyebrow {
  margin-bottom: .55rem;
}

.features-hero-copy h1 {
  max-width: 520px;
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: clamp(3rem, 4.7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.features-hero-copy h1 span {
  display: block;
  margin-top: .1rem;
  color: var(--rl-gold-light);
  font-size: .9em;
  font-style: italic;
  font-weight: 500;
}

.features-hero-copy > p {
  max-width: 575px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.05rem;
  line-height: 1.72;
}

.features-hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 620px;
  margin-top: 2.2rem;
}

.features-benefit {
  text-align: center;
}

.features-benefit span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto .65rem;
  color: var(--rl-gold-light);
  border: 1px solid rgba(212, 163, 42, .6);
  border-radius: 50%;
  background: rgba(7, 27, 58, .72);
  font-size: 1.45rem;
}

.features-benefit strong {
  color: #fff;
  font-size: .82rem;
  line-height: 1.35;
}

.features-hero-visual {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-device-glow {
  position: absolute;
  right: 8%;
  bottom: 5%;
  width: 72%;
  height: 44%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(229, 188, 75, .34), transparent 68%);
  filter: blur(12px);
}

.features-device-image {
  position: relative;
  z-index: 2;
  width: 118%;
  max-width: 900px;
  margin-right: -8%;
  filter: drop-shadow(0 30px 48px rgba(0, 0, 0, .55));
}

.features-hero-swoop {
  position: absolute;
  z-index: 4;
  right: -4%;
  bottom: -76px;
  left: -4%;
  height: 132px;
  border-top: 8px solid var(--rl-gold);
  border-radius: 50% 50% 0 0;
  background: #fff;
  transform: rotate(-1.2deg);
}

/* ===================== */
/* CORE MODULES          */
/* ===================== */

.features-modules-section {
  padding: 2.65rem 0 2.2rem;
  background:
    radial-gradient(circle at 10% 15%, rgba(212, 163, 42, .06), transparent 22%),
    #fff;
}

.features-section-heading,
.role-access-heading {
  margin-bottom: 1.8rem;
  text-align: center;
}

.features-section-heading .section-eyebrow,
.role-access-heading .section-eyebrow {
  margin-bottom: .2rem;
}

.features-section-heading h2,
.role-access-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.15rem);
}

.features-modules-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.module-card {
  min-height: 205px;
  padding: 1.45rem 1.1rem;
  text-align: center;
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 8px 24px rgba(7, 27, 58, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 163, 42, .42);
  box-shadow: 0 16px 34px rgba(7, 27, 58, .12);
}

.module-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto .75rem;
  color: var(--rl-gold-light);
  border-radius: 50%;
  background: #071b3a;
  font-size: 1.75rem;
}

.module-card h3 {
  margin-bottom: .5rem;
  font-family: var(--rl-body);
  font-size: 1rem;
  line-height: 1.25;
}

.module-card p {
  margin: 0;
  color: #3f4b5f;
  font-size: .77rem;
  line-height: 1.45;
}

.features-modules-action {
  margin-top: 1.35rem;
  text-align: center;
}

.features-modules-action .btn,
.features-ecosystem-copy .btn {
  color: #9b6500;
  border-color: var(--rl-gold);
  background: #fff;
}

/* ===================== */
/* ROLE BASED ACCESS     */
/* ===================== */

.role-access-section {
  padding: 1.55rem 0 1.75rem;
  color: #fff;
  background:
    radial-gradient(circle at 50% 10%, rgba(18, 59, 120, .35), transparent 46%),
    #031a38;
}

.role-access-heading {
  margin-bottom: 1rem;
}

.role-access-heading h2 {
  color: #fff;
}

.role-access-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.role-access-item {
  min-height: 145px;
  padding: .35rem 1.1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.role-access-item:last-child {
  border-right: 0;
}

.role-access-item > i {
  display: block;
  margin-bottom: .55rem;
  color: var(--rl-gold-light);
  font-size: 2.65rem;
}

.role-access-item h3 {
  margin-bottom: .35rem;
  color: #fff;
  font-family: var(--rl-body);
  font-size: .96rem;
  line-height: 1.22;
}

.role-access-item p {
  margin: 0;
  color: rgba(255, 255, 255, .85);
  font-size: .72rem;
  line-height: 1.45;
}

/* ===================== */
/* FEATURES ECOSYSTEM    */
/* ===================== */

.features-ecosystem-section {
  padding: 2.1rem 0;
  background:
    linear-gradient(90deg, #fff 0%, #fbfcfe 58%, #f8f5ee 100%);
}

.features-ecosystem-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr .78fr;
  gap: 2rem;
  align-items: center;
}

.features-ecosystem-visual img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
}

.features-ecosystem-copy h2 {
  margin-bottom: .9rem;
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
}

.features-ecosystem-copy p {
  color: #344054;
  font-size: .88rem;
  line-height: 1.58;
}

.features-ecosystem-list {
  padding: 1.2rem 1.35rem;
  border-radius: 12px;
  background: rgba(247, 243, 235, .96);
  box-shadow: 0 8px 22px rgba(7, 27, 58, .05);
}

.features-ecosystem-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.features-ecosystem-list li {
  position: relative;
  margin-bottom: .48rem;
  padding-left: 1.25rem;
  color: #29364a;
  font-size: .78rem;
}

.features-ecosystem-list li:last-child {
  margin-bottom: 0;
}

.features-ecosystem-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rl-gold);
  font-weight: 900;
}

/* ===================== */
/* FEATURES CTA          */
/* ===================== */

.features-cta-section {
  padding: 0;
  background: linear-gradient(135deg, #f3c34f, #d9a52a);
}

.features-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.45rem;
  align-items: center;
  min-height: 110px;
  padding: 1rem 1.5rem;
}

.features-cta-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--rl-gold-light);
  border-radius: 50%;
  background: #071b3a;
  font-size: 2rem;
}

.features-cta-copy h2 {
  margin-bottom: .2rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.features-cta-copy p {
  margin: 0;
  color: rgba(7, 27, 58, .82);
  font-size: .86rem;
}

.features-cta-inner .btn-dark {
  min-width: 200px;
}

/* ===================== */
/* FEATURES RESPONSIVE   */
/* ===================== */

@media (max-width: 1180px) {
  .features-hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-modules-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .role-access-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 0;
  }

  .role-access-item:nth-child(3) {
    border-right: 0;
  }

  .features-ecosystem-grid {
    grid-template-columns: .9fr 1.1fr;
  }

  .features-ecosystem-list {
    grid-column: 1 / -1;
  }

  .features-ecosystem-list ul {
    columns: 3;
  }
}

@media (max-width: 940px) {
  .features-hero {
    padding-top: 120px;
  }

  .features-hero-grid {
    grid-template-columns: 1fr;
  }

  .features-hero-copy {
    text-align: center;
    padding-left: 0;
  }

  .features-hero-copy > p,
  .features-hero-benefits {
    margin-right: auto;
    margin-left: auto;
  }

  .features-hero-visual {
    min-height: 320px;
  }

  .features-device-image {
    width: min(100%, 760px);
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .features-hero {
    min-height: auto;
    padding: 110px 0 100px;
  }

  .features-hero-copy h1 {
    font-size: 2.75rem;
  }

  .features-hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-modules-grid,
  .features-ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .role-access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .role-access-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .18);
  }

  .role-access-item:nth-child(even) {
    border-right: 0;
  }

  .features-ecosystem-list {
    grid-column: auto;
  }

  .features-ecosystem-list ul {
    columns: 1;
  }

  .features-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.35rem 1rem;
  }

  .features-cta-icon {
    margin: 0 auto;
  }

  .features-cta-inner .btn-dark {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .features-modules-grid,
  .role-access-grid {
    grid-template-columns: 1fr;
  }

  .role-access-item,
  .role-access-item:nth-child(3),
  .role-access-item:nth-child(even) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .role-access-item:last-child {
    border-bottom: 0;
  }
}

/* =========================================================
   RHEMA LIFE LPMS PLATFORM PAGE
   ========================================================= */

/* ===================== */
/* LPMS HERO             */
/* ===================== */

.lpms-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  padding: 145px 0 80px;
  color: var(--rl-white);
  background:
    radial-gradient(circle at 78% 28%, rgba(229, 188, 75, .26), transparent 24%),
    radial-gradient(circle at 65% 62%, rgba(18, 59, 120, .5), transparent 36%),
    linear-gradient(135deg, #031126 0%, #071b3a 58%, #0a2a56 100%);
}

.lpms-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(229, 188, 75, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 188, 75, .14) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: linear-gradient(90deg, transparent 35%, #000 68%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 35%, #000 68%, transparent 100%);
  transform: perspective(800px) rotateX(65deg) translateY(230px) scale(1.35);
  transform-origin: center bottom;
}

.lpms-hero-glow {
  position: absolute;
  right: 6%;
  bottom: -7%;
  width: 55%;
  height: 52%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(229, 188, 75, .25), transparent 70%);
  filter: blur(12px);
}

.lpms-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.20fr;
  gap: 2.5rem;
  align-items: center;
}

.lpms-hero-copy {
  padding-left: .4rem;
  max-width: 620px;
}

.lpms-hero-copy h1 {
  max-width: 680px;
  margin-bottom: .35rem;
  color: #fff;
  font-size: clamp(2.45rem, 3.3vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 700;
}

.lpms-hero-copy h1 span {
  display: block;
}

.lpms-hero-tagline {
  margin-bottom: 1rem;
  color: var(--rl-gold-light);
  font-family: var(--rl-heading);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-style: italic;
  line-height: 1.15;
}

.lpms-hero-text {
  max-width: 560px;
  margin-bottom: 1.65rem;
  color: rgba(255, 255, 255, .9);
  font-size: .95rem;
  line-height: 1.7;
}

.lpms-hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 650px;
  margin-bottom: 1.65rem;
}

.lpms-hero-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: center;
  padding-right: .85rem;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.lpms-hero-benefit:last-child {
  border-right: 0;
}

.lpms-hero-benefit > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--rl-gold-light);
  border: 1px solid rgba(229, 188, 75, .55);
  border-radius: 50%;
  background: rgba(3, 17, 38, .72);
  font-size: 1.2rem;
}

.lpms-hero-benefit strong,
.lpms-hero-benefit small {
  display: block;
}

.lpms-hero-benefit strong {
  color: #fff;
  font-size: .85rem;
  line-height: 1.2;
}

.lpms-hero-benefit small {
  margin-top: .2rem;
  color: rgba(255, 255, 255, .68);
  font-size: .65rem;
  line-height: 1.35;
}

.lpms-hero-button {
  min-width: 210px;
}

.lpms-hero-visual {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lpms-device-orbit {
  position: absolute;
  right: 5%;
  bottom: 7%;
  width: 78%;
  height: 42%;
  border: 1px solid rgba(229, 188, 75, .22);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.lpms-hero-device-image {
  position: relative;
  z-index: 2;
  width: 125%;
  max-width: 980px;
  margin-right: -13%;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, .56));
}

/* ===================== */
/* SECTION HEADING       */
/* ===================== */

.lpms-section-heading {
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
}

.lpms-section-heading h2 {
  margin-bottom: .6rem;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.lpms-section-heading p {
  margin: 0 auto;
  color: #526071;
  font-size: .9rem;
}

.lpms-section-heading-compact {
  margin-bottom: 1.45rem;
}

/* ===================== */
/* CONNECTED PLATFORMS   */
/* ===================== */

.lpms-platforms-section {
  padding: 2.6rem 0 3rem;
  background:
    radial-gradient(circle at 50% 48%, rgba(212, 163, 42, .08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.lpms-platform-map {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr .88fr 1fr;
  gap: 3.4rem;
  align-items: center;
  min-height: 620px;
}

.lpms-platform-connectors {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lpms-platform-connectors path {
  fill: none;
  stroke: url("#lpmsGoldLine");
  stroke-width: 2;
  stroke-dasharray: 7 6;
  vector-effect: non-scaling-stroke;
}

.lpms-platform-column,
.lpms-platform-center {
  position: relative;
  z-index: 2;
}

.lpms-platform-column {
  display: grid;
  gap: 1rem;
}

.lpms-platform-center {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.lpms-platform-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: start;
  min-height: 142px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(212, 163, 42, .28);
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 8px 24px rgba(7, 27, 58, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.lpms-platform-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 163, 42, .62);
  box-shadow: 0 16px 34px rgba(7, 27, 58, .13);
}

.lpms-platform-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--rl-gold-light);
  border-radius: 50%;
  background: var(--rl-navy);
  font-size: 1.35rem;
}

.lpms-platform-card h3 {
  margin-bottom: .25rem;
  font-family: var(--rl-body);
  font-size: .98rem;
}

.lpms-platform-card p {
  margin-bottom: .35rem;
  color: #455166;
  font-size: .72rem;
  line-height: 1.45;
}

.lpms-platform-card a {
  display: inline-flex;
  gap: .35rem;
  align-items: center;
  color: var(--rl-navy);
  font-size: .7rem;
  font-weight: 900;
}

.lpms-system-card,
.lpms-finance-card {
  width: min(100%, 360px);
}

.lpms-platform-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 255px;
  height: 255px;
}

.lpms-platform-logo-halo {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(212, 163, 42, .28);
  border-radius: 50%;
  box-shadow:
    0 0 0 20px rgba(212, 163, 42, .04),
    0 0 50px rgba(212, 163, 42, .16);
}

.lpms-platform-logo {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(7, 27, 58, .22));
}

/* ===================== */
/* CORE MODULES          */
/* ===================== */

.lpms-modules-section {
  padding: 2.3rem 0 2rem;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .46), transparent 22%, transparent 78%, rgba(246, 241, 230, .46)),
    #fff;
}

.lpms-modules-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .95rem;
}

.lpms-module-card {
  min-height: 185px;
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid #e6e9ee;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(7, 27, 58, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.lpms-module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 163, 42, .45);
  box-shadow: 0 15px 30px rgba(7, 27, 58, .12);
}

.lpms-module-card > i {
  display: block;
  margin-bottom: .75rem;
  color: #d28d00;
  font-size: 2.65rem;
  line-height: 1;
}

.lpms-module-card h3 {
  margin-bottom: .45rem;
  font-family: var(--rl-body);
  font-size: .92rem;
  line-height: 1.2;
}

.lpms-module-card p {
  margin: 0;
  color: #455166;
  font-size: .72rem;
  line-height: 1.42;
}

.lpms-modules-action {
  margin-top: 1.2rem;
  text-align: center;
}

/* ===================== */
/* SECURE ARCHITECTURE   */
/* ===================== */

.lpms-architecture-section {
  padding: 2.3rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 52%, rgba(18, 59, 120, .52), transparent 28%),
    linear-gradient(135deg, #031126 0%, #061c3d 55%, #08254f 100%);
}

.lpms-architecture-grid {
  display: grid;
  grid-template-columns: 1fr .72fr 1fr;
  gap: 2rem;
  align-items: center;
}

.lpms-architecture-copy h2 {
  margin-bottom: .9rem;
  color: #fff;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
}

.lpms-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lpms-check-list li {
  position: relative;
  margin-bottom: .5rem;
  padding-left: 1.45rem;
  color: rgba(255, 255, 255, .86);
  font-size: .82rem;
}

.lpms-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rl-gold-light);
  font-weight: 900;
}

.lpms-security-visual {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.lpms-security-ring {
  position: absolute;
  border: 1px solid rgba(229, 188, 75, .3);
  border-radius: 50%;
}

.lpms-security-ring-one {
  width: 240px;
  height: 145px;
  transform: rotate(18deg);
}

.lpms-security-ring-two {
  width: 240px;
  height: 145px;
  transform: rotate(-18deg);
}

.lpms-security-shield {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 128px;
  height: 150px;
  color: #3f2900;
  border: 1px solid #ffe49a;
  border-radius: 50% 50% 45% 45% / 25% 25% 65% 65%;
  background: linear-gradient(145deg, #fff0ad, #d79a1e 62%, #b87700);
  box-shadow:
    inset 0 0 0 9px rgba(255, 255, 255, .2),
    0 20px 40px rgba(0, 0, 0, .28),
    0 0 32px rgba(229, 188, 75, .22);
  font-size: 3.4rem;
}

.lpms-security-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--rl-gold-light);
  border: 1px solid rgba(229, 188, 75, .52);
  border-radius: 50%;
  background: #071b3a;
  font-size: 1.2rem;
}

.lpms-security-node.node-a { top: 28px; left: 22px; }
.lpms-security-node.node-b { top: 28px; right: 22px; }
.lpms-security-node.node-c { bottom: 24px; left: 28px; }
.lpms-security-node.node-d { right: 28px; bottom: 24px; }

/* ===================== */
/* LPMS CTA              */
/* ===================== */

.lpms-cta-section {
  padding: 1.25rem 0;
  background: #061b3a;
}

.lpms-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(212, 163, 42, .25);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7df 0%, #f3d789 100%);
}

.lpms-cta-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--rl-gold-light);
  border-radius: 50%;
  background: var(--rl-navy);
  font-size: 1.85rem;
}

.lpms-cta-copy h2 {
  margin-bottom: .15rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.lpms-cta-copy p {
  margin: 0;
  color: rgba(7, 27, 58, .82);
  font-size: .82rem;
}

.lpms-cta-actions {
  display: flex;
  gap: .85rem;
  align-items: center;
}

.lpms-cta-actions .btn {
  min-width: 170px;
}

/* ===================== */
/* RESPONSIVE            */
/* ===================== */

@media (max-width: 1180px) {
  .lpms-hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lpms-hero-benefits {
    grid-template-columns: 1fr;
  }

  .lpms-hero-benefit {
    border-right: 0;
  }

  .lpms-platform-map {
    gap: 1.5rem;
  }

  .lpms-modules-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lpms-architecture-grid {
    grid-template-columns: 1fr .62fr 1fr;
  }
}

@media (max-width: 960px) {
  .lpms-hero {
    padding-top: 120px;
  }

  .lpms-hero-grid {
    grid-template-columns: 1fr;
  }

  .lpms-hero-copy {
    max-width: 760px;
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
  }

  .lpms-hero-text,
  .lpms-hero-benefits {
    margin-right: auto;
    margin-left: auto;
  }

  .lpms-hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lpms-hero-benefit {
    border-right: 1px solid rgba(255, 255, 255, .18);
  }

  .lpms-hero-benefit:last-child {
    border-right: 0;
  }

  .lpms-hero-visual {
    min-height: 360px;
  }

  .lpms-hero-device-image {
    width: min(100%, 820px);
    margin-right: 0;
  }

  .lpms-platform-map {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .lpms-platform-connectors {
    display: none;
  }

  .lpms-platform-center {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .lpms-platform-column-left,
  .lpms-platform-column-right {
    grid-row: 2;
  }

  .lpms-platform-logo-wrap {
    width: 210px;
    height: 210px;
  }

  .lpms-architecture-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lpms-security-visual {
    order: -1;
  }

  .lpms-check-list {
    display: inline-block;
    text-align: left;
  }

  .lpms-cta-inner {
    grid-template-columns: auto 1fr;
  }

  .lpms-cta-actions {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .lpms-hero {
    min-height: auto;
    padding: 110px 0 55px;
  }

  .lpms-hero-copy h1 {
    font-size: 2.8rem;
  }

  .lpms-hero-benefits {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .lpms-hero-benefit,
  .lpms-hero-benefit:last-child {
    border-right: 0;
  }

  .lpms-platform-map,
  .lpms-platform-center {
    grid-template-columns: 1fr;
  }

  .lpms-platform-center {
    grid-column: auto;
    grid-row: auto;
  }

  .lpms-platform-column-left,
  .lpms-platform-column-right {
    grid-row: auto;
  }

  .lpms-platform-logo-wrap {
    order: -1;
  }

  .lpms-system-card,
  .lpms-finance-card {
    width: 100%;
  }

  .lpms-modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lpms-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lpms-cta-icon {
    margin: 0 auto;
  }

  .lpms-cta-actions {
    grid-column: auto;
    flex-direction: column;
  }

  .lpms-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .lpms-hero-copy h1 {
    font-size: 2.35rem;
  }

  .lpms-platform-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lpms-platform-icon {
    margin: 0 auto;
  }

  .lpms-modules-grid {
    grid-template-columns: 1fr;
  }

  .lpms-security-visual {
    transform: scale(.88);
  }
}

/* =========================================================
   RHEMA LIFE VISION PAGE
   ========================================================= */

/* ===================== */
/* VISION HERO           */
/* ===================== */

.vision-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--rl-white);
  background: #03152e;
}

.vision-hero-artwork {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.vision-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 18, 43, .99) 0%,
      rgba(3, 18, 43, .94) 30%,
      rgba(3, 18, 43, .68) 48%,
      rgba(3, 18, 43, .18) 76%,
      rgba(3, 18, 43, .04) 100%
    );
}

.vision-hero-glow {
  position: absolute;
  right: 7%;
  bottom: -12%;
  width: 48%;
  height: 56%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(229, 188, 75, .3), transparent 68%);
  filter: blur(16px);
}

.vision-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 105px;
}

.vision-hero-copy {
  width: min(100%, 690px);
  padding-left: .5rem;
}

.vision-hero-copy .section-eyebrow {
  margin-bottom: .45rem;
}

.vision-hero-copy h1 {
  max-width: 680px;
  margin-bottom: .55rem;
  color: #fff;
  font-size: clamp(3rem, 4.5vw, 4.75rem);
  line-height: 1.01;
  letter-spacing: -.035em;
}

.vision-hero-copy h1 span {
  display: block;
  margin-top: .12rem;
  color: var(--rl-gold-light);
  font-size: .95em;
  font-style: italic;
  font-weight: 500;
}

.vision-hero-tagline {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, .96);
  font-family: var(--rl-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-style: italic;
  font-weight: 700;
}

.vision-scripture-card {
  position: relative;
  width: min(100%, 525px);
  margin: 0;
  padding: 1rem 1.2rem 1rem 3.15rem;
  border: 1px solid rgba(229, 188, 75, .45);
  border-radius: 11px;
  background: rgba(5, 24, 53, .78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(7px);
}

.vision-scripture-card > i {
  position: absolute;
  top: .85rem;
  left: 1rem;
  color: var(--rl-gold-light);
  font-size: 1.55rem;
}

.vision-scripture-card p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.vision-scripture-card cite {
  display: block;
  margin-top: .35rem;
  color: var(--rl-gold-light);
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.vision-hero-curve {
  position: absolute;
  z-index: 4;
  right: -5%;
  bottom: -72px;
  left: -5%;
  height: 132px;
  border-top: 10px solid var(--rl-gold);
  border-radius: 50% 50% 0 0;
  background: #fff;
  transform: rotate(-1deg);
}

/* ===================== */
/* SECTION HEADINGS      */
/* ===================== */

.vision-section-heading {
  max-width: 820px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.vision-section-heading .section-eyebrow {
  margin-bottom: .2rem;
}

.vision-section-heading h2 {
  margin-bottom: .5rem;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.vision-section-heading p {
  margin: 0;
  color: #526071;
}

.vision-section-heading-light h2,
.vision-section-heading-light p {
  color: #fff;
}

.vision-section-heading-light p {
  color: rgba(255, 255, 255, .82);
}

/* ===================== */
/* VISION INTRODUCTION   */
/* ===================== */

.vision-intro-section {
  padding: 2.5rem 0 2.75rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 163, 42, .08), transparent 38%),
    #fff;
}

.vision-intro-content {
  text-align: center;
}

.vision-intro-content .section-eyebrow {
  margin-bottom: .05rem;
}

.vision-intro-content h2 {
  margin-bottom: .35rem;
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
}

.vision-title-rule {
  width: 92px;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--rl-gold), transparent);
}

.vision-intro-content p {
  margin-right: auto;
  margin-left: auto;
  color: #25324a;
  font-size: 1rem;
  line-height: 1.55;
}

.vision-intro-content p:first-of-type {
  max-width: 870px;
  margin-bottom: .25rem;
}

.vision-intro-content p:last-child {
  margin-bottom: 0;
}

.vision-intro-content strong {
  color: var(--rl-navy);
  font-family: var(--rl-heading);
  font-size: 1.15em;
  font-style: italic;
}

/* ===================== */
/* RGES CONNECTION       */
/* ===================== */

.vision-rges-section {
  padding: 2.35rem 0 2.75rem;
  color: #fff;
  background:
    radial-gradient(circle at 50% 50%, rgba(18, 59, 120, .58), transparent 42%),
    linear-gradient(135deg, #031126 0%, #061c3d 52%, #08234a 100%);
}

.vision-rges-card {
  display: grid;
  grid-template-columns: 1.15fr .78fr 1.15fr .9fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(229, 188, 75, .36);
  border-radius: 18px;
  background: rgba(3, 17, 38, .54);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .23);
}

.vision-rges-column,
.vision-rges-mission,
.vision-rges-outcome {
  min-height: 255px;
  padding: 1.45rem 1.5rem;
}

.vision-rges-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vision-rges-organization,
.vision-rges-mission,
.vision-rhema-platform {
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.vision-rges-logo {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  margin: 0;
  object-fit: contain;
}

.vision-rges-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  width: 100%;
  margin-bottom: .9rem;
}

.vision-rhema-logo {
  width: min(100%, 270px);
  max-height: 105px;
  margin-bottom: .6rem;
  object-fit: contain;
}

.vision-rges-brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  font-family: var(--rl-heading-font, Georgia, serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.vision-rges-brand-copy span {
  display: block;
}

.vision-rges-role {
  display: block;
  margin-bottom: .75rem;
  color: var(--rl-gold-light);
  font-size: .93rem;
}

.vision-rges-column p {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  line-height: 1.5;
}

.vision-rges-mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.vision-rges-mission p {
  margin: 0;
  color: #fff;
  font-size: .82rem;
  line-height: 1.55;
}

.vision-rges-arrow {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
  color: var(--rl-gold-light);
  font-size: 2.2rem;
}

.vision-rges-arrow span {
  height: 3px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--rl-gold-light));
}

.vision-rges-arrow i {
  margin-left: -.4rem;
}

.vision-rges-outcome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, .035);
}

.vision-rges-outcome > i {
  margin-bottom: .75rem;
  color: var(--rl-gold-light);
  font-size: 1.45rem;
}

.vision-rges-outcome p,
.vision-rges-outcome strong {
  color: #fff;
  font-size: .82rem;
  line-height: 1.5;
}

.vision-rges-outcome p {
  margin-bottom: .8rem;
}

.vision-rges-outcome strong {
  font-weight: 500;
}

/* ===================== */
/* GUIDING PRINCIPLES    */
/* ===================== */

.vision-principles-section {
  padding: 2.45rem 0 2.7rem;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .48), transparent 20%, transparent 80%, rgba(246, 241, 230, .48)),
    #fff;
}

.vision-principles-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.vision-principle-card {
  min-height: 185px;
  padding: 1.2rem 1rem;
  text-align: center;
  border: 1px solid #e7e9ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 23px rgba(7, 27, 58, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.vision-principle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 163, 42, .52);
  box-shadow: 0 15px 32px rgba(7, 27, 58, .13);
}

.vision-principle-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto .75rem;
  color: #d18a00;
  border: 2px solid rgba(212, 163, 42, .8);
  border-radius: 50%;
  background: rgba(212, 163, 42, .05);
  font-size: 1.65rem;
}

.vision-principle-card h3 {
  margin-bottom: .4rem;
  font-family: var(--rl-body);
  font-size: .95rem;
}

.vision-principle-card p {
  margin: 0;
  color: #455166;
  font-size: .74rem;
  line-height: 1.45;
}

/* ===================== */
/* FUTURE ROADMAP        */
/* ===================== */

.vision-roadmap-section {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 2.75rem;
  color: #fff;
  background:
    radial-gradient(circle at 50% 15%, rgba(18, 59, 120, .52), transparent 42%),
    linear-gradient(135deg, #031126 0%, #061c3d 55%, #08254f 100%);
}

.vision-roadmap-track {
  position: absolute;
  top: 158px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rl-gold-light) 8%, var(--rl-gold-light) 91%, transparent);
}

.vision-roadmap-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) .88fr;
  gap: .65rem;
}

.vision-roadmap-card {
  position: relative;
  min-height: 225px;
  padding: 2rem 1rem 1rem;
  border: 1px solid rgba(229, 188, 75, .48);
  border-radius: 11px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

.vision-roadmap-number {
  position: absolute;
  top: -22px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--rl-navy);
  background: linear-gradient(145deg, #ffe89b, var(--rl-gold));
  box-shadow: 0 8px 20px rgba(212, 163, 42, .34);
  font-weight: 900;
  transform: translateX(-50%);
}

.vision-roadmap-card h3 {
  margin: .45rem 0 .75rem;
  color: #fff;
  font-family: var(--rl-body);
  font-size: .98rem;
  text-align: center;
}

.vision-roadmap-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vision-roadmap-card li {
  position: relative;
  margin-bottom: .42rem;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, .88);
  font-size: .72rem;
  line-height: 1.35;
}

.vision-roadmap-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rl-gold-light);
  font-weight: 900;
}

.vision-roadmap-destination {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 163, 42, .12), transparent 50%),
    rgba(3, 17, 38, .72);
}

.vision-roadmap-destination > i {
  color: var(--rl-gold-light);
  font-size: 2.1rem;
}

.vision-roadmap-destination h3 {
  font-family: var(--rl-heading);
  font-size: 1.15rem;
  line-height: 1.05;
}

.vision-roadmap-destination h3 span {
  display: block;
  color: var(--rl-gold-light);
  font-size: 1.25em;
  font-style: italic;
}

.vision-roadmap-destination p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: .74rem;
  line-height: 1.45;
}

/* ===================== */
/* VISION CTA            */
/* ===================== */

.vision-cta-section {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  color: #fff;
  background: #061b3a;
}

.vision-cta-artwork {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.vision-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 17, 38, .12) 0%,
      rgba(3, 17, 38, .3) 42%,
      rgba(3, 17, 38, .9) 62%,
      rgba(3, 17, 38, .97) 100%
    );
}

.vision-cta-grid {
  position: relative;
  z-index: 2;
  min-height: 335px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vision-cta-copy {
  max-width: 650px;
  padding: 2.5rem 0;
  text-align: center;
}

.vision-cta-copy h2 {
  margin-bottom: .65rem;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.02;
}

.vision-cta-copy p {
  max-width: 580px;
  margin: 0 auto 1.15rem;
  color: rgba(255, 255, 255, .88);
  font-size: .9rem;
}

.vision-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .85rem;
}

.vision-cta-actions .btn {
  min-width: 180px;
}

/* ===================== */
/* VISION RESPONSIVE     */
/* ===================== */

@media (max-width: 1180px) {
  .vision-rges-card {
    grid-template-columns: 1fr 1fr;
  }

  .vision-rges-mission,
  .vision-rhema-platform {
    border-right: 0;
  }

  .vision-rges-organization,
  .vision-rges-mission {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .vision-rhema-platform {
    border-right: 1px solid rgba(255, 255, 255, .2);
  }

  .vision-roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
  }

  .vision-roadmap-destination {
    grid-column: 1 / -1;
    min-height: 180px;
  }

  .vision-roadmap-track {
    display: none;
  }
}

@media (max-width: 940px) {
  .vision-hero-artwork {
    object-position: 66% center;
  }

  .vision-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(3, 18, 43, .98) 0%,
        rgba(3, 18, 43, .92) 48%,
        rgba(3, 18, 43, .38) 100%
      );
  }

  .vision-principles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vision-cta-grid {
    grid-template-columns: .7fr 1.3fr;
  }
}

@media (max-width: 760px) {
  .vision-hero {
    min-height: 720px;
  }

  .vision-hero-artwork {
    object-position: 68% center;
    opacity: .58;
  }

  .vision-hero-overlay {
    background: rgba(3, 18, 43, .8);
  }

  .vision-hero-grid {
    min-height: 720px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .vision-hero-copy {
    padding-left: 0;
    text-align: center;
  }

  .vision-scripture-card {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .vision-rges-card,
  .vision-principles-grid,
  .vision-roadmap-grid,
  .vision-cta-grid {
    grid-template-columns: 1fr;
  }

  .vision-rges-organization,
  .vision-rges-mission,
  .vision-rhema-platform {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .vision-roadmap-destination {
    grid-column: auto;
  }

  .vision-cta-section,
  .vision-cta-grid {
    min-height: 430px;
  }

  .vision-cta-artwork {
    opacity: .45;
  }

  .vision-cta-overlay {
    background: rgba(3, 17, 38, .78);
  }

  .vision-cta-spacer {
    display: none;
  }

  .vision-cta-copy {
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .vision-hero-copy h1 {
    font-size: 2.55rem;
  }

  .vision-scripture-card {
    padding-left: 2.8rem;
  }

  .vision-principles-grid {
    grid-template-columns: 1fr;
  }

  .vision-cta-actions {
    flex-direction: column;
  }

  .vision-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {

  .vision-rges-brand {
    gap: .7rem;
  }

  .vision-rges-logo {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .vision-rges-brand-copy {
    font-size: .95rem;
  }

}

/* =========================================================
   RHEMA LIFE CONTACT PAGE
   ========================================================= */

/* ===================== */
/* CONTACT HERO          */
/* ===================== */

.contact-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: var(--rl-white);
  background: #03152e;
}

.contact-hero-artwork {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 18, 43, .99) 0%,
      rgba(3, 18, 43, .95) 31%,
      rgba(3, 18, 43, .69) 50%,
      rgba(3, 18, 43, .18) 77%,
      rgba(3, 18, 43, .04) 100%
    );
}

.contact-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 590px;
  display: flex;
  align-items: center;
  padding-top: 125px;
  padding-bottom: 100px;
}

.contact-hero-copy {
  width: min(100%, 590px);
  padding-left: .5rem;
}

.contact-hero-copy .section-eyebrow {
  margin-bottom: .4rem;
}

.contact-hero-copy h1 {
  max-width: 560px;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(3rem, 4.5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.contact-hero-copy h1 span {
  display: block;
  margin-top: .12rem;
  color: var(--rl-gold-light);
  font-size: .95em;
  font-style: italic;
  font-weight: 500;
}

.contact-hero-copy > p {
  max-width: 535px;
  margin-bottom: 1.3rem;
  color: rgba(255, 255, 255, .9);
  font-size: .98rem;
  line-height: 1.65;
}

.contact-scripture-card {
  position: relative;
  width: min(100%, 515px);
  margin: 0;
  padding: 1rem 1.2rem 1rem 3.15rem;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 11px;
  background: rgba(5, 24, 53, .76);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .17);
  backdrop-filter: blur(7px);
}

.contact-scripture-card > i {
  position: absolute;
  top: .86rem;
  left: 1rem;
  color: var(--rl-gold-light);
  font-size: 1.55rem;
}

.contact-scripture-card p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.contact-scripture-card cite {
  display: block;
  margin-top: .35rem;
  color: var(--rl-gold-light);
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.contact-hero-curve {
  position: absolute;
  z-index: 4;
  right: -5%;
  bottom: -72px;
  left: -5%;
  height: 132px;
  border-top: 9px solid var(--rl-gold);
  border-radius: 50% 50% 0 0;
  background: #fff;
  transform: rotate(-1deg);
}

/* ===================== */
/* MAIN CONTACT AREA     */
/* ===================== */

.contact-main-section {
  padding: 2.85rem 0 2.25rem;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .3), transparent 23%, transparent 78%, rgba(246, 241, 230, .3)),
    #fff;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 5.2rem;
  align-items: start;
}

.contact-form-column h2,
.contact-methods-column h2 {
  margin-bottom: .55rem;
  font-size: clamp(2.05rem, 3.2vw, 3rem);
}

.contact-intro-text {
  max-width: 545px;
  margin-bottom: 1.2rem;
  color: #344054;
  font-size: .9rem;
  line-height: 1.55;
}

/* ===================== */
/* FORM                  */
/* ===================== */

.contact-form {
  width: 100%;
}

.contact-field {
  margin-bottom: .72rem;
}

.contact-field label {
  margin-bottom: .28rem;
  font-size: .78rem;
}

.contact-field label span {
  color: #b42318;
}

.contact-control {
  position: relative;
}

.contact-control > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: .95rem;
  color: var(--rl-navy);
  font-size: .95rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-control input,
.contact-control select,
.contact-field textarea {
  border-color: #d7dce4;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(7, 27, 58, .025);
  font-size: .82rem;
}

.contact-control input,
.contact-control select {
  min-height: 47px;
  padding-left: 2.75rem;
}

.contact-select-control select {
  appearance: none;
  padding-right: 2.5rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #667085 50%),
    linear-gradient(135deg, #667085 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 13px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-field textarea {
  min-height: 118px;
  padding: .8rem .95rem;
  line-height: 1.5;
}

.contact-newsletter-option {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: .55rem;
  align-items: start;
  margin: .9rem 0 1.05rem;
  color: var(--rl-text);
  cursor: pointer;
}

.contact-newsletter-option > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.contact-checkbox {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1px solid #aab2c0;
  border-radius: 4px;
  color: transparent;
  background: #fff;
  transition: .2s ease;
}

.contact-newsletter-option > input:checked + .contact-checkbox {
  color: var(--rl-navy);
  border-color: var(--rl-gold);
  background: var(--rl-gold-light);
}

.contact-newsletter-option > input:focus-visible + .contact-checkbox {
  outline: 3px solid rgba(212, 163, 42, .24);
}

.contact-newsletter-option strong,
.contact-newsletter-option small {
  display: block;
}

.contact-newsletter-option strong {
  color: var(--rl-navy);
  font-size: .8rem;
}

.contact-newsletter-option small {
  margin-top: .12rem;
  color: #667085;
  font-size: .7rem;
  font-weight: 500;
  line-height: 1.45;
}

.contact-form-footer {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.contact-submit-button {
  min-width: 185px;
}

.contact-security-note {
  display: flex;
  gap: .6rem;
  align-items: center;
  color: #344054;
  font-size: .72rem;
  line-height: 1.35;
}

.contact-security-note i {
  color: var(--rl-gold);
  font-size: 1.25rem;
}

.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ===================== */
/* FORM ALERTS           */
/* ===================== */

.contact-alert {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin: 0 0 1rem;
  padding: .8rem 1rem;
  border: 1px solid;
  border-radius: 8px;
  font-size: .8rem;
  line-height: 1.5;
}

.contact-alert i {
  margin-top: .12rem;
  font-size: 1rem;
}

.contact-alert-success {
  color: #116329;
  border-color: #a6d8b3;
  background: #effaf2;
}

.contact-alert-error {
  color: #8b1e18;
  border-color: #efb3ad;
  background: #fff3f2;
}

.contact-alert ul {
  margin: .25rem 0 0;
  padding-left: 1.1rem;
}

/* ===================== */
/* CONTACT METHODS       */
/* ===================== */

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-method-card {
  min-height: 205px;
  padding: 1.05rem 1.1rem;
  text-align: center;
  border: 1px solid #e2e5ea;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 27, 58, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-method-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 163, 42, .46);
  box-shadow: 0 15px 30px rgba(7, 27, 58, .12);
}

.contact-method-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto .7rem;
  color: var(--rl-gold-light);
  border-radius: 50%;
  background: var(--rl-navy);
  font-size: 1.75rem;
}

.contact-method-card h3 {
  margin-bottom: .35rem;
  font-family: var(--rl-body);
  font-size: 1.05rem;
}

.contact-method-card a,
.contact-method-card strong {
  display: block;
  margin-bottom: .35rem;
  color: #0d3978;
  font-size: .82rem;
  font-weight: 800;
}

.contact-method-card p {
  margin: 0 auto;
  max-width: 190px;
  color: #344054;
  font-size: .72rem;
  line-height: 1.5;
}

.contact-help-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .9rem;
  align-items: center;
  margin-top: 1rem;
  padding: .85rem 1rem;
  color: #fff;
  border-radius: 11px;
  background: linear-gradient(135deg, #031126, #08254f);
  box-shadow: 0 10px 24px rgba(7, 27, 58, .18);
}

.contact-help-banner > i {
  color: var(--rl-gold-light);
  font-size: 2rem;
}

.contact-help-banner strong,
.contact-help-banner span {
  display: block;
}

.contact-help-banner strong {
  font-family: var(--rl-heading);
  font-size: 1rem;
}

.contact-help-banner span {
  color: rgba(255, 255, 255, .78);
  font-size: .67rem;
}

.contact-help-banner .btn {
  min-width: 145px;
  font-size: .7rem;
}

/* ===================== */
/* COMMITMENTS           */
/* ===================== */

.contact-commitments-section {
  padding: 1.9rem 0 2.25rem;
  border-top: 1px solid #e7e9ee;
  background: #fff;
}

.contact-commitments-heading {
  text-align: center;
}

.contact-commitments-heading h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.contact-commitments-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.contact-commitment-item {
  padding: .35rem 1.2rem;
  text-align: center;
  border-right: 1px solid #e3e7ed;
}

.contact-commitment-item:last-child {
  border-right: 0;
}

.contact-commitment-item > i {
  display: block;
  margin-bottom: .5rem;
  color: #d3910b;
  font-size: 2.55rem;
}

.contact-commitment-item h3 {
  margin-bottom: .3rem;
  font-family: var(--rl-body);
  font-size: .92rem;
}

.contact-commitment-item p {
  margin: 0 auto;
  max-width: 195px;
  color: #344054;
  font-size: .7rem;
  line-height: 1.5;
}

/* ===================== */
/* CONTACT CTA           */
/* ===================== */

.contact-cta-section {
  padding: 1rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 15% 50%, rgba(18, 59, 120, .45), transparent 30%),
    linear-gradient(135deg, #031126, #061d3d 65%, #08254f);
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.6rem;
  align-items: center;
  min-height: 125px;
}

.contact-cta-emblem {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.contact-cta-copy {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.contact-cta-copy h2 {
  margin-bottom: .35rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
}

.contact-cta-copy p {
  margin: 0;
  max-width: 730px;
  color: rgba(255, 255, 255, .86);
  font-size: .82rem;
}

.contact-cta-action {
  min-width: 235px;
  text-align: center;
}

.contact-cta-action .btn {
  width: 100%;
}

.contact-cta-action small {
  display: block;
  margin-top: .35rem;
  color: rgba(255, 255, 255, .8);
  font-size: .65rem;
}

/* ===================== */
/* CONTACT RESPONSIVE    */
/* ===================== */

@media (max-width: 1100px) {
  .contact-main-grid {
    gap: 3rem;
  }

  .contact-commitments-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 0;
  }

  .contact-commitment-item:nth-child(3) {
    border-right: 0;
  }

  .contact-commitment-item:nth-child(n + 4) {
    grid-column: span 1;
  }
}

@media (max-width: 940px) {
  .contact-hero-artwork {
    object-position: 67% center;
  }

  .contact-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(3, 18, 43, .98) 0%,
        rgba(3, 18, 43, .92) 49%,
        rgba(3, 18, 43, .37) 100%
      );
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-column,
  .contact-methods-column {
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
  }

  .contact-cta-inner {
    grid-template-columns: auto 1fr;
  }

  .contact-cta-action {
    grid-column: 1 / -1;
    width: min(100%, 360px);
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .contact-hero {
    min-height: 700px;
  }

  .contact-hero-artwork {
    object-position: 70% center;
    opacity: .5;
  }

  .contact-hero-overlay {
    background: rgba(3, 18, 43, .79);
  }

  .contact-hero-grid {
    min-height: 700px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .contact-hero-copy {
    padding-left: 0;
    text-align: center;
  }

  .contact-scripture-card {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .contact-methods-grid,
  .contact-commitments-grid {
    grid-template-columns: 1fr;
  }

  .contact-method-card {
    min-height: auto;
  }

  .contact-form-footer,
  .contact-help-banner,
  .contact-cta-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .contact-form-footer {
    align-items: stretch;
  }

  .contact-submit-button {
    width: 100%;
  }

  .contact-security-note {
    justify-content: center;
  }

  .contact-help-banner > i {
    margin: 0 auto;
  }

  .contact-help-banner .btn {
    width: 100%;
  }

  .contact-commitment-item,
  .contact-commitment-item:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid #e3e7ed;
    padding: 1rem;
  }

  .contact-commitment-item:last-child {
    border-bottom: 0;
  }

  .contact-cta-emblem {
    margin: 0 auto;
  }

  .contact-cta-copy {
    padding-left: 0;
    border-left: 0;
  }

  .contact-cta-action {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .contact-hero-copy h1 {
    font-size: 2.6rem;
  }

  .contact-main-section {
    padding-top: 2.25rem;
  }

  .contact-newsletter-option {
    grid-template-columns: auto 1fr;
  }

  .contact-newsletter-option > input {
    grid-column: 1;
  }
}

/* =========================================================
   RHEMA LIFE NEWSLETTER CONFIRMATION PAGE
   ========================================================= */

/* ===================== */
/* CONFIRMATION SECTION  */
/* ===================== */

.newsletter-confirm-section {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
  color: var(--rl-white);
  background:
    radial-gradient(circle at 78% 20%, rgba(229, 188, 75, .22), transparent 27%),
    radial-gradient(circle at 20% 74%, rgba(18, 59, 120, .54), transparent 38%),
    linear-gradient(135deg, #031126 0%, #071b3a 52%, #0a2a56 100%);
}

.newsletter-confirm-pattern {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(229, 188, 75, .48) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 74%);
  mask-image: radial-gradient(circle at center, #000 0%, transparent 74%);
}

.newsletter-confirm-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ===================== */
/* CONFIRMATION CARD     */
/* ===================== */

.newsletter-confirm-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 3rem 3.25rem;
  text-align: center;
  border: 1px solid rgba(229, 188, 75, .38);
  border-radius: 22px;
  background: rgba(3, 17, 38, .82);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.newsletter-confirm-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 1.3rem;
  color: var(--rl-navy);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe89b, var(--rl-gold));
  box-shadow:
    0 14px 32px rgba(212, 163, 42, .32),
    inset 0 1px 0 rgba(255, 255, 255, .55);
  font-size: 2.6rem;
}

.newsletter-confirm-card-invalid .newsletter-confirm-icon,
.newsletter-confirm-card-missing .newsletter-confirm-icon,
.newsletter-confirm-card-error .newsletter-confirm-icon {
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
  background: linear-gradient(145deg, #dc2626, #991b1b);
  box-shadow: 0 14px 32px rgba(220, 38, 38, .24);
}

.newsletter-confirm-card h1 {
  margin: .25rem auto 1rem;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.03em;
}

.newsletter-confirm-greeting {
  margin-bottom: .45rem;
  color: var(--rl-gold-light);
  font-family: var(--rl-heading);
  font-size: 1.35rem;
  font-style: italic;
}

.newsletter-confirm-message {
  max-width: 610px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .86);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===================== */
/* CONFIRMATION DETAILS  */
/* ===================== */

.newsletter-confirm-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin: 2rem 0 0;
}

.newsletter-confirm-details > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 64px;
  padding: .85rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .9);
  font-size: .78rem;
  font-weight: 700;
}

.newsletter-confirm-details i {
  color: var(--rl-gold-light);
  font-size: 1.15rem;
}

/* ===================== */
/* ACTIONS / NOTE        */
/* ===================== */

.newsletter-confirm-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.newsletter-confirm-actions .btn {
  min-width: 190px;
}

.newsletter-confirm-note {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, .55);
  font-size: .74rem;
}

/* ===================== */
/* RESPONSIVE            */
/* ===================== */

@media (max-width: 720px) {
  .newsletter-confirm-section {
    min-height: 720px;
    padding: 120px 0 70px;
  }

  .newsletter-confirm-card {
    padding: 2.25rem 1.25rem;
    border-radius: 16px;
  }

  .newsletter-confirm-details {
    grid-template-columns: 1fr;
  }

  .newsletter-confirm-actions {
    flex-direction: column;
  }

  .newsletter-confirm-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   RHEMA LIFE JOIN EARLY ACCESS PAGE
   ========================================================= */

/* ===================== */
/* HERO                  */
/* ===================== */

.early-access-hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  color: #fff;
  background: #03152e;
}

.early-access-hero-artwork {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.early-access-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 43, .99) 0%, rgba(3, 18, 43, .94) 38%, rgba(3, 18, 43, .56) 65%, rgba(3, 18, 43, .30) 100%),
    linear-gradient(180deg, rgba(3, 18, 43, .12), rgba(3, 18, 43, .64));
}

.early-access-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .82fr;
  gap: 4rem;
  align-items: start;
  min-height: 810px;
  padding-top: 120px;
  padding-bottom: 110px;
}

.early-access-hero-copy {
  padding-top: 1.7rem;
}

.early-access-hero-copy h1 {
  max-width: 690px;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(3rem, 4.7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.early-access-hero-copy h1 span {
  display: block;
  color: var(--rl-gold-light);
  font-style: italic;
  font-weight: 500;
}

.early-access-hero-copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, .92);
  font-size: 1rem;
  line-height: 1.72;
}

.early-access-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 700px;
  margin-top: 1.75rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(229, 188, 75, .48);
}

.early-access-benefits article {
  text-align: center;
}

.early-access-benefits article > span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto .7rem;
  color: var(--rl-gold-light);
  border: 1px solid var(--rl-gold);
  border-radius: 50%;
  background: rgba(3, 17, 38, .48);
  font-size: 1.55rem;
}

.early-access-benefits h2 {
  margin-bottom: .35rem;
  color: #fff;
  font-family: var(--rl-body);
  font-size: .93rem;
}

.early-access-benefits p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .76rem;
  line-height: 1.45;
}

.early-access-scripture-card {
  position: relative;
  max-width: 610px;
  margin: 1.75rem 0 0;
  padding: 1.25rem 1.45rem 1.2rem 3.8rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(13, 37, 76, .74);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .16);
  backdrop-filter: blur(7px);
}

.early-access-scripture-card > i {
  position: absolute;
  top: 1rem;
  left: 1.35rem;
  color: var(--rl-gold-light);
  font-size: 1.8rem;
}

.early-access-scripture-card p {
  margin: 0;
  color: #fff;
  font-family: var(--rl-heading);
  font-size: 1.15rem;
  line-height: 1.45;
}

.early-access-scripture-card cite {
  display: block;
  margin-top: .45rem;
  color: var(--rl-gold-light);
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.early-access-form-card {
  padding: 2rem 2.2rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 14px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .28);
}

.early-access-form-card > h2 {
  margin-bottom: .5rem;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
}

.early-access-form-card > p {
  margin-bottom: 1rem;
  color: #344054;
  font-size: .86rem;
  line-height: 1.5;
}

.early-access-field {
  margin-bottom: .65rem;
}

.early-access-field label {
  margin-bottom: .25rem;
  font-size: .75rem;
}

.early-access-field label span {
  color: #b42318;
}

.early-access-control {
  position: relative;
}

.early-access-control > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: .9rem;
  color: var(--rl-navy);
  font-size: .93rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.early-access-control input,
.early-access-control select {
  min-height: 43px;
  padding: .67rem 2.6rem;
  border-color: #d7dce4;
  border-radius: 7px;
  font-size: .8rem;
}

.early-access-select-control select {
  appearance: none;
  padding-right: 2.7rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #667085 50%),
    linear-gradient(135deg, #667085 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.early-access-consent {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: .55rem;
  align-items: start;
  margin: .9rem 0 1rem;
  color: #243047;
  font-size: .73rem;
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
}

.early-access-consent > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.early-access-checkbox {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  border: 1px solid #cfd5de;
  border-radius: 3px;
  background: #fff;
  color: transparent;
}

.early-access-consent > input:checked + .early-access-checkbox {
  color: #071b3a;
  border-color: var(--rl-gold);
  background: var(--rl-gold-light);
}

.early-access-submit {
  width: 100%;
  min-height: 50px;
  font-size: .9rem;
}

.early-access-security-note {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: .75rem;
  color: #475467;
  font-size: .7rem;
}

.early-access-security-note i {
  color: #d28d00;
}

.early-access-alert {
  display: flex;
  gap: .75rem;
  margin-bottom: .9rem;
  padding: .75rem .9rem;
  border-radius: 8px;
  font-size: .76rem;
  line-height: 1.45;
}

.early-access-alert-success {
  color: #166534;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
}

.early-access-alert-error {
  color: #991b1b;
  border: 1px solid #fecaca;
  background: #fef2f2;
}

.early-access-alert ul {
  margin: .25rem 0 0;
  padding-left: 1.15rem;
}

.early-access-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.early-access-hero-curve {
  position: absolute;
  z-index: 4;
  right: -5%;
  bottom: -80px;
  left: -5%;
  height: 140px;
  border-radius: 50% 50% 0 0;
  background: #fff;
  transform: rotate(-1deg);
}

/* ===================== */
/* JOURNEY               */
/* ===================== */

.early-access-journey-section {
  padding: 2rem 0 3rem;
  background: #fff;
}

.early-access-section-heading {
  margin-bottom: 1.5rem;
  text-align: center;
}

.early-access-section-heading .section-eyebrow {
  margin-bottom: .15rem;
}

.early-access-section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.early-access-journey-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.early-access-journey-grid::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 9%;
  left: 9%;
  border-top: 1px dashed #9aa6b6;
}

.early-access-journey-item {
  position: relative;
  z-index: 2;
  text-align: center;
}

.early-access-step-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto .75rem;
  color: #fff;
  border-radius: 50%;
  background: var(--rl-navy);
  font-weight: 900;
}

.early-access-step-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto .75rem;
  color: #d28d00;
  border: 1px solid rgba(212, 163, 42, .4);
  border-radius: 50%;
  background: #fffaf0;
  font-size: 1.8rem;
}

.early-access-journey-item h3 {
  margin-bottom: .35rem;
  font-family: var(--rl-body);
  font-size: .92rem;
}

.early-access-journey-item p {
  max-width: 220px;
  margin: 0 auto;
  color: #344054;
  font-size: .76rem;
}

/* ===================== */
/* REASONS               */
/* ===================== */

.early-access-reasons-section {
  padding: 1.7rem 0 2.15rem;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(18, 59, 120, .45), transparent 45%),
    #031a38;
}

.early-access-section-heading-light h2 {
  color: #fff;
}

.early-access-reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.early-access-reasons-grid article {
  padding: .5rem 1.4rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.early-access-reasons-grid article:last-child {
  border-right: 0;
}

.early-access-reasons-grid i {
  display: block;
  margin-bottom: .55rem;
  color: var(--rl-gold-light);
  font-size: 2.5rem;
}

.early-access-reasons-grid h3 {
  margin-bottom: .35rem;
  color: #fff;
  font-family: var(--rl-body);
  font-size: .92rem;
}

.early-access-reasons-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .72rem;
  line-height: 1.5;
}

/* ===================== */
/* MISSION               */
/* ===================== */

.early-access-mission-section {
  padding: 1.8rem 0;
  background: #fff;
}

.early-access-mission-grid {
  display: grid;
  grid-template-columns: .9fr 1.25fr .72fr;
  gap: 2rem;
  align-items: center;
}

.early-access-mission-photo {
  width: 100%;
  height: 205px;
  object-fit: cover;
  border-radius: 12px;
}

.early-access-mission-quote {
  position: relative;
  margin: 0;
  padding-left: 2.6rem;
}

.early-access-mission-quote > i {
  position: absolute;
  top: -.45rem;
  left: 0;
  color: var(--rl-gold);
  font-size: 2rem;
}

.early-access-mission-quote p {
  margin-bottom: .7rem;
  color: #243047;
  font-size: .9rem;
  line-height: 1.65;
}

.early-access-mission-quote cite {
  color: #d28d00;
  font-size: .76rem;
  font-style: normal;
  font-weight: 900;
}

.early-access-mission-brand {
  text-align: center;
}

.early-access-mission-brand img {
  width: min(100%, 230px);
  margin: 0 auto;
}

.early-access-mission-brand p {
  margin: .3rem 0 0;
  color: #25324a;
  font-size: .74rem;
  line-height: 1.35;
}

/* ===================== */
/* CTA                   */
/* ===================== */

.early-access-cta-section {
  background: linear-gradient(135deg, #f1c759, #d8a127);
}

.early-access-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
  min-height: 98px;
  padding-top: .8rem;
  padding-bottom: .8rem;
}

.early-access-cta-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--rl-gold-light);
  border-radius: 50%;
  background: var(--rl-navy);
  font-size: 1.8rem;
}

.early-access-cta-inner h2 {
  margin-bottom: .1rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.early-access-cta-inner p {
  margin: 0;
  color: rgba(7, 27, 58, .84);
  font-size: .82rem;
}

.early-access-cta-inner .btn {
  min-width: 205px;
}

/* ===================== */
/* RESPONSIVE            */
/* ===================== */

@media (max-width: 1180px) {
  .early-access-hero-grid {
    gap: 2.2rem;
  }

  .early-access-reasons-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 0;
  }

  .early-access-reasons-grid article:nth-child(3) {
    border-right: 0;
  }

  .early-access-reasons-grid article:nth-child(n + 4) {
    grid-column: span 1;
  }
}

@media (max-width: 960px) {
  .early-access-hero {
    min-height: auto;
  }

  .early-access-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .early-access-hero-copy {
    text-align: center;
  }

  .early-access-hero-copy > p,
  .early-access-benefits,
  .early-access-scripture-card {
    margin-right: auto;
    margin-left: auto;
  }

  .early-access-form-card {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .early-access-mission-grid {
    grid-template-columns: 1fr 1.3fr;
  }

  .early-access-mission-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .early-access-hero-grid {
    padding-top: 105px;
  }

  .early-access-benefits,
  .early-access-journey-grid,
  .early-access-reasons-grid,
  .early-access-mission-grid {
    grid-template-columns: 1fr;
  }

  .early-access-journey-grid::before {
    display: none;
  }

  .early-access-reasons-grid article,
  .early-access-reasons-grid article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    padding: 1rem;
  }

  .early-access-reasons-grid article:last-child {
    border-bottom: 0;
  }

  .early-access-mission-brand {
    grid-column: auto;
  }

  .early-access-cta-inner {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem;
    text-align: center;
  }

  .early-access-cta-icon {
    margin: 0 auto;
  }

  .early-access-cta-inner .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .early-access-hero-copy h1 {
    font-size: 2.6rem;
  }

  .early-access-form-card {
    padding: 1.4rem 1.15rem 1rem;
  }
}

/* =========================================================
   MOBILE HEADER, NAVIGATION & HOMEPAGE HERO FIXES
   ========================================================= */

/* ===================== */
/* HEADER BRAND FIX      */
/* ===================== */

.site-brand-logo,
.site-brand-image {
  width: auto;
  max-width: 260px;
  max-height: 68px;
  object-fit: contain;
}

/* ===================== */
/* MOBILE NAVIGATION     */
/* ===================== */

.mobile-navigation {
  display: none;
}

.mobile-toggle {
  position: relative;
  z-index: 1002;
  flex: 0 0 44px;
}

.mobile-toggle span {
  transition: transform .22s ease, opacity .22s ease;
}

.mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 940px) {
  .site-header {
    background: rgba(3, 17, 38, .94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .nav-wrap {
    position: relative;
    min-height: 82px;
    gap: 1rem;
  }

  .site-brand-logo,
  .site-brand-image {
    max-width: min(245px, calc(100vw - 92px));
    max-height: 60px;
  }

  .mobile-navigation {
    position: absolute;
    z-index: 1001;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    gap: 0;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: .7rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 0 0 14px 14px;
    background: rgba(3, 17, 38, .98);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .32);
  }

  .mobile-navigation.is-open {
    display: grid;
  }

  .mobile-navigation > a {
    padding: .95rem 1rem;
    color: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-weight: 800;
  }

  .mobile-navigation > a.active,
  .mobile-navigation > a:hover {
    color: var(--rl-gold-light);
  }

  .mobile-navigation-actions {
    display: grid;
    gap: .75rem;
    padding: 1rem .25rem .25rem;
  }

  .mobile-navigation-actions .btn {
    width: 100%;
  }

  body.mobile-navigation-open {
    overflow: hidden;
  }
}

/* ===================== */
/* MOBILE HERO FIX       */
/* ===================== */

@media (max-width: 720px) {
  .home-hero {
    min-height: 780px;
    aspect-ratio: auto;
  }

  .home-hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
      linear-gradient(
        180deg,
        rgba(3, 17, 38, .92) 0%,
        rgba(3, 17, 38, .80) 46%,
        rgba(3, 17, 38, .38) 76%,
        rgba(3, 17, 38, .18) 100%
      );
    pointer-events: none;
  }

  .home-hero-artwork {
    object-fit: cover;
    object-position: 64% center;
  }

  .home-hero-grid {
    min-height: 780px;
    height: auto;
    padding-top: 125px;
    padding-bottom: 70px;
  }

  .home-hero-content {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
  }

  .home-hero-content h1 {
    max-width: 100%;
    margin-bottom: .9rem;
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .home-hero-content h1 span {
    margin-top: .35rem;
    font-size: .84em;
  }

  .home-hero-content > p {
    max-width: 520px;
    margin-right: auto;
    margin-bottom: 1.35rem;
    margin-left: auto;
    font-size: .96rem;
    line-height: 1.6;
  }

  .home-hero-actions {
    gap: .8rem;
  }

  .home-hero-actions .btn {
    width: 100%;
  }

  .home-hero-partners {
    align-items: center;
    gap: .35rem;
    margin-top: 1.35rem;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .nav-wrap {
    min-height: 76px;
  }

  .site-brand-logo,
  .site-brand-image {
    max-width: calc(100vw - 88px);
    max-height: 52px;
  }

  .home-hero {
    min-height: 760px;
  }

  .home-hero-grid {
    min-height: 760px;
    padding-top: 115px;
  }

  .home-hero-content h1 {
    font-size: 2.25rem;
  }
}

/* =========================================================
   RHEMA LIFE PRIVACY POLICY PAGE
   Append this block to /assets/css/styles.css
   ========================================================= */

.privacy-hero {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  color: var(--rl-white);
  background: #03152e;
}

.privacy-hero-image {
  position: absolute;
  inset: 0 0 0 38%;
  background: url("/assets/img/privacy/hero.jpg") center/cover no-repeat;
}

.privacy-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #03152e 0%,
      rgba(3, 21, 46, .98) 34%,
      rgba(3, 21, 46, .72) 58%,
      rgba(3, 21, 46, .12) 100%),
    linear-gradient(180deg, rgba(3, 17, 38, .05), rgba(3, 17, 38, .28));
}

.privacy-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 370px;
  display: flex;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 54px;
}

.privacy-hero-copy {
  width: min(100%, 520px);
}

.privacy-hero-copy h1 {
  margin-bottom: .45rem;
  color: #fff;
  font-size: clamp(3rem, 5vw, 4.6rem);
  letter-spacing: -.025em;
}

.privacy-hero-tagline {
  margin-bottom: 1rem;
  color: var(--rl-gold-light);
  font-family: var(--rl-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-style: italic;
  font-weight: 700;
}

.privacy-hero-copy > p:not(.privacy-hero-tagline) {
  max-width: 480px;
  margin-bottom: 1.1rem;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  line-height: 1.75;
}

.privacy-gold-rule {
  display: block;
  width: 52px;
  height: 2px;
  background: var(--rl-gold);
}

.privacy-hero-curve {
  position: absolute;
  z-index: 3;
  right: -5%;
  bottom: -52px;
  left: -5%;
  height: 92px;
  border-top: 4px solid var(--rl-gold);
  border-radius: 50% 50% 0 0;
  background: #fff;
}

.privacy-content-section {
  padding: 1.6rem 0 1.1rem;
  background: #fff;
}

.privacy-updated {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.6rem;
  color: var(--rl-navy);
  font-size: .84rem;
  font-weight: 700;
}

.privacy-updated i {
  font-size: 1rem;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 3.4rem;
  align-items: start;
}

.privacy-policy-content {
  min-width: 0;
}

.privacy-policy-section {
  padding: 0 0 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #e5e7eb;
}

.privacy-policy-section:last-child {
  border-bottom: 0;
}

.privacy-policy-section h2 {
  margin-bottom: .45rem;
  font-size: 1.32rem;
  line-height: 1.25;
}

.privacy-policy-section p {
  margin-bottom: .5rem;
  color: #28354b;
  font-size: .88rem;
  line-height: 1.65;
}

.privacy-policy-section a {
  color: #c88900;
  font-weight: 800;
}

.privacy-check-list {
  list-style: none;
  margin: .5rem 0 0;
  padding: 0;
}

.privacy-check-list li {
  position: relative;
  margin-bottom: .42rem;
  padding-left: 1.35rem;
  color: #223047;
  font-size: .86rem;
  line-height: 1.45;
}

.privacy-check-list li::before {
  content: "✓";
  position: absolute;
  top: .05rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  color: #fff;
  background: var(--rl-gold);
  font-size: .58rem;
  font-weight: 900;
}

.privacy-sidebar {
  position: sticky;
  top: 1.5rem;
}

.privacy-info-card {
  padding: 0 1.35rem;
  border: 1px solid #eadfcd;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff, #fffdf9);
  box-shadow: 0 12px 28px rgba(7, 27, 58, .05);
}

.privacy-info-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid #e8e1d7;
}

.privacy-info-item:last-child {
  border-bottom: 0;
}

.privacy-info-icon,
.privacy-bottom-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--rl-gold);
  border-radius: 50%;
  color: var(--rl-gold-light);
  background: var(--rl-navy);
  font-size: 1.35rem;
}

.privacy-info-item h3,
.privacy-security-card h3 {
  margin: 0 0 .35rem;
  font-family: var(--rl-body);
  font-size: .95rem;
  line-height: 1.25;
}

.privacy-info-item p {
  margin: 0;
  color: #26344a;
  font-size: .76rem;
  line-height: 1.62;
}

.privacy-info-item a {
  display: inline-block;
  margin-top: .65rem;
  color: #d18a00;
  font-size: .8rem;
  font-weight: 800;
}

.privacy-mini-rule {
  display: block;
  width: 35px;
  height: 1px;
  margin-top: .8rem;
  background: var(--rl-gold);
}

.privacy-security-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  margin-top: .8rem;
  padding: 1.25rem 1.35rem;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #071b3a, #031126);
  box-shadow: var(--shadow-sm);
}

.privacy-security-card h3 {
  color: #fff;
  font-family: var(--rl-heading);
  font-size: 1rem;
}

.privacy-security-card p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: .74rem;
  line-height: 1.6;
}

.privacy-security-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--rl-gold);
  border-radius: 50%;
  color: var(--rl-gold-light);
  font-size: 1.1rem;
}

.privacy-bottom-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: .7rem;
  padding: 1.15rem 1.5rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #fff8eb, #fffdf9 60%, #fff6e2);
}

.privacy-bottom-copy h2 {
  margin: 0 0 .2rem;
  font-size: 1.35rem;
}

.privacy-bottom-copy p {
  margin: 0;
  color: #344158;
  font-size: .86rem;
}

.privacy-bottom-cta .btn {
  min-width: 180px;
}

@media (max-width: 1050px) {
  .privacy-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
  }
}

@media (max-width: 850px) {
  .privacy-hero-image {
    inset-left: 28%;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-sidebar {
    position: static;
  }

  .privacy-info-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.5rem;
  }

  .privacy-info-item:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .privacy-hero {
    min-height: 500px;
  }

  .privacy-hero-image {
    inset: 0;
    background-position: 66% center;
  }

  .privacy-hero-overlay {
    background: linear-gradient(90deg, rgba(3,21,46,.98), rgba(3,21,46,.82));
  }

  .privacy-hero-inner {
    min-height: 500px;
    padding-top: 105px;
  }

  .privacy-info-card {
    grid-template-columns: 1fr;
  }

  .privacy-info-item:nth-child(4) {
    border-bottom: 1px solid #e8e1d7;
  }

  .privacy-bottom-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .privacy-bottom-icon {
    margin-inline: auto;
  }

  .privacy-bottom-cta .btn {
    width: 100%;
  }
}

/* =========================================================
   RHEMA LIFE TERMS OF USE PAGE
   Append this block to /assets/css/styles.css
   ========================================================= */

.terms-hero {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  color: var(--rl-white);
  background: #03152e;
}

.terms-hero-image {
  position: absolute;
  inset: 0 0 0 38%;
  background: url("/assets/img/terms/hero.jpg") center/cover no-repeat;
}

.terms-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #03152e 0%,
      rgba(3, 21, 46, .99) 35%,
      rgba(3, 21, 46, .76) 57%,
      rgba(3, 21, 46, .12) 100%),
    linear-gradient(180deg, rgba(3,17,38,.02), rgba(3,17,38,.26));
}

.terms-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 405px;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 55px;
}

.terms-hero-copy {
  width: min(100%, 510px);
}

.terms-hero-copy .section-eyebrow {
  margin-bottom: .35rem;
}

.terms-hero-copy h1 {
  margin: 0 0 .7rem;
  color: #fff;
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: -.025em;
}

.terms-gold-rule {
  display: block;
  width: 46px;
  height: 2px;
  margin-bottom: 1.15rem;
  background: var(--rl-gold);
}

.terms-hero-copy > p {
  max-width: 455px;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,.92);
  font-size: .92rem;
  line-height: 1.7;
}

.terms-scripture-card {
  position: relative;
  max-width: 420px;
  margin: 0;
  padding: .95rem 1.1rem .95rem 2.7rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.terms-scripture-card i {
  position: absolute;
  top: .75rem;
  left: .9rem;
  color: var(--rl-gold-light);
  font-size: 1.45rem;
}

.terms-scripture-card p {
  margin: 0;
  color: #fff;
  font-size: .9rem;
}

.terms-scripture-card cite {
  display: block;
  margin-top: .35rem;
  color: var(--rl-gold-light);
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.terms-hero-curve {
  position: absolute;
  z-index: 3;
  right: -5%;
  bottom: -52px;
  left: -5%;
  height: 96px;
  border-top: 4px solid var(--rl-gold);
  border-radius: 50% 50% 0 0;
  background: #fff;
}

.terms-content-section {
  padding: 1.5rem 0 1.1rem;
  background: #fff;
}

.terms-updated {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.35rem;
  color: var(--rl-navy);
  font-size: .82rem;
  font-weight: 700;
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 335px;
  gap: 3rem;
  align-items: start;
}

.terms-policy-section {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding: 0 0 .85rem;
  margin-bottom: .85rem;
  border-bottom: 1px solid #e6e7eb;
}

.terms-policy-section:last-child {
  border-bottom: 0;
}

.terms-section-icon,
.terms-key-icon,
.terms-bottom-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--rl-gold);
  border-radius: 50%;
  color: var(--rl-gold-light);
  background: var(--rl-navy);
  font-size: 1.25rem;
}

.terms-policy-section h2 {
  margin: 0 0 .28rem;
  font-size: 1.28rem;
  line-height: 1.25;
}

.terms-policy-section p {
  margin: 0;
  color: #243047;
  font-size: .84rem;
  line-height: 1.55;
}

.terms-sidebar {
  position: sticky;
  top: 1.5rem;
}

.terms-key-card {
  padding: 1.4rem 1.4rem .2rem;
  border: 1px solid #eadfcd;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff, #fffdf9);
  box-shadow: 0 12px 28px rgba(7,27,58,.05);
}

.terms-key-card > h2 {
  margin-bottom: .8rem;
  color: #d18a00;
  font-family: var(--rl-body);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.terms-key-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: .95rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e8e1d7;
}

.terms-key-item:last-child {
  border-bottom: 0;
}

.terms-key-item h3 {
  margin: 0 0 .28rem;
  font-family: var(--rl-body);
  font-size: .9rem;
}

.terms-key-item p {
  margin: 0;
  color: #26344a;
  font-size: .75rem;
  line-height: 1.58;
}

.terms-question-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  margin-top: .75rem;
  padding: 1.25rem 1.35rem;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #071b3a, #031126);
}

.terms-question-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--rl-gold);
  border-radius: 50%;
  color: var(--rl-gold-light);
  font-size: 1.25rem;
}

.terms-question-card h2 {
  margin: 0 0 .35rem;
  color: #fff;
  font-size: 1.25rem;
}

.terms-question-card p {
  margin: 0 0 .65rem;
  color: rgba(255,255,255,.86);
  font-size: .78rem;
  line-height: 1.55;
}

.terms-question-card a {
  color: var(--rl-gold-light);
  font-size: .8rem;
  font-weight: 800;
}

.terms-question-card a i {
  margin-right: .35rem;
}

.terms-bottom-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: .55rem;
  padding: 1.1rem 1.45rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #fff8eb, #fffdf9 60%, #fff6e2);
}

.terms-bottom-copy h2 {
  margin: 0 0 .2rem;
  font-size: 1.35rem;
}

.terms-bottom-copy p {
  margin: 0;
  color: #344158;
  font-size: .83rem;
  line-height: 1.5;
}

.terms-bottom-action {
  display: grid;
  justify-items: center;
  gap: .35rem;
}

.terms-bottom-action .btn {
  min-width: 185px;
}

.terms-bottom-action span {
  color: var(--rl-navy);
  font-size: .72rem;
}

@media (max-width: 1050px) {
  .terms-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
  }
}

@media (max-width: 850px) {
  .terms-hero-image { inset-left: 28%; }
  .terms-layout { grid-template-columns: 1fr; }
  .terms-sidebar { position: static; }
}

@media (max-width: 720px) {
  .terms-hero { min-height: 620px; }
  .terms-hero-image {
    inset: 0;
    opacity: .4;
    background-position: 62% center;
  }
  .terms-hero-overlay {
    background: linear-gradient(180deg, rgba(3,21,46,.94), rgba(3,21,46,.76));
  }
  .terms-hero-inner {
    min-height: 620px;
    align-items: flex-start;
    padding-top: 120px;
  }
  .terms-hero-copy { width: 100%; }
  .terms-policy-section { grid-template-columns: 48px 1fr; gap: .75rem; }
  .terms-section-icon { width: 44px; height: 44px; }
  .terms-bottom-cta { grid-template-columns: 1fr; text-align: center; }
  .terms-bottom-icon { margin-inline: auto; }
  .terms-bottom-action .btn { width: 100%; }
}

@media (max-width: 520px) {
  .terms-policy-section { grid-template-columns: 1fr; }
  .terms-section-icon { margin-bottom: .2rem; }
  .terms-key-item { grid-template-columns: 48px 1fr; }
}

/* =========================================================
   RHEMA LIFE MODULES PAGE
   ========================================================= */

.modules-hero {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  color: var(--rl-white);
  background: #03152e;
}

.modules-hero-artwork {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.modules-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,21,46,.99) 0%, rgba(3,21,46,.95) 43%, rgba(3,21,46,.56) 67%, rgba(3,21,46,.08) 100%);
}

.modules-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 490px;
  display: flex;
  align-items: center;
  padding-top: 105px;
  padding-bottom: 90px;
}

.modules-hero-copy { width: min(100%, 690px); }

.modules-hero-copy h1 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.modules-hero-copy > p {
  max-width: 680px;
  color: rgba(255,255,255,.9);
  font-size: .98rem;
  line-height: 1.65;
}

.modules-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 1.8rem;
}

.modules-stat {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.modules-stat-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(212,163,42,.42);
  border-radius: 9px;
  color: var(--rl-gold-light);
  background: rgba(255,255,255,.06);
  font-size: 1.55rem;
}

.modules-stat strong,
.modules-stat small { display: block; }
.modules-stat strong { color: #fff; font-size: 1.65rem; line-height: 1; }
.modules-stat small { margin-top: .25rem; color: rgba(255,255,255,.84); font-size: .73rem; }

.modules-hero-curve {
  position: absolute;
  z-index: 3;
  right: -4%;
  bottom: -58px;
  left: -4%;
  height: 105px;
  border-top: 4px solid var(--rl-gold);
  border-radius: 50% 50% 0 0;
  background: #fff;
}

.modules-catalog-section { padding: 2.4rem 0 2.7rem; background: #fff; }

.modules-catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.15rem;
}

.modules-catalog-title { display: flex; gap: 1rem; align-items: flex-start; }
.modules-catalog-title > i { color: var(--rl-navy); font-size: 1.7rem; }
.modules-catalog-title h2 { margin: 0 0 .2rem; font-size: 1.65rem; }
.modules-catalog-title p { margin: 0; color: #526071; font-size: .78rem; }

.modules-status-legend { display: flex; gap: .7rem; flex-wrap: wrap; }
.modules-status-legend > span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .7rem;
  border: 1px solid #dfe4eb;
  border-radius: 999px;
  color: #344054;
  background: #fff;
  font-size: .7rem;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}
.status-available { background: #55af17; }
.status-coming { background: #f5a000; }
.status-planned { background: #2783eb; }

.modules-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 265px;
  gap: 1.25rem;
  align-items: start;
}

.modules-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .95rem;
}

.module-category-card {
  min-height: 306px;
  display: flex;
  flex-direction: column;
  padding: 1.05rem 1rem .8rem;
  border: 1px solid #dfe4eb;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(7,27,58,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.module-category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.module-category-header { display: flex; align-items: center; gap: .75rem; min-height: 56px; }
.module-category-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(212,163,42,.65);
  border-radius: 50%;
  color: var(--rl-gold-light);
  background: var(--rl-navy);
  font-size: 1.3rem;
}
.module-category-header h3 { margin: 0; font-family: var(--rl-body); font-size: .9rem; line-height: 1.25; }

.module-feature-list { list-style: none; margin: .65rem 0 .55rem; padding: 0; }
.module-feature-list li + li { margin-top: .25rem; }
.module-feature-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .55rem;
  color: #253047;
  font-size: .68rem;
}
.module-feature-list a:hover { color: var(--rl-gold); }
.module-feature-name { display: flex; align-items: center; gap: .45rem; min-width: 0; }
.module-feature-name > i { width: 14px; color: var(--rl-navy); text-align: center; }
.module-feature-list .status-dot { width: 7px; height: 7px; flex-basis: 7px; }

.module-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: auto;
  padding-top: .65rem;
  color: #c47f00;
  border-top: 1px solid #edf0f4;
  font-size: .67rem;
  font-weight: 800;
}

.modules-sidebar { display: grid; gap: .9rem; }
.modules-sidebar-card {
  padding: 1.2rem;
  border: 1px solid #eadfcb;
  border-radius: 12px;
  background: #fffdfa;
}
.modules-sidebar-card h3 { margin-bottom: .75rem; font-family: var(--rl-body); font-size: .95rem; }
.modules-sidebar-card p { color: #344054; font-size: .75rem; line-height: 1.55; }
.modules-sidebar-card .btn { width: 100%; min-height: 40px; padding: .65rem .7rem; font-size: .72rem; }

.modules-filter-list { display: grid; gap: .48rem; }
.modules-filter-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  min-height: 38px;
  padding: .55rem .65rem;
  border: 1px solid #e3e7ed;
  border-radius: 7px;
  color: #253047;
  background: #fff;
  font-size: .72rem;
}
.modules-filter-list a span { display: flex; align-items: center; gap: .48rem; }
.modules-filter-list a strong { font-size: .65rem; font-weight: 700; }
.modules-filter-list a.active { color: #fff; background: var(--rl-navy); border-color: var(--rl-navy); }

.modules-promo-card {
  overflow: hidden;
  padding: 1.2rem;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(145deg, #071b3a, #031126);
  box-shadow: var(--shadow-md);
}
.modules-promo-card h3 { margin-bottom: .7rem; color: #fff; font-size: 1.55rem; }
.modules-promo-card p { color: rgba(255,255,255,.84); font-size: .75rem; }
.modules-promo-card img { margin: .85rem auto; max-height: 150px; object-fit: contain; }
.modules-promo-card .btn { width: 100%; min-height: 40px; margin-top: .5rem; padding: .65rem .7rem; font-size: .72rem; }

.modules-fact-heading { display: flex; align-items: center; gap: .55rem; }
.modules-fact-heading > i { color: var(--rl-gold); font-size: 1.45rem; }
.modules-fact-heading h3 { margin: 0; }

.modules-bottom-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.25rem;
  padding: 1rem 1.3rem;
  border: 1px solid #efe1c8;
  border-radius: 12px;
  background: linear-gradient(90deg, #fff9ef, #f7ead0);
}
.modules-bottom-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid var(--rl-gold);
  border-radius: 50%;
  color: var(--rl-gold-light);
  background: var(--rl-navy);
  font-size: 1.6rem;
}
.modules-bottom-cta h2 { margin: 0 0 .2rem; font-size: 1.35rem; }
.modules-bottom-cta p { margin: 0; color: #344054; font-size: .76rem; }
.modules-bottom-cta .btn { min-width: 265px; }

@media (max-width: 1220px) {
  .modules-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .modules-hero-artwork { object-position: 68% center; }
  .modules-hero-copy { max-width: 58%; }
  .modules-page-layout { grid-template-columns: 1fr; }
  .modules-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .modules-promo-card { grid-row: span 2; }
}

@media (max-width: 760px) {
  .modules-hero { min-height: 680px; }
  .modules-hero-grid { min-height: 680px; padding-top: 115px; padding-bottom: 110px; }
  .modules-hero-artwork { object-position: 72% center; }
  .modules-hero-overlay { background: linear-gradient(180deg, rgba(3,21,46,.97), rgba(3,21,46,.83) 65%, rgba(3,21,46,.45)); }
  .modules-hero-copy { width: 100%; max-width: 100%; text-align: center; }
  .modules-stats { justify-content: center; gap: 1rem; }
  .modules-stat { min-width: 145px; }
  .modules-catalog-header { align-items: flex-start; flex-direction: column; }
  .modules-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .modules-sidebar { grid-template-columns: 1fr; }
  .modules-bottom-cta { grid-template-columns: 1fr; text-align: center; }
  .modules-bottom-icon { margin: 0 auto; }
  .modules-bottom-cta .btn { width: 100%; min-width: 0; }
}

@media (max-width: 520px) {
  .modules-card-grid { grid-template-columns: 1fr; }
  .modules-stats { align-items: stretch; flex-direction: column; }
  .modules-stat { justify-content: center; }
  .modules-status-legend { gap: .45rem; }
  .modules-status-legend > span { font-size: .64rem; }
}
/* ===================== */
/* MODULE DEVELOPMENT    */
/* ===================== */

.status-all {
  background: var(--rl-navy);
}

.status-released,
.status-available {
  background: #55af17;
}

.status-coming {
  background: #f5a000;
}

.status-planned {
  background: #7c3aed;
}

.modules-development-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(212, 163, 42, .38);
  border-radius: 12px;
  background: linear-gradient(90deg, #fff8e8, #fffdf8);
  box-shadow: 0 8px 22px rgba(7, 27, 58, .05);
}

.modules-development-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--rl-gold-light);
  background: var(--rl-navy);
  font-size: 1.35rem;
}

.modules-development-notice h2 {
  margin: 0 0 .2rem;
  font-family: var(--rl-body);
  font-size: 1rem;
}

.modules-development-notice p {
  max-width: 850px;
  margin: 0;
  color: #455166;
  font-size: .76rem;
  line-height: 1.5;
}

.modules-development-notice .btn {
  min-width: 165px;
  font-size: .72rem;
}

.modules-filter-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  min-height: 38px;
  padding: .55rem .65rem;
  border: 1px solid #e3e7ed;
  border-radius: 7px;
  color: #253047;
  background: #fff;
  font-size: .72rem;
}

.modules-filter-list > div span {
  display: flex;
  align-items: center;
  gap: .48rem;
}

.modules-filter-list > div strong {
  font-size: .65rem;
  font-weight: 700;
}

.modules-filter-list > div.active {
  color: #fff;
  border-color: var(--rl-navy);
  background: var(--rl-navy);
}

@media (max-width: 760px) {
  .modules-development-notice {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .modules-development-icon {
    margin: 0 auto;
  }

  .modules-development-notice .btn {
    width: 100%;
  }
}

/* =========================================================
   RHEMA LIFE COMMUNITY PAGE
   Append this block to /assets/css/styles.css
   ========================================================= */

/* ===================== */
/* COMMUNITY HERO        */
/* ===================== */

.community-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--rl-white);
  background:
    radial-gradient(circle at 78% 28%, rgba(229, 188, 75, .2), transparent 24%),
    radial-gradient(circle at 70% 72%, rgba(18, 59, 120, .56), transparent 38%),
    linear-gradient(135deg, #031126 0%, #061c3d 56%, #092752 100%);
}

.community-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(229, 188, 75, .48) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent 12%, #000 48%, transparent 96%);
  mask-image: linear-gradient(90deg, transparent 12%, #000 48%, transparent 96%);
}

.community-hero-glow {
  position: absolute;
  right: 3%;
  bottom: -12%;
  width: 54%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(229, 188, 75, .24), transparent 68%);
  filter: blur(18px);
}

.community-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 3rem;
  align-items: center;
  padding-top: 125px;
  padding-bottom: 110px;
}

.community-hero-copy {
  max-width: 680px;
  padding-left: .5rem;
}

.community-hero-copy h1 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(3rem, 4.7vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.community-hero-copy h1 span {
  display: block;
  margin-top: .12rem;
  color: var(--rl-gold-light);
  font-size: .9em;
  font-style: italic;
  font-weight: 500;
}

.community-hero-copy > p {
  max-width: 625px;
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  line-height: 1.72;
}

.community-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.6rem;
}

.community-hero-actions .btn {
  min-width: 205px;
}

.community-hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  max-width: 650px;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(229, 188, 75, .42);
}

.community-hero-highlights > div {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255, 255, 255, .85);
  font-size: .75rem;
  font-weight: 700;
}

.community-hero-highlights i {
  color: var(--rl-gold-light);
  font-size: 1.15rem;
}

.community-hero-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.community-orbit {
  position: absolute;
  border: 1px solid rgba(229, 188, 75, .3);
  border-radius: 50%;
}

.community-orbit-one {
  width: 480px;
  height: 300px;
  transform: rotate(18deg);
}

.community-orbit-two {
  width: 480px;
  height: 300px;
  transform: rotate(-18deg);
}

.community-center-mark {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 190px;
  border: 2px solid rgba(255, 232, 155, .8);
  border-radius: 50%;
  color: var(--rl-navy);
  background: linear-gradient(145deg, #fff1b6, #d9a42a 72%);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, .34),
    0 0 60px rgba(229, 188, 75, .18),
    inset 0 1px 0 rgba(255, 255, 255, .6);
}

.community-center-mark i {
  margin-bottom: .35rem;
  font-size: 2.7rem;
}

.community-center-mark strong {
  font-family: var(--rl-heading);
  font-size: 1.35rem;
}

.community-center-mark span {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.community-floating-node {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  gap: .28rem;
  min-width: 92px;
  min-height: 92px;
  padding: .65rem;
  border: 1px solid rgba(229, 188, 75, .48);
  border-radius: 50%;
  color: #fff;
  background: rgba(3, 17, 38, .92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
  backdrop-filter: blur(8px);
}

.community-floating-node i {
  color: var(--rl-gold-light);
  font-size: 1.45rem;
}

.community-floating-node span {
  font-size: .68rem;
  font-weight: 800;
}

.community-node-school { top: 4%; left: 18%; }
.community-node-teacher { top: 5%; right: 16%; }
.community-node-resource { bottom: 5%; left: 13%; }
.community-node-article { bottom: 4%; right: 13%; }
.community-node-discussion { top: 43%; right: 0; }

.community-hero-curve {
  position: absolute;
  z-index: 5;
  right: -5%;
  bottom: -72px;
  left: -5%;
  height: 132px;
  border-top: 8px solid var(--rl-gold);
  border-radius: 50% 50% 0 0;
  background: #fff;
  transform: rotate(-1deg);
}

/* ===================== */
/* SHARED HEADINGS       */
/* ===================== */

.community-section-heading {
  max-width: 850px;
  margin: 0 auto 2rem;
  text-align: center;
}

.community-section-heading h2,
.community-content-header h2 {
  margin-bottom: .55rem;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.community-section-heading p,
.community-content-header p {
  margin: 0;
  color: #526071;
}

.community-section-heading-light h2,
.community-content-header-light h2 {
  color: #fff;
}

.community-section-heading-light p,
.community-content-header-light p {
  color: rgba(255, 255, 255, .82);
}

.community-content-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.community-content-header > div {
  max-width: 790px;
}

/* ===================== */
/* COMMUNITY PILLARS     */
/* ===================== */

.community-pillars-section {
  padding: 2.7rem 0 3.4rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 163, 42, .08), transparent 34%),
    #fff;
}

.community-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.community-pillar-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.3rem;
  border: 1px solid #e3e7ed;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 9px 25px rgba(7, 27, 58, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.community-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 163, 42, .52);
  box-shadow: 0 17px 36px rgba(7, 27, 58, .12);
}

.community-pillar-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 1rem;
  border: 2px solid rgba(212, 163, 42, .78);
  border-radius: 50%;
  color: var(--rl-gold-light);
  background: var(--rl-navy);
  font-size: 1.65rem;
}

.community-pillar-card h3 {
  margin-bottom: .55rem;
  font-family: var(--rl-body);
  font-size: 1.05rem;
}

.community-pillar-card p {
  margin-bottom: 1rem;
  color: #455166;
  font-size: .8rem;
  line-height: 1.58;
}

.community-pillar-card a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
  color: #bd7b00;
  font-size: .78rem;
  font-weight: 900;
}

/* ===================== */
/* RECOGNITION PROGRAM   */
/* ===================== */

.community-recognition-section {
  padding: 3.2rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 15%, rgba(18, 59, 120, .55), transparent 43%),
    linear-gradient(135deg, #031126 0%, #061c3d 56%, #08254f 100%);
}

.community-recognition-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.community-recognition-panel {
  overflow: hidden;
  border: 1px solid rgba(229, 188, 75, .34);
  border-radius: 16px;
  background: rgba(3, 17, 38, .54);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
}

.community-recognition-panel-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .045);
}

.community-recognition-panel-heading > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(229, 188, 75, .65);
  border-radius: 50%;
  color: var(--rl-gold-light);
  font-size: 1.45rem;
}

.community-recognition-panel-heading small {
  display: block;
  color: var(--rl-gold-light);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.community-recognition-panel-heading h3 {
  margin: .15rem 0 0;
  color: #fff;
  font-size: 1.5rem;
}

.community-recognition-list {
  padding: 0 1.25rem;
}

.community-recognition-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.community-recognition-item:last-child {
  border-bottom: 0;
}

.community-badge-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--rl-gold);
  border-radius: 50%;
  color: var(--rl-gold-light);
  background: rgba(212, 163, 42, .08);
  font-size: 1.35rem;
}

.community-recognition-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
}

.community-recognition-item h4 {
  margin: 0;
  color: #fff;
  font-family: var(--rl-heading);
  font-size: 1.08rem;
}

.community-recognition-item p {
  margin: .35rem 0 .45rem;
  color: rgba(255, 255, 255, .8);
  font-size: .76rem;
  line-height: 1.52;
}

.community-recognition-item strong {
  display: block;
  color: var(--rl-gold-light);
  font-size: .68rem;
  line-height: 1.45;
}

.community-status {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: .25rem .55rem;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.community-status.permanent {
  color: #2b1b00;
  background: var(--rl-gold-light);
}

.community-status.active {
  color: #dcfce7;
  background: rgba(22, 163, 74, .35);
  border: 1px solid rgba(74, 222, 128, .45);
}

.community-status.verified {
  color: #dbeafe;
  background: rgba(37, 99, 235, .32);
  border: 1px solid rgba(96, 165, 250, .4);
}

.community-status.earned {
  color: #fef3c7;
  background: rgba(217, 119, 6, .32);
  border: 1px solid rgba(251, 191, 36, .4);
}

.community-status.appointed {
  color: #ede9fe;
  background: rgba(124, 58, 237, .3);
  border: 1px solid rgba(167, 139, 250, .42);
}

.community-recognition-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  max-width: 980px;
  margin: 1.35rem auto 0;
  padding: .85rem 1rem;
  border: 1px solid rgba(229, 188, 75, .28);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
}

.community-recognition-note i {
  color: var(--rl-gold-light);
  font-size: 1.2rem;
}

.community-recognition-note p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .75rem;
  line-height: 1.5;
}

/* ===================== */
/* RECOGNITION PATHWAYS  */
/* ===================== */

.community-pathways-section {
  padding: 3.2rem 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, .48), transparent 20%, transparent 80%, rgba(246, 241, 230, .48)),
    #fff;
}

.community-pathways-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.community-pathway-card {
  padding: 1.4rem;
  border: 1px solid #e4e7ec;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 11px 28px rgba(7, 27, 58, .08);
}

.community-pathway-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8ebef;
}

.community-pathway-heading > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--rl-gold-light);
  background: var(--rl-navy);
  font-size: 1.4rem;
}

.community-pathway-heading small {
  display: block;
  color: #bd7b00;
  font-size: .66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.community-pathway-heading h3 {
  margin: .1rem 0 0;
  font-size: 1.45rem;
}

.community-pathway-steps {
  position: relative;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.community-pathway-steps::before {
  content: "";
  position: absolute;
  top: 21px;
  bottom: 21px;
  left: 20px;
  width: 1px;
  background: linear-gradient(var(--rl-gold), rgba(212, 163, 42, .2));
}

.community-pathway-steps li {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .85rem;
  align-items: center;
  margin-bottom: .85rem;
}

.community-pathway-steps li:last-child {
  margin-bottom: 0;
}

.community-pathway-steps li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--rl-gold);
  border-radius: 50%;
  color: var(--rl-gold-light);
  background: var(--rl-navy);
  font-size: .78rem;
  font-weight: 900;
}

.community-pathway-steps strong,
.community-pathway-steps small {
  display: block;
}

.community-pathway-steps strong {
  color: var(--rl-navy);
  font-size: .82rem;
}

.community-pathway-steps small {
  color: #526071;
  font-size: .7rem;
  line-height: 1.4;
}

.community-pathway-result {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon label"
    "icon title";
  gap: .05rem .8rem;
  align-items: center;
  padding: .9rem 1rem;
  border: 1px solid rgba(212, 163, 42, .3);
  border-radius: 10px;
  background: linear-gradient(90deg, #fff8e8, #fffdf9);
}

.community-pathway-result i {
  grid-area: icon;
  color: #bd7b00;
  font-size: 1.8rem;
}

.community-pathway-result span {
  grid-area: label;
  color: #667085;
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.community-pathway-result strong {
  grid-area: title;
  color: var(--rl-navy);
  font-family: var(--rl-heading);
  font-size: 1rem;
}

/* ===================== */
/* ARTICLES              */
/* ===================== */

.community-articles-section {
  padding: 3.1rem 0 3.5rem;
  border-top: 1px solid #e7e9ed;
  background: #fbfcfe;
}

.community-articles-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.community-article-card {
  overflow: hidden;
  border: 1px solid #e1e5eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(7, 27, 58, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.community-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 17px 36px rgba(7, 27, 58, .12);
}

.community-article-image {
  position: relative;
  min-height: 175px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, .93);
  font-size: 4rem;
}

.community-article-featured .community-article-image {
  min-height: 220px;
}

.community-article-image::before,
.community-article-image::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(229, 188, 75, .22);
  border-radius: 50%;
}

.community-article-image::before {
  width: 240px;
  height: 150px;
  transform: rotate(18deg);
}

.community-article-image::after {
  width: 240px;
  height: 150px;
  transform: rotate(-18deg);
}

.community-article-image i {
  position: relative;
  z-index: 2;
  color: var(--rl-gold-light);
}

.community-article-image > span {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  color: var(--rl-navy);
  background: var(--rl-gold-light);
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.community-article-image-ai {
  background: linear-gradient(145deg, #071b3a, #123b78);
}

.community-article-image-leadership {
  background: linear-gradient(145deg, #0d254c, #2f6eb5);
}

.community-article-image-future {
  background: linear-gradient(145deg, #4b3500, #d39b21);
}

.community-article-body {
  padding: 1.2rem;
}

.community-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .65rem;
  color: #667085;
  font-size: .63rem;
  font-weight: 700;
}

.community-article-meta span {
  color: #bd7b00;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.community-article-card h3 {
  margin-bottom: .55rem;
  font-size: 1.28rem;
  line-height: 1.18;
}

.community-article-card p {
  color: #455166;
  font-size: .76rem;
  line-height: 1.55;
}

.community-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  padding-top: .75rem;
  border-top: 1px solid #edf0f4;
  color: #667085;
  font-size: .66rem;
}

.community-article-footer a {
  color: #bd7b00;
  font-weight: 900;
}

/* ===================== */
/* RESOURCE LIBRARY      */
/* ===================== */

.community-resources-section {
  padding: 3.1rem 0 3.4rem;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(18, 59, 120, .48), transparent 32%),
    linear-gradient(135deg, #031126, #061c3d 64%, #08254f);
}

.community-resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.community-resource-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 150px;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(229, 188, 75, .28);
  border-radius: 13px;
  background: rgba(255, 255, 255, .065);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.community-resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 188, 75, .55);
  background: rgba(255, 255, 255, .09);
}

.community-resource-type {
  position: absolute;
  top: .75rem;
  right: .8rem;
  padding: .2rem .42rem;
  border-radius: 4px;
  color: #fff;
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.community-resource-type.pdf { background: #b42318; }
.community-resource-type.doc { background: #175cd3; }
.community-resource-type.xlsx { background: #067647; }

.community-resource-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid var(--rl-gold);
  border-radius: 50%;
  color: var(--rl-gold-light);
  font-size: 1.45rem;
}

.community-resource-category {
  color: var(--rl-gold-light);
  font-size: .6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.community-resource-copy h3 {
  margin: .2rem 0 .35rem;
  color: #fff;
  font-family: var(--rl-body);
  font-size: 1rem;
}

.community-resource-copy p {
  margin-bottom: .55rem;
  color: rgba(255, 255, 255, .78);
  font-size: .7rem;
  line-height: 1.45;
}

.community-resource-details {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  color: rgba(255, 255, 255, .66);
  font-size: .6rem;
}

.community-resource-download {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: 1.1rem;
  border-radius: 50%;
  color: var(--rl-navy);
  background: var(--rl-gold-light);
  font-size: 1.2rem;
  transition: transform .2s ease;
}

.community-resource-download:hover {
  transform: scale(1.07);
}

/* ===================== */
/* DISCUSSIONS           */
/* ===================== */

.community-discussions-section {
  padding: 3.4rem 0;
  background:
    linear-gradient(90deg, #fff 0%, #fbfcfe 60%, #f8f3e8 100%);
}

.community-discussions-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.community-discussions-copy h2 {
  margin-bottom: .8rem;
  font-size: clamp(2.1rem, 3.7vw, 3.4rem);
}

.community-discussions-copy > p {
  color: #455166;
  font-size: .9rem;
  line-height: 1.65;
}

.community-discussion-benefits {
  margin: 1.2rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.community-discussion-benefits li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin-bottom: .55rem;
  color: #2d3a50;
  font-size: .8rem;
}

.community-discussion-benefits i {
  color: #d3910b;
}

.community-discussion-preview {
  display: grid;
  gap: .8rem;
}

.community-discussion-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: .9rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e1e5eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(7, 27, 58, .07);
}

.community-discussion-card-private {
  border-color: rgba(212, 163, 42, .42);
  background: linear-gradient(90deg, #fffaf0, #fff);
}

.community-discussion-avatar {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--rl-gold-light);
  background: var(--rl-navy);
  font-size: 1.3rem;
}

.community-discussion-category {
  color: #bd7b00;
  font-size: .58rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.community-discussion-card h3 {
  margin: .18rem 0 .25rem;
  font-family: var(--rl-body);
  font-size: .92rem;
  line-height: 1.3;
}

.community-discussion-card p {
  margin-bottom: .45rem;
  color: #667085;
  font-size: .66rem;
}

.community-discussion-card > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  color: #667085;
  font-size: .62rem;
}

/* ===================== */
/* COMMUNITY CTA         */
/* ===================== */

.community-cta-section {
  padding: 1.4rem 0;
  color: #fff;
  background: #031126;
}

.community-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
  min-height: 125px;
  padding: 1.15rem 1.3rem;
  border: 1px solid rgba(212, 163, 42, .28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 20%, rgba(212, 163, 42, .16), transparent 28%),
    linear-gradient(135deg, #071b3a, #092752);
}

.community-cta-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 2px solid var(--rl-gold);
  border-radius: 50%;
  color: var(--rl-gold-light);
  font-size: 1.9rem;
}

.community-cta-copy .section-eyebrow {
  margin-bottom: .15rem;
}

.community-cta-copy h2 {
  margin-bottom: .25rem;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.community-cta-copy p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
}

.community-cta-actions {
  display: flex;
  gap: .75rem;
}

.community-cta-actions .btn {
  min-width: 170px;
}

/* ===================== */
/* RESPONSIVE            */
/* ===================== */

@media (max-width: 1180px) {
  .community-hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .community-orbit-one,
  .community-orbit-two {
    width: 410px;
    height: 260px;
  }

  .community-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-article-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
  }

  .community-article-featured .community-article-image {
    min-height: 100%;
  }

  .community-cta-inner {
    grid-template-columns: auto 1fr;
  }

  .community-cta-actions {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 960px) {
  .community-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .community-hero-copy {
    max-width: 780px;
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
  }

  .community-hero-copy > p,
  .community-hero-highlights {
    margin-right: auto;
    margin-left: auto;
  }

  .community-hero-actions {
    justify-content: center;
  }

  .community-hero-visual {
    min-height: 430px;
  }

  .community-recognition-columns,
  .community-pathways-grid,
  .community-discussions-grid {
    grid-template-columns: 1fr;
  }

  .community-discussions-grid {
    gap: 2rem;
  }

  .community-discussions-copy {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }

  .community-discussion-benefits {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .community-hero {
    min-height: auto;
  }

  .community-hero-grid {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .community-hero-copy h1 {
    font-size: 2.7rem;
  }

  .community-hero-actions,
  .community-hero-highlights {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .community-hero-actions .btn {
    width: 100%;
  }

  .community-hero-highlights > div {
    justify-content: center;
  }

  .community-hero-visual {
    min-height: 390px;
    transform: scale(.9);
  }

  .community-pillars-grid,
  .community-resources-grid,
  .community-articles-grid {
    grid-template-columns: 1fr;
  }

  .community-article-featured {
    grid-column: auto;
    display: block;
  }

  .community-article-featured .community-article-image {
    min-height: 220px;
  }

  .community-content-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-content-header .btn {
    width: 100%;
  }

  .community-recognition-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-resource-card {
    grid-template-columns: 52px 1fr;
  }

  .community-resource-download {
    grid-column: 1 / -1;
    width: 100%;
    height: 40px;
    margin-top: 0;
    border-radius: 7px;
  }

  .community-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .community-cta-icon {
    margin: 0 auto;
  }

  .community-cta-actions {
    grid-column: auto;
    flex-direction: column;
  }

  .community-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .community-hero-visual {
    min-height: 350px;
    margin-right: -2rem;
    margin-left: -2rem;
    transform: scale(.78);
  }

  .community-recognition-item {
    grid-template-columns: 1fr;
  }

  .community-badge-icon {
    margin-bottom: .1rem;
  }

  .community-pathway-card {
    padding: 1.1rem;
  }

  .community-discussion-card {
    grid-template-columns: 1fr;
  }
}