/* ── COMMON ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
}
.slabel {
  font-family: var(--fm);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}
.slabel::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--teal);
}
.stitle {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.stitle em {
  font-style: italic;
  color: var(--teal);
}
.sbody {
  font-size: 1.05rem;
  color: rgba(245, 244, 240, 0.68);
  max-width: 62ch;
  line-height: 1.75;
  font-weight: 300;
}
.bp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--black);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.bp:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.bg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid rgba(245, 244, 240, 0.18);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.bg:hover {
  border-color: var(--teal);
  background: var(--teal-glow);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.f1 {
  animation: fadeUp 0.7s ease both;
}
.f2 {
  animation: fadeUp 0.7s ease 0.12s both;
}
.f3 {
  animation: fadeUp 0.7s ease 0.24s both;
}
.f4 {
  animation: fadeUp 0.7s ease 0.36s both;
}
.f5 {
  animation: fadeUp 0.7s ease 0.48s both;
}

/* ── HERO ── */
#about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 4vw 6rem;
  background: radial-gradient(
      ellipse 70% 60% at 80% 50%,
      rgba(37, 99, 235, 0.1) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 10% 80%,
      rgba(37, 99, 235, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #0d1117 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(37, 99, 235, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 100% 100% at 80% 30%,
    black 20%,
    transparent 75%
  );
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.hero-eyebrow {
  font-family: var(--fm);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--teal);
}
.hero-title {
  font-family: var(--fd);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
}
.hero-lead {
  font-size: 1.1rem;
  color: rgba(245, 244, 240, 0.65);
  line-height: 1.8;
  font-weight: 300;
  max-width: 54ch;
  margin-bottom: 2.5rem;
}
.hero-acts {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Hero right - animated stat wall */
.hero-stat-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.hsw-cell {
  background: var(--slate);
  padding: 2.25rem 2rem;
  transition: background 0.2s;
}
.hsw-cell:hover {
  background: rgba(37, 99, 235, 0.08);
}
.hsw-num {
  font-family: var(--fd);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}
.hsw-unit {
  font-family: var(--fm);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.6rem;
}
.hsw-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── CONVICTION SECTION ── */
#conviction {
  padding: 7rem 4vw;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.conviction-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .conviction-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.conviction-prose p {
  font-size: 1rem;
  color: rgba(245, 244, 240, 0.68);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.conviction-prose p:last-child {
  margin-bottom: 0;
}
.conviction-prose strong {
  color: var(--white);
  font-weight: 600;
}

.conviction-pillars {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.pillar {
  background: var(--ink);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background 0.2s;
}
.pillar:hover {
  background: rgba(37, 99, 235, 0.05);
}
.pillar-num {
  font-family: var(--fd);
  font-size: 2rem;
  color: rgba(37, 99, 235, 0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.pillar-body {
  flex: 1;
}
.pillar-title {
  font-family: var(--fm);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.pillar-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── FOUNDER ── */
#founder {
  padding: 7rem 4vw;
  background: var(--ink);
  border-top: 1px solid var(--border);
}
.founder-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.founder-card {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: sticky;
  top: calc(64px + 2rem);
}
.founder-visual {
  height: 260px;
  background: linear-gradient(135deg, #0d1e38 0%, #0a1220 60%, #111827 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.founder-visual .fv-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(37, 99, 235, 0.12) 0%,
    transparent 70%
  );
  animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.founder-visual .fv-initials {
  font-family: var(--fd);
  font-size: 5rem;
  color: rgba(37, 99, 235, 0.2);
  position: relative;
  z-index: 1;
  user-select: none;
}
.founder-card-body {
  padding: 2rem;
}
.fc-label {
  font-family: var(--fm);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.fc-name {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.fc-role {
  font-family: var(--fm);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.fc-facts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}
.fc-fact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.fc-fact-k {
  font-family: var(--fm);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.fc-fact-v {
  font-size: 0.8rem;
  color: rgba(245, 244, 240, 0.65);
}

.founder-content {
  opacity: 1;
}
.founder-content .fc-quote {
  font-family: var(--fd);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: rgba(245, 244, 240, 0.88);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--teal);
}
.founder-content p {
  font-size: 0.98rem;
  color: rgba(245, 244, 240, 0.65);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.founder-content p:last-of-type {
  margin-bottom: 0;
}
.founder-content strong {
  color: var(--white);
  font-weight: 600;
}
.award-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (max-width: 600px) {
  .award-grid {
    grid-template-columns: 1fr;
  }
}
.award-item {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.award-year {
  font-family: var(--fm);
  font-size: 0.58rem;
  color: var(--teal);
  letter-spacing: 0.1em;
}
.award-name {
  font-size: 0.8rem;
  color: rgba(245, 244, 240, 0.7);
  font-weight: 500;
  line-height: 1.35;
}
.award-body {
  font-family: var(--fm);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── TIMELINE ── */
#timeline {
  padding: 7rem 4vw;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.timeline-track {
  max-width: 900px;
  margin: 3.5rem auto 0;
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 102px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--border) 8%,
    var(--border) 92%,
    transparent 100%
  );
}
@media (max-width: 640px) {
  .timeline-track::before {
    left: 0;
  }
}

.tl-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}
@media (max-width: 640px) {
  .tl-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border);
  }
}
.tl-item:last-child {
  margin-bottom: 0;
}

.tl-year {
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--teal);
  text-align: right;
  padding-top: 2rem;
  font-weight: 500;
}
@media (max-width: 640px) {
  .tl-year {
    text-align: left;
    padding-top: 0;
  }
  .founder-card {
    position: relative;
    top: 0;
  }
}

.tl-body {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  position: relative;
}
.tl-body::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 2.2rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--black);
}
@media (max-width: 640px) {
  .tl-body::before {
    left: -1.87rem;
    top: -2rem;
  }
}
.tl-body h4 {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}
.tl-body p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.tl-body p:last-of-type {
  margin-bottom: 0;
}
.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.tl-tag {
  font-family: var(--fm);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(37, 99, 235, 0.65);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 2px;
  padding: 0.18rem 0.55rem;
}

/* ── GLOBAL PRESENCE ── */
#presence {
  padding: 7rem 4vw;
  background: var(--ink);
  border-top: 1px solid var(--border);
}
.presence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3.5rem;
}
@media (max-width: 860px) {
  .presence-grid {
    grid-template-columns: 1fr;
  }
}
.country-card {
  background: var(--slate);
  padding: 2.5rem;
  transition: background 0.2s;
}
.country-card:hover {
  background: rgba(37, 99, 235, 0.06);
}
.cc-flag {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}
.cc-country {
  font-family: var(--fm);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.cc-name {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.cc-status {
  font-family: var(--fm);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.status-active {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.status-inprog {
  background: rgba(212, 136, 42, 0.1);
  color: var(--amber);
  border: 1px solid rgba(212, 136, 42, 0.25);
}
.cc-details {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.cc-detail {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.cc-detail-k {
  font-family: var(--fm);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cc-detail-v {
  font-size: 0.82rem;
  color: rgba(245, 244, 240, 0.62);
}

/* HQ card */
.hq-strip {
  max-width: 1240px;
  margin: 1px auto 0;
  background: var(--black);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hq-label {
  font-family: var(--fm);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.hq-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hq-detail-k {
  font-family: var(--fm);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hq-detail-v {
  font-size: 0.88rem;
  color: rgba(245, 244, 240, 0.65);
}

/* ── OPERATING PRINCIPLES ── */
#principles {
  padding: 7rem 4vw;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (max-width: 900px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
}
.principle-card {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.2s, background 0.2s;
}
.principle-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.04);
}
.pc-icon {
  margin-bottom: 1.5rem;
}
.pc-icon svg {
  opacity: 0.55;
}
.pc-num {
  font-family: var(--fd);
  font-size: 2.5rem;
  color: rgba(37, 99, 235, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.pc-title {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.pc-title em {
  font-style: italic;
  color: var(--teal);
}
.pc-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── RECOGNITION WALL ── */
#recognition {
  padding: 6rem 4vw;
  background: var(--ink);
  border-top: 1px solid var(--border);
}
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .recognition-grid {
    grid-template-columns: 1fr;
  }
}
.rec-cell {
  background: var(--slate);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  transition: background 0.2s;
}
.rec-cell:hover {
  background: rgba(37, 99, 235, 0.07);
}
.rec-year {
  font-family: var(--fm);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.rec-body {
  flex: 1;
}
.rec-title {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.rec-org {
  font-family: var(--fm);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── REGULATORY ── */
#regulatory {
  padding: 6rem 4vw;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.reg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 640px) {
  .reg-grid {
    grid-template-columns: 1fr;
  }
}
.reg-card {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
}
.reg-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.dot-green {
  background: var(--green);
}
.dot-amber {
  background: var(--amber);
}
.reg-info {
  flex: 1;
}
.reg-cert {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.reg-body {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}
.reg-badge {
  align-self: flex-start;
  font-family: var(--fm);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}
.badge-certified {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.badge-pending {
  background: rgba(212, 136, 42, 0.1);
  color: var(--amber);
  border: 1px solid rgba(212, 136, 42, 0.25);
}

/* ── CTA STRIP ── */
#cta-strip {
  padding: 7rem 4vw;
  background: linear-gradient(
    135deg,
    #0d1117 0%,
    rgba(37, 99, 235, 0.11) 50%,
    #0d1117 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(37, 99, 235, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
#cta-strip .container {
  position: relative;
  z-index: 1;
}
.cta-acts {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
