/* ==========================================================================
   Novacoders — static site stylesheet
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&display=swap");

:root {
  --base-100: #0b1321;
  --base-200: #111827;
  --base-300: #020617;
  --base-content: #e5e7eb;

  --primary: #2563ff;
  --secondary: #7c3aed;
  --accent: #00c2ff;
  --success: #22c55e;

  --border-soft: rgba(229, 231, 235, 0.1);
  --surface-soft: rgba(229, 231, 235, 0.055);
  --surface-softer: rgba(229, 231, 235, 0.045);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", sans-serif;
  color: var(--base-content);
  background: radial-gradient(
      circle at 18% 18%,
      rgba(0, 194, 255, 0.12),
      transparent 28%
    ),
    radial-gradient(circle at 82% 22%, rgba(124, 58, 237, 0.14), transparent 26%),
    linear-gradient(180deg, #0b1321 0%, #111827 48%, #0b1321 100%);
}

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

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

::selection {
  background: rgba(0, 194, 255, 0.35);
  color: #fff;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary), var(--accent));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.eyebrow-dot {
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: middle;
  animation: pulse-dot 2.2s ease-out infinite;
}

.section {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 5rem);
  scroll-margin-top: 5rem;
  display: flex;
  align-items: center;
  padding: 2.5rem 1rem;
  background: var(--base-100);
}

@media (min-width: 640px) {
  .section {
    padding: 2.5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 2.5rem 2rem;
  }
}

.section-inner {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  width: 100%;
  max-width: 80rem;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 194, 255, 0.15);
  background: rgba(0, 194, 255, 0.1);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.eyebrow--secondary {
  border-color: rgba(124, 58, 237, 0.15);
  background: rgba(124, 58, 237, 0.1);
  color: #c4b5fd;
}

.section-heading {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.section-heading h2 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}

@media (min-width: 768px) {
  .section-heading h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .section-heading h2 {
    font-size: 3.5rem;
  }
}

.section-heading p {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgba(229, 231, 235, 0.75);
}

@media (min-width: 1024px) {
  .section-heading p {
    font-size: 1.125rem;
  }
}

.rule {
  margin: 1.25rem auto 0;
  height: 4px;
  width: 5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  border-radius: 999px;
  border: 0;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease,
    color 0.3s ease, border-color 0.3s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: translateX(-130%) skewX(-15deg);
  pointer-events: none;
}

.btn:hover::after {
  animation: shine-sweep 0.9s ease forwards;
}

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

.btn-solid {
  background: var(--base-content);
  color: var(--base-100);
  box-shadow: 0 20px 40px -12px rgba(0, 194, 255, 0.25);
}

.btn-solid:hover {
  background: var(--accent);
  color: #0b1321;
}

.btn-outline {
  border: 1px solid rgba(229, 231, 235, 0.15);
  background: rgba(229, 231, 235, 0.06);
  color: var(--base-content);
}

.btn-outline:hover {
  background: rgba(229, 231, 235, 0.1);
}

.btn-gradient {
  border-radius: 0.5rem;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  color: #fff;
  box-shadow: 0 20px 30px -12px rgba(0, 194, 255, 0.2);
}

.btn-gradient:hover {
  box-shadow: 0 20px 30px -12px rgba(0, 194, 255, 0.4);
}

.btn-border {
  border-radius: 0.5rem;
  border: 2px solid rgba(0, 194, 255, 0.7);
  background: transparent;
  color: var(--base-content);
}

.btn-border:hover {
  border-color: var(--accent);
  background: rgba(0, 194, 255, 0.1);
}

/* Glass surfaces */
.glass {
  border: 1px solid var(--border-soft);
  background: var(--surface-soft);
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
}

.stat-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border-soft);
  background: var(--surface-soft);
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
  padding: 1.25rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.25);
}

.stat-card .stat-number {
  font-size: 1.875rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

.stat-card .stat-label {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(229, 231, 235, 0.6);
}

/* Background decoration blobs */
.bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  animation: blob-breathe 10s ease-in-out infinite;
}

.blob-accent {
  background: rgba(0, 194, 255, 0.1);
  animation-duration: 11s;
}

.blob-secondary {
  background: rgba(124, 58, 237, 0.1);
  animation-duration: 13s;
  animation-delay: -4s;
}

.spark {
  position: absolute;
  height: 1px;
  border-radius: 999px;
  box-shadow: 0 0 18px currentColor;
  transform: rotate(var(--rot, 0deg));
  animation: spark-drift 7s ease-in-out infinite;
}

@keyframes blob-breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes drift-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes spark-drift {
  0%, 100% { transform: rotate(var(--rot, 0deg)) translateX(0); opacity: 0.3; }
  50% { transform: rotate(var(--rot, 0deg)) translateX(10px); opacity: 0.8; }
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 194, 255, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(0, 194, 255, 0); }
}

@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-scale-in {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shine-sweep {
  from { transform: translateX(-130%) skewX(-15deg); }
  to { transform: translateX(230%) skewX(-15deg); }
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  border: 1px dashed rgba(0, 194, 255, 0.25);
}

.ring--secondary {
  border-color: rgba(124, 58, 237, 0.2);
}

.ring--spin {
  transform: translate(-50%, -50%) rotate(0deg);
  animation: spin-slow 34s linear infinite;
}

.ring--spin-reverse {
  transform: translate(-50%, -50%) rotate(0deg);
  animation: spin-reverse 42s linear infinite;
}

@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
}

.site-nav {
  width: 100%;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(11, 19, 33, 0.7);
  box-shadow: 0 25px 50px -12px rgba(0, 194, 255, 0.1);
  backdrop-filter: blur(24px);
}

.nav-row {
  margin: 0 auto;
  display: flex;
  height: 5rem;
  width: 100%;
  max-width: 80rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nav-row {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-row {
    padding: 0 2rem;
  }
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-logo:hover img {
  transform: scale(1.06) rotate(-2deg);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.nav-links a {
  border-radius: 1rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(229, 231, 235, 0.7);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  background: rgba(229, 231, 235, 0.1);
  color: var(--base-content);
  transform: translateY(-2px);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.nav-link-ghost {
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(229, 231, 235, 0.7);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-link-ghost:hover {
  background: rgba(229, 231, 235, 0.1);
  color: var(--accent);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--base-content);
  cursor: pointer;
}

.nav-toggle:hover {
  background: rgba(229, 231, 235, 0.1);
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* Mobile menu: pure CSS checkbox toggle */
#nav-toggle-input {
  display: none;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border-soft);
  background: rgba(11, 19, 33, 0.9);
}

#nav-toggle-input:checked ~ .mobile-menu {
  display: block;
}

#nav-toggle-input:checked ~ .nav-row .nav-toggle .icon-open {
  display: none;
}

.nav-toggle .icon-close {
  display: none;
}

#nav-toggle-input:checked ~ .nav-row .nav-toggle .icon-close {
  display: block;
}

.mobile-menu-inner {
  margin: 0 auto;
  max-width: 80rem;
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .mobile-menu-inner {
    padding: 1rem 1.5rem 1.25rem;
  }
}

.mobile-menu a {
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(229, 231, 235, 0.7);
}

.mobile-menu a:hover {
  background: rgba(229, 231, 235, 0.1);
  color: var(--base-content);
}

.mobile-menu .btn {
  margin-top: 0.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

main {
  padding-top: 5rem;
}

.home main {
  padding-top: 0;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  min-height: 100svh;
  background: radial-gradient(
      circle at 18% 18%,
      rgba(0, 194, 255, 0.14),
      transparent 30%
    ),
    radial-gradient(circle at 78% 24%, rgba(124, 58, 237, 0.18), transparent 26%),
    linear-gradient(180deg, var(--base-100) 0%, var(--base-200) 52%, var(--base-100) 100%);
  padding: 8rem 1.5rem 5rem;
  scroll-margin-top: 0;
}

.hero-inner {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 80rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3.5rem;
}

.hero-columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .hero-columns {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 3.5rem;
  }

  .hero-copy {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }
}

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-copy .eyebrow {
  animation: fade-up-in 0.7s ease-out both;
}

.hero-copy h1 {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.05;
  margin: 0;
  animation: fade-up-in 0.8s ease-out 0.12s both;
}

@media (min-width: 640px) {
  .hero-copy h1 {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-copy h1 {
    font-size: 5rem;
  }
}

.hero-copy p.lead {
  margin: 1.5rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(229, 231, 235, 0.75);
  max-width: 44rem;
  animation: fade-up-in 0.8s ease-out 0.24s both;
}

@media (min-width: 640px) {
  .hero-copy p.lead {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
  animation: fade-up-in 0.8s ease-out 0.36s both;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-features {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}

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

.hero-features .stat-card {
  padding: 1.5rem;
  animation: fade-up-in 0.7s ease-out both;
}

.hero-features .stat-card:nth-child(1) { animation-delay: 0.48s; }
.hero-features .stat-card:nth-child(2) { animation-delay: 0.58s; }
.hero-features .stat-card:nth-child(3) { animation-delay: 0.68s; }

.hero-features .stat-card h3 {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.hero-features .stat-card p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(229, 231, 235, 0.7);
}

/* Hero mockup graphic */
.mockup {
  position: relative;
  width: 100%;
  border-radius: 2rem;
  border: 1px solid var(--border-soft);
  background: rgba(229, 231, 235, 0.045);
  box-shadow: 0 25px 60px -20px rgba(0, 194, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  max-width: 40rem;
  margin: 0 auto;
  animation: fade-scale-in 0.9s ease-out 0.3s both, float-y 7s ease-in-out 1.2s infinite;
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.mockup-dot {
  height: 0.65rem;
  width: 0.65rem;
  border-radius: 999px;
}

.mockup-dot--rose { background: #fb7185; }
.mockup-dot--yellow { background: #fde047; }
.mockup-dot--green { background: #34d399; }

.mockup-bar {
  margin-left: auto;
  height: 0.5rem;
  width: 6rem;
  border-radius: 999px;
  background: rgba(0, 194, 255, 0.25);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 0.75rem;
}

.mockup-panel {
  border-radius: 1rem;
  background: rgba(2, 6, 23, 0.35);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.mockup-line {
  height: 0.5rem;
  border-radius: 999px;
}

.mockup-line--accent { width: 4rem; background: rgba(0, 194, 255, 0.25); }
.mockup-line--secondary { width: 5rem; background: rgba(124, 58, 237, 0.25); }
.mockup-line--accent-dim { width: 3.5rem; background: rgba(0, 194, 255, 0.2); }

.mockup-main {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mockup-hero-block {
  height: 5.5rem;
  border-radius: 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.16),
    rgba(37, 99, 255, 0.05),
    rgba(124, 58, 237, 0.16)
  );
}

.mockup-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.mockup-tile {
  height: 4rem;
  border-radius: 1rem;
  background: rgba(2, 6, 23, 0.35);
}

/* ==========================================================================
   About / Team shared card style
   ========================================================================== */

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.split--team {
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .split--team {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
  }
}

.copy-block {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .copy-block {
    margin: 0;
    text-align: left;
  }
}

.copy-block h2 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}

@media (min-width: 768px) {
  .copy-block h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .copy-block h2 {
    font-size: 3.5rem;
  }
}

.copy-block .rule {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 767px) {
  .copy-block .rule {
    margin-left: auto;
    margin-right: auto;
  }
}

.copy-block p {
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgba(229, 231, 235, 0.75);
}

@media (min-width: 1024px) {
  .copy-block p {
    font-size: 1.125rem;
    line-height: 2rem;
  }
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1rem;
}

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

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

.visual-frame {
  position: relative;
  margin: 0 auto;
  display: none;
  height: 24rem;
  width: 100%;
  max-width: 36rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .visual-frame {
    display: flex;
  }
}

.visual-frame .ring--1 {
  height: 15rem;
  width: 15rem;
}

.visual-frame .ring--2 {
  height: 20rem;
  width: 20rem;
}

@media (min-width: 768px) {
  .visual-frame .ring--1 { height: 18rem; width: 18rem; }
  .visual-frame .ring--2 { height: 24rem; width: 24rem; }
}

.dev-card {
  position: relative;
  width: 100%;
  border-radius: 2rem;
  border: 1px solid var(--border-soft);
  background: rgba(229, 231, 235, 0.065);
  box-shadow: 0 25px 60px -20px rgba(0, 194, 255, 0.1);
  backdrop-filter: blur(24px);
  padding: 1.25rem;
  animation: float-y 8.5s ease-in-out infinite;
}

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

@media (min-width: 1024px) {
  .dev-card-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.dev-photo {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid var(--border-soft);
  background: rgba(2, 6, 23, 0.45);
}

.dev-photo img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.5s ease;
}

.dev-photo:hover img {
  transform: scale(1.04);
}

.dev-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.1) 60%, transparent);
}

.dev-photo-caption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  background: rgba(11, 19, 33, 0.7);
  padding: 1rem;
  backdrop-filter: blur(20px);
}

.dev-photo-caption p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 900;
}

.dev-photo-caption span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.dev-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 1.75rem;
  background: rgba(2, 6, 23, 0.45);
  padding: 1.25rem;
}

.pill-success {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.1);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #86efac;
}

.dev-info h3 {
  margin: 1.25rem 0 0;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.dev-info p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(229, 231, 235, 0.65);
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stack-tags span {
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(229, 231, 235, 0.055);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(229, 231, 235, 0.7);
}

.about-preview {
  border-radius: 2rem;
  border: 1px solid var(--border-soft);
  background: rgba(229, 231, 235, 0.065);
  box-shadow: 0 25px 60px -20px rgba(0, 194, 255, 0.1);
  backdrop-filter: blur(24px);
  padding: 1.25rem;
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  animation: float-y 8s ease-in-out infinite;
}

.about-preview-tile {
  border-radius: 1.5rem;
  border: 1px solid var(--border-soft);
  background: rgba(2, 6, 23, 0.45);
  padding: 1rem;
}

.about-preview-tile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.about-preview-tile .mockup-line { margin-bottom: 0.75rem; }

.pill-live {
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #86efac;
}

.about-preview-hero-block {
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.15), rgba(37, 99, 255, 0.05), rgba(124, 58, 237, 0.15));
}

.about-preview-tiles {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.about-preview-tiles .about-preview-tile p {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  font-weight: 700;
}

/* ==========================================================================
   Services
   ========================================================================== */

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

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

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border-soft);
  background: var(--surface-soft);
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  padding: 1.25rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.25);
  background: rgba(229, 231, 235, 0.075);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 194, 255, 0.15);
  background: rgba(0, 194, 255, 0.1);
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--accent);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
  transform: rotate(8deg) scale(1.1);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(229, 231, 235, 0.6);
}

.service-progress {
  margin-top: 1.25rem;
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(229, 231, 235, 0.1);
}

.service-progress span {
  display: block;
  height: 100%;
  width: 33%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transition: width 0.5s ease;
}

.service-card:hover .service-progress span {
  width: 66%;
}

/* ==========================================================================
   Goals
   ========================================================================== */

.goals-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  padding-top: 1rem;
}

@media (min-width: 1024px) {
  .goals-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 0;
  }

  .goals-grid::before {
    content: "";
    position: absolute;
    top: 1.68rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.25), transparent);
  }
}

.goal {
  position: relative;
  text-align: left;
  transition: transform 0.3s ease;
}

.goal:hover {
  transform: translateY(-3px);
}

.goal-dot {
  display: inline-block;
  height: 1rem;
  width: 1rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  box-shadow: 0 0 0 8px var(--base-100), 0 0 24px 2px currentColor;
  animation: float-y 9s ease-in-out infinite;
}

.dot-accent { background: var(--accent); color: var(--accent); }
.dot-secondary { background: var(--secondary); color: var(--secondary); }
.dot-primary { background: var(--primary); color: var(--primary); }

.goal:nth-child(1) .goal-dot { animation-delay: 0s; }
.goal:nth-child(2) .goal-dot { animation-delay: -2.2s; animation-duration: 10s; }
.goal:nth-child(3) .goal-dot { animation-delay: -4.4s; animation-duration: 8.5s; }
.goal:nth-child(4) .goal-dot { animation-delay: -6.6s; animation-duration: 9.5s; }

.goal-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(0, 194, 255, 0.75);
}

.goal-meta span:nth-child(2) {
  height: 1px;
  width: 2rem;
  background: rgba(0, 194, 255, 0.3);
}

.goal h3 {
  margin: 0.75rem 0 0;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

@media (min-width: 1280px) {
  .goal h3 {
    font-size: 1.25rem;
  }
}

.goal p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(229, 231, 235, 0.65);
}

.goal p.detail {
  color: rgba(229, 231, 235, 0.45);
}

/* ==========================================================================
   How We Help
   ========================================================================== */

.help-grid {
  margin-top: 3rem;
  display: grid;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--border-soft);
  background: var(--surface-softer);
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
}

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

.help-card {
  position: relative;
  min-height: 18rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
}

.help-card:hover {
  background: rgba(229, 231, 235, 0.075);
}

@media (min-width: 1024px) {
  .help-card {
    border-bottom: 0;
    border-right: 1px solid var(--border-soft);
  }

  .help-card:last-child {
    border-right: 0;
  }
}

.help-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.help-step {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(0, 194, 255, 0.7);
}

.help-icon {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 194, 255, 0.15);
  background: rgba(0, 194, 255, 0.1);
  color: var(--accent);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.help-card:hover .help-icon {
  transform: rotate(-8deg) scale(1.12);
  background: rgba(0, 194, 255, 0.18);
}

.help-icon svg {
  height: 1.25rem;
  width: 1.25rem;
}

.help-card h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.help-card p.short {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(229, 231, 235, 0.6);
}

.help-card .detail-block {
  margin-top: auto;
  padding-top: 1.25rem;
}

.help-card .detail-rule {
  height: 1px;
  width: 100%;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, rgba(0, 194, 255, 0.4), transparent);
}

.help-card p.detail {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(229, 231, 235, 0.75);
}

.help-cta {
  margin: 2rem auto 0;
  display: flex;
  max-width: 56rem;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--surface-softer);
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  padding: 1rem 1.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .help-cta {
    flex-direction: row;
    text-align: left;
  }
}

.help-cta p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(229, 231, 235, 0.75);
}

.help-cta .btn {
  padding: 0.75rem 1.75rem;
  white-space: nowrap;
}

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

.cta {
  background: linear-gradient(180deg, var(--base-100), var(--base-100), rgba(0, 194, 255, 0.1));
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.cta-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 768px) {
  .cta h2 {
    font-size: 3.5rem;
  }
}

.cta p.lead {
  margin: 2rem auto 0;
  max-width: 40rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(229, 231, 235, 0.75);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding-top: 2rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

.cta-contact {
  padding-top: 2rem;
}

.cta-contact p {
  margin: 0.5rem 0 0;
  color: rgba(229, 231, 235, 0.6);
}

.cta-contact a {
  color: var(--accent);
  transition: color 0.3s ease;
}

.cta-contact a:hover {
  color: rgba(0, 194, 255, 0.8);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  background: var(--base-100);
}

.footer-inner {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 80rem;
  padding: 3rem 1rem;
}

@media (min-width: 640px) {
  .footer-inner {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-inner {
    padding: 3rem 2rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
    gap: 3rem;
  }
}

.footer-brand a.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-brand a.footer-logo img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-brand a.footer-logo:hover img {
  transform: scale(1.06) rotate(-2deg);
}

.footer-brand p {
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(229, 231, 235, 0.6);
}

.footer-badge {
  display: inline-flex;
  margin-top: 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 194, 255, 0.15);
  background: rgba(0, 194, 255, 0.1);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(229, 231, 235, 0.6);
  transition: color 0.3s ease, transform 0.3s ease;
}

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

.footer-col svg {
  height: 1rem;
  width: 1rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(229, 231, 235, 0.5);
}

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

.footer-bottom p:last-child {
  color: rgba(229, 231, 235, 0.6);
}

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal-page {
  min-height: 100vh;
  background: #000;
  padding: 7rem 1rem 3rem;
}

@media (min-width: 640px) {
  .legal-page {
    padding: 7rem 1.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .legal-page {
    padding: 7rem 2rem 3rem;
  }
}

.legal-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.legal-inner > p.updated {
  color: #9ca3af;
  margin: 0 0 2rem;
}

.legal-inner section {
  margin-bottom: 2rem;
}

.legal-inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.legal-inner h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
}

.legal-inner p {
  color: #d1d5db;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.legal-inner ul {
  color: #d1d5db;
  line-height: 1.75;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.legal-inner li {
  margin-bottom: 0.5rem;
}

.legal-inner a {
  color: #c084fc;
}

.legal-inner a:hover {
  color: #d8b4fe;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.back-link:hover {
  color: rgba(0, 194, 255, 0.8);
}
