@import url("https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,600;1,700;1,800&family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --pink: #ff7daa;
  --blue: #4b70d8;
  --black: #0a0a0a;
  --paper: #f9f7f4;
  --ink: #111;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--black);
  color: #fff;
  overflow-x: hidden;
}

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

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

/* Header — about pink hero theme */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 220ms ease, color 220ms ease;
}

.site-header.is-about {
  background: transparent;
  color: #111;
}

.site-header.is-scrolled {
  background: #111;
  color: #fff;
  border-bottom: 1px solid #2a2a2a;
}

.logo-text {
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  display: none;
}

.site-header.is-about .logo-text {
  display: block;
}

.logo-mark {
  display: none;
  gap: 4px;
  align-items: center;
}

.logo-mark span {
  width: 13px;
  height: 13px;
  border: 2.5px solid currentColor;
  border-radius: 50%;
}

.site-header.is-scrolled .logo-text {
  display: none;
}

.site-header.is-scrolled .logo-mark {
  display: flex;
}

.top-nav {
  display: flex;
  gap: 22px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.top-nav .is-active {
  outline: 1px solid currentColor;
  padding: 4px 6px;
}

.cta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  background: #111;
  color: #fff;
}

.site-header.is-scrolled .cta {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* ===== HERO PINK ===== */
.about-hero {
  background: var(--pink);
  color: #111;
  min-height: 100svh;
  padding: 120px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 7vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  max-width: 16ch;
}

.about-hero h1 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: 0.9em;
}

.about-globe {
  margin-top: 48px;
  width: 96px;
  height: 96px;
  perspective: 600px;
}

.about-globe-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, #fff 0%, #cfd3dc 28%, #8b93a3 55%, #2a2e38 100%);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
  animation: globe-spin 12s linear infinite;
}

.about-globe-sphere::before,
.about-globe-sphere::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.about-globe-sphere::after {
  inset: 0;
  border: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.18) 18px 19px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.14) 18px 19px
    );
  mix-blend-mode: soft-light;
}

@keyframes globe-spin {
  to {
    transform: rotateY(360deg);
  }
}

/* ===== DESC 3-COL ===== */
.about-desc {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1.6fr) minmax(120px, 0.7fr);
  min-height: 90vh;
}

.about-desc-col {
  overflow: hidden;
  height: 100%;
}

.about-desc-marquee {
  height: 100%;
  overflow: hidden;
}

.about-desc-track {
  display: flex;
  flex-direction: column;
  animation: desc-y 28s linear infinite;
  will-change: transform;
}

.about-desc-marquee.is-reverse .about-desc-track {
  animation-direction: reverse;
  animation-duration: 32s;
}

.about-desc-track img {
  width: 100%;
  height: 42vh;
  min-height: 280px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes desc-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.about-desc-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 56px);
  text-align: center;
}

.about-desc-content h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.2;
}

.about-desc-content h2 span {
  color: var(--blue);
}

.about-desc-content p {
  margin: 0 auto;
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.75);
}

/* ===== GLOBAL ===== */
.about-global {
  background: #0f0f0f;
  padding: clamp(70px, 10vh, 120px) 28px 80px;
  position: relative;
  overflow: hidden;
}

.about-global-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.about-global-top h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1;
}

.about-global-top p {
  margin: 0;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.6;
  color: #d5d5d8;
}

.about-map {
  position: relative;
  height: min(42vw, 380px);
  margin-top: 40px;
  opacity: 0.9;
}

.about-map-dots {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #ff7daa 1.2px, transparent 1.4px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse at 55% 55%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 55% 55%, #000 20%, transparent 70%);
  opacity: 0.55;
}

.about-map-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 125, 170, 0.25);
}

.about-map-pin.is-hot {
  background: var(--pink);
}

.about-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.about-regions article {
  background: #fff;
  color: #111;
  padding: 18px 16px;
}

.about-regions small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.about-regions strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 0;
  padding-top: 36px;
  border-top: 1px solid #2a2a2a;
}

.about-stats dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a9aa0;
}

.about-stats dd {
  margin: 10px 0 0;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.9;
  color: var(--blue);
}

/* ===== RECOGNITION ===== */
.about-recognition {
  background: var(--pink);
  color: #111;
  padding: clamp(70px, 10vh, 120px) 28px 40px;
}

.about-recognition-inner {
  max-width: 52ch;
  margin-left: auto;
}

.about-recognition h2 {
  margin: 0 0 20px;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
}

.about-recognition p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
}

.btn-dark,
.btn-pink,
.btn-outline {
  display: inline-block;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.btn-dark {
  background: #111;
  color: #fff;
}

.btn-pink {
  background: var(--pink);
  color: #111;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.about-awards {
  overflow: hidden;
  margin-top: 56px;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.about-awards-track {
  display: flex;
  gap: 40px;
  width: max-content;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  animation: x-marquee 26s linear infinite;
}

@keyframes x-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== SCROLL STATEMENT ===== */
.about-scroll-statement {
  background: #111;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.about-scroll-statement p {
  margin: 0;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about-scroll-statement p:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
}

.about-scroll-statement p:nth-child(3) {
  margin-top: -0.15em;
}

.h-blue {
  display: inline-block;
  background: var(--blue);
  color: #111;
  padding: 0.05em 0.14em;
}

/* ===== SOLUTIONS ===== */
.about-solutions {
  background: var(--paper);
  color: #111;
  padding: clamp(70px, 10vh, 110px) 0 0;
}

.about-solutions-copy {
  max-width: 720px;
  padding: 0 28px 48px;
}

.about-solutions-copy small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue);
  margin-bottom: 12px;
}

.about-solutions-copy h2 {
  margin: 0 0 18px;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.about-solutions-copy p {
  margin: 0 0 24px;
  max-width: 54ch;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.72);
}

.about-solutions-marquee {
  background: var(--blue);
  overflow: hidden;
  padding: 22px 0;
}

.about-solutions-track {
  display: flex;
  gap: 28px;
  width: max-content;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  color: #fff;
  animation: x-marquee 22s linear infinite;
}

.about-solutions-track span::after {
  content: "/";
  margin-left: 28px;
  color: var(--pink);
}

.about-solutions-visuals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.about-solutions-visuals img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* ===== ECOSYSTEM ===== */
.about-ecosystem {
  background: #0f0f0f;
  padding: clamp(70px, 10vh, 120px) 28px;
}

.about-eco-left h2 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--blue);
  text-transform: uppercase;
}

.about-eco-lead {
  margin: 0 0 18px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
}

.about-eco-left > p:last-of-type {
  margin: 0 0 40px;
  max-width: 52ch;
  color: #c8c8cd;
  line-height: 1.6;
}

.about-eco-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #2e2e32;
}

.about-eco-list article {
  padding: 28px 20px 28px 0;
  border-bottom: 1px solid #2e2e32;
  border-right: 1px solid #2e2e32;
}

.about-eco-list article:last-child {
  border-right: 0;
}

.about-eco-list small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 10px;
}

.about-eco-list h3 {
  margin: 0 0 10px;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px);
}

.about-eco-list p {
  margin: 0;
  color: #bdbdc2;
  font-size: 14px;
  line-height: 1.5;
}

.about-eco-foot {
  margin: 36px 0 24px;
  max-width: 60ch;
  color: #c8c8cd;
  line-height: 1.6;
}

/* ===== NAME ===== */
.about-name {
  background: var(--pink);
  color: #111;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: clamp(70px, 10vh, 120px) 28px;
  align-items: center;
}

.about-name h2 {
  margin: 0;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.about-name-copy p:first-child {
  margin: 0 0 14px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 28px;
}

.about-name-copy p:nth-child(2) {
  margin: 0 0 24px;
  max-width: 42ch;
  line-height: 1.6;
}

/* ===== TALK + FOOTER (match home) ===== */
.talk-section {
  background: var(--paper);
  color: #111;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: min(70vh, 620px);
  align-items: stretch;
}

.talk-main {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 48px 40px;
}

.talk-title {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
}

.talk-arrow {
  width: 48px;
  height: 48px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.talk-visual {
  position: relative;
  overflow: hidden;
  min-height: min(70vh, 620px);
  height: 100%;
  background: #111;
}

.talk-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.site-footer {
  background: #111;
  padding: 48px 28px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand h6 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.03em;
}

.footer-tag {
  margin: 0 0 14px !important;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 18px !important;
  color: #bbb !important;
}

.footer-brand p {
  margin: 0;
  max-width: 32ch;
  color: #cfcfd4;
  font-size: 14px;
  line-height: 1.5;
}

.newsletter-title {
  margin-top: 34px !important;
  font-size: clamp(28px, 3vw, 40px) !important;
}

.newsletter-input {
  margin-top: 16px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid #4a4a4f;
}

.footer-grid > div:not(.footer-brand) h6 {
  margin: 0 0 14px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0;
  display: block;
  color: #d0d0d5;
  font-size: 14px;
  line-height: 1.55;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid #2c2c30;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #9f9fa5;
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 14px;
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

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

  .about-desc-col {
    height: 220px;
  }

  .about-desc-track img {
    height: 220px;
    min-height: 0;
  }

  .about-global-top,
  .about-name,
  .talk-section,
  .footer-grid,
  .about-eco-list,
  .about-regions,
  .about-stats,
  .about-solutions-visuals {
    grid-template-columns: 1fr;
  }

  .about-recognition-inner {
    margin-left: 0;
  }

  .about-eco-list article {
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-globe-sphere,
  .about-desc-track,
  .about-awards-track,
  .about-solutions-track {
    animation: none;
  }
}
