:root {
  --background: oklch(0.13 0.018 280);
  --foreground: oklch(0.98 0.005 280);
  --card: oklch(0.17 0.02 280);
  --muted-foreground: oklch(0.72 0.02 280);
  --accent: oklch(0.75 0.18 200);
  --border: rgba(255, 255, 255, 0.08);
  --aurora-pink: oklch(0.72 0.22 10);
  --aurora-magenta: oklch(0.62 0.25 330);
  --aurora-orange: oklch(0.78 0.18 50);
  --aurora-teal: oklch(0.72 0.16 195);
  --aurora-purple: oklch(0.45 0.22 290);
  --gradient-aurora:
    radial-gradient(ellipse 80% 60% at 20% 0%, var(--aurora-pink) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 85% 5%, var(--aurora-teal) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--aurora-orange) 0%, transparent 50%),
    radial-gradient(ellipse 90% 70% at 50% -10%, var(--aurora-magenta) 0%, transparent 60%);
  --gradient-card-aurora:
    radial-gradient(ellipse 70% 80% at 0% 100%, var(--aurora-teal) 0%, transparent 55%),
    radial-gradient(ellipse 70% 80% at 100% 100%, var(--aurora-magenta) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 50% 100%, var(--aurora-purple) 0%, transparent 60%);
  --gradient-silver: linear-gradient(180deg, #fff 0%, #d8d8de 45%, #8b8b94 100%);

  /* Page-specific colors */
  --about-aurora-1: oklch(0.6 0.2 240);
  /* Deep Blue */
  --about-aurora-2: oklch(0.7 0.15 190);
  /* Cyan */
  --about-aurora-3: oklch(0.5 0.2 260);
  /* Indigo */

  --services-aurora-1: oklch(0.7 0.2 140);
  /* Emerald */
  --services-aurora-2: oklch(0.8 0.15 110);
  /* Mint */
  --services-aurora-3: oklch(0.7 0.18 80);
  /* Gold/Lime */

  --work-aurora-1: oklch(0.6 0.05 240);
  /* Slate Blue */
  --work-aurora-2: oklch(0.9 0.05 240);
  /* Silver/White */
  --work-aurora-3: oklch(0.4 0.05 240);
  /* Dark Slate */

  --contact-aurora-1: oklch(0.6 0.25 320);
  /* Magenta */
  --contact-aurora-2: oklch(0.7 0.2 280);
  /* Purple */
  --contact-aurora-3: oklch(0.8 0.15 350);
  /* Pink */
}

/* Page Themes */
.page-about {
  --aurora-teal: var(--about-aurora-2);
  --aurora-magenta: var(--about-aurora-1);
  --aurora-purple: var(--about-aurora-3);
}

.page-services {
  --aurora-teal: var(--services-aurora-1);
  --aurora-magenta: var(--services-aurora-2);
  --aurora-purple: var(--services-aurora-3);
}

.page-work {
  --aurora-teal: var(--work-aurora-1);
  --aurora-magenta: var(--work-aurora-2);
  --aurora-purple: var(--work-aurora-3);
}

.page-contact {
  --aurora-teal: var(--contact-aurora-1);
  --aurora-magenta: var(--contact-aurora-2);
  --aurora-purple: var(--contact-aurora-3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border)
}

html,
body {
  background: var(--background);
  color: var(--foreground);
  font-family: ui-sans-serif, system-ui, -apple-system, Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5
}

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

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

ul {
  list-style: none
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.container-sm {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.container-md {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem
}

/* Header */
.header-wrap {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  pointer-events: none;
}

.header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  pointer-events: auto;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  position: relative;
}


.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-trigger {
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  border: none;
}

.menu-trigger span {
  width: 18px;
  height: 2px;
  background: #000;
  border-radius: 2px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo .dot {
  color: var(--accent);
}

.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media(max-width: 1023px) {
  .header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}


.nav-pill {
  flex: 1;
  display: none;
  justify-content: center;
}

.nav-links {

  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.btn-ai {
  background: #000;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 2;
}

@media(min-width: 1024px) {
  .btn-ai {
    background: #fff;
    color: #000;
  }
}

transition: transform 0.2s;
}

.btn-ai:hover {
  transform: scale(1.02);
}

.btn-ai svg {
  width: 20px;
  height: 20px;
}

.btn-ai span {
  display: none;
}

@media(min-width: 1024px) {
  .btn-ai span {
    display: inline;
  }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--foreground);
  backdrop-filter: blur(10px);
  padding: .75rem 2rem;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--background)
}

.btn {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all .2s;
  cursor: pointer;
  border: none
}

.btn-glass {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}

@media(min-width:1024px) {
  .header {
    padding: 8px 8px 8px 24px;
  }

  .header-left {
    display: none;
  }

  .menu-trigger {
    display: none;
  }

  .header-center {
    position: static;
    transform: none;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-pill {
    display: flex;
  }

  .btn-ai {
    width: auto;
    height: auto;
    border-radius: 9999px;
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
  }

  .btn-ai svg {
    display: none;
  }

  .btn-ai::after {
    content: none;
  }
}

@media(max-width: 1023px) {
  .header {
    background: rgb(255 255 255 / 23%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
      0 10px 40px rgba(0, 0, 0, 0.2),
      inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 6px;
    height: 56px;
  }

  .menu-trigger {
    background: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .btn-ai {
    background: #000;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }
}


/* Mobile Menu Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20, 18, 33, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateY(-20px);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-nav.open .mobile-nav-links a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.open .mobile-nav-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav.open .mobile-nav-links a:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-nav.open .mobile-nav-links a:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-nav.open .mobile-nav-links a:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-nav.open .mobile-nav-links a:nth-child(5) {
  transition-delay: 0.5s;
}

/* Menu Trigger Animation */
.menu-trigger.open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-trigger.open span:nth-child(2) {
  opacity: 0;
}

.menu-trigger.open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.menu-trigger span {
  transition: all 0.3s;
}

@media(max-width: 768px) {
  .header {
    padding-left: 0.5rem;
    gap: 0.5rem;
  }

  .logo {
    font-size: 1.25rem;
  }
}


/* Aurora */
.aurora-bg {
  background: var(--gradient-aurora);
  filter: blur(40px) saturate(1.1);
  animation: aurora 18s ease-in-out infinite
}

.aurora-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: -160px;
  height: 700px;
  opacity: .9;
  pointer-events: none
}

.aurora-wrap.sm {
  height: 500px;
  opacity: .7
}

.fade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(20, 18, 33, 0.4), var(--background));
  pointer-events: none
}

/* Text */
.text-silver {
  background: var(--gradient-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .4em;
  color: rgba(255, 255, 255, 0.75)
}

.muted {
  color: rgba(255, 255, 255, 0.7)
}

/* Hero */
.section {
  position: relative;
  padding: 6rem 0
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 8rem;
  text-align: center
}

.hero h1 {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: .95;
  margin-top: 2rem
}

.hero p {
  margin: 2rem auto 0;
  max-width: 36rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75)
}

.hero-cta {
  margin-top: 2.5rem
}

/* Stats bar */
.stats {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(23, 21, 38, 0.4);
  backdrop-filter: blur(8px)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  text-align: center;
}

@media(min-width:768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--muted-foreground)
}

.stat-value {
  margin-top: .5rem;
  font-size: 1.125rem;
  font-weight: 500
}

/* Section heading */
.section-head {
  text-align: center
}

.section-head .pill {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: .4rem 1rem;
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.8)
}

.section-head h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.03em
}

.section-head p {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.7)
}

.sparkle {
  color: var(--accent);
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem
}

/* Aurora card panel */
.aurora-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-top: 4rem;
  background: var(--gradient-card-aurora);
  border: 1px solid var(--border);
}

.page-about .aurora-panel,
.page-services .aurora-panel,
.page-work .aurora-panel,
.page-contact .aurora-panel {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

@media(min-width:768px) {
  .aurora-panel {
    padding: 2.5rem
  }
}

.aurora-panel .blur-layer {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(60px);
  background: rgba(20, 18, 33, 0.1);
}

.aurora-panel .inner {
  position: relative;
  z-index: 1;
}

.shape {
  position: absolute;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: floaty 11s ease-in-out infinite
}

.shape-square {
  left: 1.5rem;
  bottom: 2.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  transform: rotate(-12deg);
  animation-duration: 9s
}

.shape-circle {
  right: 33%;
  bottom: 1rem;
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  animation-duration: 13s
}

.shape-tri {
  right: 2rem;
  top: 2.5rem;
  width: 4rem;
  height: 4rem;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%)
}

/* Feature grid */
.features {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem
}

@media(min-width:768px) {
  .features {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .features {
    grid-template-columns: repeat(4, 1fr)
  }
}

.feature {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(20, 18, 33, 0.3);
  backdrop-filter: blur(20px);
  padding: 1.75rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .3s
}

.feature:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px)
}

.feature h3 {
  font-size: 1.25rem;
  font-weight: 600
}

.feature p {
  margin-top: .75rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6
}

.feature .num {
  text-align: right;
  font-size: 1.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3)
}

/* Cards grid 2 col */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem
}

@media(min-width:768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr)
  }
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  transition: all .2s
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px)
}

.card .tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--accent)
}

.card h3 {
  margin-top: .75rem;
  font-size: 1.5rem;
  font-weight: 600
}

.card p {
  margin-top: .75rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.7)
}

.card .link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3)
}

/* Big hero alt for inner pages */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem
}

.page-hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.03em
}

.page-hero .lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
  line-height: 1.6
}

/* Stat tiles */
.stat-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem
}

@media(min-width:768px) {
  .stat-tiles {
    grid-template-columns: repeat(3, 1fr)
  }
}

.stat-tile {
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem
}

.stat-tile .k {
  font-size: 2.25rem;
  font-weight: 600
}

.stat-tile .v {
  margin-top: .5rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.6)
}

/* Principles */
.principles {
  margin-top: 4rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  background: var(--gradient-card-aurora)
}

.principles .blur-layer {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 33, 0.4);
  backdrop-filter: blur(40px)
}

.principles .inner {
  position: relative
}

.principles h2 {
  font-size: 1.5rem;
  font-weight: 600
}

.principles ul {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: .875rem
}

/* Service cards */
.svc {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  transition: .2s
}

.svc:hover {
  border-color: rgba(255, 255, 255, 0.3)
}

.svc .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start
}

.svc h2 {
  font-size: 1.5rem;
  font-weight: 600
}

.svc .num {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  font-weight: 600
}

.svc p {
  margin-top: .75rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.7)
}

.svc ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.8)
}

/* Work projects */
.proj {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2.5rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s
}

.proj:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3)
}

.proj .meta {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, 0.6)
}

.proj h2 {
  font-size: 1.875rem;
  font-weight: 600
}

/* Form */
.form {
  margin-top: 2.5rem;
  border-radius: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem
}

.form .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem
}

@media(min-width:768px) {
  .form .row {
    grid-template-columns: repeat(2, 1fr)
  }
}

.form label {
  font-size: .875rem;
  display: block
}

.form label span {
  font-weight: 500
}

.form input,
.form textarea {
  margin-top: .5rem;
  width: 100%;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: .85rem 1rem;
  font-size: .875rem;
  color: var(--foreground);
  font-family: inherit
}

.form input:focus,
.form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2)
}

.form button {
  align-self: flex-start;
  border-radius: 9999px;
  background: #fff;
  color: var(--background);
  padding: .85rem 1.75rem;
  font-size: .875rem;
  font-weight: 500;
  border: none;
  cursor: pointer
}

.success {
  font-size: .875rem;
  color: var(--accent)
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media(min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 8rem;
  }
}

.contact-info h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-top: 2rem;
}

.contact-info .lead {
  margin-top: 2rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 32rem;
}

.contact-methods {
  margin-top: 4rem;
  display: grid;
  gap: 2.5rem;
}

.method .label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.method .value {
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.3s;
}

.method .value:hover {
  color: var(--accent);
}

.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-pills .pill {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.05);
}

.social-pills .pill:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.contact-form-wrap .aurora-panel {
  margin-top: 0;
  padding: 0;
  overflow: visible;
}

.contact-form-wrap .form {
  margin-top: 0;
  background: transparent;
  border: none;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-wrap .field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form-wrap label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  backdrop-filter: blur(10px);
  width: 100%;
  transition: all 0.3s;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.03);
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form-wrap select option {
  background: var(--background);
  color: #fff;
}

/* About Page Styles */
.about-hero {
  max-width: 48rem;
}

.about-hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-top: 2rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.stat-grid .aurora-panel {
  margin-top: 0;
}

.principles-section h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* Project and Service Cards */
.proj-card,
.svc-card {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s;
}

.proj-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
}

.view-project {
  opacity: 0.6;
  transition: opacity 0.3s;
}

.proj-card:hover .view-project {
  opacity: 1;
}

.feature {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  transition: 0.3s;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature .num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
}

.feature h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* CTA */
.cta-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--gradient-card-aurora)
}

@media(min-width:768px) {
  .cta-wrap {
    padding: 5rem
  }
}

.cta-wrap .blur-layer {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 33, 0.3);
  backdrop-filter: blur(40px)
}

.cta-wrap .inner {
  position: relative
}

.cta-wrap h2 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.03em
}

.cta-wrap p {
  margin-top: 1.25rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.75)
}

/* Footer */
.footer {
  position: relative;
  margin-top: 4rem;
  background: rgba(20, 18, 33, 0.4);
  backdrop-filter: blur(40px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media(min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  color: var(--foreground);
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: all 0.3s;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--foreground);
  transform: translateX(4px);
}

.footer-brand .logo {
  margin-left: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-brand .blurb {
  max-width: 20rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

@media(min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.6);
}

.social-link:hover {
  background: #fff;
  color: #000;
  transform: translateY(-4px);
  border-color: #fff;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}


.footer .blurb {
  margin-top: .75rem;
  max-width: 18rem;
  font-size: .875rem
}

/* Animations */
@keyframes aurora {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .95
  }

  50% {
    transform: translate3d(-3%, 2%, 0) scale(1.08);
    opacity: 1
  }
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-18px) rotate(6deg)
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fade-up {
  animation: fadeUp .9s ease-out both
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee */
.marquee {
  padding: 4rem 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track span {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.2em;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

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

.testimonial-card .inner {
  padding: 2.5rem;
}

.testimonial-card .quote {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card .name {
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-card .title {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

html {
  scroll-behavior: smooth;
}