/*
Theme Name: Beyond 4.5
Theme URI: https://example.com/
Author: Beyond 4.5
Description: Custom WordPress theme for the Beyond 4.5 website.
Version: 1.0.0
Text Domain: beyond45
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Orbitron:wght@500;600;700;800;900&display=swap");

    :root {
      --page-zoom: 0.92;
      --font-body: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      --font-logo: "Orbitron", "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      --blue-950: #06142f;
      --blue-900: #082158;
      --blue-800: #073c95;
      --blue-700: #074fbe;
      --blue-600: #0b63dc;
      --blue-100: #eaf2ff;
      --blue-50: #f5f9ff;
      --yellow-500: #ffc421;
      --yellow-400: #ffd657;
      --ink: #06142f;
      --text: #0a1834;
      --muted: #2f3d55;
      --line: #d9e2ef;
      --shadow-sm: 0 10px 30px rgba(6, 20, 47, 0.08);
      --shadow-md: 0 18px 46px rgba(6, 20, 47, 0.14);
      --page: #ffffff;
      --section: #fbfdff;
      --container: 1760px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 4%, rgba(255, 196, 33, 0.07), transparent 24rem),
        radial-gradient(circle at 86% 6%, rgba(11, 99, 220, 0.07), transparent 28rem),
        var(--page);
      font-family: var(--font-body);
      line-height: 1.55;
      overflow-x: hidden;
      zoom: var(--page-zoom);
    }

    h1,
    h2,
    h3,
    .nav-menu,
    .nav-cta,
    .button,
    .hero-subheading,
    .section-eyebrow,
    .fact-text,
    .final-copy strong,
    .footer-line,
    .footer-nav,
    .password-box h2,
    .password-form button {
      font-family: var(--font-logo);
    }

    img,
    svg {
      display: block;
    }

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

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    .container {
      width: min(calc(100% - 120px), var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: relative;
      z-index: 30;
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid rgba(217, 226, 239, 0.62);
      backdrop-filter: blur(18px);
    }

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

    .brand {
      display: flex;
      align-items: center;
      gap: 0;
      width: 278px;
      flex: 0 0 auto;
    }

    .site-header .brand img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(25px, 2.1vw, 44px);
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0;
      color: #061a3e;
    }

    .nav-menu a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      white-space: nowrap;
    }

    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 0;
      height: 3px;
      border-radius: 999px;
      background: var(--blue-600);
      transform: translateX(-50%);
      transition: width 180ms ease;
    }

    .nav-menu a:hover::after,
    .nav-menu a:focus-visible::after,
    .nav-menu a.active::after {
      width: 32px;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 58px;
      padding: 0 31px;
      border-radius: 5px;
      background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
      color: #fff;
      box-shadow: 0 10px 24px rgba(7, 79, 190, 0.22);
      font-size: 14px;
      font-weight: 900;
      white-space: nowrap;
    }

    .menu-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #fff;
      color: var(--blue-800);
      cursor: pointer;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 56px 0 30px;
      background: linear-gradient(180deg, #fff 0%, #fff 78%, #f8fbff 100%);
    }

    .hero .container {
      width: min(100%, 1582px);
      padding-inline: 60px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 500px minmax(0, 1fr);
      align-items: start;
      gap: 34px;
    }

    .hero-copy {
      position: relative;
      padding-left: 0;
    }

    .hero-copy::before {
      content: "";
      position: absolute;
      left: 10px;
      top: 10px;
      width: 2px;
      height: 306px;
      background: linear-gradient(180deg, var(--yellow-500), var(--yellow-400));
      border-radius: 999px;
    }

    .hero h1 {
      max-width: 510px;
      margin: 0 0 0 58px;
      color: var(--blue-950);
      font-size: clamp(46px, 3.25vw, 54px);
      line-height: 1.12;
      font-weight: 950;
      letter-spacing: 0;
    }

    .hero h1 .accent {
      color: var(--yellow-500);
    }

    .hero-copy .hero-subheading {
      max-width: 420px;
      margin: 10px 0 26px 58px;
      color: var(--blue-700);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
    }

    .hero-copy p {
      max-width: 500px;
      margin: 0 0 22px 10px;
      color: #152238;
      font-size: 15px;
      font-weight: 540;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin: 32px 0 0 10px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      min-width: 236px;
      min-height: 58px;
      padding: 0 26px;
      border: 1px solid transparent;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 900;
      cursor: pointer;
      transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }

    .button svg {
      width: 17px;
      height: 17px;
      stroke-width: 3;
    }

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

    .button-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
      box-shadow: 0 12px 26px rgba(7, 79, 190, 0.22);
    }

    .button-secondary {
      color: var(--blue-800);
      background: #fff;
      border-color: #b8c8e4;
      box-shadow: 0 8px 22px rgba(6, 20, 47, 0.05);
    }

    .hero-visual-wrap {
      position: relative;
      width: 920px;
      min-height: 628px;
      padding-bottom: 0;
      margin-top: -56px;
    }

    .hero-ring {
      display: none;
    }

    .hero-media {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 526px;
      margin-left: 0;
      overflow: hidden;
      border-radius: 0;
      background: url("assets/hero-home.webp") left top / 100% 100% no-repeat;
      box-shadow: none;
    }

    .hero-media::before {
      content: none;
    }

    .hero-media::after {
      content: none;
    }

    .flag-pole {
      display: none;
    }

    .flag-pole::before {
      content: "";
      position: absolute;
      left: 50%;
      top: -24px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: radial-gradient(circle at 36% 30%, #fff, #172542 64%);
      transform: translateX(-50%);
    }

    .flag {
      display: none;
    }

    .flag::before,
    .flag::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 10% 10%, rgba(255, 255, 255, 0.27), transparent 35%),
        repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.12) 0 22px, transparent 22px 58px);
      mix-blend-mode: screen;
      opacity: 0.75;
    }

    .flag::after {
      inset: 36px 175px auto auto;
      width: 104px;
      height: 104px;
      background: #fff;
      clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
      opacity: 1;
      mix-blend-mode: normal;
    }

    .floating-facts {
      position: absolute;
      z-index: 8;
      left: 72px;
      right: auto;
      top: 476px;
      bottom: auto;
      display: grid;
      grid-template-columns: repeat(4, minmax(150px, 1fr));
      width: 810px;
      overflow: hidden;
      border-radius: 34px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(217, 226, 239, 0.82);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(16px);
    }

    .fact {
      display: grid;
      grid-template-columns: 42px 1fr;
      align-items: center;
      min-height: 122px;
      gap: 18px;
      padding: 18px 23px;
      color: #0a1834;
      font-size: 13px;
      font-weight: 760;
    }

    .fact+.fact {
      border-left: 1px solid var(--line);
    }

    .fact-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      color: var(--blue-700);
    }

    .fact-icon svg {
      width: 38px;
      height: 38px;
      stroke: currentColor;
      stroke-width: 2.6;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .overview {
      position: relative;
      padding: 54px 0 18px;
      background: linear-gradient(180deg, #f8fbff 0%, #fff 28%, #fff 100%);
      border-top: 1px solid rgba(217, 226, 239, 0.72);
    }

    .overview-grid {
      display: grid;
      grid-template-columns: 275px 1fr 275px;
      align-items: start;
      gap: 28px;
    }

    .map-mark {
      position: relative;
      min-height: 270px;
      padding-top: 8px;
    }

    .map-mark svg {
      width: 232px;
      height: auto;
      margin: 0 auto;
      opacity: 0.92;
    }

    .map-star {
      position: absolute;
      top: 99px;
      left: 50%;
      display: grid;
      place-items: center;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
      color: #fff;
      box-shadow: 0 18px 32px rgba(7, 79, 190, 0.25);
      transform: translateX(-16%);
    }

    .map-star svg {
      width: 36px;
      height: 36px;
      margin: 0;
      opacity: 1;
      fill: currentColor;
    }

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

    .eyebrow {
      display: inline-flex;
      align-items: center;
      flex-direction: column;
      gap: 9px;
      margin: 0 0 10px;
      color: var(--blue-700);
      font-size: 15px;
      line-height: 1;
      font-weight: 950;
      text-transform: uppercase;
    }

    .eyebrow::after {
      content: "";
      width: 42px;
      height: 3px;
      border-radius: 999px;
      background: var(--yellow-500);
    }

    .section-title {
      max-width: 820px;
      margin: 0 auto 20px;
      color: var(--blue-950);
      font-size: clamp(32px, 3.4vw, 45px);
      line-height: 1.12;
      font-weight: 950;
      letter-spacing: 0;
    }

    .overview-lead {
      max-width: 800px;
      margin: 0 auto 22px;
      color: #0a1834;
      font-size: 15px;
      font-weight: 850;
      line-height: 1.65;
    }

    .overview-body {
      max-width: 890px;
      margin: 0 auto 22px;
      color: #253149;
      font-size: 14px;
      font-weight: 540;
      line-height: 1.7;
    }

    .overview-note {
      max-width: 900px;
      margin: 0 auto;
      color: var(--blue-700);
      font-size: 15px;
      font-weight: 900;
      line-height: 1.55;
    }

    .cards-section {
      padding: 36px 0 18px;
      background: #fff;
    }

    .info-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .info-card {
      display: grid;
      grid-template-columns: 92px 1fr;
      gap: 24px;
      min-height: 276px;
      padding: 34px 34px 32px;
      background: #fff;
      border: 1px solid rgba(217, 226, 239, 0.82);
      box-shadow: var(--shadow-sm);
    }

    .card-icon {
      display: grid;
      place-items: center;
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue-100), #f8fbff);
      color: var(--blue-700);
    }

    .card-icon svg {
      width: 54px;
      height: 54px;
      stroke: currentColor;
      stroke-width: 3.2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .card-icon .icon-fill,
    .principle-icon .icon-fill {
      fill: currentColor;
      stroke: none;
    }

    .card-icon .icon-accent,
    .principle-icon .icon-accent {
      color: var(--yellow-500);
      stroke: currentColor;
    }

    .card-icon .icon-accent-fill,
    .principle-icon .icon-accent-fill {
      color: var(--yellow-500);
      fill: currentColor;
      stroke: currentColor;
    }

    .info-card h3 {
      display: inline-flex;
      flex-direction: column;
      gap: 8px;
      margin: 0 0 18px;
      color: var(--blue-700);
      font-size: 24px;
      line-height: 1.12;
      font-weight: 950;
      letter-spacing: 0;
    }

    .info-card h3::after {
      content: "";
      width: 47px;
      height: 3px;
      border-radius: 999px;
      background: var(--yellow-500);
    }

    .info-card .card-kicker {
      margin: 0 0 15px;
      color: #0a1834;
      font-size: 14px;
      line-height: 1.45;
      font-weight: 800;
    }

    .info-card p {
      margin: 0;
      color: #17243b;
      font-size: 14px;
      line-height: 1.63;
      font-weight: 540;
    }

    .principles {
      padding: 16px 0 42px;
      background: #fff;
    }

    .principles-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 25px;
      margin: 0 0 28px;
      color: var(--blue-700);
      font-size: 24px;
      line-height: 1.1;
      font-weight: 950;
      letter-spacing: 0;
      text-align: center;
    }

    .principles-title::before,
    .principles-title::after {
      content: "";
      width: 36px;
      height: 3px;
      border-radius: 999px;
      background: var(--yellow-500);
    }

    .principle-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      align-items: start;
    }

    .principle {
      min-height: 196px;
      padding: 8px 30px 0;
      text-align: center;
      border-left: 1px solid var(--line);
    }

    .principle:first-child {
      border-left: 0;
    }

    .principle-icon {
      display: grid;
      place-items: center;
      width: 86px;
      height: 72px;
      margin: 0 auto 10px;
      color: var(--blue-700);
    }

    .principle-icon svg {
      width: 70px;
      height: 70px;
      stroke: currentColor;
      stroke-width: 2.7;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .principle h4 {
      margin: 0 0 8px;
      color: var(--blue-700);
      font-size: 18px;
      line-height: 1.1;
      font-weight: 950;
    }

    .principle p {
      margin: 0 auto;
      color: #18253d;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 520;
    }

    .final-cta {
      position: relative;
      overflow: hidden;
      min-height: 248px;
      padding: 48px 0;
      color: #fff;
      background:
        linear-gradient(110deg, rgba(7, 79, 190, 0.96), rgba(4, 69, 173, 0.98)),
        radial-gradient(circle at 71% 12%, rgba(255, 255, 255, 0.16), transparent 22rem);
    }

    .final-cta::before {
      content: "";
      position: absolute;
      right: 17%;
      top: 24px;
      width: 190px;
      height: 190px;
      background: #fff;
      opacity: 0.08;
      clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
    }

    .final-cta::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      width: min(520px, 48vw);
      height: 160px;
      background:
        radial-gradient(circle at 14% 100%, #063178 0 42px, transparent 43px),
        radial-gradient(circle at 29% 100%, #063178 0 48px, transparent 49px),
        radial-gradient(circle at 44% 100%, #063178 0 54px, transparent 55px),
        radial-gradient(circle at 60% 100%, #063178 0 46px, transparent 47px),
        linear-gradient(150deg, transparent 0 56%, rgba(6, 49, 120, 0.86) 57% 100%);
      opacity: 0.72;
      clip-path: polygon(0 64%, 8% 55%, 11% 38%, 14% 57%, 19% 46%, 22% 23%, 26% 55%, 30% 42%, 33% 17%, 36% 58%, 41% 45%, 44% 22%, 48% 62%, 54% 42%, 58% 15%, 62% 61%, 68% 45%, 72% 20%, 75% 61%, 82% 43%, 86% 24%, 89% 62%, 95% 48%, 100% 28%, 100% 100%, 0 100%);
    }

    .final-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 380px 1fr;
      align-items: center;
      gap: 55px;
    }

    .final-title {
      margin: 0;
      color: #fff;
      font-size: clamp(44px, 5vw, 62px);
      line-height: 0.98;
      font-weight: 950;
      letter-spacing: 0;
    }

    .final-title span {
      color: var(--yellow-500);
    }

    .final-copy {
      max-width: 650px;
      padding-left: 52px;
      border-left: 1px solid rgba(255, 255, 255, 0.58);
    }

    .final-copy p {
      margin: 0 0 10px;
      color: #fff;
      font-size: 16px;
      line-height: 1.52;
      font-weight: 680;
    }

    .final-copy p strong {
      font-weight: 950;
    }

    .final-copy .button {
      min-width: 238px;
      min-height: 48px;
      margin-top: 8px;
      color: #071b3d;
      background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
      box-shadow: 0 12px 24px rgba(6, 20, 47, 0.22);
    }

    .inner-page {
      background:
        radial-gradient(circle at 88% 10%, rgba(11, 99, 220, 0.08), transparent 26rem),
        radial-gradient(circle at 10% 24%, rgba(255, 196, 33, 0.08), transparent 22rem),
        #fff;
    }

    .page-hero {
      position: relative;
      padding: 112px 0 94px;
      border-bottom: 1px solid rgba(217, 226, 239, 0.7);
      overflow: hidden;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      right: -120px;
      bottom: -170px;
      width: 470px;
      height: 470px;
      border-radius: 50%;
      border: 42px solid rgba(11, 99, 220, 0.12);
      border-left-color: rgba(255, 196, 33, 0.2);
      pointer-events: none;
    }

    .page-hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      gap: 84px;
      align-items: center;
    }

    .page-hero-copy {
      position: relative;
      padding-left: 54px;
      max-width: 950px;
    }

    .page-hero-copy::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 3px;
      height: 210px;
      background: var(--yellow-500);
    }

    .page-hero h1 {
      margin: 0 0 26px;
      color: var(--ink);
      font-size: clamp(48px, 5.4vw, 88px);
      line-height: 1.02;
      font-weight: 950;
    }

    .page-lead {
      color: var(--blue-700);
      font-size: 23px;
      line-height: 1.48;
      font-weight: 900;
    }

    .page-hero p {
      max-width: 860px;
      margin: 0 0 22px;
      font-size: 19px;
      line-height: 1.78;
      color: #10203d;
      font-weight: 560;
    }

    .page-hero-panel {
      position: relative;
      display: grid;
      place-items: center;
      min-height: 360px;
      padding: 44px;
      border: 1px solid rgba(0, 77, 184, 0.13);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.94)),
        radial-gradient(circle at 50% 20%, rgba(11, 99, 220, 0.14), transparent 15rem);
      box-shadow: 0 30px 80px rgba(6, 20, 47, 0.11);
      overflow: hidden;
    }

    .panel-star {
      width: 118px;
      height: 118px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--blue-700);
      color: #fff;
      box-shadow: 0 18px 42px rgba(7, 79, 190, 0.24);
    }

    .panel-star svg {
      width: 58px;
      height: 58px;
      fill: currentColor;
    }

    .page-hero-panel svg,
    .statement-icon svg {
      max-width: 100%;
      max-height: 100%;
    }

    .page-hero-panel p {
      margin: 26px 0 0;
      color: var(--ink);
      font-family: var(--font-logo);
      font-size: 30px;
      line-height: 1.35;
      font-weight: 950;
      text-align: center;
    }

    .page-hero-panel span {
      color: var(--yellow-500);
    }

    .content-band,
    .about-statements,
    .values-section,
    .structure-section {
      padding: 88px 0;
    }

    .content-band {
      background: #fff;
    }

    .split-content {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 80px;
      align-items: start;
    }

    .section-head-left .section-title {
      text-align: left;
      margin-inline: 0;
    }

    .rich-copy {
      color: #14233f;
      font-size: 19px;
      line-height: 1.85;
      font-weight: 560;
    }

    .rich-copy p {
      margin: 0 0 24px;
    }

    .statement-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 34px;
    }

    .statement-card {
      padding: 46px;
      border: 1px solid rgba(0, 77, 184, 0.13);
      background: rgba(255, 255, 255, 0.92);
      box-shadow: var(--shadow-sm);
    }

    .statement-icon {
      display: grid;
      place-items: center;
      width: 92px;
      height: 92px;
      border-radius: 50%;
      background: var(--blue-100);
      color: var(--blue-700);
      margin-bottom: 22px;
    }

    .statement-icon svg {
      width: 54px;
      height: 54px;
      fill: none;
      stroke: currentColor;
      stroke-width: 4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .statement-card h2,
    .value-card h3,
    .structure-item h3 {
      color: var(--blue-700);
      font-weight: 950;
    }

    .statement-card h2 {
      margin: 0 0 10px;
      font-size: 32px;
    }

    .statement-card h3 {
      margin: 0 0 22px;
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.45;
      font-weight: 900;
    }

    .statement-card p {
      margin: 0 0 22px;
      color: #14233f;
      font-size: 17px;
      line-height: 1.78;
      font-weight: 560;
    }

    .check-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: #14233f;
      font-size: 16px;
      line-height: 1.55;
      font-weight: 650;
    }

    .check-list li {
      position: relative;
      padding-left: 28px;
    }

    .check-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.72em;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--yellow-500);
      box-shadow: 0 0 0 5px rgba(255, 196, 33, 0.18);
    }

    .values-section {
      background: var(--section);
      border-top: 1px solid rgba(217, 226, 239, 0.65);
      border-bottom: 1px solid rgba(217, 226, 239, 0.65);
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 26px;
      margin-top: 54px;
    }

    .value-card {
      min-height: 190px;
      padding: 34px;
      border: 1px solid rgba(0, 77, 184, 0.12);
      background: #fff;
      box-shadow: 0 14px 38px rgba(6, 20, 47, 0.06);
    }

    .value-card h3 {
      margin: 0 0 14px;
      font-size: 23px;
    }

    .value-card h3::after {
      content: "";
      display: block;
      width: 48px;
      height: 3px;
      margin-top: 12px;
      background: var(--yellow-500);
    }

    .value-card p {
      margin: 0;
      color: #14233f;
      font-size: 16px;
      line-height: 1.7;
      font-weight: 560;
    }

    .structure-list {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0;
      margin-top: 58px;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .structure-item {
      padding: 34px 28px;
      border-right: 1px solid var(--line);
      text-align: center;
    }

    .structure-item:last-child {
      border-right: 0;
    }

    .structure-item h3 {
      margin: 0 0 14px;
      font-size: 18px;
      line-height: 1.35;
    }

    .structure-item p {
      margin: 0;
      color: #14233f;
      font-size: 15px;
      line-height: 1.65;
      font-weight: 560;
    }

    .inner-final {
      margin-top: 0;
    }

    .about-ref-page {
      background: #fff;
      color: var(--text);
    }

    .about-ref-line-icon svg,
    .about-ref-statement-icon svg,
    .about-ref-value-icon svg,
    .about-ref-structure-icon svg {
      display: block;
      width: 100%;
      height: 100%;
      fill: none;
      stroke: currentColor;
      stroke-width: 3.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .about-ref-hero {
      position: relative;
      overflow: hidden;
      min-height: 0;
      padding: 82px 0 72px;
      background:
        radial-gradient(circle at 12% 12%, rgba(255, 196, 33, 0.06), transparent 24rem),
        radial-gradient(circle at 82% 8%, rgba(11, 99, 220, 0.06), transparent 28rem),
        #fff;
      border-bottom: 1px solid rgba(217, 226, 239, 0.7);
    }

    .about-ref-hero-grid {
      display: grid;
      width: min(calc(100% - 120px), 1480px);
      grid-template-columns: minmax(420px, 590px) minmax(620px, 820px);
      justify-content: center;
      gap: 76px;
      align-items: center;
    }

    .about-ref-hero-copy {
      position: relative;
      z-index: 2;
      max-width: 610px;
      padding-left: 34px;
    }

    .about-ref-eyebrow {
      margin: 0 0 18px;
      color: var(--blue-700);
      font-family: var(--font-logo);
      font-size: 15px;
      line-height: 1;
      font-weight: 950;
      text-transform: uppercase;
    }

    .about-ref-hero-copy::before,
    .about-ref-intro::before {
      content: "";
      position: absolute;
      left: 0;
      width: 3px;
      background: var(--yellow-500);
    }

    .about-ref-hero-copy::before {
      top: 50px;
      height: 78px;
    }

    .about-ref-hero h1 {
      margin: 0 0 28px;
      color: var(--ink);
      font-size: clamp(52px, 5vw, 76px);
      line-height: 1;
      font-weight: 950;
    }

    .about-ref-intro {
      position: relative;
      padding-left: 0;
    }

    .about-ref-intro::before {
      top: 6px;
      bottom: 4px;
      background: var(--blue-700);
      opacity: 0.8;
      transform: translateX(-34px);
    }

    .about-ref-intro p {
      margin: 0 0 20px;
      color: #10203d;
      font-size: 17px;
      line-height: 1.78;
      font-weight: 540;
    }

    .about-ref-intro strong {
      color: var(--ink);
      font-weight: 900;
    }

    .about-ref-hero-visual {
      position: relative;
      width: 100%;
      max-width: 820px;
      aspect-ratio: 16 / 9;
      align-self: center;
      justify-self: start;
      margin: 0;
      border-radius: 260px 0 0 0;
      box-shadow: -24px 28px 70px rgba(6, 20, 47, 0.1);
    }

    .about-ref-hero-visual img {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: inherit;
      object-fit: cover;
      object-position: center;
    }

    .about-ref-hero-visual::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 -34px;
      width: 58px;
      border-radius: 320px 0 0 320px;
      background: linear-gradient(180deg, #2f6eea 0 70%, var(--yellow-500) 70% 100%);
      z-index: -1;
    }

    .about-ref-who,
    .about-ref-statements,
    .about-ref-values,
    .about-ref-structure {
      padding: 86px 0 42px;
    }

    .about-ref-who-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
      gap: 86px;
      align-items: center;
    }

    .about-ref-who-copy {
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 28px;
      align-items: start;
    }

    .about-ref-line-icon {
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      color: var(--blue-700);
    }

    .about-ref-who h2,
    .about-ref-statement h2 {
      margin: 0 0 22px;
      color: var(--ink);
      font-size: 38px;
      line-height: 1.12;
      font-weight: 950;
    }

    .about-ref-who p,
    .about-ref-statement p {
      margin: 0 0 22px;
      color: #10203d;
      font-size: 16px;
      line-height: 1.82;
      font-weight: 540;
    }

    .about-ref-quote {
      min-height: 250px;
      padding: 54px 58px;
      border-radius: 14px;
      background: linear-gradient(135deg, #eef6ff, #f8fbff);
      box-shadow: 0 18px 48px rgba(6, 20, 47, 0.05);
    }

    .about-ref-quote span {
      display: block;
      height: 52px;
      color: var(--blue-700);
      font-family: Georgia, serif;
      font-size: 104px;
      line-height: 0.72;
      font-weight: 700;
    }

    .about-ref-quote p {
      margin: 26px 0 0;
      color: var(--ink);
      font-size: 26px;
      line-height: 1.55;
      font-weight: 520;
    }

    .about-ref-quote strong {
      color: var(--blue-700);
      font-weight: 950;
    }

    .about-ref-statement-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 90px;
    }

    .about-ref-statement {
      position: relative;
      padding: 26px 70px 24px;
      text-align: center;
    }

    .about-ref-statement + .about-ref-statement {
      border-left: 1px solid var(--line);
    }

    .about-ref-statement-icon {
      display: grid;
      place-items: center;
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      color: var(--blue-700);
    }

    .about-ref-statement h3 {
      margin: 0 0 46px;
      color: var(--blue-700);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.45;
      font-weight: 900;
    }

    .about-ref-statement p {
      text-align: left;
    }

    .about-ref-check-list {
      display: grid;
      gap: 15px;
      margin: 0;
      padding: 0;
      color: #10203d;
      font-size: 15px;
      line-height: 1.62;
      font-weight: 550;
      list-style: none;
      text-align: left;
    }

    .about-ref-check-list li {
      position: relative;
      padding-left: 34px;
    }

    .about-ref-check-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.45em;
      width: 14px;
      height: 14px;
      border: 2px solid var(--blue-700);
      border-radius: 50%;
      background:
        linear-gradient(135deg, transparent 0 45%, var(--blue-700) 46% 54%, transparent 55%) center / 70% 70% no-repeat;
    }

    .about-ref-centered-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      margin: 0 0 54px;
      color: var(--ink);
      font-size: 34px;
      line-height: 1.1;
      font-weight: 950;
      text-align: center;
    }

    .about-ref-centered-title::before,
    .about-ref-centered-title::after {
      content: "";
      width: 34px;
      height: 3px;
      background: var(--yellow-500);
    }

    .about-ref-value-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .about-ref-value {
      min-height: 218px;
      padding: 0 24px;
      text-align: center;
      border-left: 1px solid var(--line);
    }

    .about-ref-value:first-child {
      border-left: 0;
    }

    .about-ref-value-icon {
      display: grid;
      place-items: center;
      width: 72px;
      height: 72px;
      margin: 0 auto 18px;
      color: var(--blue-700);
    }

    .about-ref-value:nth-child(2) .about-ref-value-icon,
    .about-ref-value:nth-child(3) .about-ref-value-icon,
    .about-ref-value:nth-child(4) .about-ref-value-icon {
      color: var(--yellow-500);
    }

    .about-ref-value:nth-child(2) svg,
    .about-ref-value:nth-child(3) svg,
    .about-ref-value:nth-child(4) svg {
      stroke: var(--blue-700);
    }

    .about-ref-value:nth-child(2) svg path:nth-child(2),
    .about-ref-value:nth-child(3) svg path:first-child,
    .about-ref-value:nth-child(4) svg path:nth-child(2) {
      stroke: var(--yellow-500);
    }

    .about-ref-value h3,
    .about-ref-structure-card h3 {
      margin: 0 0 12px;
      color: var(--blue-700);
      font-size: 17px;
      line-height: 1.25;
      font-weight: 950;
    }

    .about-ref-value p,
    .about-ref-structure-card p {
      margin: 0;
      color: #10203d;
      font-size: 13px;
      line-height: 1.62;
      font-weight: 560;
    }

    .about-ref-structure {
      padding-bottom: 92px;
    }

    .about-ref-structure-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 28px;
    }

    .about-ref-structure-card {
      min-height: 310px;
      padding: 38px 26px 28px;
      border: 1px solid rgba(0, 77, 184, 0.13);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 18px 44px rgba(6, 20, 47, 0.08);
      text-align: center;
    }

    .about-ref-structure-icon {
      display: grid;
      place-items: center;
      width: 74px;
      height: 74px;
      margin: 0 auto 26px;
      color: var(--blue-700);
    }

    .about-ref-structure-card h3 {
      color: var(--ink);
      min-height: 43px;
      margin-bottom: 22px;
    }

    .about-ref-structure-card::after {
      content: "";
      display: block;
      width: 46px;
      height: 3px;
      margin: 28px auto 0;
      background: var(--yellow-500);
    }

    .about-ref-cta .final-title {
      font-size: clamp(40px, 4.6vw, 58px);
      line-height: 1.12;
    }

    .about-ref-cta .final-copy p:first-child {
      font-size: 15px;
      line-height: 1.58;
    }

    .about-ref-cta .final-copy p strong {
      font-size: 25px;
      line-height: 1.35;
    }

    .about-ref-cta .button {
      display: inline-flex;
      width: auto;
      max-width: max-content;
    }

    .about-ref-cta .button svg {
      flex: 0 0 auto;
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
    }

    .site-footer {
      position: relative;
      overflow: hidden;
      min-height: 340px;
      background:
        radial-gradient(circle at 88% 24%, rgba(11, 99, 220, 0.07), transparent 18rem),
        radial-gradient(circle at 15% 18%, rgba(255, 196, 33, 0.05), transparent 18rem),
        #fff;
      border-top: 7px solid #2f6eea;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      right: -20px;
      top: 54px;
      width: 210px;
      height: 210px;
      background: var(--blue-700);
      opacity: 0.08;
      clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
    }

    .site-footer::after {
      content: "";
      position: absolute;
      right: 16px;
      top: 170px;
      width: 620px;
      height: 96px;
      border-bottom: 13px solid rgba(255, 196, 33, 0.18);
      border-top: 9px solid rgba(11, 99, 220, 0.07);
      border-radius: 0 0 100% 100%;
      transform: rotate(-7deg);
      opacity: 0.75;
    }

    .footer-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 56px;
      min-height: 230px;
      padding-top: 34px;
    }

    .footer-logo img {
      width: min(620px, 38vw);
      height: auto;
      object-fit: contain;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 11px;
    }

    .footer-center {
      display: grid;
      justify-items: center;
      gap: 22px;
    }

    .footer-line {
      color: var(--blue-950);
      font-size: 20px;
      line-height: 1.15;
      font-weight: 950;
      white-space: nowrap;
    }

    .socials {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }

    .social {
      display: grid;
      place-items: center;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #fff;
      color: var(--blue-700);
      box-shadow: 0 12px 28px rgba(6, 20, 47, 0.14);
      font-size: 12px;
      font-weight: 950;
    }

    .social svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .social .social-fill {
      fill: currentColor;
      stroke: none;
    }

    .social .youtube-play {
      fill: #fff;
      stroke: none;
    }

    .footer-copy {
      justify-self: end;
      color: #18253d;
      font-size: 16px;
      line-height: 1.3;
      font-weight: 540;
      white-space: nowrap;
    }

    .footer-divider {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
      margin: 0 auto;
      width: min(calc(100% - 120px), var(--container));
      color: var(--blue-700);
    }

    .footer-divider::before,
    .footer-divider::after {
      content: "";
      height: 1px;
      background: #d8dde7;
    }

    .divider-mark {
      display: inline-flex;
      align-items: center;
      gap: 20px;
      color: var(--yellow-500);
    }

    .divider-mark::before,
    .divider-mark::after {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: currentColor;
    }

    .divider-mark svg {
      width: 25px;
      height: 25px;
      color: var(--blue-700);
      fill: currentColor;
    }

    .footer-nav {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      width: min(calc(100% - 120px), 1500px);
      margin: 38px auto 52px;
      padding: 0;
      list-style: none;
    }

    .footer-nav li {
      display: flex;
      align-items: center;
    }

    .footer-nav li+li::before {
      content: "";
      width: 1px;
      height: 34px;
      margin: 0 62px;
      background: #cfd6e2;
    }

    .footer-nav a {
      color: var(--blue-950);
      font-size: 18px;
      line-height: 1;
      font-weight: 500;
      white-space: nowrap;
    }

    .reveal {
      opacity: 1;
      transform: none;
      transition: opacity 520ms ease, transform 520ms ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    @media (max-width: 1300px) {
      .nav {
        min-height: 96px;
      }

      .brand {
        width: 220px;
      }

      .nav-menu,
      .nav-cta {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .site-header.menu-open .nav-menu {
        position: absolute;
        left: 28px;
        right: 28px;
        top: calc(100% - 8px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 18px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 10px;
        box-shadow: var(--shadow-md);
      }
    }

    @media (max-width: 1180px) {
      .container {
        width: min(calc(100% - 56px), var(--container));
      }

      .hero .container {
        width: min(calc(100% - 56px), var(--container));
        padding-inline: 0;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
      }

      .hero-copy {
        max-width: 820px;
      }

      .hero-visual-wrap {
        width: 100%;
        min-height: 692px;
      }

      .floating-facts {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: min(860px, calc(100% - 40px));
      }

      .overview-grid {
        grid-template-columns: 190px 1fr;
      }

      .overview-grid> :last-child {
        display: none;
      }

      .info-cards {
        grid-template-columns: 1fr;
      }

      .info-card {
        min-height: auto;
      }

      .principle-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 24px;
      }

      .principle:nth-child(4) {
        border-left: 0;
      }

      .page-hero-grid,
      .split-content {
        grid-template-columns: 1fr;
      }

      .page-hero-grid {
        gap: 44px;
      }

      .page-hero-panel {
        min-height: 280px;
      }

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

      .structure-item:nth-child(2n) {
        border-right: 0;
      }
    }

    @media (max-width: 820px) {
      .container {
        width: min(calc(100% - 32px), var(--container));
      }

      .hero {
        padding: 26px 0 20px;
        background:
          linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.12) 100%),
          linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0.92) 100%),
          url("assets/hero-home.webp") center top / auto 100% no-repeat;
        border: 1px solid rgba(11, 99, 220, 0.22);
      }

      .hero-copy {
        z-index: 3;
        padding-left: 0;
      }

      .hero-copy::before {
        content: "BEYOND 4.5";
        position: static;
        display: inline-flex;
        align-items: center;
        width: auto;
        height: 30px;
        margin: 0 0 14px 0;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.76);
        color: var(--blue-950);
        font-size: 12px;
        line-height: 1;
        font-weight: 950;
        letter-spacing: 0;
      }

      .hero .hero-grid {
        display: block;
        width: min(calc(100% - 32px), 420px);
        padding-inline: 0;
      }

      .hero h1 {
        max-width: 245px;
        margin-left: 0;
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.03;
      }

      .hero-copy .hero-subheading {
        max-width: 255px;
        margin: 14px 0 12px 0;
        font-size: 14px;
        line-height: 1.35;
      }

      .hero-copy p {
        max-width: 248px;
        margin-left: 0;
        margin-bottom: 0;
        font-size: 12px;
        line-height: 1.58;
      }

      .hero-copy .hero-subheading+p+p {
        display: none;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 214px;
        gap: 8px;
        margin: 24px 0 0 0;
      }

      .button {
        width: 100%;
        min-width: 0;
        min-height: 48px;
        padding: 0 18px;
        justify-content: space-between;
        border-radius: 5px;
        font-size: 13px;
      }

      .hero-visual-wrap {
        position: static;
        width: 100%;
        min-height: 0;
        margin-top: 30px;
        padding-bottom: 0;
      }

      .hero-media,
      .hero-ring {
        display: none;
      }

      .flag {
        top: 84px;
        right: -140px;
        width: 380px;
        height: 190px;
      }

      .flag::after {
        inset: 35px 150px auto auto;
        width: 76px;
        height: 76px;
      }

      .flag-pole {
        top: 70px;
        right: 61%;
        height: 270px;
      }

      .floating-facts {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        transform: none;
        border-radius: 17px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 16px 34px rgba(6, 20, 47, 0.14);
        backdrop-filter: blur(12px);
      }

      .fact {
        min-height: 92px;
        grid-template-columns: 48px 1fr;
        gap: 10px;
        padding: 16px 14px;
        font-size: 12px;
        line-height: 1.38;
      }

      .fact+.fact {
        border-left: 0;
        border-top: 0;
      }

      .fact:nth-child(2),
      .fact:nth-child(4) {
        border-left: 1px solid var(--line);
      }

      .fact:nth-child(3),
      .fact:nth-child(4) {
        border-top: 1px solid var(--line);
      }

      .fact-icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--blue-100);
      }

      .fact-icon svg {
        width: 28px;
        height: 28px;
      }

      .overview {
        padding-top: 40px;
      }

      .overview-grid {
        grid-template-columns: 1fr;
      }

      .map-mark {
        display: none;
      }

      .info-card {
        grid-template-columns: 1fr;
        padding: 28px;
      }

      .principle-grid {
        grid-template-columns: 1fr;
      }

      .principle,
      .principle:nth-child(4) {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 26px 16px 0;
      }

      .principle:first-child {
        border-top: 0;
      }

      .final-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .final-copy {
        padding-left: 0;
        border-left: 0;
      }

      .page-hero {
        padding: 58px 0 52px;
      }

      .page-hero-grid,
      .split-content,
      .statement-grid,
      .value-grid,
      .structure-list {
        grid-template-columns: 1fr;
      }

      .page-hero-copy {
        padding-left: 24px;
      }

      .page-hero-copy::before {
        height: 168px;
      }

      .page-hero h1 {
        font-size: clamp(36px, 11vw, 52px);
      }

      .page-hero p,
      .page-lead,
      .rich-copy {
        font-size: 15px;
        line-height: 1.72;
      }

      .page-hero-panel {
        min-height: 230px;
        padding: 30px;
      }

      .panel-star {
        width: 82px;
        height: 82px;
      }

      .panel-star svg {
        width: 42px;
        height: 42px;
      }

      .page-hero-panel p {
        font-size: 22px;
      }

      .content-band,
      .about-statements,
      .values-section,
      .structure-section {
        padding: 58px 0;
      }

      .statement-card,
      .value-card {
        padding: 28px;
      }

      .structure-list {
        border-bottom: 0;
      }

      .structure-item,
      .structure-item:nth-child(2n) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 28px;
        padding: 42px 0 28px;
        text-align: center;
      }

      .footer-logo img {
        width: min(320px, 86vw);
      }

      .footer-line {
        font-size: 18px;
        white-space: normal;
      }

      .footer-copy {
        justify-self: center;
        font-size: 14px;
        white-space: normal;
      }

      .footer-divider {
        width: min(calc(100% - 32px), var(--container));
      }

      .footer-nav {
        flex-wrap: wrap;
        gap: 18px 26px;
        width: min(calc(100% - 32px), var(--container));
        margin: 30px auto 40px;
      }

      .footer-nav li+li::before {
        content: none;
      }

      .footer-nav a {
        font-size: 14px;
      }
    }

    @media (max-width: 520px) {
      .brand {
        width: min(214px, calc(100vw - 104px));
      }

      .site-header.menu-open .nav-menu {
        grid-template-columns: 1fr;
      }

      .hero-copy p,
      .final-copy p {
        font-size: 15px;
      }

      .hero .hero-copy p {
        font-size: 12px;
      }

      .hero .hero-copy .hero-subheading {
        font-size: 14px;
      }

      .hero h1 {
        font-size: clamp(28px, 8vw, 36px);
      }

      .section-title {
        font-size: 31px;
      }

      .page-hero-copy {
        padding-left: 18px;
      }

      .page-hero h1 {
        font-size: clamp(31px, 10vw, 42px);
      }

      .statement-card h2 {
        font-size: 26px;
      }

      .check-list,
      .statement-card p,
      .value-card p,
      .structure-item p {
        font-size: 14px;
      }

      .principles-title {
        gap: 14px;
      }
    }

    @media (max-width: 1180px) {
      .about-ref-hero-grid {
        width: min(calc(100% - 56px), 980px);
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-ref-hero-copy {
        max-width: 760px;
      }

      .about-ref-hero-visual {
        width: 100%;
        min-height: 0;
        aspect-ratio: 16 / 9;
        max-width: none;
        margin: 0;
        border-radius: 170px 8px 8px 0;
      }

      .about-ref-who-grid,
      .about-ref-statement-grid {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .about-ref-statement + .about-ref-statement {
        border-left: 0;
        border-top: 1px solid var(--line);
      }

      .about-ref-value-grid,
      .about-ref-structure-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 34px;
      }

      .about-ref-value:nth-child(4) {
        border-left: 0;
      }
    }

    @media (max-width: 820px) {
      .about-ref-hero {
        min-height: 0;
        padding: 24px 0 34px;
        border-bottom: 0;
      }

      .about-ref-hero-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: min(calc(100% - 32px), 430px);
      }

      .about-ref-hero-copy {
        width: 100%;
        padding-left: 20px;
      }

      .about-ref-hero-copy::before {
        top: 48px;
        height: 34px;
        width: 2px;
      }

      .about-ref-eyebrow {
        margin-bottom: 10px;
        font-size: 11px;
      }

      .about-ref-hero h1 {
        margin-bottom: 20px;
        font-size: clamp(29px, 8.6vw, 40px);
        line-height: 1.08;
      }

      .about-ref-intro::before {
        width: 2px;
        top: 2px;
        bottom: 4px;
        transform: translateX(-20px);
      }

      .about-ref-intro p {
        margin-bottom: 15px;
        font-size: 13px;
        line-height: 1.7;
      }

      .about-ref-hero-visual {
        order: 2;
        width: 100%;
        min-height: 0;
        aspect-ratio: 16 / 9;
        max-width: none;
        margin: 0;
        border-radius: 42px 12px 12px 12px;
        box-shadow: 0 18px 36px rgba(6, 20, 47, 0.12);
      }

      .about-ref-hero-visual::before {
        left: 0;
        width: 28px;
        border-radius: 42px 0 0 42px;
      }

      .about-ref-who,
      .about-ref-statements,
      .about-ref-values,
      .about-ref-structure {
        padding: 26px 0;
      }

      .about-ref-who-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: min(calc(100% - 32px), 430px);
        gap: 22px;
      }

      .about-ref-who-copy {
        grid-template-columns: 38px 1fr;
        gap: 14px;
      }

      .about-ref-line-icon {
        width: 34px;
        height: 34px;
      }

      .about-ref-who h2,
      .about-ref-statement h2 {
        margin-bottom: 14px;
        font-size: 27px;
      }

      .about-ref-who p,
      .about-ref-statement p {
        margin-bottom: 15px;
        font-size: 13px;
        line-height: 1.68;
      }

      .about-ref-quote {
        min-height: 0;
        padding: 28px;
        border-radius: 8px;
      }

      .about-ref-quote span {
        height: 30px;
        font-size: 64px;
      }

      .about-ref-quote p {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.65;
      }

      .about-ref-statement-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: min(calc(100% - 32px), 430px);
        gap: 0;
      }

      .about-ref-statement {
        padding: 26px 0;
        text-align: left;
      }

      .about-ref-statement + .about-ref-statement {
        border-top: 1px solid var(--line);
      }

      .about-ref-statement-icon {
        display: inline-grid;
        width: 42px;
        height: 42px;
        margin: 0 0 10px;
        vertical-align: middle;
      }

      .about-ref-statement h2 {
        display: inline-block;
        margin-left: 12px;
        vertical-align: middle;
      }

      .about-ref-statement h3 {
        margin: 0 0 22px;
        font-size: 13px;
      }

      .about-ref-check-list {
        gap: 12px;
        font-size: 12px;
        line-height: 1.62;
      }

      .about-ref-check-list li {
        padding-left: 28px;
      }

      .about-ref-check-list li::before {
        width: 12px;
        height: 12px;
      }

      .about-ref-values {
        width: min(calc(100% - 32px), 430px);
        margin: 0 auto;
        padding: 26px 0;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 14px 38px rgba(6, 20, 47, 0.08);
      }

      .about-ref-centered-title {
        gap: 12px;
        margin-bottom: 22px;
        font-size: 22px;
      }

      .about-ref-centered-title::before,
      .about-ref-centered-title::after {
        width: 26px;
        height: 2px;
      }

      .about-ref-value-grid {
        grid-template-columns: 1fr;
      }

      .about-ref-value {
        display: grid;
        grid-template-columns: 68px 1fr;
        gap: 14px;
        min-height: 0;
        padding: 18px 22px;
        border-left: 0;
        border-top: 1px solid var(--line);
        text-align: left;
      }

      .about-ref-value:first-child {
        border-top: 0;
      }

      .about-ref-value-icon {
        width: 54px;
        height: 54px;
        margin: 0;
        padding: 10px;
        border-radius: 50%;
        background: var(--blue-100);
      }

      .about-ref-value h3,
      .about-ref-structure-card h3 {
        margin-bottom: 6px;
        font-size: 15px;
      }

      .about-ref-value p,
      .about-ref-structure-card p {
        font-size: 12px;
        line-height: 1.56;
      }

      .about-ref-structure {
        padding-bottom: 36px;
      }

      .about-ref-structure-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: min(calc(100% - 32px), 430px);
        gap: 10px;
        margin: 0 auto;
      }

      .about-ref-structure-card {
        display: grid;
        grid-template-columns: 58px 1fr;
        align-items: center;
        min-height: 0;
        padding: 16px;
        border-radius: 8px;
        text-align: left;
      }

      .about-ref-structure-icon {
        width: 42px;
        height: 42px;
        margin: 0;
      }

      .about-ref-structure-card h3 {
        min-height: 0;
      }

      .about-ref-structure-card p {
        grid-column: 2;
      }

      .about-ref-structure-card::after {
        content: none;
      }

      .about-ref-cta {
        width: min(calc(100% - 32px), 430px);
        margin: 10px auto 0;
        padding: 30px 18px;
        border-radius: 8px;
      }

      .about-ref-cta .final-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .about-ref-cta .final-title {
        max-width: 320px;
        font-size: 24px;
        line-height: 1.22;
      }

      .about-ref-cta .final-copy {
        padding-left: 0;
        border-left: 0;
      }

      .about-ref-cta .final-copy p,
      .about-ref-cta .final-copy p:first-child {
        font-size: 12px;
        line-height: 1.58;
      }

      .about-ref-cta .final-copy p strong {
        font-size: 17px;
      }

      .about-ref-cta .final-copy .button {
        width: auto;
        min-width: 0;
        min-height: 42px;
        padding: 0 18px;
        font-size: 11px;
      }
    }

    @media (max-width: 520px) {
      .about-ref-hero-grid,
      .about-ref-who-grid,
      .about-ref-statement-grid,
      .about-ref-structure-grid,
      .about-ref-values,
      .about-ref-cta {
        width: min(calc(100% - 28px), 390px);
      }

      .about-ref-hero-copy {
        padding-left: 16px;
      }

      .about-ref-intro::before {
        transform: translateX(-16px);
      }

      .about-ref-hero h1 {
        font-size: clamp(27px, 9.2vw, 36px);
      }

      .about-ref-hero-visual {
        min-height: 0;
      }
    }

    body.is-locked {
      overflow: hidden;
    }

    body.is-locked> :not(.password-gate) {
      visibility: hidden;
      pointer-events: none;
    }

    .password-gate {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 22px;
      background: rgba(246, 249, 255, 0.94);
      backdrop-filter: blur(10px);
    }

    body.is-locked .password-gate {
      display: flex;
    }

    .password-box {
      width: min(100%, 420px);
      padding: 34px;
      border: 1px solid rgba(0, 77, 184, 0.16);
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 26px 70px rgba(6, 20, 47, 0.18);
      text-align: center;
    }

    .password-box h2 {
      margin: 0 0 10px;
      color: var(--ink);
      font-size: 28px;
      line-height: 1.1;
    }

    .password-box p {
      margin: 0 0 22px;
      color: #375070;
      font-size: 15px;
      line-height: 1.5;
    }

    .password-form {
      display: grid;
      gap: 12px;
    }

    .password-form input {
      width: 100%;
      height: 50px;
      border: 1px solid rgba(0, 77, 184, 0.24);
      border-radius: 10px;
      padding: 0 14px;
      color: var(--ink);
      font: inherit;
      font-weight: 700;
      outline: none;
    }

    .password-form input:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(0, 83, 190, 0.12);
    }

    .password-form button {
      height: 50px;
      border: 0;
      border-radius: 10px;
      background: var(--blue);
      color: #fff;
      font: inherit;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 14px 28px rgba(0, 83, 190, 0.18);
    }

    .password-error {
      min-height: 20px;
      margin: 0;
      color: #c41e3a;
      font-size: 13px;
      font-weight: 800;
    }

/* Additional page templates */
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--blue-700);
  font-family: var(--font-logo);
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.page-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--yellow-500);
}

.compact-value-grid .value-card {
  min-height: 210px;
}

.belief-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.belief-list li {
  position: relative;
  min-height: 112px;
  padding: 28px 28px 28px 62px;
  border: 1px solid rgba(0, 77, 184, 0.12);
  background: #fff;
  box-shadow: 0 14px 38px rgba(6, 20, 47, 0.06);
  color: #14233f;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 720;
}

.belief-list li::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 34px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow-500);
  box-shadow: 0 0 0 6px rgba(255, 196, 33, 0.18);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 54px;
}

.campaign-card,
.resource-card,
.event-panel {
  border: 1px solid rgba(0, 77, 184, 0.13);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.campaign-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0 24px;
  padding: 38px;
}

.campaign-card > :not(.campaign-icon) {
  grid-column: 2;
}

.campaign-icon {
  grid-row: 1 / span 5;
}

.campaign-card-wide {
  grid-column: 1 / -1;
}

.campaign-icon,
.resource-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
}

.campaign-icon svg,
.resource-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.campaign-card h3,
.resource-card h3,
.event-panel h2,
.event-empty h3 {
  color: var(--blue-700);
  font-weight: 950;
}

.campaign-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.12;
}

.campaign-kicker {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

.campaign-card p:not(.campaign-kicker) {
  margin: 0 0 22px;
  color: #14233f;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 560;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(11, 99, 220, 0.18);
  border-radius: 6px;
  background: #f8fbff;
  color: var(--blue-800);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}

.awareness-grid .value-card {
  min-height: 330px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 54px;
}

.support-grid .value-card {
  min-height: 218px;
}

.large-tags {
  align-content: start;
  margin-top: 0;
}

.large-tags span {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 14px;
}

.form-section {
  padding: 88px 0;
  background: #fff;
}

.form-grid,
.faq-grid,
.events-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: start;
}

.form-intro {
  max-width: 560px;
  margin: 0 0 22px;
  color: #14233f;
  font-size: 17px;
  line-height: 1.78;
  font-weight: 560;
}

.b45-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 38px;
  border: 1px solid rgba(0, 77, 184, 0.13);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.b45-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}

.b45-form input,
.b45-form select,
.b45-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(0, 77, 184, 0.2);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink);
  background: #fdfefe;
  font: inherit;
  font-size: 15px;
  font-weight: 560;
  outline: none;
}

.b45-form textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: vertical;
}

.b45-form input:focus,
.b45-form select:focus,
.b45-form textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(11, 99, 220, 0.12);
}

.form-wide {
  grid-column: 1 / -1;
}

.b45-form .button {
  justify-self: start;
  border: 0;
  font-family: var(--font-logo);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}

.resource-card {
  min-height: 294px;
  padding: 32px;
}

.resource-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
}

.resource-icon svg {
  width: 42px;
  height: 42px;
}

.resource-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
}

.resource-card h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 12px;
  background: var(--yellow-500);
}

.resource-card p {
  margin: 0;
  color: #14233f;
  font-size: 15px;
  line-height: 1.68;
  font-weight: 560;
}

.faq-grid {
  grid-template-columns: 0.65fr 1.35fr;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(0, 77, 184, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 20, 47, 0.05);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 22px 58px 22px 24px;
  color: var(--ink);
  font-family: var(--font-logo);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--blue-700);
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: #14233f;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 560;
}

.event-type-grid .resource-card {
  min-height: 230px;
}

.events-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.event-panel {
  min-height: 340px;
  padding: 38px;
}

.event-panel-head .eyebrow {
  align-items: flex-start;
  margin-bottom: 16px;
}

.event-panel h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.12;
}

.event-empty {
  min-height: 170px;
  padding: 28px;
  border: 1px dashed rgba(11, 99, 220, 0.32);
  border-radius: 8px;
  background: #f8fbff;
}

.event-empty h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.3;
}

.event-empty p {
  margin: 0;
  color: #14233f;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 560;
}

.rich-copy .button {
  margin-top: 10px;
}

@media (max-width: 1180px) {
  .belief-list,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-grid,
  .support-grid,
  .form-grid,
  .faq-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .campaign-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .page-eyebrow {
    font-size: 12px;
  }

  .belief-list,
  .resource-grid,
  .b45-form {
    grid-template-columns: 1fr;
  }

  .belief-list {
    gap: 12px;
    margin-top: 32px;
  }

  .belief-list li {
    min-height: 0;
    padding: 22px 22px 22px 54px;
    font-size: 14px;
  }

  .belief-list li::before {
    left: 24px;
    top: 29px;
  }

  .campaign-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px;
  }

  .campaign-card > :not(.campaign-icon) {
    grid-column: auto;
  }

  .campaign-icon {
    grid-row: auto;
  }

  .campaign-card h3 {
    font-size: 23px;
  }

  .campaign-card p:not(.campaign-kicker),
  .faq-item p,
  .form-intro {
    font-size: 14px;
  }

  .form-section {
    padding: 58px 0;
  }

  .b45-form,
  .resource-card,
  .event-panel {
    padding: 24px;
  }

  .b45-form .button {
    justify-self: stretch;
  }

  .faq-item summary {
    padding: 20px 52px 20px 20px;
    font-size: 15px;
  }

  .faq-item summary::after {
    right: 20px;
  }

  .event-panel h2 {
    font-size: 27px;
  }

  .event-empty {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .tag-cloud span,
  .large-tags span {
    width: 100%;
    min-height: 42px;
  }

  .campaign-card,
  .b45-form,
  .resource-card,
  .event-panel {
    padding: 22px;
  }

  .resource-card {
    min-height: 0;
  }
}

/* Critical image rendering */
.hero-media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

/* Page hero image panels */
.page-hero-visual-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  margin: 0;
  border: 1px solid rgba(0, 77, 184, 0.13);
  border-radius: 8px;
  overflow: hidden;
  background: #f8fbff;
  box-shadow: 0 30px 80px rgba(6, 20, 47, 0.11);
}

.page-hero-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 38%), radial-gradient(circle at 80% 12%, rgba(255, 196, 33, 0.16), transparent 14rem);
  pointer-events: none;
}

.page-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 820px) {
  .page-hero-visual-card {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}