/* ============================================
   THE MIDNIGHT GARDEN — Complete Stylesheet
   Bioluminescent Office Aesthetic
   ============================================ */

/* === CSS RESET & VARIABLES === */

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

:root {
  /* Core Colors */
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --black-elevated: #1a1a1a;
  
  /* Bioluminescent Palette */
  --cyan: #00B4D8;
  --cyan-bright: #00d4ff;
  --cyan-glow: rgba(0, 180, 216, 0.4);
  --magenta: #E91E8C;
  --magenta-bright: #ff2da5;
  --magenta-glow: rgba(233, 30, 140, 0.4);
  --white-hot: #ffffff;
  --white-warm: #f5f5f5;
  
  /* Text */
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  
  /* Accents */
  --ember: #c9a227;
  --violet: #7b2cbf;
  
  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  /* Layout */
  --container: 1200px;
  --container-narrow: 800px;
  --nav-height: 80px;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-med: 0.4s;
  --duration-slow: 0.8s;
  
  /* Glows */
  --glow-cyan: 0 0 30px var(--cyan-glow), 0 0 60px rgba(0, 180, 216, 0.2);
  --glow-magenta: 0 0 30px var(--magenta-glow), 0 0 60px rgba(233, 30, 140, 0.2);
  --glow-white: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* === BASE === */

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--magenta);
  color: var(--white-hot);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

/* === TYPOGRAPHY === */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-secondary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 50%, var(--cyan-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
}

.label--magenta {
  color: var(--magenta);
}

.label--ember {
  color: var(--ember);
}

/* === LAYOUT === */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--dark {
  background: var(--black-soft);
}

.section--elevated {
  background: var(--black-card);
}

/* === NAVIGATION === */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav__logo-img {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transition: width var(--duration-med) var(--ease-out);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--text-primary);
}

.nav__link--active::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
}

.nav__mobile.is-open {
  display: block;
}

.nav__mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav__mobile-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav__mobile-link:hover {
  color: var(--cyan);
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  
  .nav__toggle {
    display: flex;
  }
}

/* === BUTTONS === */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.btn--primary {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: var(--white-hot);
  box-shadow: var(--glow-cyan);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-magenta), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.btn--ghost {
  background: transparent;
  color: var(--cyan);
  padding: 0;
}

.btn--ghost:hover {
  color: var(--magenta);
}

/* === HERO === */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero__orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.hero__orb--primary {
  top: 10%;
  right: -10%;
}

.hero__orb--secondary {
  bottom: -20%;
  left: -10%;
  background: radial-gradient(circle, var(--magenta-glow) 0%, transparent 70%);
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-30px, 30px) scale(1.1); opacity: 0.7; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__label {
  margin-bottom: var(--space-md);
}

.hero__title {
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* === CARDS === */

.card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-xl);
  transition: all var(--duration-med) var(--ease-out);
}

.card:hover {
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--cyan);
}

.card__icon svg {
  width: 100%;
  height: 100%;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.card__text {
  font-size: 0.95rem;
  line-height: 1.7;
}

.card--glow:hover {
  box-shadow: var(--glow-cyan), 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* === SERVICE CARDS === */

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:nth-child(even) {
  direction: rtl;
}

.service-card:nth-child(even) > * {
  direction: ltr;
}

.service-card__image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan-glow), transparent);
  opacity: 0;
  transition: opacity var(--duration-med) var(--ease-out);
}

.service-card:hover .service-card__image::after {
  opacity: 1;
}

.service-card__content {
  padding: var(--space-lg);
}

.service-card__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--magenta);
  margin-bottom: var(--space-sm);
}

.service-card__title {
  margin-bottom: var(--space-md);
}

.service-card__text {
  margin-bottom: var(--space-lg);
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card__list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: var(--space-md);
  position: relative;
}

.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

@media (max-width: 768px) {
  .service-card {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .service-card:nth-child(even) {
    direction: ltr;
  }
}

/* === PROCESS === */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.process-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all var(--duration-med) var(--ease-out);
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  opacity: 0;
  transition: opacity var(--duration-med) var(--ease-out);
}

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

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, 0.2);
}

.process-card__image {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-card__number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: var(--space-sm);
}

.process-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.process-card__text {
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* === INDUSTRIES === */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.industry-card {
  padding: var(--space-xl);
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--duration-med) var(--ease-out);
}

.industry-card:hover {
  border-color: var(--magenta);
  box-shadow: var(--glow-magenta);
}

.industry-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.industry-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.industry-card__text {
  font-size: 0.9rem;
}

/* === ABOUT / FOUNDER === */

.founder {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-4xl);
  align-items: center;
}

.founder__image {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.founder__image img {
  width: 100%;
  height: auto;
  display: block;
}

.founder__image::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(0, 180, 216, 0.3);
  pointer-events: none;
}


.founder__content {
  padding: var(--space-lg);
}

.founder__name {
  font-size: 2.5rem;
  margin-bottom: var(--space-xs);
}

.founder__role {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--cyan);
  margin-bottom: var(--space-xl);
}

.founder__bio {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.founder__bio p {
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .founder {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .founder__image {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* === CONTACT === */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.contact-info {
  padding: var(--space-xl);
}

.contact-info__title {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
}

.contact-info__text {
  margin-bottom: var(--space-xl);
  font-size: 1.1rem;
}

.contact-info__item {
  margin-bottom: var(--space-lg);
}

.contact-info__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.contact-info__value {
  font-size: 1.1rem;
  color: var(--text-primary);
}

.contact-info__value a {
  color: var(--cyan);
  transition: color var(--duration-fast);
}

.contact-info__value a:hover {
  color: var(--magenta);
}

.contact-socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.contact-social {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
  transition: all var(--duration-fast);
}

.contact-social:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.contact-social svg {
  width: 20px;
  height: 20px;
}

/* === FORM === */

.form {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-2xl);
}

.form__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.form__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form__group {
  margin-bottom: var(--space-md);
}

.form__group--full {
  grid-column: span 2;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.form__label--required::after {
  content: ' *';
  color: var(--magenta);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  transition: all var(--duration-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form__select option {
  background: var(--black);
  color: var(--text-primary);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__radio-group {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xs);
}

.form__radio {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  cursor: pointer;
}

.form__radio input {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all var(--duration-fast);
}

.form__radio input:checked {
  border-color: var(--cyan);
}

.form__radio input:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
}

.form__radio span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form__file {
  position: relative;
}

.form__file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.form__file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  text-align: center;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.form__file-label:hover {
  border-color: var(--cyan);
  background: rgba(0, 180, 216, 0.05);
}

.form__file-icon {
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.form__file-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form__file-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.form__submit {
  width: 100%;
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .form__grid {
    grid-template-columns: 1fr;
  }
  
  .form__group--full {
    grid-column: span 1;
  }
}

/* === FOOTER === */

.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer__logo-img {
  height: 40px;
  width: auto;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__tagline {
  font-size: 0.9rem;
  max-width: 400px;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--cyan);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__flourish {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* === CTA BAND === */

.cta-band {
  background: linear-gradient(135deg, var(--black-card), var(--black-elevated));
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
}

.cta-band__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

/* === PAGE HEADERS === */

.page-header {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-3xl);
  background: var(--black-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 60%);
  filter: blur(100px);
  opacity: 0.3;
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header__title {
  margin-bottom: var(--space-md);
}

.page-header__subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === BENTO GRID === */

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.bento__item {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-xl);
  transition: all var(--duration-med) var(--ease-out);
}

.bento__item:hover {
  border-color: rgba(0, 180, 216, 0.2);
  transform: translateY(-2px);
}

.bento__item--large {
  grid-column: span 2;
  grid-row: span 2;
  padding: var(--space-2xl);
}

.bento__item--wide {
  grid-column: span 2;
}

.bento__item h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

.bento__item h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.bento__item p {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .bento {
    grid-template-columns: 1fr;
  }
  
  .bento__item--large,
  .bento__item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* === GRID UTILITIES === */

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

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

@media (max-width: 768px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

/* === SPLIT LAYOUT === */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* === STAGGER LIST === */

.stagger {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.stagger__item {
  padding: var(--space-lg);
  background: var(--black-card);
  border-left: 3px solid var(--cyan);
  transition: all var(--duration-fast);
}

.stagger__item:nth-child(2) {
  border-color: var(--magenta);
}

.stagger__item:nth-child(3) {
  border-color: var(--violet);
}

.stagger__item:nth-child(4) {
  border-color: var(--ember);
}

.stagger__item:hover {
  transform: translateX(8px);
}

.stagger__item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.stagger__item p {
  font-size: 0.9rem;
}

/* === SPACING UTILITIES === */

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

/* === TEXT UTILITIES === */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.max-w-narrow { max-width: 600px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* === ANIMATIONS === */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-animate] {
  opacity: 0;
}

[data-animate].is-visible {
  animation: fadeInUp 0.8s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
