:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --card: rgba(255, 255, 255, 0.06);
  --card-hover: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --amber: #fcd34d;
  --orange: #f97316;
  --red: #b91c1c;
  --cyan: #0891b2;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  z-index: 0;
}

.glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(90px);
}

.glow-1 {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
}

.glow-2 {
  top: 32%;
  right: -80px;
  background: #dc2626;
}

.glow-3 {
  bottom: -80px;
  left: -60px;
  background: #0891b2;
}

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

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(22px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fcd34d, #dc2626);
  color: #020617;
  box-shadow: 0 14px 36px rgba(245, 158, 11, 0.22);
}

.brand-title {
  display: block;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--amber);
  color: #020617;
}

.btn-primary:hover {
  background: #fde68a;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 132px 0 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 9px 16px;
  border: 1px solid rgba(252, 211, 77, 0.32);
  border-radius: 999px;
  background: rgba(252, 211, 77, 0.12);
  color: #fde68a;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(3.3rem, 8vw, 7.7rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 1000;
}

.hero-copy {
  max-width: 700px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-card-wrap {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  animation: floatIn 800ms ease both 120ms;
}

.hero-art {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #facc15, #dc2626 52%, #020617);
}

.hero-art-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(8px);
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #fef3c7;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-art h3 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -0.05em;
}

.hero-art p {
  max-width: 360px;
  margin-top: 12px;
  color: rgba(255, 251, 235, 0.92);
  font-size: 0.94rem;
  line-height: 1.75;
}

.mini-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-tags span {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.featured-note {
  position: absolute;
  left: -24px;
  bottom: -24px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.featured-note-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-note-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--amber);
  color: #020617;
}

.featured-note-title {
  display: block;
  font-weight: 1000;
  font-size: 0.9rem;
}

.featured-note-subtitle {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.site-map {
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  padding: 30px 0;
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.map-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.map-number {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-title {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 1000;
}

.map-status {
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 0.84rem;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: rgba(15, 23, 42, 0.62);
}

.section-soft {
  background: rgba(255, 255, 255, 0.035);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-eyebrow {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  font-weight: 1000;
  letter-spacing: -0.06em;
}

.section-title p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.about-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -0.06em;
}

.about-copy p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.about-points {
  display: grid;
  gap: 16px;
}

.point-card,
.work-card,
.team-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.point-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
}

.point-icon,
.team-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #fcd34d, #dc2626);
  color: #020617;
}

.point-icon {
  width: 52px;
  height: 52px;
}

.point-card h3 {
  font-size: 1.05rem;
  font-weight: 1000;
}

.point-card p {
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 0.94rem;
  line-height: 1.65;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  overflow: hidden;
  border-radius: 32px;
  transition: transform 220ms ease, background 220ms ease;
}

.work-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.work-art {
  height: 190px;
  padding: 20px;
  background: linear-gradient(135deg, var(--g1), var(--g2), var(--g3));
}

.work-art-inner {
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.work-art-inner span {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-body {
  padding: 24px;
}

.work-body h3 {
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 1000;
  letter-spacing: -0.04em;
}

.work-body p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.work-meta span {
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.82);
  text-align: center;
}

.team-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.team-role {
  font-weight: 1000;
}

.team-description {
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-card {
  overflow: hidden;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  background: linear-gradient(135deg, #fcd34d, #f97316 45%, #b91c1c);
  color: #020617;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 46px;
}

.contact-eyebrow {
  margin-bottom: 12px;
  color: rgba(15, 23, 42, 0.72);
  font-size: 0.84rem;
  font-weight: 1000;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.contact-card h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -0.06em;
}

.contact-card p {
  max-width: 700px;
  margin-top: 20px;
  color: rgba(15, 23, 42, 0.82);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.75;
}

.contact-panel {
  padding: 24px;
  border-radius: 30px;
  background: #020617;
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row svg {
  flex: 0 0 auto;
  color: var(--amber);
}

.contact-label {
  color: var(--muted-2);
  font-size: 0.88rem;
}

.contact-value {
  margin-top: 3px;
  font-weight: 900;
}

.contact-panel .btn {
  margin-top: 24px;
  width: 100%;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--amber);
}

.fade-up {
  animation: fadeUp 720ms ease both;
}

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-wrap {
    max-width: 560px;
    margin-inline: auto;
  }

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

  .works-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-links,
  .nav-inner > .btn {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu {
    gap: 12px;
    padding: 0 14px 16px;
  }

  .mobile-menu a {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    font-weight: 800;
  }

  .hero {
    padding-top: 112px;
  }

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

  .btn {
    width: 100%;
  }

  .featured-note {
    left: 12px;
    right: 12px;
    bottom: -28px;
  }

  .site-map-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .contact-card {
    padding: 28px;
    border-radius: 32px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  }
}
