/* ══════════════════════════════════════════════
   about.css — Luxury Editorial About Page
   Matches index.html design language:
   Cormorant Garamond + Poppins, dark/ivory, green
   ══════════════════════════════════════════════ */

/* ── Page base override ── */
body {
  background: #f7f6f3;
  background-attachment: unset;
}

main {
  background: transparent;
  overflow-x: hidden;
}

/* ── Shared tokens ── */
:root {
  --ab-dark: #0d0d0d;
  --ab-dark-2: #141414;
  --ab-ivory: #f5f3ee;
  --ab-ivory-dim: rgba(245, 243, 238, 0.55);
  --ab-green: #28a745;
  --ab-green-dim: rgba(40, 167, 69, 0.18);
  --ab-muted: rgba(245, 243, 238, 0.38);
  --ab-rule: rgba(255, 255, 255, 0.07);
  --ab-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Shared label ── */
.about-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(40, 167, 69, 0.85);
  margin-bottom: 1rem;
}

.about-label--light {
  color: rgba(168, 213, 181, 0.9);
}

/* ── Scroll reveal ── */
.reveal,
.reveal-stagger {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ab-ease), transform 0.85s var(--ab-ease);
}

.reveal.is-visible,
.reveal-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════
   1. CINEMATIC HERO
═══════════════════════════════════ */
.about-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ab-dark);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 65% 25%, rgba(40, 167, 69, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 15% 75%, rgba(40, 167, 69, 0.06) 0%, transparent 60%),
    linear-gradient(160deg, #0d0d0d 0%, #111510 100%);
  pointer-events: none;
}

.about-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.about-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.about-hero-orb--1 {
  width: 560px;
  height: 560px;
  top: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.16) 0%, transparent 70%);
  animation: aboutOrbDrift 11s ease-in-out infinite alternate;
}

.about-hero-orb--2 {
  width: 380px;
  height: 380px;
  bottom: 60px;
  left: -40px;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.09) 0%, transparent 70%);
  animation: aboutOrbDrift 8s ease-in-out infinite alternate-reverse;
}

@keyframes aboutOrbDrift {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(25px, 18px) scale(1.07);
  }
}

/* Vertical decorative rule */
.about-hero-rule {
  position: absolute;
  left: 5%;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(40, 167, 69, 0.45), transparent);
  display: none;
}

@media (min-width: 1100px) {
  .about-hero-rule {
    display: block;
  }
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6% 0 6%;
  max-width: 820px;
}

.about-eyebrow {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(40, 167, 69, 0.9);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: aboutSlideUp 0.8s var(--ab-ease) 0.2s forwards;
}

.about-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 7.5vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ab-ivory);
  letter-spacing: -0.015em;
  margin: 0 0 2rem;
  opacity: 0;
  animation: aboutSlideUp 0.9s var(--ab-ease) 0.36s forwards;
}

.about-hero-content h1 em {
  font-style: italic;
  color: #a8d5b5;
  font-weight: 300;
}

.about-hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 243, 238, 0.48);
  max-width: 440px;
  line-height: 1.9;
  margin-bottom: 0;
  opacity: 0;
  animation: aboutSlideUp 0.9s var(--ab-ease) 0.52s forwards;
}

/* Scroll indicator */
.about-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: aboutFadeIn 1.2s ease 1.1s forwards;
}

.about-hero-scroll span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.28);
  writing-mode: vertical-lr;
}

.about-hero-scroll-bar {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, rgba(40, 167, 69, 0.55), transparent);
  animation: aboutScrollPulse 2.4s ease-in-out infinite;
}

@keyframes aboutScrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes aboutSlideUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutFadeIn {
  to {
    opacity: 1;
  }
}

/* ═══════════════════════════════════
   2. INTRO SECTION
═══════════════════════════════════ */
.about-intro {
  background: var(--ab-ivory);
  padding: 9rem 6% 8rem;
}

.about-intro-inner {
  max-width: 780px;
}

.about-intro-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
}

.about-intro-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: #5a5850;
  line-height: 1.95;
  max-width: 600px;
}

/* ═══════════════════════════════════
   3. SMART CONTRACT SECTION — Anchor / Security
   Deep, restrained tone with soft ambient light
═══════════════════════════════════ */
.about-contract {
  background:
    radial-gradient(circle at 10% 20%, rgba(40, 167, 69, 0.03) 0%, transparent 22%),
    linear-gradient(160deg, #07110b 0%, #0b2012 100%);
  padding: 10rem 6%;
  color: rgba(235, 234, 230, 0.98);
}

.about-contract-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.5rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

/* Image frame */
.about-img-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(3, 6, 3, 0.55);
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.about-img-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.9s var(--ab-ease), filter 0.5s ease;
  filter: brightness(0.88) saturate(0.9);
}

.about-img-frame:hover img {
  transform: scale(1.03);
  filter: brightness(0.94) saturate(0.95);
}

/* Subtle dark glass panel for content */
.about-contract-text {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 3.25rem;
  box-shadow: 0 18px 50px rgba(3, 6, 3, 0.55);
  color: rgba(235,235,232,0.98);
}

.about-contract-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.06;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.about-contract-text h2 em {
  font-style: italic;
  color: rgba(168,213,181,0.78);
  font-weight: 300;
}

.about-contract-text>p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.96rem;
  font-weight: 300;
  color: rgba(218,216,210,0.92);
  line-height: 1.9;
  margin-bottom: 1.75rem;
}

/* Smart Contract — feature list color adjustments for dark panel */
.about-contract .about-feature-list strong {
  color: rgba(255, 255, 255, 0.96);
}

.about-contract .about-feature-list span {
  color: rgba(225, 223, 218, 0.78);
}

.about-contract .about-feature-icon {
  background: rgba(255,255,255,0.03);
}

.about-contract .about-feature-icon svg {
  stroke: rgba(168,213,181,0.92);
}

/* Feature list */
.about-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(40, 167, 69, 0.04);
  border: 1px solid rgba(40, 167, 69, 0.1);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.about-feature-list li:hover {
  border-color: rgba(40, 167, 69, 0.25);
  background: rgba(40, 167, 69, 0.07);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--ab-green);
}

.about-feature-list li>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-feature-list strong {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  display: block;
}

.about-feature-list span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: #7a7670;
  line-height: 1.5;
}

/* ═══════════════════════════════════
   4. PAYMENTS SECTION — Calm, refined lift
   Warm neutral / pale sage for visual relief
═══════════════════════════════════ */
.about-payments {
  background: linear-gradient(180deg, #fbfaf7 0%, #f6f7f2 100%);
  padding: 9rem 6% 6.5rem;
}

.about-payments-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto 5.5rem;
}

.about-payments-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: #161615;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.about-payments-text h2 em {
  font-style: italic;
  color: rgba(40,167,69,0.88);
}

.about-payments-text>p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #5c5953;
  line-height: 1.9;
}

/* Payment cards grid */
.about-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-pay-card {
  background: #ffffff;
  border: 1px solid rgba(10, 12, 10, 0.04);
  border-radius: 10px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 10px 30px rgba(10, 12, 10, 0.06);
  transition: transform 0.4s var(--ab-ease), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-pay-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ab-green), rgba(40, 167, 69, 0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-pay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(10, 12, 10, 0.09);
  border-color: rgba(40, 167, 69, 0.12);
}

.about-pay-card:hover::before {
  transform: scaleX(1);
}

.about-pay-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.about-pay-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.about-pay-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-pay-dot--green {
  background: #28a745;
}

.about-pay-dot--blue {
  background: #1a56db;
}

.about-pay-dot--amber {
  background: #f59e0b;
}

.about-pay-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 1.25rem;
  filter: grayscale(15%) brightness(0.96);
  transition: filter 0.4s ease;
}

.about-pay-card:hover img {
  filter: grayscale(0%) brightness(1.0);
}

.about-pay-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: #7a7670;
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════
   5. AI VERIFICATION SECTION
═══════════════════════════════════ */
.about-verification {
  background: #f0ede6;
  padding: 8rem 6%;
}

.about-verification-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-verification-text {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.about-verification-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}

.about-verification-text h2 em {
  font-style: italic;
  color: var(--ab-green);
  font-weight: 300;
}

.about-verification-text > p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #5a5850;
  line-height: 1.85;
  margin: 0 0 1.5rem;
}

.about-verification-text > p:last-of-type {
  margin-bottom: 2rem;
}

.about-verification-image {
  position: relative;
}

.about-verification-image .about-img-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.about-verification-image .about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.04), transparent);
  z-index: 1;
  pointer-events: none;
}

.about-verification-image .about-img-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: brightness(0.94) saturate(0.85);
}

.about-verification-image .about-img-frame:hover img {
  transform: scale(1.04);
  filter: brightness(0.98) saturate(1.0);
}

/* ═══════════════════════════════════
   6. PRIVACY & DATA PROTECTION SECTION
═══════════════════════════════════ */
.about-privacy {
  position: relative;
  background: var(--ab-ivory);
  padding: 9rem 6%;
  overflow: visible;
}

.about-privacy::before {
  /* diffused protective glow */
  content: '';
  position: absolute;
  inset: -10% 10% -30% 10%;
  background: radial-gradient(circle at 50% 40%, rgba(40,167,69,0.06) 0%, transparent 40%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.about-privacy-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-privacy-text {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 12px;
  padding: 3.25rem;
  box-shadow: 0 18px 40px rgba(10, 12, 10, 0.06);
}

.about-privacy-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: #162018;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.about-privacy-text h2 em {
  font-style: italic;
  color: rgba(40,167,69,0.92);
  font-weight: 300;
}

.about-privacy-text > p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #48534a;
  line-height: 1.9;
  margin: 0 0 1.25rem;
}

.about-privacy-text > p:last-of-type {
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════
   7. CLOSING CTA
═══════════════════════════════════ */
.about-cta {
  position: relative;
  padding: 9rem 6%;
  overflow: hidden;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(40, 167, 69, 0.10) 0%, transparent 65%),
    linear-gradient(160deg, #0d0d0d 0%, #111510 100%);
}

.about-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.about-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.about-cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  color: var(--ab-ivory);
  line-height: 1.0;
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}

.about-cta-inner h2 em {
  font-style: italic;
  color: #a8d5b5;
}

.about-cta-inner>p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245, 243, 238, 0.45);
  line-height: 1.95;
  max-width: 520px;
  margin-bottom: 3rem;
}

/* CTA link — same style as index hero */
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ab-ivory);
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-cta-btn-line {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(40, 167, 69, 0.8);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-cta-btn:hover {
  color: #a8d5b5;
}

.about-cta-btn:hover .about-cta-btn-line {
  width: 72px;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.about-footer {
  background: #0d0d0d;
  color: rgba(245, 243, 238, 0.28);
  border-top: none;
  padding: 2rem 6%;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 991px) {

  .about-contract-inner,
  .about-payments-inner,
  .about-verification-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-pay-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-hero-content h1 {
    font-size: clamp(3rem, 9vw, 4.5rem);
  }

  .about-contract,
  .about-payments,
  .about-verification {
    padding: 5rem 5%;
  }

  .about-intro {
    padding: 6rem 5% 5rem;
  }

  .about-cta {
    padding: 6rem 5%;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 80vh;
  }

  .about-hero-content {
    padding: 0 5% 6vh;
  }

  .about-hero-content h1 {
    font-size: clamp(2.8rem, 10vw, 3.5rem);
  }

  .about-contract-text,
  .about-verification-text {
    padding: 2rem 1.5rem;
  }

  .about-pay-grid {
    grid-template-columns: 1fr;
  }
}