@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f8f9fc;
  --bg-dark: #0b0f1a;
  --bg-dark-2: #111827;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-dark: rgba(255, 255, 255, 0.06);
  --text: #1e293b;
  --text-light: #94a3b8;
  --text-on-dark: #e2e8f0;
  --muted: #64748b;
  --line: rgba(148, 163, 184, 0.16);
  --line-dark: rgba(255, 255, 255, 0.08);
  --primary: #6a11cb;
  --primary-dark: #5a0eb0;
  --secondary: #2575fc;
  --gradient: linear-gradient(135deg, #6a11cb, #2575fc);
  --gradient-soft: linear-gradient(135deg, rgba(106, 17, 203, 0.08), rgba(37, 117, 252, 0.08));
  --gradient-glow: linear-gradient(135deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2));
  --shadow: 0 4px 24px rgba(106, 17, 203, 0.06);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

/* ─── Container ─── */
.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 300ms ease, box-shadow 300ms ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-badge {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text small {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 200ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--primary);
  background: var(--gradient-soft);
}

.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 10px !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  padding: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 200ms ease;
}

/* ─── Dark header variant (for dark hero pages) ─── */
[data-page="home"] .header:not(.scrolled) .brand-text strong,
[data-page="home"] .header:not(.scrolled) .menu-toggle span {
  color: #fff;
}

[data-page="home"] .header:not(.scrolled) .brand-text small {
  color: rgba(255, 255, 255, 0.6);
}

[data-page="home"] .header:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.7);
}

[data-page="home"] .header:not(.scrolled) .nav-links a:hover,
[data-page="home"] .header:not(.scrolled) .nav-links a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

[data-page="home"] .header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

/* ─── Hero Section (Home) ─── */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(106, 17, 203, 0.25), transparent),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(37, 117, 252, 0.2), transparent),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(106, 17, 203, 0.1), transparent);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #a78bfa, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat span {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: 8rem 0 3rem;
  background: var(--bg);
}

.page-hero .eyebrow {
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.page-hero .lead {
  max-width: 56ch;
  margin-top: 1rem;
}

/* ─── Buttons ─── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(106, 17, 203, 0.3);
}

.button-primary:hover {
  box-shadow: 0 8px 24px rgba(106, 17, 203, 0.4);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--line);
}

.button-outline:hover {
  border-color: var(--primary);
  background: var(--gradient-soft);
}

/* ─── Typography ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ─── Sections ─── */
.section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 580px;
  margin-bottom: 3rem;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .lead,
.section-dark p {
  color: var(--text-light);
}

.section-dark .eyebrow {
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-alt {
  background: linear-gradient(180deg, #f1f5f9, var(--bg));
}

/* ─── Feature Grid ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: all 300ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(106, 17, 203, 0.2);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: var(--gradient-soft);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ─── Product Tabs / Showcase ─── */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-tabs {
  display: grid;
  gap: 0.75rem;
}

.product-tab {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: all 250ms ease;
}

.product-tab:hover {
  border-color: rgba(106, 17, 203, 0.2);
}

.product-tab.active {
  border-color: rgba(106, 17, 203, 0.3);
  background: var(--gradient-soft);
  box-shadow: 0 4px 20px rgba(106, 17, 203, 0.08);
}

.tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--gradient-soft);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.product-tab.active .tab-icon {
  background: var(--gradient);
}

.tab-content small {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 600;
}

.tab-content strong {
  display: block;
  font-size: 1rem;
}

.spotlight-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.spotlight-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.spotlight-card h2 {
  color: #fff;
  margin: 0.5rem 0 1rem;
  position: relative;
}

.spotlight-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  position: relative;
}

.spotlight-card ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.spotlight-card li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.spotlight-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

/* ─── Product Cards (Products Page) ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 300ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card:hover::before {
  opacity: 1;
}

.product-index {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.product-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.product-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.product-card ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
}

.product-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-glow);
  border: 2px solid var(--primary);
}

/* ─── Comparison Cards ─── */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.comparison-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-soft);
  border: 1px solid rgba(106, 17, 203, 0.1);
  transition: all 300ms ease;
}

.comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.comparison-card h3 {
  font-size: 1.3rem;
}

.comparison-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Band Section (Process/How it works) ─── */
.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.band-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  transition: all 300ms ease;
}

.band-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.band-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.band-card .eyebrow {
  display: block;
  text-align: center;
}

.band-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ─── CTA Section ─── */
.cta-section {
  padding: 5rem 0;
}

.cta-card {
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(255, 255, 255, 0.06), transparent);
}

.cta-card h2,
.cta-card p {
  position: relative;
  color: #fff;
}

.cta-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-card .button {
  position: relative;
  background: #fff;
  color: var(--primary);
}

.cta-card .button:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ─── Job Cards (Careers) ─── */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.job-card {
  display: grid;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: all 300ms ease;
}

.job-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(106, 17, 203, 0.15);
}

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

.job-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--gradient-soft);
  color: var(--primary);
}

.job-location {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(37, 117, 252, 0.08);
  color: var(--secondary);
}

.job-card h2 {
  font-size: 1.35rem;
  margin: 0;
}

.job-card > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.job-subsection h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.job-subsection ul {
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.role-button {
  margin-top: 0.5rem;
  background: var(--gradient-soft);
  color: var(--primary);
  border: 1px solid rgba(106, 17, 203, 0.15);
  font-weight: 600;
}

.role-button:hover {
  background: var(--gradient-glow);
}

/* ─── Contact Layout ─── */
.contact-layout,
.apply-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-panel,
.apply-panel {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-soft);
  border: 1px solid rgba(106, 17, 203, 0.1);
}

.contact-panel h1 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  max-width: 16ch;
  line-height: 1.15;
}

.contact-panel p,
.apply-panel p {
  color: var(--muted);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-info-card {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
}

.contact-info-card span {
  display: block;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

/* ─── Forms ─── */
.contact-form,
.career-form {
  display: grid;
  gap: 1.25rem;
  align-content: start;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label,
.career-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea,
.career-form input,
.career-form textarea,
.career-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  transition: all 200ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.career-form input:focus,
.career-form textarea:focus,
.career-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.contact-form textarea,
.career-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.apply-note {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--primary);
  background: var(--gradient-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ─── FAQ ─── */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 720px;
}

.faq-card {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: all 200ms ease;
}

.faq-card:hover {
  border-color: rgba(106, 17, 203, 0.15);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}

.faq-toggle span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--gradient-soft);
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.faq-card.open .faq-toggle span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  line-height: 1.75;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-card.open .faq-answer {
  display: block;
}

/* ─── Footer ─── */
.footer {
  padding: 3rem 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.footer-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-badge {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.footer-copy {
  margin: 0;
  max-width: 36ch;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-light);
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ─── Chip ─── */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
}

.chip-muted {
  background: rgba(148, 163, 184, 0.1);
  color: var(--muted);
}

/* ─── Trusted / Social Proof ─── */
.trusted-strip {
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.trusted-strip p {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2rem;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trusted-logos span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.5;
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .feature-grid,
  .band-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid,
  .contact-layout,
  .apply-layout,
  .comparison-grid,
  .careers-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }

  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1.5rem;
    right: 1.5rem;
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0 !important;
    text-align: center;
  }

  [data-page="home"] .header:not(.scrolled) .nav-links {
    background: rgba(11, 15, 26, 0.96);
    border-color: var(--line-dark);
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 2rem);
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .feature-grid,
  .band-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2.5rem;
  }

  .hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .apply-panel,
  .contact-form,
  .career-form {
    padding: 1.5rem;
  }

  .cta-card {
    padding: 3rem 1.5rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .page-hero {
    padding: 7rem 0 2rem;
  }
}
