/* ── About ── */
#about {
  background: var(--milk);
  padding: var(--section-pad) var(--gutter);
  color: var(--black);
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  z-index: 1;
}

.about-left {
  will-change: transform;
}

.about-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(64px, 8vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--black);
}

.about-right {
  padding-top: clamp(12px, 2vw, 24px);
  will-change: transform;
}

.about-text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  color: var(--graphite);
  line-height: 1.75;
  margin-bottom: 24px;
  transition: color 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}

.about-origin {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: clamp(40px, 5vw, 64px);
}

.stat-block {
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.stat-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: calc(var(--scene-progress, 0) * 100%);
  height: 1px;
  background: linear-gradient(90deg, var(--black), transparent);
  opacity: 0.32;
}

.stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 90px);
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 8px;
}

/* ── Socials ── */
#socials {
  background: var(--ink);
  padding: var(--section-pad) var(--gutter);
  overflow: hidden;
}

.socials-header {
  margin-bottom: clamp(40px, 5vw, 64px);
  position: relative;
  z-index: 1;
}

.socials-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(64px, 8vw, 130px);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.02em;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
  perspective: 800px;
}

.social-card {
  --card-pop: 0px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(var(--card-pop));
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-spring), backdrop-filter 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  will-change: transform;
  cursor: pointer;
}

.social-card:hover {
  --card-pop: -8px;
  transform: translateY(var(--card-pop)) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-color: rgba(255,255,255,0.28);
}

.social-icon {
  width: 40px;
  height: 40px;
}

.social-handle {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}

.social-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
  margin-top: auto;
}

/* ── CTA ── */
#cta {
  background: var(--black);
  padding: var(--section-pad) var(--gutter);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(40px, 6vw, 64px);
  overflow: hidden;
}

.cta-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  opacity: 0;
  filter: blur(14px);
  transform: translateY(48px) scale(0.98);
  transition: opacity 0.9s var(--ease-out), filter 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.cta-line.revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.cta-line:nth-child(2) { transition-delay: 0.15s; }
.cta-line:nth-child(3) { transition-delay: 0.3s; }

.btn-cta {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 3px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.35s var(--ease-out);
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}

.btn-cta:hover::before {
  transform: scaleX(0);
  transform-origin: right;
}

.btn-cta:hover {
  color: var(--white);
}

.btn-cta span { position: relative; z-index: 1; }

/* ── Footer ── */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px var(--gutter);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-nav a {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.3s var(--ease-out);
}

.footer-nav a:hover { color: var(--white); }

.footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--stone);
  opacity: 0.6;
}

/* ── Ticker ── */
.ticker-wrap {
  background: var(--black);
  height: 48px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.ticker-text {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  flex-shrink: 0;
  padding-right: 48px;
}
