@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #12082a;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.landing-page {
  overflow-x: hidden;
}
body.landing-page.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 640px) {
  body.landing-page.admin-bar .site-header {
    top: 46px;
  }
}

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

a {
  color: #0057DC;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #2D0082;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 640px) {
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: #2D0082;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #FF8413;
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: #12082a;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a5370;
}
p + p {
  margin-top: 1em;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF8413;
  margin-bottom: 16px;
}

.accent-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: #FF8413;
  margin-bottom: 24px;
}

.display-text {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.8;
  color: #5a5370;
}

.highlight {
  color: #FF8413;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: #F50C00;
  color: #ffffff;
}
.btn-primary:hover {
  background: #d30b00;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 12, 0, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.btn-purple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: #2D0082;
  color: #ffffff;
}
.btn-purple:hover {
  background: #160040;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45, 0, 130, 0.3);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 24px 0;
}
.site-header.is-transparent {
  background: transparent;
}
.site-header.is-scrolled {
  background: #1e0058;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  padding: 14px 0;
}
.site-header.is-scrolled .brand-name {
  color: #ffffff;
}
.site-header.is-scrolled .brand-tagline {
  color: rgba(255, 255, 255, 0.55);
}
.site-header.is-scrolled .nav-list a {
  color: rgba(255, 255, 255, 0.8);
}
.site-header.is-scrolled .nav-list a:hover {
  color: #ffffff;
}
.site-header.is-scrolled .nav-cta {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
}
.site-header.is-scrolled .nav-cta:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.header-inner {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 2px;
}
.header-brand:hover .brand-name {
  color: #ffffff;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  transition: color 0.2s ease;
}

.brand-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1024px) {
  .nav-list {
    display: none;
  }
}
.nav-list a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  transition: all 0.2s ease;
}
.nav-list a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-list .nav-cta {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  margin-left: 8px;
}
.nav-list .nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1e0058;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .mobile-nav {
    display: flex;
  }
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 12px 24px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.mobile-nav a:hover {
  color: #ffffff;
}
.mobile-nav .nav-cta {
  margin-top: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  color: #ffffff !important;
  font-size: 1rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.site-footer {
  background: #1e0058;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

.footer-brand .brand-name {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.footer-brand .brand-tagline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #1e0058;
  overflow: hidden;
}
.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 0, 88, 0.98) 0%, rgba(45, 0, 130, 0.92) 60%, rgba(30, 0, 88, 0.85) 100%);
  z-index: 1;
}
.section-hero::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  top: -200px;
  right: -200px;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
  z-index: 0;
}

.hero-content {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

.hero-text {
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF8413;
  margin-bottom: 16px;
  color: #FF8413;
  opacity: 0.9;
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 24px;
}
.hero-headline .accent-word {
  color: rgba(255, 255, 0, 0.9);
}

.hero-subheadline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .hero-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #FF8413;
  border-radius: 6px;
  padding: 20px 24px;
  backdrop-filter: blur(8px);
}
@media (max-width: 1024px) {
  .hero-stat-card {
    flex: 1;
    min-width: 200px;
  }
}

.hero-stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroScrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.25);
}

@keyframes heroScrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
.section-history {
  background: #ffffff;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .section-history {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 640px) {
  .section-history {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.history-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .history-intro {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 56px;
  }
}
@media (max-width: 768px) {
  .history-intro {
    margin-bottom: 40px;
  }
}
.history-intro--no-image {
  grid-template-columns: 1fr;
  max-width: 680px;
}

.history-intro-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: #12082a;
  margin-bottom: 8px;
}
.history-intro-text .lead {
  margin-top: 16px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.8;
  color: #5a5370;
  max-width: 600px;
}

.history-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(45, 0, 130, 0.12);
  display: block;
}

.history-intro-image-caption {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #5a5370;
  text-align: center;
}

.history-timeline {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .history-timeline {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.history-timeline {
  position: relative;
}
.history-timeline::before {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(45, 0, 130, 0.12);
}
@media (max-width: 768px) {
  .history-timeline::before {
    left: 28px;
  }
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 40px;
  align-items: start;
  margin-bottom: 48px;
  position: relative;
}
@media (max-width: 768px) {
  .timeline-item {
    grid-template-columns: auto 1fr;
    gap: 0 24px;
    padding-left: 0;
    margin-bottom: 32px;
  }
}
.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}
@media (max-width: 768px) {
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    text-align: left;
  }
}
.timeline-item:nth-child(even) .timeline-year {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}
@media (max-width: 768px) {
  .timeline-item:nth-child(even) .timeline-year {
    display: none;
  }
}
.timeline-item:nth-child(even) .timeline-dot-col {
  grid-column: 2;
  grid-row: 1;
}
.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}
@media (max-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 2;
    text-align: left;
  }
}
.timeline-item:nth-child(odd) .timeline-year {
  grid-column: 3;
}
@media (max-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-year {
    display: none;
  }
}
.timeline-item:nth-child(odd) .timeline-dot-col {
  grid-column: 2;
}

.timeline-dot-col {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
@media (max-width: 768px) {
  .timeline-dot-col {
    grid-column: 1;
    grid-row: 1;
    padding-top: 2px;
  }
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FF8413;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #FF8413;
  flex-shrink: 0;
}

.timeline-content {
  padding-bottom: 8px;
}
@media (max-width: 768px) {
  .timeline-content {
    grid-column: 2;
    text-align: left !important;
  }
}

.timeline-event {
  font-size: 1rem;
  font-weight: 500;
  color: #12082a;
  line-height: 1.6;
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2D0082;
  opacity: 0.5;
  padding-top: 4px;
}
@media (max-width: 768px) {
  .timeline-year {
    display: none;
  }
}

.timeline-year-inline {
  display: none;
}
@media (max-width: 768px) {
  .timeline-year-inline {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FF8413;
    margin-bottom: 4px;
  }
}

.section-legacy {
  background: #faf8ff;
  border-top: 1px solid rgba(45, 0, 130, 0.12);
  border-bottom: 1px solid rgba(45, 0, 130, 0.12);
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .section-legacy {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 640px) {
  .section-legacy {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.legacy-inner {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .legacy-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.legacy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .legacy-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.legacy-text .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #FF8413;
  margin-top: 16px;
}
.legacy-text .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: #12082a;
  margin-bottom: 8px;
}
.legacy-text p {
  margin-top: 24px;
  font-size: 1.05rem;
  color: #5a5370;
  line-height: 1.8;
}

.legacy-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legacy-bptw-badge {
  background: #ffffff;
  border: 1px solid rgba(45, 0, 130, 0.12);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 16px rgba(45, 0, 130, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.legacy-bptw-badge img {
  display: block;
  width: 100%;
  height: auto;
}
.legacy-bptw-badge--placeholder {
  min-height: 120px;
  border: 2px dashed rgba(45, 0, 130, 0.2);
  box-shadow: none;
  background: rgba(45, 0, 130, 0.02);
}
.legacy-bptw-badge--placeholder span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #8a84a0;
  text-transform: uppercase;
}

.legacy-stat {
  background: #2D0082;
  border-radius: 8px;
  padding: 28px 32px;
  text-align: center;
}
.legacy-stat .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}
.legacy-stat .stat-number sup {
  font-size: 1.5rem;
  vertical-align: super;
}
.legacy-stat .stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.legacy-logo-wrap img {
  max-width: 180px;
  opacity: 0.85;
}

.section-vision {
  background: #ffffff;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .section-vision {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 640px) {
  .section-vision {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.vision-header {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .vision-header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.vision-header {
  margin-bottom: 64px;
  max-width: 640px;
}
@media (max-width: 768px) {
  .vision-header {
    margin-bottom: 40px;
  }
}

.vision-grid {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .vision-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1200px) {
  .vision-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
}

.sector-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(45, 0, 130, 0.12);
  border-radius: 8px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.sector-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: height 0.3s ease;
}
.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 0, 130, 0.1);
}
.sector-card:hover::before {
  height: 4px;
}
.sector-card:nth-child(5n+1)::before {
  background: #FF8413;
}
.sector-card:nth-child(5n+2)::before {
  background: #2D0082;
}
.sector-card:nth-child(5n+3)::before {
  background: #0057DC;
}
.sector-card:nth-child(5n+4)::before {
  background: #FF8413;
}
.sector-card:nth-child(5n+5)::before {
  background: #2D0082;
}

.sector-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sector-icon img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: brightness(0);
}
.sector-icon--dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2D0082;
  opacity: 0.25;
}

.sector-name {
  font-size: 1rem;
  font-weight: 700;
  color: #12082a;
  line-height: 1.2;
}

.section-why {
  background: #2D0082;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .section-why {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 640px) {
  .section-why {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.section-why {
  position: relative;
  overflow: hidden;
}
.section-why::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  bottom: -200px;
  left: -150px;
  pointer-events: none;
}
.section-why::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.why-inner {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .why-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.why-text .eyebrow {
  color: rgba(255, 255, 0, 0.7);
}
.why-text .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: #12082a;
  color: #ffffff;
  margin-bottom: 20px;
}
.why-text > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.why-closing {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.why-closing p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.8;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.why-point:first-child {
  padding-top: 0;
}
.why-point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-point-marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(128, 255, 0, 0.7);
  margin-top: 7px;
}

.why-point-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.section-acquisition {
  background: #faf9ff;
  border-top: 1px solid rgba(45, 0, 130, 0.12);
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .section-acquisition {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 640px) {
  .section-acquisition {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.acquisition-inner {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .acquisition-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.acquisition-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .acquisition-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.acquisition-main .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: #12082a;
}
.acquisition-main .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #2D0082;
  margin-top: 16px;
}
.acquisition-main .section-title {
  margin-bottom: 8px;
}
.acquisition-main > p {
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a5370;
  margin-bottom: 36px;
}

.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(45, 0, 130, 0.12);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(45, 0, 130, 0.05);
}

.criterion-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(45, 0, 130, 0.12);
  transition: background 0.2s ease;
}
.criterion-item:last-child {
  border-bottom: none;
}
.criterion-item:hover {
  background: #faf8ff;
}

.criterion-bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2D0082;
  margin-top: 8px;
  opacity: 0.5;
}

.criterion-text {
  font-size: 1rem;
  color: #5a5370;
  line-height: 1.6;
}
.criterion-text strong {
  font-weight: 700;
  color: #12082a;
}

.acquisition-sidebar {
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  .acquisition-sidebar {
    position: static;
  }
}

.acquisition-sidebar-card {
  background: #ffffff;
  border: 1px solid rgba(45, 0, 130, 0.12);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(45, 0, 130, 0.05);
}

.sidebar-card-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FF8413;
  margin-bottom: 20px;
}

.sidebar-sector-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-sector {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #12082a;
}
.sidebar-sector::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2D0082;
  flex-shrink: 0;
  opacity: 0.4;
}

.acquisition-price-callout {
  margin-top: 24px;
  padding: 20px;
  background: #2D0082;
  border-radius: 6px;
  text-align: center;
}
.acquisition-price-callout .price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.acquisition-price-callout .price-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.acquisition-price-callout .price-note {
  margin-top: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.section-contact {
  background: #ffffff;
  border-top: 1px solid rgba(45, 0, 130, 0.12);
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .section-contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 640px) {
  .section-contact {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.contact-inner {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .contact-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: #12082a;
}
.contact-info .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #FF8413;
  margin-top: 16px;
}
.contact-info .section-title {
  margin-bottom: 8px;
}
.contact-info > p {
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a5370;
}

.contact-privacy-note {
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-privacy-note p {
  font-size: 0.8rem;
  color: #8a84a0;
  line-height: 1.6;
  margin: 0;
}
.contact-privacy-note::before {
  content: "🔒";
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-form-wrap {
  background: #faf8ff;
  border: 1px solid rgba(45, 0, 130, 0.12);
  border-radius: 12px;
  padding: 40px;
}
@media (max-width: 640px) {
  .contact-form-wrap {
    padding: 24px;
  }
}

.wpcf7 .wpcf7-spinner {
  display: none;
}
.wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wpcf7 .cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .wpcf7 .cf7-row {
    grid-template-columns: 1fr;
  }
}
.wpcf7 label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5370;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1.5px solid rgba(45, 0, 130, 0.2);
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #12082a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: #2D0082;
  box-shadow: 0 0 0 3px rgba(45, 0, 130, 0.1);
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 select::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
  color: #8a84a0;
  font-weight: 300;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 select::placeholder,
.wpcf7 textarea::placeholder {
  color: #8a84a0;
  font-weight: 300;
}
.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.8;
}
.wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5370' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.wpcf7 input[type=submit] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: #2D0082;
  color: #ffffff;
  padding: 16px 36px;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.wpcf7 input[type=submit]:hover {
  background: #1e0058;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45, 0, 130, 0.3);
}
.wpcf7 input[type=submit]:active {
  transform: translateY(0);
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #F50C00;
  margin-top: 4px;
  display: block;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #F50C00 !important;
}
.wpcf7 .wpcf7-response-output {
  margin: 0;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  border: none;
}
.wpcf7.sent .wpcf7-response-output {
  background: rgba(128, 255, 0, 0.15);
  color: #335200;
}
.wpcf7.failed .wpcf7-response-output, .wpcf7.invalid .wpcf7-response-output, .wpcf7.spam .wpcf7-response-output {
  background: rgba(245, 12, 0, 0.08);
  color: #d30b00;
}

.page-template-page-accessibility-statement .site-header.is-transparent {
  background: #1e0058;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.page-inner {
  padding-top: 140px;
  padding-bottom: 96px;
  background: #ffffff;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .page-inner {
    padding-top: 100px;
    padding-bottom: 64px;
  }
}

.page-inner-container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 640px) {
  .page-inner-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page-inner-container {
  max-width: 800px;
}

.page-inner-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #12082a;
  line-height: 1.2;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 3px solid #FF8413;
}

.page-inner-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #12082a;
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.page-inner-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #12082a;
  margin-top: 32px;
  margin-bottom: 12px;
}
.page-inner-content p {
  font-size: 1.05rem;
  color: #5a5370;
  line-height: 1.8;
  margin-bottom: 16px;
}
.page-inner-content ul,
.page-inner-content ol {
  list-style: revert;
  margin-left: 24px;
  margin-bottom: 16px;
}
.page-inner-content ul li,
.page-inner-content ol li {
  font-size: 1.05rem;
  color: #5a5370;
  line-height: 1.8;
  margin-bottom: 6px;
}
.page-inner-content a {
  color: #2D0082;
  text-decoration: underline;
}
.page-inner-content a:hover {
  color: #FF8413;
}
.page-inner-content strong {
  font-weight: 700;
  color: #12082a;
}

.observe-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.observe-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item.observe-fade:nth-child(2) {
  transition-delay: 0.1s;
}
.timeline-item.observe-fade:nth-child(3) {
  transition-delay: 0.2s;
}
.timeline-item.observe-fade:nth-child(4) {
  transition-delay: 0.3s;
}
.timeline-item.observe-fade:nth-child(5) {
  transition-delay: 0.4s;
}
.timeline-item.observe-fade:nth-child(6) {
  transition-delay: 0.5s;
}

.sector-card.observe-fade:nth-child(2) {
  transition-delay: 0.08s;
}
.sector-card.observe-fade:nth-child(3) {
  transition-delay: 0.16s;
}
.sector-card.observe-fade:nth-child(4) {
  transition-delay: 0.24s;
}
.sector-card.observe-fade:nth-child(5) {
  transition-delay: 0.32s;
}

.nav-list a.is-active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

body.nav-open {
  overflow: hidden;
}
/*# sourceMappingURL=main.css.map */
