/* ProRes India — css/about.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink: #0f0f0f;
    --paper: #f8f6f1;
    --paper-2: #f0ede6;
    --amber: #F5A623;
    --amber-dark: #c47e08;
    --amber-light: #f7b94a;
    --muted: #6b6560;
    --border: rgba(15,15,15,0.1);
    --card: #fff;
    --card-bg: #fff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    cursor: none;
    overflow-x: hidden;
  }

  /* CURSOR */
  .cursor { position: fixed; width: 8px; height: 8px; background: var(--amber); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .2s, height .2s; }
  .cursor-ring { position: fixed; width: 32px; height: 32px; border: 1.5px solid var(--amber); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: left .08s, top .08s; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 4rem;
    transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
  }
  nav.scrolled {
    background: rgba(248,246,241,0.95); backdrop-filter: blur(10px);
    padding: 1rem 4rem; box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }
  .nav-logo img { height: 38px; width: auto; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
    color: var(--ink); text-decoration: none; letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--amber-dark); }
  .nav-cta {
    background: var(--ink); color: #fff; padding: 0.6rem 1.4rem;
    border-radius: 2px; text-decoration: none; font-size: 0.8rem;
    font-weight: 600; letter-spacing: 0.06em; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--amber-dark); }

  /* HERO */
  .about-hero {
    min-height: 60vh;
    background: var(--ink);
    display: flex; align-items: flex-end;
    padding: 8rem 4rem 5rem;
    position: relative; overflow: hidden;
  }
  .about-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.12) 0%, transparent 65%);
  }
  .hero-grid-bg {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .about-hero-content { position: relative; z-index: 1; max-width: 760px; }
  .about-hero-label {
    font-family: 'Space Mono', monospace; font-size: 0.68rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .about-hero-label::before { content: ''; width: 28px; height: 1.5px; background: var(--amber); }
  .about-hero-title {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: #fff; line-height: 1.0; letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
  }
  .about-hero-title span { color: var(--amber); }
  .about-hero-sub {
    font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.6);
    line-height: 1.7; max-width: 560px;
  }

  /* SECTION BASICS */
  section { padding: 6rem 4rem; }
  .section-label {
    font-family: 'Space Mono', monospace; font-size: 0.68rem;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber-dark);
    margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem;
  }
  .section-label::before { content: ''; flex: none; width: 28px; height: 1.5px; background: var(--amber); }
  .section-title {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.03em;
    color: var(--ink); line-height: 1.05; margin-bottom: 1.5rem;
  }

  /* STORY SECTION */
  .story-section { background: var(--paper); }
  .story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto;
  }
  .story-text p {
    font-size: 1.05rem; font-weight: 300; line-height: 1.85;
    color: #3a3530; margin-bottom: 1.5rem;
  }
  .story-text p strong { font-weight: 600; color: var(--ink); }
  .story-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: 2.5rem;
  }
  .story-stat {
    padding: 1.5rem; border: 1px solid var(--border);
    border-radius: 4px; background: var(--card);
  }
  .story-stat-num {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 2.4rem; color: var(--amber-dark); line-height: 1;
    margin-bottom: 0.3rem;
  }
  .story-stat-label { font-size: 0.8rem; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; }
  .story-image {
    position: relative; border-radius: 6px; overflow: hidden;
  }
  .story-image img {
    width: 100%; display: block; border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  }
  .story-image-badge {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    background: var(--ink); color: #fff;
    padding: 0.75rem 1.25rem; border-radius: 4px;
    font-family: 'Space Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    border-left: 3px solid var(--amber);
  }

  /* AI MILESTONE SECTION */
  .ai-milestone-section { background: var(--ink); padding: 6rem 4rem; }
  .ai-milestone-inner { max-width: 1200px; margin: 0 auto; }
  .ai-milestone-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center; margin-top: 4rem;
  }
  .ai-poster-wrap {
    position: relative;
    border-radius: 12px; overflow: hidden;
  }
  .ai-poster-wrap img {
    width: 100%; display: block; border-radius: 12px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  }
  .ai-poster-glow {
    position: absolute; inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245,166,35,0.6), transparent 50%, rgba(245,166,35,0.3));
    pointer-events: none;
  }
  .ai-milestone-label {
    font-family: 'Space Mono', monospace; font-size: 0.68rem;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber);
    margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem;
  }
  .ai-milestone-label::before { content: ''; flex: none; width: 28px; height: 1.5px; background: var(--amber); }
  .ai-milestone-title {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #fff; line-height: 1.05; letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }
  .ai-milestone-title span { color: var(--amber); }
  .ai-milestone-body {
    font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.65);
    line-height: 1.8; margin-bottom: 1.5rem;
  }
  .ai-milestone-body strong { color: #fff; font-weight: 600; }
  .ai-milestone-tags {
    display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem;
  }
  .ai-tag {
    font-family: 'Space Mono', monospace; font-size: 0.62rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.4rem 0.9rem; border-radius: 2px;
    border: 1px solid rgba(245,166,35,0.4); color: var(--amber);
    background: rgba(245,166,35,0.07);
  }
  .ai-milestone-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.3);
    color: var(--amber); padding: 0.5rem 1rem; border-radius: 20px;
    font-family: 'Space Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .ai-milestone-badge::before { content: '🚀'; }

  /* MISSION SECTION */
  .mission-section { background: var(--paper-2); }
  .mission-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3rem; max-width: 1200px; margin-left: auto; margin-right: auto;
  }
  .mission-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 6px; padding: 2.5rem 2rem;
    position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .mission-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.09); }
  .mission-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--amber);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
  }
  .mission-card:hover::before { transform: scaleX(1); }
  .mission-icon {
    font-size: 2rem; margin-bottom: 1.25rem; display: block;
  }
  .mission-card-title {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--ink);
  }
  .mission-card-body {
    font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.7;
  }

  /* TIMELINE */
  .timeline-section { background: var(--paper); }
  .timeline { max-width: 800px; margin: 3rem auto 0; position: relative; }
  .timeline::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 1px; background: var(--border);
  }
  .timeline-item {
    padding: 0 0 3rem 3rem; position: relative;
  }
  .timeline-item::before {
    content: ''; position: absolute; left: -5px; top: 6px;
    width: 11px; height: 11px; border-radius: 50%;
    background: var(--amber); border: 2px solid var(--paper);
    box-shadow: 0 0 0 2px var(--amber);
  }
  .timeline-year {
    font-family: 'Space Mono', monospace; font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--amber-dark); margin-bottom: 0.4rem;
  }
  .timeline-event {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 1.2rem; color: var(--ink); margin-bottom: 0.5rem;
  }
  .timeline-desc {
    font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.7;
  }
  .timeline-item.highlight .timeline-event { color: var(--amber-dark); }
  .timeline-item.highlight::before { background: var(--amber-dark); box-shadow: 0 0 0 3px rgba(245,166,35,0.3); }

  /* CTA STRIP */
  .cta-strip {
    background: var(--ink); padding: 5rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
  }
  .cta-strip h2 {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff; letter-spacing: -0.03em;
  }
  .cta-strip h2 span { color: var(--amber); }
  .cta-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
  .cta-btn-primary {
    background: var(--amber); color: var(--ink);
    padding: 0.9rem 2rem; border-radius: 2px; text-decoration: none;
    font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
    transition: background 0.2s;
  }
  .cta-btn-primary:hover { background: var(--amber-light); }
  .cta-btn-secondary {
    background: transparent; color: rgba(255,255,255,0.6);
    padding: 0.9rem 2rem; border-radius: 2px; text-decoration: none;
    font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em;
    border: 1px solid rgba(255,255,255,0.15); transition: all 0.2s;
  }
  .cta-btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

  /* FOOTER */
  footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 3rem 4rem;
    background: var(--ink);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 2rem;
  }
  .footer-left { display: flex; flex-direction: column; gap: 0.4rem; }
  .footer-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }
  .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
  .footer-nav { display: flex; gap: 2rem; }
  .footer-nav a {
    color: rgba(255,255,255,0.45); text-decoration: none;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; transition: color 0.3s;
  }
  .footer-nav a:hover { color: var(--amber); }
  .footer-back {
    color: var(--amber); text-decoration: none; font-size: 0.8rem;
    font-weight: 600; letter-spacing: 0.06em; font-family: 'Syne', sans-serif;
    transition: color 0.3s;
  }
  .footer-back:hover { color: var(--amber-light); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }

  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    nav.scrolled { padding: 0.9rem 1.5rem; }
    .nav-links, .nav-cta { display: none; }
    .about-hero { padding: 7rem 1.5rem 3.5rem; }
    section { padding: 4rem 1.5rem; }
    .story-grid, .ai-milestone-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .mission-grid { grid-template-columns: 1fr; }
    .cta-strip { padding: 3.5rem 1.5rem; }
    footer { padding: 2rem 1.5rem; }
    .footer-nav { display: none; }
  }

/* ─── MOBILE ENHANCEMENTS (additive only) ─── */

@media (hover: none) {
  .cursor, .cursor-ring { display: none !important; }
  body, * { cursor: auto !important; }
}

.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 200;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
nav.scrolled .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: var(--paper); padding: 6rem 2rem 3rem;
  flex-direction: column; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav-drawer.open { opacity: 1; pointer-events: all; }
.mobile-nav-drawer a {
  display: block; font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.8rem; color: var(--ink); text-decoration: none;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border);
}
.mobile-nav-drawer .mob-cta {
  margin-top: 2rem; background: var(--ink); color: #fff !important;
  padding: 0.9rem 1.5rem; border-radius: 2px; text-align: center;
}

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .mobile-nav-drawer { display: flex; }
  .nav-links, .nav-cta { display: none; }

  /* Story */
  .story-grid { grid-template-columns: 1fr !important; gap: 2.5rem; }
  .story-stats { grid-template-columns: 1fr 1fr; }

  /* AI milestone */
  .ai-milestone-section { padding: 4rem 1.5rem; }
  .ai-milestone-grid { grid-template-columns: 1fr !important; gap: 2.5rem; }

  /* Mission */
  .mission-grid { grid-template-columns: 1fr !important; gap: 1rem; }

  /* CTA */
  .cta-strip { flex-direction: column; gap: 1.5rem; padding: 3.5rem 1.5rem; }
  .cta-strip-actions { flex-direction: column; width: 100%; }
  .cta-strip-actions a { width: 100%; text-align: center; }

  footer { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 1.25rem; }
  .about-hero { padding: 7rem 1.25rem 3.5rem; }
  .story-stat-num { font-size: 1.8rem; }
  .mission-card { padding: 1.5rem; }
}
