:root {
  color-scheme: dark;
  --bg: #050607;
  --bg-2: #0c1016;
  --panel: #11151d;
  --panel-2: #171b23;
  --line: rgba(40, 183, 255, 0.18);
  --line-strong: rgba(255, 123, 0, 0.34);
  --text: #35d8ff;
  --muted: #2fa8c9;
  --soft: #ffae24;
  --orange: #ff7b00;
  --orange-2: #ffc15f;
  --blue: #28b7ff;
  --green: #45f28e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --max: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 123, 0, 0.2), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(40, 183, 255, 0.15), transparent 26rem),
    radial-gradient(circle at 72% 58%, rgba(69, 242, 142, 0.08), transparent 24rem),
    linear-gradient(180deg, var(--bg) 0%, #090b10 54%, #050607 100%);
  color: var(--text);
  min-width: 320px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--green);
}

p {
  margin: 0;
}

code {
  color: var(--green);
  font-weight: 900;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--orange);
  color: #160b02;
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.brand-logo-button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.brand-logo {
  width: 4.5rem;
  height: 3.1rem;
  object-fit: contain;
  border: 1px solid rgba(255, 123, 0, 0.88);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.16), rgba(40, 183, 255, 0.1)),
    #050607;
  box-shadow:
    0 0 22px rgba(255, 123, 0, 0.2),
    0 0 34px rgba(69, 242, 142, 0.06);
}

.brand-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--orange-2);
  text-shadow: 0 0 16px rgba(255, 123, 0, 0.22);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  position: relative;
  z-index: 45;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(40, 183, 255, 0.08);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle {
  flex-direction: column;
  gap: 0.27rem;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(0.36rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.36rem) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.58rem 0.7rem;
  border-radius: 6px;
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green);
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.14), rgba(40, 183, 255, 0.1));
}

.hero {
  min-height: clamp(34rem, 78svh, 48rem);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(90deg, rgba(5, 6, 7, 0.99) 0%, rgba(5, 6, 7, 0.88) 38%, rgba(5, 6, 7, 0.42) 76%, rgba(5, 6, 7, 0.78) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-inner,
.section-inner,
.page-hero,
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hero-content {
  max-width: 48rem;
  min-width: 0;
  padding: 5rem 0 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(69, 242, 142, 0.7);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--orange-2);
  text-shadow: 0 0 24px rgba(255, 123, 0, 0.18);
}

h1 {
  margin-top: 1rem;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  max-width: 10ch;
}

.hero-tagline {
  margin-top: 1.1rem;
  color: var(--blue);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  max-width: 38rem;
  overflow-wrap: break-word;
}

.hero-copy {
  margin-top: 1.2rem;
  color: #34b8d8;
  max-width: 42rem;
  font-size: 1.06rem;
}

.button-row {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(40, 183, 255, 0.34);
  background: rgba(40, 183, 255, 0.08);
  color: var(--blue);
  font-weight: 850;
}

.button.primary {
  border-color: rgba(255, 123, 0, 0.76);
  background: linear-gradient(135deg, var(--orange), #ff9d16);
  color: #160b02;
}

.button:hover {
  color: var(--green);
  border-color: rgba(69, 242, 142, 0.58);
  transform: translateY(-1px);
}

.button.primary:hover {
  color: #160b02;
}

.section {
  padding: clamp(3.2rem, 7vw, 5.8rem) 0;
}

.section.tight {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.section.alt {
  background: rgba(40, 183, 255, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(16rem, 0.52fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.section-heading p,
.page-hero p,
.lead {
  color: var(--blue);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 123, 0, 0.12), rgba(40, 183, 255, 0.055), rgba(69, 242, 142, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
  padding: 1rem;
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--accent, var(--orange));
  opacity: 0.9;
}

.card h3 {
  font-size: 1.16rem;
  position: relative;
  color: var(--orange-2);
}

.card p {
  margin-top: 0.75rem;
  color: #33b9d8;
  position: relative;
}

.card .meta {
  margin-top: 1.2rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.card.blue {
  --accent: var(--blue);
}

.card.green {
  --accent: var(--green);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(17rem, 0.5fr);
  gap: 1.5rem;
  align-items: start;
}

.statement {
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
  color: var(--blue);
  font-size: clamp(1.28rem, 2.4vw, 2rem);
  line-height: 1.3;
  font-weight: 800;
}

.signal-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  border: 1px solid rgba(40, 183, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.07), rgba(40, 183, 255, 0.045));
  color: var(--green);
  padding: 0.8rem 0.9rem;
}

.page-hero {
  padding-top: clamp(4rem, 8vw, 6.5rem);
  padding-bottom: clamp(2.8rem, 6vw, 4.5rem);
}

.page-hero h1 {
  max-width: 13ch;
  margin-top: 0.8rem;
}

.page-hero p {
  max-width: 48rem;
  margin-top: 1rem;
}

.content {
  max-width: 860px;
}

.content h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.content h2:first-child {
  margin-top: 0;
}

.content p,
.content li {
  color: var(--blue);
}

.content p {
  margin-top: 0.75rem;
}

.content ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.link-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.link-panel {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: var(--panel);
  color: var(--orange-2);
  font-weight: 800;
}

.link-panel span {
  color: var(--green);
  font-weight: 650;
}

.contact-block {
  border: 1px solid rgba(40, 183, 255, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 183, 255, 0.13), rgba(255, 123, 0, 0.1), rgba(69, 242, 142, 0.06)),
    var(--panel);
  padding: clamp(1.2rem, 4vw, 2rem);
  max-width: 44rem;
}

.email-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--orange-2);
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.notice {
  border: 1px solid rgba(255, 193, 95, 0.42);
  border-radius: 8px;
  background: rgba(255, 123, 0, 0.09);
  padding: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #07080c;
}

.logo-modal,
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 123, 0, 0.24), transparent 24rem),
    radial-gradient(circle at 84% 22%, rgba(40, 183, 255, 0.24), transparent 24rem),
    radial-gradient(circle at 50% 80%, rgba(69, 242, 142, 0.16), transparent 26rem),
    rgba(3, 4, 6, 0.9);
  backdrop-filter: blur(12px);
}

.logo-modal[hidden],
.image-modal[hidden] {
  display: none;
}

.logo-modal-panel,
.image-modal-panel {
  width: min(94vw, 64rem);
  border: 1px solid rgba(255, 123, 0, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.14), rgba(40, 183, 255, 0.08), rgba(69, 242, 142, 0.06)),
    #050607;
  box-shadow:
    0 0 42px rgba(255, 123, 0, 0.22),
    0 0 78px rgba(40, 183, 255, 0.14),
    var(--shadow);
  padding: clamp(0.7rem, 2vw, 1.2rem);
}

.logo-modal-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.7rem;
}

.logo-modal-close {
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(69, 242, 142, 0.42);
  border-radius: 8px;
  background: rgba(40, 183, 255, 0.1);
  color: var(--green);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.logo-modal-close:hover,
.logo-modal-close:focus-visible {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.35);
}

.logo-modal-image,
.image-modal-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(40, 183, 255, 0.24);
  background: #050607;
}

.image-preview-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.image-preview-button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -4px;
}

body.modal-open {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 123, 0, 0.26), transparent 18rem),
    radial-gradient(circle at 40% 68%, rgba(40, 183, 255, 0.18), transparent 20rem),
    #050607;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--orange);
  box-shadow: 0 0 34px rgba(255, 123, 0, 0.42);
}

.site-loader p {
  color: var(--green);
  font-weight: 900;
}

.notification-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 0.55rem;
  max-width: min(22rem, calc(100vw - 2rem));
}

.notification-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  border: 1px solid rgba(69, 242, 142, 0.42);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.18), rgba(40, 183, 255, 0.11)),
    #050607;
  color: var(--orange-2);
  cursor: pointer;
  font-weight: 900;
  padding: 0.35rem 0.8rem 0.35rem 0.35rem;
  box-shadow: 0 0 26px rgba(255, 123, 0, 0.22);
}

.notification-toggle img {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--orange);
}

.notification-panel {
  border: 1px solid rgba(255, 123, 0, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.12), rgba(40, 183, 255, 0.08), rgba(69, 242, 142, 0.05)),
    #080a0f;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.notification-panel p {
  color: var(--blue);
}

.notification-panel strong {
  color: var(--green);
}

.studio-hero {
  position: relative;
  overflow: hidden;
}

.studio-hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 10% auto;
  width: clamp(12rem, 25vw, 28rem);
  height: clamp(12rem, 25vw, 28rem);
  border: 2px solid rgba(255, 123, 0, 0.34);
  border-radius: 50%;
  box-shadow:
    0 0 44px rgba(255, 123, 0, 0.26),
    inset 0 0 38px rgba(40, 183, 255, 0.12);
  animation: pulseGlow 3.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(1);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.04);
  }
}

.studio-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.36fr);
  gap: 1.2rem;
  align-items: end;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-mascot-card,
.mascot-callout,
.tool-panel,
.studio-card,
.blog-card {
  border: 1px solid rgba(255, 123, 0, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.11), rgba(40, 183, 255, 0.06), rgba(69, 242, 142, 0.04)),
    #0a0d12;
  box-shadow:
    0 0 24px rgba(255, 123, 0, 0.1),
    var(--shadow);
}

.hero-mascot-card {
  padding: 0.9rem;
  margin-bottom: 4rem;
}

.hero-mascot-card img,
.mascot-callout img,
.ranger-panel img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(40, 183, 255, 0.26);
}

.hero-mascot-card p,
.mascot-callout p,
.tool-panel p {
  color: var(--green);
  font-weight: 800;
}

.mascot-callout {
  display: grid;
  grid-template-columns: 5.25rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
}

.studio-grid,
.download-grid,
.screenshot-grid,
.story-grid,
.brand-asset-grid,
.roadmap-grid,
.status-meter-grid,
.timeline-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.visual-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.visual-tile {
  min-height: 13rem;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 123, 0, 0.34);
  border-radius: 8px;
  background: #050607;
  box-shadow: var(--shadow);
}

.visual-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.visual-tile span {
  position: relative;
  z-index: 1;
  padding: 0.8rem;
  color: var(--green);
  font-weight: 900;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 7, 0.92));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  border: 1px solid rgba(255, 123, 0, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.14), rgba(40, 183, 255, 0.08), rgba(69, 242, 142, 0.04)),
    #080a0f;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.4vw, 1.45rem);
}

.stat-card strong {
  display: block;
  color: var(--orange-2);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 0.95;
}

.stat-card span {
  display: block;
  margin-top: 0.55rem;
  color: var(--green);
  font-weight: 900;
}

.founder-spotlight,
.about-studio-grid,
.about-identity-grid,
.inspiration-card {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(18rem, 0.42fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: center;
}

.founder-spotlight > *,
.about-studio-grid > *,
.about-identity-grid > *,
.inspiration-card > *,
.mission-panel,
.developer-card,
.developer-photo-card {
  min-width: 0;
}

.about-studio-grid p,
.about-identity-grid p,
.inspiration-card p,
.mission-list li,
.interest-list li,
.vision-list li,
.developer-caption p,
.developer-caption small {
  overflow-wrap: anywhere;
}

.founder-spotlight,
.mission-panel,
.inspiration-card,
.status-overview-card {
  border: 1px solid rgba(255, 123, 0, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.12), rgba(40, 183, 255, 0.07), rgba(69, 242, 142, 0.04)),
    #090c11;
  box-shadow: var(--shadow);
}

.founder-spotlight,
.mission-panel,
.inspiration-card {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.founder-spotlight p,
.mission-panel p,
.inspiration-card p,
.status-overview-card p {
  color: var(--blue);
}

.developer-name {
  margin: 0.6rem 0 0.15rem;
  color: var(--orange-2);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
}

.developer-card {
  display: grid;
  gap: 1rem;
}

.developer-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 123, 0, 0.72);
  border-radius: 8px;
  background: #050607;
  box-shadow:
    0 0 0 1px rgba(255, 183, 77, 0.18),
    0 0 30px rgba(255, 123, 0, 0.24),
    var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.developer-photo-card:hover {
  border-color: rgba(255, 183, 77, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 183, 77, 0.24),
    0 0 38px rgba(255, 123, 0, 0.32),
    var(--shadow);
  transform: translateY(-0.18rem);
}

.developer-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.developer-caption {
  display: grid;
  gap: 0.45rem;
  border-top: 1px solid rgba(255, 123, 0, 0.35);
  padding: 1rem;
}

.developer-caption strong {
  color: var(--orange-2);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1;
}

.developer-caption span,
.developer-caption small {
  color: var(--green);
  font-weight: 900;
}

.developer-caption p {
  color: var(--blue);
}

.developer-photo-placeholder {
  aspect-ratio: 1;
  min-height: 18rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.45rem;
  border: 1px dashed rgba(69, 242, 142, 0.54);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 183, 255, 0.1), rgba(255, 123, 0, 0.08)),
    #050607;
  text-align: center;
}

.developer-photo-placeholder span {
  color: var(--orange-2);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
}

.developer-photo-placeholder small {
  color: var(--blue);
  overflow-wrap: anywhere;
}

.mission-list,
.interest-list,
.vision-list,
.founder-stat-grid,
.status-overview-grid {
  display: grid;
  gap: 0.8rem;
}

.mission-list,
.interest-list,
.vision-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.mission-list li,
.interest-list li,
.vision-list li {
  border: 1px solid rgba(40, 183, 255, 0.2);
  border-radius: 8px;
  background: rgba(40, 183, 255, 0.05);
  color: var(--green);
  font-weight: 850;
  padding: 0.75rem;
}

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

.founder-stat-card,
.status-overview-card {
  min-width: 0;
  border: 1px solid rgba(40, 183, 255, 0.24);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.72);
  padding: 1rem;
}

.founder-stat-card strong,
.status-overview-card strong {
  display: block;
  color: var(--orange-2);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.founder-stat-card span,
.status-overview-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--green);
  font-weight: 900;
}

.inspiration-mascot {
  display: grid;
  place-items: center;
}

.inspiration-mascot img {
  width: min(100%, 23rem);
  border: 1px solid rgba(40, 183, 255, 0.28);
  border-radius: 8px;
  background: #050607;
  animation: mascotFloat 5.4s ease-in-out infinite;
}

@keyframes mascotFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.55rem);
  }
}

.company-timeline-card {
  padding: 0;
}

.company-timeline-card summary {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 1rem;
}

.company-timeline-card summary strong {
  color: var(--green);
}

.company-timeline-card ul {
  margin: 0;
  padding: 0 1rem 1rem 2rem;
}

.status-overview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.build-now-grid,
.dashboard-status-grid,
.coming-soon-grid,
.submission-grid {
  display: grid;
  gap: 1rem;
}

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

.build-now-card,
.coming-card,
.submission-card,
.status-column,
.newsletter-panel,
.mascot-news-panel {
  border: 1px solid rgba(255, 123, 0, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.11), rgba(40, 183, 255, 0.06), rgba(69, 242, 142, 0.04)),
    #0a0d12;
  box-shadow: var(--shadow);
}

.build-now-card {
  display: grid;
  grid-template-columns: 5.6rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.build-now-card > img {
  width: 5.6rem;
  height: 5.6rem;
  object-fit: cover;
  border: 1px solid rgba(69, 242, 142, 0.42);
  border-radius: 8px;
  background: #050607;
}

.build-now-card p,
.coming-card p,
.submission-card p,
.newsletter-panel p,
.mascot-news-panel p {
  color: var(--blue);
}

.screenshot-carousel {
  border: 1px solid rgba(255, 123, 0, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 123, 0, 0.14), transparent 24rem),
    radial-gradient(circle at 80% 70%, rgba(40, 183, 255, 0.11), transparent 24rem),
    #080a0f;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.carousel-track {
  position: relative;
  min-height: clamp(20rem, 48vw, 36rem);
}

.carousel-slide {
  display: none;
  margin: 0;
  min-height: clamp(20rem, 48vw, 36rem);
}

.carousel-slide.is-active {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.carousel-slide .image-preview-button {
  min-height: 0;
  border: 1px solid rgba(40, 183, 255, 0.24);
  border-radius: 8px;
  background: #050607;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  max-height: clamp(18rem, 42vw, 31rem);
  object-fit: contain;
}

.carousel-slide figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.8rem 0 0;
  color: var(--green);
}

.carousel-slide figcaption strong {
  color: var(--orange-2);
}

.carousel-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.mascot-news-panel,
.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(8rem, 0.26fr) minmax(0, 0.74fr);
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.mascot-news-panel img {
  width: min(100%, 15rem);
  border: 1px solid rgba(40, 183, 255, 0.28);
  border-radius: 8px;
  background: #050607;
}

.dashboard-status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.status-column {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1rem;
}

.status-column article {
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(40, 183, 255, 0.18);
  border-radius: 8px;
  background: rgba(40, 183, 255, 0.05);
  padding: 0.75rem;
}

.status-column strong,
.status-column span {
  color: var(--green);
}

.mini-progress {
  height: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(40, 183, 255, 0.28);
  border-radius: 999px;
  background: #050607;
}

.mini-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--blue));
}

.coming-soon-grid,
.submission-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.coming-card,
.submission-card {
  padding: 1rem;
}

.submission-card span {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-panel {
  grid-template-columns: minmax(0, 0.55fr) minmax(18rem, 0.45fr);
}

.newsletter-form {
  display: grid;
  gap: 0.75rem;
}

.newsletter-form input {
  min-height: 3rem;
  border: 1px solid rgba(40, 183, 255, 0.32);
  border-radius: 8px;
  background: #050607;
  color: var(--green);
  font: inherit;
  font-weight: 800;
  padding: 0.75rem 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(40, 183, 255, 0.68);
}

.newsletter-form .button:disabled,
.newsletter-form input:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.hidden-mascot {
  position: fixed;
  z-index: 55;
  bottom: -5rem;
  width: 4rem;
  height: 4rem;
  padding: 0;
  border: 1px solid rgba(69, 242, 142, 0.42);
  border-radius: 50%;
  background: #050607;
  box-shadow: 0 0 26px rgba(255, 123, 0, 0.26);
  cursor: pointer;
  opacity: 0;
  transition: bottom 260ms ease, opacity 260ms ease;
}

.hidden-mascot img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hidden-mascot.is-visible {
  bottom: 1rem;
  opacity: 1;
}

.meter-card,
.timeline-card,
.roadmap-card {
  border: 1px solid rgba(255, 123, 0, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.11), rgba(40, 183, 255, 0.06), rgba(69, 242, 142, 0.04)),
    #0a0d12;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.meter-card strong {
  display: block;
  margin-top: 0.7rem;
  color: var(--orange-2);
  font-size: 2.8rem;
  line-height: 1;
}

.meter-card p,
.timeline-card p,
.roadmap-card p,
.brand-asset-card p {
  color: var(--blue);
}

.timeline-card span {
  display: inline-flex;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline-card li {
  border-left: 3px solid var(--green);
  background: rgba(40, 183, 255, 0.06);
  color: var(--blue);
  padding: 0.55rem 0.7rem;
}

.timeline-card h3,
.roadmap-card h3 {
  margin-top: 0.55rem;
}

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

.roadmap-card {
  display: grid;
  gap: 0.85rem;
}

.brand-asset-card > .image-preview-button {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 123, 0, 0.14), transparent 18rem),
    #050607;
}

.brand-asset-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}

.project-tools {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 123, 0, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 123, 0, 0.11), rgba(40, 183, 255, 0.07), rgba(69, 242, 142, 0.04)),
    #080a0f;
  padding: 1rem;
}

.project-search {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(40, 183, 255, 0.32);
  border-radius: 8px;
  background: #050607;
  color: var(--green);
  font: inherit;
  font-weight: 800;
  padding: 0.7rem 0.9rem;
  outline: none;
}

.project-search::placeholder {
  color: rgba(40, 183, 255, 0.68);
}

.project-search:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.16);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-chip {
  min-height: 2.35rem;
  border: 1px solid rgba(40, 183, 255, 0.34);
  border-radius: 999px;
  background: rgba(40, 183, 255, 0.07);
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0.45rem 0.72rem;
}

.filter-chip span {
  color: var(--green);
  margin-left: 0.35rem;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: rgba(255, 123, 0, 0.74);
  background: rgba(255, 123, 0, 0.16);
  color: var(--orange-2);
}

.project-result-count,
.empty-state {
  color: var(--green);
  font-weight: 900;
}

.empty-state {
  margin-top: 1rem;
  border: 1px solid rgba(69, 242, 142, 0.28);
  border-radius: 8px;
  background: rgba(69, 242, 142, 0.06);
  padding: 1rem;
}

.studio-card {
  overflow: hidden;
  min-height: 100%;
}

.studio-card-body {
  padding: 1rem;
}

.project-domain-note {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.9rem;
  padding: 0.85rem;
  border: 1px solid rgba(21, 245, 186, 0.28);
  border-radius: 8px;
  background: rgba(21, 245, 186, 0.07);
  color: var(--muted);
  font-size: 0.86rem;
}

.project-domain-note p {
  margin: 0;
}

.project-domain-note span {
  color: var(--text);
  font-weight: 850;
}

.project-domain-note strong {
  color: var(--orange-2);
  font-weight: 900;
}

.project-url-panel {
  align-items: flex-start;
  flex-direction: column;
}

.project-url-panel strong {
  color: var(--text);
  font-size: 1rem;
}

.project-url-panel small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.project-url-panel.is-coming-soon {
  cursor: default;
}

.project-url-panel.is-coming-soon strong {
  color: var(--orange-2);
}

.project-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(40, 183, 255, 0.22);
}

.project-media > img:first-child,
.story-cover-frame > img,
.download-card > img,
.detail-hero-image,
.screenshot-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-media > img:first-child,
.detail-hero-image {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 123, 0, 0.16), transparent 18rem),
    radial-gradient(circle at 78% 72%, rgba(40, 183, 255, 0.1), transparent 16rem),
    #050607;
  padding: 0.35rem;
}

.project-logo {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 8px;
  border: 1px solid rgba(69, 242, 142, 0.45);
  background: #050607;
}

.card-title-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: space-between;
}

.status-badge {
  display: inline-flex;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.status-badge.planning {
  color: var(--blue);
}

.status-badge.in-development {
  color: var(--orange-2);
}

.status-badge.testing,
.status-badge.beta {
  color: var(--green);
}

.status-badge.released {
  color: var(--orange);
}

.text-link {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--green);
  font-weight: 900;
}

.dashboard-grid,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(17rem, 0.3fr);
  gap: 1rem;
  align-items: start;
}

.tool-panel {
  padding: 1.2rem;
}

.fun-grid,
.community-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.fun-output {
  margin-top: 1rem;
  min-height: 3rem;
}

.ranger-panel img {
  max-width: 13rem;
  margin: 1rem 0;
}

.project-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(18rem, 0.36fr);
  gap: 1rem;
  align-items: center;
}

.detail-hero-image,
.detail-logo,
.screenshot-tile {
  border: 1px solid rgba(255, 123, 0, 0.34);
  border-radius: 8px;
  background: #050607;
}

.detail-sidebar {
  display: grid;
  gap: 1rem;
}

.detail-logo {
  width: 7rem;
  height: 7rem;
  object-fit: cover;
  padding: 0.2rem;
}

.detail-main h2 {
  margin-top: 2rem;
}

.detail-main h2:first-child {
  margin-top: 0;
}

.feature-list,
.changelog {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}

.feature-list li,
.changelog li {
  border-left: 3px solid var(--green);
  background: rgba(40, 183, 255, 0.06);
  color: var(--blue);
  padding: 0.7rem 0.9rem;
}

.screenshot-tile {
  overflow: hidden;
  margin: 0;
}

.screenshot-tile img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 123, 0, 0.12), transparent 18rem),
    #050607;
}

.screenshot-tile figcaption {
  padding: 0.6rem 0.75rem;
  color: var(--green);
  font-weight: 900;
}

.progress-block {
  display: grid;
  gap: 0.65rem;
}

.progress-copy {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.progress-copy span {
  color: var(--orange-2);
  font-size: 2rem;
  font-weight: 900;
}

.progress-track {
  height: 0.95rem;
  border: 1px solid rgba(40, 183, 255, 0.32);
  border-radius: 999px;
  overflow: hidden;
  background: #050607;
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--blue));
}

.download-card > img {
  aspect-ratio: 1 / 1;
}

.story-cover-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #050607;
}

.story-cover-frame > img {
  aspect-ratio: 3 / 4;
}

.story-cover-frame span {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  border: 1px solid rgba(69, 242, 142, 0.48);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.88);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.55rem 0.65rem;
}

.story-card summary {
  margin-top: 1rem;
  color: var(--green);
  cursor: pointer;
  font-weight: 900;
}

.story-card details ul {
  color: var(--blue);
}

.blog-list {
  display: grid;
  gap: 1rem;
}

.blog-list.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  padding: 1rem;
}

.blog-card time {
  display: inline-flex;
  margin: 0.45rem 0;
  color: var(--green);
  font-weight: 900;
}

.footer-inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.footer-brand {
  color: var(--orange-2);
  font-weight: 900;
}

.footer-copy {
  margin-top: 0.5rem;
  color: var(--blue);
  max-width: 28rem;
}

.footer-founder,
.footer-location {
  margin-top: 0.55rem;
  color: var(--green);
  font-weight: 850;
}

.footer-location {
  color: var(--blue);
}

.footer-email {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--orange-2);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem 1rem;
}

.footer-links a {
  color: var(--blue);
  font-weight: 750;
}

.footer-bottom {
  grid-column: 1 / -1;
  color: #239b7d;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .grid.projects,
  .grid.cards,
  .stats-grid,
  .build-now-grid,
  .studio-grid,
  .download-grid,
  .screenshot-grid,
  .story-grid,
  .brand-asset-grid,
  .roadmap-grid,
  .status-meter-grid,
  .timeline-list,
  .blog-list.compact,
  .visual-strip,
  .dashboard-status-grid,
  .founder-stat-grid,
  .status-overview-grid,
  .coming-soon-grid,
  .submission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .split,
  .footer-inner,
  .studio-hero-inner,
  .dashboard-grid,
  .detail-layout,
  .project-detail-hero,
  .founder-spotlight,
  .about-studio-grid,
  .about-identity-grid,
  .inspiration-card,
  .mascot-news-panel,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }

  .hero-mascot-card {
    max-width: 18rem;
    margin-bottom: 2rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(12, 16, 23, 0.98);
    box-shadow: var(--shadow);
    padding: 0.55rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem;
  }

  .hero {
    min-height: 78svh;
    background-position: 61% center;
  }

  .hero-content {
    padding: 4rem 0 3.2rem;
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.85rem);
    max-width: 100%;
  }

  .hero-tagline {
    max-width: 100%;
    font-size: clamp(1.05rem, 5vw, 1.25rem);
    line-height: 1.45;
  }
}

@media (max-width: 620px) {
  .nav-wrap,
  .hero-inner,
  .section-inner,
  .page-hero,
  .footer-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-name {
    max-width: 10.5rem;
  }

  .brand-logo {
    width: 3.8rem;
    height: 2.65rem;
  }

  .grid.projects,
  .grid.cards,
  .stats-grid,
  .build-now-grid,
  .studio-grid,
  .download-grid,
  .screenshot-grid,
  .story-grid,
  .brand-asset-grid,
  .roadmap-grid,
  .status-meter-grid,
  .timeline-list,
  .blog-list.compact,
  .visual-strip,
  .dashboard-status-grid,
  .founder-stat-grid,
  .status-overview-grid,
  .mission-list,
  .interest-list,
  .vision-list,
  .coming-soon-grid,
  .submission-grid {
    grid-template-columns: 1fr;
  }

  .mascot-callout {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .card-title-row {
    flex-direction: column;
  }

  .card {
    min-height: auto;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3.1rem 0 1rem;
  }

  .hero-mascot-card {
    display: none;
  }

  .build-now-card {
    grid-template-columns: 4.75rem minmax(0, 1fr);
  }

  .build-now-card > img {
    width: 4.75rem;
    height: 4.75rem;
  }

  .developer-photo-placeholder {
    min-height: 15rem;
  }

  .statement {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
    overflow-wrap: anywhere;
  }

  .carousel-controls {
    display: grid;
  }

  .link-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .notification-widget {
    left: 1rem;
    right: 1rem;
  }

  .notification-toggle {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .developer-photo-card {
    transition: none;
  }

  .developer-photo-card:hover {
    transform: none;
  }

  .inspiration-mascot img {
    animation: none;
  }
}
