/* Shared brandARQ styles for all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Space+Grotesk:wght@400;600;700&display=swap');
:root {
  --grad: linear-gradient(90deg,#FF5EA1,#A24AE6,#4C6CFF);
  --brand-gradient: linear-gradient(90deg,#FF5EA1,#A24AE6,#4C6CFF);
  --logo-height: 96px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --text: #EDEDED;
  --muted: #A7AAB2;
  --bg: #0E0F13;
}

/* Light mode variables */
[data-theme="light"] {
  --text: #1A1B1E;
  --muted: #666872;
  --bg: #FFFFFF;
  --shadow: 0 10px 30px rgba(0,0,0,.12);
}

body {
  font-family: 'Inter', 'Space Grotesk', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(14,15,19,.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav img.logo {
  height: var(--logo-height);
  width: auto;
}
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  background: rgba(14,15,19,.8);
}
footer img.logo {
  height: var(--logo-height);
  width: auto;
}
.header-beam {
  width: 100%;
  height: 180px;
  background: var(--brand-gradient);
  filter: blur(32px) brightness(1.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.7;
}
.header {
  position: relative;
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
  overflow: hidden;
}
.breadcrumb {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
}
.hero-title .arq {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}
.col {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 480px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
}
.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===== Mission Control CTA (exact match) ===== */
.mc-cta {
  --rim: linear-gradient(135deg, #FF5EA1, #A24AE6 45%, #4C6CFF);
  --panel: rgba(15, 15, 20, 0.85);
  --glow: 0 20px 40px rgba(162, 74, 230, 0.25), 0 8px 20px rgba(76, 108, 255, 0.18);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.2rem;
  border-radius: 22px;
  background: radial-gradient(120% 220% at 20% 10%, rgba(255, 255, 255, 0.08), transparent 38%),
              radial-gradient(140% 180% at 80% 90%, rgba(162, 74, 230, 0.12), transparent 60%),
              var(--panel);
  color: #EDEDED;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--glow);
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Neon rim */
.mc-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 23px;
  padding: 1px;
  background: var(--rim);
  background-size: 200% 100%;
  animation: rimMove 4s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.9;
}

/* Mouse-following glow */
.mc-cta::after {
  content: "";
  position: absolute;
  inset: -40%;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(160px 140px at var(--mx, 50%) var(--my, 50%),
              rgba(255, 94, 161, 0.15),
              rgba(162, 74, 230, 0.12) 40%,
              rgba(76, 108, 255, 0.1) 65%,
              transparent 80%);
  filter: blur(20px);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.mc-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), var(--glow);
}

@keyframes rimMove {
  to { background-position: 200% 0; }
}

/* Circular arrow pill */
.mc-cta .arrow-pill {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: radial-gradient(120% 120% at 70% 30%, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0) 60%),
              rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25),
              0 0 12px rgba(162, 74, 230, 0.35);
  transition: transform 0.25s ease;
}

.mc-cta:hover .arrow-pill {
  transform: translateX(3px);
}

.mc-cta .label {
  position: relative;
  z-index: 2;
}

ul.included-list {
  padding-left: 1.2rem;
  margin: 0 0 1.5rem 0;
}
.timeline {
  margin-top: 1.5rem;
  border-left: 3px solid #A24AE6;
  padding-left: 1rem;
}
.recent-work {
  margin: 3rem 0 0 0;
  text-align: center;
}
.recent-work-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.recent-card {
  width: 220px;
  height: 140px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .main-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .col {
    max-width: 100%;
  }
}
