:root {
  --bg: #050816;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --cyan: #22d3ee;
  --pink: #ec4899;
  --orange: #ff8a1f;
  --orange-core: #f57c00;
  --text: #ffffff;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --line-cyan: rgba(34, 211, 238, 0.12);
  --line-pink: rgba(236, 72, 153, 0.28);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(236, 72, 153, 0.14), transparent 28%),
    radial-gradient(circle at 10% 42%, rgba(34, 211, 238, 0.1), transparent 26%),
    #050816;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 0, 128, 0.24), transparent 24%),
    radial-gradient(circle at bottom left, rgba(0, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #03050d, #070b18, #140616);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-layer,
.panel-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.12;
}

.hud-corner-left {
  position: absolute;
  left: 12%;
  top: 18%;
  width: 160px;
  height: 160px;
  border-left: 1px solid rgba(34, 211, 238, 0.4);
  border-top: 1px solid rgba(34, 211, 238, 0.4);
}

.hud-pill {
  position: absolute;
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.hud-pill-pink {
  right: 14%;
  top: 22%;
  color: rgba(249, 168, 212, 0.92);
  border-color: rgba(236, 72, 153, 0.3);
}

.hud-pill-cyan {
  bottom: 18%;
  right: 18%;
  color: rgba(103, 232, 249, 0.92);
  border-color: rgba(34, 211, 238, 0.3);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
}

.orb-orange {
  top: -96px;
  right: -96px;
  width: 384px;
  height: 384px;
  background: rgba(245, 124, 0, 0.42);
}

.orb-cyan {
  bottom: 0;
  left: 0;
  width: 288px;
  height: 288px;
  background: rgba(6, 182, 212, 0.2);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 768px;
}

.system-badge,
.section-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.system-badge {
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #67e8f9;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
}

.headline-group {
  margin-top: 32px;
}

h1,
h2,
h3 {
  color: var(--orange);
}

h1 {
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-shadow: 0 0 25px rgba(255, 138, 31, 0.45);
}

.headline-group p {
  max-width: 672px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 16px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.button-primary {
  border: 1px solid rgba(236, 72, 153, 0.3);
  background: linear-gradient(90deg, #ec4899, #fb923c);
  color: white;
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.35);
}

.button-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(236, 72, 153, 0.55);
}

.button-secondary {
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #cffafe;
  backdrop-filter: blur(18px);
}

.button-secondary:hover {
  border-color: rgba(103, 232, 249, 0.42);
  background: rgba(34, 211, 238, 0.1);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.2);
  filter: blur(64px);
}

.logo-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  box-shadow: 0 0 80px rgba(0, 255, 255, 0.08);
  backdrop-filter: blur(32px);
}

.panel-grid {
  background-size: 40px 40px;
  opacity: 0.3;
}

.panel-corner {
  position: absolute;
  width: 96px;
  height: 96px;
}

.panel-corner-top {
  left: 0;
  top: 0;
  border-left: 1px solid rgba(236, 72, 153, 0.4);
  border-top: 1px solid rgba(236, 72, 153, 0.4);
}

.panel-corner-bottom {
  right: 0;
  bottom: 0;
  border-right: 1px solid rgba(34, 211, 238, 0.4);
  border-bottom: 1px solid rgba(34, 211, 238, 0.4);
}

.studio-logo {
  position: relative;
  z-index: 2;
  width: min(280px, 58vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(255, 138, 31, 0.38));
}

.studio-focus {
  border-top: 1px solid rgba(34, 211, 238, 0.1);
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
  background: linear-gradient(180deg, #090e1d, #0a1022);
  padding: 96px 32px;
}

.focus-inner {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  gap: 64px;
}

.focus-copy {
  display: grid;
  gap: 24px;
}

.section-pill-pink {
  border: 1px solid rgba(236, 72, 153, 0.2);
  background: rgba(236, 72, 153, 0.1);
  color: #f9a8d4;
}

.section-pill-cyan {
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(6, 182, 212, 0.1);
  color: #67e8f9;
}

.section-pill-orange {
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange-core);
}

.focus-copy h2,
.section-header h2,
.cta-card h2 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-shadow: 0 0 18px rgba(255, 138, 31, 0.35);
}

.focus-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.focus-grid {
  display: grid;
  gap: 20px;
}

.focus-card,
.project-card {
  border: 1px solid rgba(34, 211, 238, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.focus-card {
  border-radius: 24px;
  padding: 24px;
}

.focus-card:hover,
.project-card:hover {
  border-color: rgba(236, 72, 153, 0.32);
  background: rgba(236, 72, 153, 0.055);
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.12);
}

.focus-card div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #67e8f9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.focus-card strong {
  color: var(--orange);
  font-size: 18px;
  text-shadow: 0 0 10px rgba(255, 138, 31, 0.25);
}

.projects,
.cta {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 32px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-top: 16px;
}

.section-header p {
  max-width: 672px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

.project-grid {
  display: grid;
  gap: 32px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 50px rgba(236, 72, 153, 0.18);
}

.status-dot {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #67e8f9;
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.9);
}

.project-type {
  display: inline-flex;
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.1);
  padding: 8px 16px;
  color: #f9a8d4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.project-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 0 0 12px rgba(255, 138, 31, 0.28);
}

.project-card p {
  color: var(--muted);
  line-height: 1.65;
}

.cta-card {
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.16), transparent 30%),
    linear-gradient(135deg, #0a1022, #12061a, #07111f);
  padding: 48px;
  color: white;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(32px);
}

.cta-copy {
  display: grid;
  gap: 24px;
}

.cta-text {
  display: grid;
  gap: 20px;
  color: #d8dee7;
  font-size: 18px;
  line-height: 1.65;
  margin-top: 48px;
}

.footer {
  border-top: 1px solid rgba(34, 211, 238, 0.1);
  background: #050816;
  padding: 40px 32px;
  text-align: center;
}

.footer-title {
  color: white;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-subtitle {
  margin-top: 8px;
  color: #667180;
}

.footer-location {
  margin-top: 24px;
  color: #7c8796;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .focus-inner,
  .cta-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .section-header {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .cta-text {
    margin-top: 0;
  }

  .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: none;
    text-align: left;
  }

  .footer-location {
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-inner,
  .studio-focus,
  .projects,
  .cta,
  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hud-pill,
  .hud-corner-left {
    display: none;
  }

  .hero-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: 50px;
  }

  .headline-group p,
  .focus-copy p,
  .section-header p,
  .cta-text {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .logo-panel,
  .cta-card {
    border-radius: 28px;
    padding: 28px;
  }
}
