/* About page (/about) ------------------------------------------------------ */
/* Values below mirror the live page's computed styles at 1440px. */

/* Scroll reveal (same behavior as index.css) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.about-line {
  display: block;
}

.about-eyebrow {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(21, 21, 21, 0.55);
}

/* Hero --------------------------------------------------------------------- */
.about-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 472px;
  background: #151515;
  color: #fff;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.about-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0) 40%, rgba(21, 21, 21, 0.55) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-hero-headline {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: var(--fs-heading-lg);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.about-hero-line {
  display: block;
}

.about-hero-sub {
  margin: 0 0 10px;
  max-width: 560px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.about-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1;
}

.about-scroll-line {
  display: block;
  position: relative;
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.about-scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: -48px;
  width: 1px;
  height: 48px;
  background: #fff;
  animation: about-scroll-down 2.5s ease-in-out infinite;
}

@keyframes about-scroll-down {
  to {
    top: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-scroll-line::after {
    animation: none;
  }
}

/* Purpose ------------------------------------------------------------------ */
.about-purpose {
  background: #fff;
}

.about-purpose-inner {
  padding-top: 80px;
  padding-bottom: 120px;
}

.about-purpose .about-eyebrow {
  margin-bottom: 32px;
  font-weight: 400;
}

.about-pull-quote {
  margin: 0;
  max-width: 860px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(21, 21, 21, 0.95);
}

/* Brand film --------------------------------------------------------------- */
.about-film {
  background-color: #181818;
  background-image: linear-gradient(90deg, #161616, rgba(22, 22, 22, 0.85)), url('/assets/images/img-rokaus.avif');
  background-size: auto, cover;
  background-position:
    0 0,
    0 0;
  color: #fff;
}

.about-film-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.about-film-video {
  flex: 0 0 58%;
  min-width: 0;
}

.about-film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.about-film-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-film-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.about-film-logo {
  display: block;
  width: 162px;
  height: auto;
  margin-bottom: 20px;
}

.about-film-heading {
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #7e8181;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
}

.about-film-body {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.6;
  color: #c5c5c5;
}

.about-film .button {
  align-self: flex-start;
  margin-top: 20px;
}

/* Market / Why we exist ---------------------------------------------------- */
.about-market {
  background: #fff;
}

.about-market-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 40px 80px;
  align-items: start;
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-market-headline {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(21, 21, 21, 0.95);
}

.about-market-body {
  margin: 0 0 48px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(21, 21, 21, 0.75);
}

.about-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(21, 21, 21, 0.1);
}

.about-compare-label {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(21, 21, 21, 0.55);
}

.about-compare-cell.is-new .about-compare-label {
  color: rgba(21, 21, 21, 0.95);
}

.about-compare-text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(21, 21, 21, 0.55);
}

.about-compare-cell.is-new .about-compare-text {
  font-weight: 400;
  color: rgba(21, 21, 21, 0.75);
}

/* Numbers ------------------------------------------------------------------ */
.about-numbers {
  position: relative;
  background: #151515;
  color: #fff;
  overflow: hidden;
}

.about-numbers-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
}

.about-numbers-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-numbers-inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-numbers .about-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.about-numbers-headline {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.about-numbers-sub {
  margin: 20px 0 32px;
  max-width: 600px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.about-numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 64px;
  margin: 0;
}

.about-stat-item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}

.about-stat-number {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
  font-variant-numeric: tabular-nums;
}

.about-stat-number.is-primary {
  color: #f2542d;
}

.about-stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

/* Values ------------------------------------------------------------------- */
.about-values {
  background: #fff;
}

.about-values .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-values-headline {
  margin: 0 0 32px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(21, 21, 21, 0.95);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-value-card {
  border-top: 1px solid rgba(21, 21, 21, 0.08);
  padding: 32px 32px 32px 0;
}

.about-value-number {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(21, 21, 21, 0.3);
}

.about-value-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(21, 21, 21, 0.95);
}

.about-value-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(21, 21, 21, 0.65);
}

/* Coverage ----------------------------------------------------------------- */
.about-coverage {
  background: #fafafa;
}

.about-coverage .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-coverage-headline {
  margin: 0 0 20px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #151515;
}

.about-coverage-sub {
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(21, 21, 21, 0.75);
}

.about-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-coverage-card {
  display: block;
  text-decoration: none;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.08);
}

.about-coverage-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.about-coverage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-coverage-card:hover .about-coverage-image img {
  transform: scale(1.04);
}

.about-coverage-content {
  display: block;
  padding: 24px;
  background: #fff;
}

.about-coverage-tag {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f2542d;
}

.about-coverage-title {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #151515;
}

/* Team --------------------------------------------------------------------- */
.about-team {
  background: #151515;
  color: #fff;
}

.about-team .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-team .about-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.about-team-header {
  margin-bottom: 48px;
}

.about-team-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
}

.about-team-headline {
  margin: 0;
  max-width: 478px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.about-team-sub {
  margin: 0;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.about-team-marquee {
  position: relative;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.about-team-marquee::before,
.about-team-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.about-team-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #151515, rgba(21, 21, 21, 0));
}

.about-team-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #151515, rgba(21, 21, 21, 0));
}

.about-team-marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: about-marquee 20s linear infinite;
}

.about-team-marquee-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.7);
}

@keyframes about-marquee {
  to {
    transform: translate3d(calc(-50% - 36px), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-team-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}

/* CEO card */
.about-ceo-link {
  display: block;
  margin-bottom: 64px;
  text-decoration: none;
  color: inherit;
}

.about-ceo-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  position: relative;
  background: #1a1a1a;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-ceo-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
  background: #f2542d;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-ceo-link:hover .about-ceo-card {
  transform: translateY(-6px);
}

.about-ceo-link:hover .about-ceo-card::before {
  height: 100%;
}

.about-ceo-photo {
  overflow: hidden;
  background: #323232;
}

.about-ceo-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition:
    filter 0.4s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-ceo-link:hover .about-ceo-photo img {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.02);
}

.about-ceo-quote-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
}

.about-ceo-quote {
  margin: 0 0 36px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}

.about-ceo-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}

.about-ceo-role {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.about-ceo-career {
  margin: 2px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.about-ceo-card .about-member-cta {
  justify-content: flex-end;
}

.about-member-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.about-cta-arrow {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.about-ceo-link:hover .about-cta-text,
.about-ceo-link:hover .about-cta-arrow,
.about-team-card:hover .about-cta-text,
.about-team-card:hover .about-cta-arrow {
  color: #f2542d;
}

.about-ceo-link:hover .about-cta-arrow,
.about-team-card:hover .about-cta-arrow {
  transform: translateX(4px);
}

/* Advisor grid */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-team-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s ease;
}

.about-team-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.025);
}

.about-team-card-photo {
  flex: 0 0 140px;
  height: 187px;
  overflow: hidden;
}

.about-team-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.35s ease;
}

.about-team-card:hover .about-team-card-photo img {
  filter: grayscale(0) brightness(1.05);
}

.about-team-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.about-member-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.95);
}

.about-member-title {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #f2542d;
}

.about-member-career {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.about-member-headline {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: #fafafa;
}

.about-team-card .about-member-cta {
  margin-top: 14px;
}

/* Additional experts */
.about-experts-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 80px;
  align-items: start;
  margin-top: 64px;
  padding-top: 16px;
}

.about-experts-headline {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
}

.about-experts-body {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.about-experts-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-expert-tag {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Final CTA — about page uses the live final-cta sizing (taller than the
   shared banner) with the cta-section background. */
.cta-banner {
  padding: 80px 0;
  background-color: #151515;
  background-image:
    linear-gradient(rgba(21, 21, 21, 0.55), rgba(21, 21, 21, 0.55)), url('/assets/images/cta-section.avif');
  background-size: auto, cover;
  background-position:
    0 0,
    center;
}

.cta-banner-heading {
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.cta-banner-subtitle {
  margin-bottom: 48px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
  .cta-banner {
    padding: 64px 0;
  }

  .cta-banner-heading {
    font-size: 30px;
  }

  .cta-banner-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

/* Responsive --------------------------------------------------------------- */
@media (max-width: 991px) {
  .about-hero {
    height: auto;
    min-height: 420px;
  }

  .about-hero-sub {
    font-size: 17px;
  }

  .about-film-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .about-film-video {
    flex-basis: auto;
  }

  .about-market-grid,
  .about-team-intro,
  .about-experts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-team-intro {
    display: grid;
    align-items: start;
  }

  .about-experts-headline {
    font-size: 30px;
  }

  .about-numbers-headline,
  .about-values-headline,
  .about-coverage-headline,
  .about-team-headline {
    font-size: 36px;
  }

  .about-numbers-grid,
  .about-values-grid,
  .about-coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

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

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

  .about-ceo-photo {
    max-height: 420px;
  }

  .about-ceo-quote-area {
    padding: 36px 32px;
  }
}

@media (max-width: 640px) {
  .about-purpose-inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .about-market-grid,
  .about-numbers-inner,
  .about-values .container,
  .about-coverage .container,
  .about-team .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-numbers-headline,
  .about-values-headline,
  .about-coverage-headline,
  .about-team-headline {
    font-size: 30px;
  }

  .about-compare-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-numbers-grid,
  .about-values-grid,
  .about-coverage-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-number {
    font-size: 48px;
  }

  .about-film-heading {
    font-size: 26px;
  }

  .about-film-body {
    font-size: 17px;
  }

  .about-team-marquee-track {
    animation-duration: 15s;
  }

  .about-team-card {
    align-items: flex-start;
  }

  .about-team-card-photo {
    flex-basis: 110px;
    height: 147px;
  }
}
