/* ============================================================
   Niyati Luthra — niyatiluthra.com
   Dark theme, purple accent (design language of akashkariya.com)
   ============================================================ */

:root {
  --bg: #0a0509;
  --surface: #160a11;
  --surface-2: #1d0d15;
  --border: rgba(255, 255, 255, 0.09);
  --fg: #fdf2f6;
  --muted: #bb9dab;
  --accent: #ff2d78;      /* hot pink */
  --accent-2: #ff3131;    /* red */
  --accent-3: #ffd60a;    /* yellow */
  --accent-soft: rgba(255, 45, 120, 0.14);
  --accent-fg: #ffffff;
  --grad: linear-gradient(100deg, #ff2d78, #ff3131 50%, #ffd60a);
  --radius: 16px;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

::selection { background: var(--accent); color: #fff; }

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Cinematic film grain + vignette over the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.8'/%3E%3C/svg%3E");
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 40%, transparent 60%, rgba(5, 2, 4, 0.55));
}
main, .site-header, .site-footer { position: relative; z-index: 2; }

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; }

h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
h3 { font-size: 1.12rem; font-weight: 600; }

.muted { color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-3);
  margin-bottom: 0.9rem;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding: 0.75rem 0.75rem 0;
}

.nav-pill {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(20, 20, 28, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brand { display: flex; align-items: center; gap: 0.75rem; }

.brand-logo {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--accent);
  color: var(--accent-fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.brand-tag {
  margin-top: 0.3rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  position: relative;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
  border-radius: 10px;
  transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  inset-inline: 0.8rem;
  bottom: 0.15rem;
  height: 1px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg);
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 1120px;
  margin: 0.5rem auto 0;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(20, 20, 28, 0.96);
  backdrop-filter: blur(18px);
}
.nav-mobile a { padding: 0.65rem 1rem; border-radius: 12px; color: var(--muted); }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--accent); background: var(--accent-soft); }
.nav-mobile.open { display: flex; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
}

/* ---------- Inner page header ---------- */
.page-head {
  position: relative;
  overflow: hidden;
  padding: clamp(7.5rem, 14vw, 10.5rem) 0 clamp(2rem, 4vw, 3rem);
}
.page-head h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.page-head .lead { margin-top: 1.2rem; }
.page-head .container { position: relative; }

.section-more { margin-top: 2.5rem; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: 4rem;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  --mx: 85%;
  --my: 0%;
  background:
    radial-gradient(40% 45% at var(--mx) var(--my), rgba(255, 45, 120, 0.20), transparent 70%),
    radial-gradient(60% 50% at 85% 0%, rgba(255, 45, 120, 0.16), transparent 70%),
    radial-gradient(45% 45% at 5% 85%, rgba(255, 49, 49, 0.13), transparent 70%),
    radial-gradient(30% 30% at 60% 100%, rgba(255, 214, 10, 0.07), transparent 70%);
  transition: background 0.2s ease-out;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 10px 2px rgba(255, 214, 10, 0.55);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
}
.hero h1 span { display: block; }
.hero h1 .accent, .accent {
  background: var(--grad);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 6s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.12rem;
  color: var(--muted);
}

.hero-ctas { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  transition: transform 0.25s, opacity 0.25s, background 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--grad);
  background-size: 220% 100%;
  color: var(--accent-fg);
  box-shadow: 0 8px 28px rgba(255, 45, 120, 0.45);
  animation: gradShift 6s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255, 45, 120, 0.6); }
.btn-ghost { border: 1px solid var(--border); background: var(--surface); color: var(--fg); }
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); }

.hero-portrait { display: flex; justify-content: center; }
.portrait-frame {
  position: relative;
  width: min(360px, 90%);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 45, 120, 0.35);
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(255, 45, 120, 0.28), 0 10px 40px rgba(255, 214, 10, 0.08);
}
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 11, 16, 0.55));
  pointer-events: none;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  background: radial-gradient(60% 60% at 50% 40%, var(--accent-soft), transparent);
}
.portrait-placeholder span, .portrait-placeholder { color: var(--accent); }

/* ---------- Stats ---------- */
.stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label { font-size: 0.85rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-alt {
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(255, 45, 120, 0.07), transparent 70%),
    radial-gradient(30% 40% at 90% 100%, rgba(255, 214, 10, 0.04), transparent 70%),
    var(--surface);
  border-block: 1px solid var(--border);
}
.section-head { max-width: 44rem; margin-bottom: 3rem; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}
.about-grid p { margin-bottom: 1rem; }

.about-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}
.bullet-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  color: var(--fg);
  font-size: 0.95rem;
}
.tick {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: rgba(255, 214, 10, 0.14);
  color: var(--accent-3);
}
.languages { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.languages p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Cards / services ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface-2);
  transition: transform 0.3s, border-color 0.3s;
}
.section-alt .card { background: var(--bg); }
.card:hover { transform: translateY(-4px); border-color: rgba(255, 45, 120, 0.45); box-shadow: 0 14px 40px rgba(255, 45, 120, 0.12); }
.card h3 { margin: 1.1rem 0 0.5rem; }
.card p { font-size: 0.92rem; }

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon.small { width: 36px; height: 36px; border-radius: 10px; }
.card-icon.small svg { width: 17px; height: 17px; }

/* ---------- Timeline ---------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: step;
}
.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  transition: border-color 0.3s;
}
.timeline-item:hover { border-color: rgba(255, 45, 120, 0.45); }
.timeline-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.8;
}
.timeline-period {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-3);
}
.timeline-body h3 { margin: 0.4rem 0 0.1rem; }
.timeline-company { display: block; font-size: 0.88rem; color: var(--muted); margin-bottom: 0.5rem; }
.timeline-body p { font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonial { display: flex; flex-direction: column; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
}
.testimonial blockquote { flex: 1; font-size: 0.95rem; color: var(--fg); margin: 0.25rem 0 1.25rem; }
.t-name { display: block; font-weight: 600; font-size: 0.92rem; }
.t-title { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }

/* ---------- CTA panel ---------- */
.cta-panel {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid rgba(255, 45, 120, 0.3);
  border-radius: 28px;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(255, 45, 120, 0.18), transparent 70%),
    radial-gradient(40% 80% at 85% 100%, rgba(255, 214, 10, 0.06), transparent 70%),
    var(--surface);
}
.cta-panel p { max-width: 34rem; margin: 0 auto 2rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: background 0.25s, color 0.25s;
}
.contact-line:hover { background: var(--accent-soft); color: var(--accent); }
.contact-location { margin-top: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.footer-grid .muted { font-size: 0.85rem; margin-top: 0.3rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.9rem; color: var(--muted); transition: color 0.25s; }
.footer-links a:hover { color: var(--accent); }
.copyright { grid-column: 1 / -1; font-size: 0.8rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 1.5rem; }

/* ---------- Reveal animation ----------
   Content is visible by DEFAULT. It is only hidden for the animation when
   JavaScript has confirmed it is running (html.js). If JS fails, is slow,
   is blocked, or a stale file is cached, every section still shows — the
   page can never render blank. */
.reveal { opacity: 1; transform: none; }

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
html.js .reveal.visible { opacity: 1; transform: none; }

/* Directional variants (add class alongside .reveal) */
html.js .reveal-left  { transform: translateX(-32px); }
html.js .reveal-right { transform: translateX(32px); }
html.js .reveal-scale { transform: scale(0.94); }
html.js .reveal-left.visible,
html.js .reveal-right.visible,
html.js .reveal-scale.visible { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .accent, .btn-primary, .badge .dot, .spotlight-value, .process-num { animation: none; }
  html { scroll-behavior: auto; }
  .scroll-progress { display: none; }
}

/* ---------- Contact form ---------- */
.contact-form-card { margin-top: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg);
  font: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form .btn { justify-content: center; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-alert {
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  border: 1px solid;
}
.form-alert.ok { border-color: rgba(255, 214, 10, 0.5); background: rgba(255, 214, 10, 0.09); color: var(--accent-3); }
.form-alert.err { border-color: rgba(255, 49, 49, 0.5); background: rgba(255, 49, 49, 0.09); color: #ff8080; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; }
  .portrait-frame { width: min(300px, 80%); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 48rem; margin-inline: auto; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: rgba(255, 45, 120, 0.4); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; border-radius: 16px; }

.faq-marker { position: relative; flex-shrink: 0; width: 14px; height: 14px; }
.faq-marker::before,
.faq-marker::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.25s;
}
.faq-marker::before { inset: 6px 0 6px 0; height: 2px; }
.faq-marker::after  { inset: 0 6px 0 6px; width: 2px; }
.faq-item[open] .faq-marker::after { transform: scaleY(0); }

.faq-answer { padding: 0 1.4rem 1.25rem; }
.faq-answer p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Credentials ---------- */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.cred-primary { display: block; font-weight: 600; font-size: 0.95rem; color: var(--fg); }
.cred-years { font-size: 0.85rem; }
.credentials-grid .card h3 { margin-bottom: 0.9rem; }
.credentials-grid p { font-size: 0.92rem; }

.cred-list { display: flex; flex-direction: column; gap: 0.85rem; }
.cred-list li { display: flex; flex-direction: column; gap: 0.15rem; }
.cred-list .muted { font-size: 0.85rem; }

.tag-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 45, 120, 0.35);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--fg);
  font-size: 0.85rem;
}
.tag-alt { border-color: rgba(255, 214, 10, 0.35); background: rgba(255, 214, 10, 0.09); }

@media (max-width: 900px) {
  .credentials-grid { grid-template-columns: 1fr; }
  .tag-blocks { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ---------- Block management spotlight ---------- */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.spotlight-grid > div > .btn { margin-top: 1.75rem; }

.spotlight-figure {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-top: 1.75rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(255, 45, 120, 0.3);
  border-radius: 16px;
  background: var(--accent-soft);
}
.spotlight-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 6s ease-in-out infinite;
}
.spotlight-label { font-size: 0.9rem; color: var(--muted); }

.spotlight-list { display: flex; flex-direction: column; gap: 0.65rem; }
.spotlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-2);
  font-size: 0.93rem;
  transition: border-color 0.25s, transform 0.25s;
}
.section-alt .spotlight-list li { background: var(--bg); }
.spotlight-list li:hover { border-color: rgba(255, 45, 120, 0.4); transform: translateX(3px); }
.spotlight-tick {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
}
.spotlight-tick svg { width: 16px; height: 16px; }

/* ---------- Process steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}
.next-steps-grid { grid-template-columns: repeat(3, 1fr); }

.process-step {
  position: relative;
  padding: 1.8rem 1.5rem 1.6rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface-2);
  transition: border-color 0.3s, transform 0.3s;
}
.section-alt .process-step { background: var(--bg); }
.process-step:hover { border-color: rgba(255, 45, 120, 0.4); transform: translateY(-4px); }
.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.9rem;
  background: var(--grad);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process-step h3 { margin-bottom: 0.45rem; }
.process-step p { font-size: 0.9rem; }

/* ---------- Markets ---------- */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.market-card {
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 18px;
  background: var(--surface-2);
  transition: transform 0.3s, border-color 0.3s;
}
.section-alt .market-card { background: var(--bg); }
.market-card:nth-child(2) { border-top-color: var(--accent-2); }
.market-card:nth-child(3) { border-top-color: var(--accent-3); }
.market-card:nth-child(4) { border-top-color: var(--accent); }
.market-card:hover { transform: translateY(-4px); }
.market-card h3 { margin-bottom: 0.5rem; }
.market-card p { font-size: 0.9rem; }

/* ---------- Awards ---------- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.award-card {
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(255, 214, 10, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(255, 214, 10, 0.07), transparent 70%),
    var(--surface-2);
  transition: transform 0.3s, border-color 0.3s;
}
.section-alt .award-card { background:
    radial-gradient(70% 100% at 50% 0%, rgba(255, 214, 10, 0.07), transparent 70%),
    var(--bg); }
.award-card:hover { transform: translateY(-4px); border-color: rgba(255, 214, 10, 0.55); }
.award-year {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 214, 10, 0.13);
  color: var(--accent-3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.award-card h3 { margin-bottom: 0.35rem; }
.award-card p { font-size: 0.88rem; }

/* ---------- Featured quote ---------- */
.featured-quote {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(255, 45, 120, 0.1), transparent 70%),
    var(--surface);
}
.featured-quote .quote-mark { display: block; margin-bottom: -0.5rem; }
.featured-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.featured-quote figcaption { margin-bottom: 1.75rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .process-grid, .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: 1fr; }
  .next-steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .spotlight-grid { grid-template-columns: 1fr; gap: 2.25rem; }
}
@media (max-width: 600px) {
  .process-grid, .markets-grid { grid-template-columns: 1fr; }
  .featured-quote { padding: 2.25rem 1.5rem; }
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: var(--grad);
  background-size: 100% 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* ---------- Header condense on scroll ---------- */
.site-header .nav-pill { transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.site-header.scrolled .nav-pill {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  background: rgba(14, 7, 11, 0.92);
  border-color: rgba(255, 45, 120, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* ---------- Button shine sweep on hover ---------- */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 130%; }

/* ---------- Card sheen ---------- */
.card { position: relative; overflow: hidden; }
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(60% 60% at 50% 0%, rgba(255, 45, 120, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .btn-primary::after { display: none; }
  .hero-glow { transition: none; }
}
