:root {
  --bg: #212121;
  --bg-soft: #1a1a1a;
  --card: rgba(18, 18, 18, 0.88);
  --text: #f4f6f8;
  --muted: #afb4bd;
  --line: rgba(255, 255, 255, 0.1);
  --accent-a: #00f5d4;
  --accent-b: #00bbf9;
  --accent-c: #9ef01a;
  --radius: 22px;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--cursor-x) var(--cursor-y), rgba(0, 245, 212, 0.08), transparent 65%);
  z-index: -1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b), var(--accent-c));
  box-shadow: 0 0 18px rgba(0, 245, 212, 0.6);
}

.pointer-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.22) 0%, rgba(0, 187, 249, 0.08) 25%, transparent 70%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.25s ease;
  z-index: 6;
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 50;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 245, 212, 0.65);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.is-hover {
  width: 52px;
  height: 52px;
  border-color: rgba(0, 245, 212, 0.95);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-a);
  box-shadow: 0 0 12px rgba(0, 245, 212, 0.9);
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 30%, #000 25%, transparent 85%);
  z-index: -3;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: -2;
  opacity: 0.4;
  animation: float 12s ease-in-out infinite;
}

.shape-a {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -120px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
}

.shape-b {
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -140px;
  background: linear-gradient(135deg, var(--accent-c), var(--accent-a));
  animation-delay: -4s;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.98);
  filter: blur(8px);
  transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1.1rem 0 0;
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 100px;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-c), var(--accent-a));
  box-shadow: 0 0 16px var(--accent-a);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  color: #d8e2ec;
  padding: 0.5rem 0.72rem;
  font: 600 0.86rem/1 "Sora", sans-serif;
  cursor: pointer;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  text-decoration: none;
  color: #cfd7e0;
  font-size: 0.87rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  background: rgba(255, 255, 255, 0.01);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.nav-emoji {
  font-size: 0.85rem;
  line-height: 1;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
  border-color: rgba(0, 245, 212, 0.42);
  background: rgba(0, 245, 212, 0.08);
}

.nav-links a.is-active {
  color: #041616;
  border-color: transparent;
  background: linear-gradient(120deg, var(--accent-a), var(--accent-b));
  text-shadow: none;
  box-shadow: 0 0 14px rgba(0, 245, 212, 0.26);
}

.hero {
  padding-top: 4.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.2rem;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--accent-a);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  max-width: 14ch;
}

h1 span {
  background: linear-gradient(90deg, var(--accent-a), #7fe7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  max-width: 56ch;
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-tags {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-tags span {
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #d3d8df;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  animation: pulseTag 2.7s ease-in-out infinite;
}

.hero-tags span:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-tags span:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-tags span:nth-child(4) {
  animation-delay: 0.6s;
}

.hero-tags span:nth-child(5) {
  animation-delay: 0.8s;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.metric {
  padding: 1.3rem;
  min-height: 132px;
}

.metric-value {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.metric-label {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  max-width: 23ch;
}

.palette-lab {
  padding: 1rem 1.1rem 1.15rem;
  display: grid;
  gap: 0.75rem;
}

.palette-help {
  margin: 0;
  color: #cfdae5;
  font-size: 0.92rem;
}

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

.palette-chip {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: #d8e2ec;
  padding: 0.5rem;
  text-align: left;
  font: inherit;
  cursor: pointer;
  display: grid;
  gap: 0.42rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.palette-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 245, 212, 0.45);
}

.palette-chip.is-active {
  border-color: rgba(0, 245, 212, 0.65);
  background: rgba(0, 245, 212, 0.08);
  box-shadow: 0 0 16px rgba(0, 245, 212, 0.15);
}

.palette-chip strong {
  font-size: 0.84rem;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.01em;
}

.palette-colors {
  display: flex;
  gap: 0.34rem;
}

.palette-colors i {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sw);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

.services-fun {
  margin-bottom: 0.9rem;
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.72rem;
}

.services-fun-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.services-mode-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.services-mode-btn {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  color: #d9e2ec;
  font: inherit;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.services-mode-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 245, 212, 0.48);
}

.services-mode-btn.is-active {
  color: #051516;
  border-color: transparent;
  background: linear-gradient(120deg, var(--accent-a), var(--accent-b));
}

.services-fun-note {
  margin: 0;
  color: #d6dee7;
  font-size: 0.92rem;
}

.services-fun-meter {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.07);
}

.services-fun-meter span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-c), var(--accent-a), var(--accent-b));
  transition: width 0.35s ease;
}

.service-card,
.process-step,
.project-card,
.pricing-card {
  padding: 1.25rem;
}

.service-card {
  position: relative;
  transition: opacity 0.25s ease, filter 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card.is-hot {
  border-color: rgba(0, 245, 212, 0.55);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.52), 0 0 24px rgba(0, 245, 212, 0.2);
}

.service-card.is-muted {
  opacity: 0.45;
  filter: saturate(0.72);
}

.service-badge {
  margin: 0 0 1rem;
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d6e4ef;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.service-card.is-hot .service-badge {
  color: #052018;
  border-color: transparent;
  background: linear-gradient(90deg, var(--accent-c), var(--accent-a));
}

.service-badge + h3 {
  margin-top: 0.55rem;
}

.service-card p,
.project-card p,
.process-step p,
.pricing-card p,
.faq-item p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.service-card h3,
.process-step h3,
.project-card h3,
.pricing-card h3 {
  font-size: 1.08rem;
}

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

.process-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.8rem;
  background: rgba(0, 245, 212, 0.12);
  border: 1px solid rgba(0, 245, 212, 0.42);
}

.stack-wrap {
  padding: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.stack-wrap span {
  padding: 0.4rem 0.74rem;
  border-radius: 11px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  color: #dde4ed;
  background: rgba(255, 255, 255, 0.03);
}

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

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

.project-type {
  margin: 0;
  color: var(--accent-a);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.real-site-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.site-preview-link {
  display: block;
  border-bottom: 1px solid var(--line);
}

.site-preview {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top center;
  background: linear-gradient(135deg, #0f1516, #14262a);
  transition: transform 0.35s ease;
}

.real-site-card:hover .site-preview {
  transform: scale(1.04);
}

.site-body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.site-body h3 {
  font-size: 1.04rem;
  margin-top: 0.28rem;
}

.site-body .btn {
  margin-top: 1rem;
}

.mobile-app-wrap {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: center;
}

.app-kicker {
  margin: 0;
  color: var(--accent-c);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
}

.app-copy h3 {
  margin-top: 0.35rem;
  font-size: 1.55rem;
}

.app-brand {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.app-brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 12px;
}

.app-brand h3 {
  margin: 0;
}

.app-copy > p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  max-width: 52ch;
}

.app-points {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.app-pill {
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 245, 212, 0.35);
  background: rgba(0, 245, 212, 0.09);
  color: #e8f9f5;
  font-size: 0.82rem;
}

.app-store-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.55rem 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 245, 212, 0.5);
  background: rgba(0, 245, 212, 0.08);
}

.store-btn > span:last-child {
  display: grid;
  line-height: 1.15;
}

.store-btn strong {
  font-size: 0.9rem;
}

.store-btn small {
  color: var(--muted);
  font-size: 0.73rem;
}

.store-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
}

.store-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.app-showcase {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
}

.app-phone {
  width: min(260px, 100%);
  border-radius: 30px;
  padding: 10px;
  background: linear-gradient(155deg, #090909, #171717);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
}

.app-screen {
  border-radius: 22px;
  min-height: 320px;
  padding: 0.9rem;
  background: radial-gradient(circle at 20% 10%, rgba(0, 245, 212, 0.18), transparent 55%), #0f1010;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-screen-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.app-screen-card {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.22rem;
  border-radius: 12px;
  padding: 0.65rem 0.72rem;
  background: rgba(0, 245, 212, 0.11);
  border: 1px solid rgba(0, 245, 212, 0.35);
  color: #dcf9f4;
}

.app-screen-card strong {
  color: #8cffc9;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.app-screen-card span {
  font-size: 0.85rem;
  color: #dfebef;
}

.app-bars {
  margin-top: 1rem;
  height: 130px;
  display: flex;
  align-items: end;
  gap: 0.35rem;
}

.app-bars span {
  flex: 1;
  border-radius: 9px 9px 3px 3px;
  background: linear-gradient(180deg, var(--accent-a), var(--accent-b));
  opacity: 0.92;
  animation: pulseBars 2.4s ease-in-out infinite;
}

.app-bars span:nth-child(2) {
  animation-delay: 0.12s;
}

.app-bars span:nth-child(3) {
  animation-delay: 0.24s;
}

.app-bars span:nth-child(4) {
  animation-delay: 0.36s;
}

.app-bars span:nth-child(5) {
  animation-delay: 0.48s;
}

.app-stats {
  width: 100%;
  display: grid;
  gap: 0.5rem;
}

.app-stats p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem 0.65rem;
  background: rgba(255, 255, 255, 0.02);
  color: #dbe3ed;
  font-size: 0.9rem;
}

.app-stats strong {
  color: var(--text);
}

.estimator-wrap {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.estimator-controls {
  display: grid;
  gap: 1rem;
}

.control-group {
  margin: 0;
}

.control-title {
  margin: 0 0 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

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

.choice-pill {
  position: relative;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 11px;
  border: 1px solid var(--line);
  color: #d6dde7;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.choice-pill input:checked + span {
  color: #071717;
  border-color: transparent;
  background: linear-gradient(120deg, var(--accent-a), var(--accent-b));
}

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

.feature-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0.46rem 0.62rem;
  background: rgba(255, 255, 255, 0.02);
  color: #dce2eb;
  font-size: 0.88rem;
}

.feature-check input {
  accent-color: var(--accent-a);
}

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

.range-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--accent-a);
}

.range-wrap small {
  color: var(--muted);
}

.estimator-result {
  border: 1px solid rgba(0, 245, 212, 0.2);
  border-radius: 18px;
  padding: 1rem;
  background: radial-gradient(circle at 20% 10%, rgba(0, 245, 212, 0.12), rgba(255, 255, 255, 0.01) 55%);
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.estimator-result.bump {
  animation: resultPop 0.35s ease;
}

.result-kicker {
  margin: 0;
  color: var(--accent-c);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.result-price {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.38rem, 3vw, 1.95rem);
}

.result-time {
  margin: 0;
  color: #d8e0ea;
}

.result-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.result-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  color: #deebf5;
  background: rgba(255, 255, 255, 0.02);
}

.playground-wrap {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.playground-panel {
  display: grid;
  gap: 0.95rem;
}

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

.speed-chip {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.02);
  color: #d6dde7;
  padding: 0.44rem 0.72rem;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.speed-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 245, 212, 0.5);
}

.speed-chip.is-active {
  color: #071717;
  border-color: transparent;
  background: linear-gradient(120deg, var(--accent-a), var(--accent-b));
}

.playground-result {
  border: 1px solid rgba(0, 245, 212, 0.25);
  border-radius: 18px;
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.72rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 245, 212, 0.16), rgba(255, 255, 255, 0.01) 55%),
    linear-gradient(160deg, rgba(5, 21, 22, 0.75), rgba(6, 9, 13, 0.45));
}

.playground-result h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.playground-result p {
  margin: 0;
  color: #d8e0ea;
}

.mission-meter {
  margin-top: 0.2rem;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mission-meter span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-c), var(--accent-a), var(--accent-b));
  box-shadow: 0 0 14px rgba(0, 245, 212, 0.4);
  transition: width 0.35s ease;
}

.mission-level {
  margin: 0;
  color: #f0f8ff !important;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
}

.mini-game-wrap {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.mini-game-flow {
  display: grid;
  gap: 0.75rem;
}

.mini-game-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.mini-flow-progress {
  display: flex;
  gap: 0.48rem;
}

.mini-flow-progress span {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.mini-flow-progress span.is-active,
.mini-flow-progress span.is-done {
  background: linear-gradient(90deg, var(--accent-c), var(--accent-a), var(--accent-b));
  border-color: rgba(0, 245, 212, 0.55);
}

.mini-step-panel {
  display: grid;
  gap: 0.7rem;
}

.mini-step-panel.is-leaving {
  animation: stepOut 0.16s ease forwards;
}

.mini-step-panel.is-entering {
  animation: stepIn 0.18s ease forwards;
}

.mini-game-step {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 245, 212, 0.45);
  background: rgba(0, 245, 212, 0.1);
  color: #b8fff1;
  font-size: 0.82rem;
  font-weight: 700;
}

.mini-game-step-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.mini-game-instruction-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.mini-game-instruction {
  margin: 0;
  color: #e3edf6;
  font-size: 0.96rem;
}

.mini-game-instruction code {
  color: #8feeff;
}

.mini-copy-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #d8eaf6;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mini-copy-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.mini-copy-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 245, 212, 0.45);
  background: rgba(0, 245, 212, 0.08);
  color: #effcff;
}

.mini-copy-btn.is-copied {
  border-color: rgba(0, 245, 212, 0.65);
  background: rgba(0, 245, 212, 0.16);
  color: #9fffe5;
}

.mini-copy-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.mini-game-help {
  margin: 0;
  color: #d0d9e2;
  font-size: 0.9rem;
}

.mini-game-help code,
.mini-game-goals code {
  color: #8feeff;
  font-size: 0.84em;
}

#miniCodeInput {
  width: 100%;
  min-height: 180px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.8rem;
  font: 500 0.92rem/1.45 "Space Grotesk", sans-serif;
}

#miniCodeInput:focus {
  outline: 2px solid rgba(0, 245, 212, 0.45);
  border-color: rgba(0, 245, 212, 0.62);
}

.mini-game-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.mini-game-preview {
  display: grid;
  gap: 0.72rem;
}

.mini-preview-lock {
  min-height: 220px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  text-align: center;
  color: #cad6e0;
  padding: 1rem;
  line-height: 1.4;
}

.mini-preview-card {
  min-height: 220px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #0f1920, #121010);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, border-radius 0.2s ease;
}

.mini-preview-card.is-hidden {
  display: none;
}

.mini-preview-card p {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mini-preview-card.is-pop {
  animation: resultPop 0.36s ease;
}

.mini-game-status {
  margin: 0;
  color: #d5dee8;
}

.mini-game-joke {
  margin: 0;
  color: #f7ffff;
  min-height: 2.8rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

@keyframes stepOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

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

.project-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: #e4ebf4;
}

.project-card li {
  margin: 0.35rem 0;
}

.price {
  margin: 0.65rem 0;
  font-size: 1.65rem;
  font-family: "Sora", sans-serif;
  color: var(--text) !important;
}

.badge {
  margin: 0;
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #02120f;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-c));
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.pricing-card.featured {
  transform: translateY(-6px);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 1rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  font-family: "Sora", sans-serif;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-card {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: #dfe5ee;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.7rem 0.82rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(0, 245, 212, 0.4);
  border-color: rgba(0, 245, 212, 0.6);
}

.contact-status {
  margin: 0.15rem 0 0;
  min-height: 1.2rem;
  color: #cad5df;
  font-size: 0.88rem;
}

.contact-status.is-success {
  color: #8dffd0;
}

.contact-status.is-error {
  color: #ffb8b8;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  text-decoration: none;
  color: #041512;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.58rem 0.78rem;
  appearance: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 18px rgba(37, 211, 102, 0.35);
  font: 700 0.82rem/1 "Sora", sans-serif;
  transition: transform 0.2s ease, filter 0.2s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.whatsapp-float svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.wa-modal.is-open {
  display: block;
}

.wa-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 10, 0.72);
  backdrop-filter: blur(3px);
}

.wa-modal-dialog {
  position: relative;
  width: min(560px, calc(100% - 1.2rem));
  margin: clamp(1rem, 8vh, 4rem) auto 0;
  padding: 1rem;
}

.wa-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.wa-modal-head h3 {
  font-size: 1.15rem;
}

.wa-close {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #dbe6ef;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.wa-modal-text {
  margin: 0.55rem 0 0;
  color: #ced9e3;
}

.wa-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.wa-form label {
  display: grid;
  gap: 0.35rem;
  color: #dfebf5;
  font-size: 0.9rem;
}

.wa-form input,
.wa-form select,
.wa-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.65rem 0.8rem;
  font: inherit;
}

.wa-form select {
  appearance: none;
  background-color: rgba(10, 18, 24, 0.92);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2300f5d4' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 0.75rem) 50%;
  background-size: 14px;
  padding-right: 2.2rem;
}

.wa-form input:focus,
.wa-form select:focus,
.wa-form textarea:focus {
  outline: 2px solid rgba(0, 245, 212, 0.4);
  border-color: rgba(0, 245, 212, 0.6);
}

.wa-form select:invalid {
  color: #a9b6c4;
}

.wa-form select option {
  color: #eaf5ff;
  background: #101820;
}

.wa-form select option:disabled {
  color: #94a4b5;
}

.site-footer {
  margin-top: 1rem;
  padding: 1.3rem 0 1.8rem;
  color: #bfc6cf;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 16, 18, 0.35), rgba(7, 11, 14, 0.75));
}

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

.footer-brand p {
  margin: 0.6rem 0 0;
  color: #c6cfda;
  max-width: 38ch;
}

.footer-logo {
  font-size: 1rem;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.footer-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  color: #f0f6fb;
  letter-spacing: 0.02em;
}

.footer-links {
  display: grid;
  gap: 0.34rem;
}

.footer-links a {
  color: #c6d0db;
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links a:hover {
  color: #f0fcff;
  border-color: rgba(0, 245, 212, 0.5);
}

.social-link {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.62rem;
  width: 100% !important;
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 13px;
  padding: 0.46rem 0.58rem;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.social-link .social-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
}

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

.social-link .social-label {
  display: grid;
  gap: 0.02rem;
}

.social-link .social-label span {
  color: #eef6ff;
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
}

.social-link .social-label small {
  color: #9eb0c2;
  font-size: 0.76rem;
}

.social-link.facebook .social-icon {
  background: linear-gradient(135deg, #1877f2, #005fd1);
}

.social-link.instagram .social-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 245, 212, 0.55) !important;
  background: rgba(0, 245, 212, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #9eadbc;
}

.neo-card {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(13, 13, 13, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform-style: preserve-3d;
  --rx: 0deg;
  --ry: 0deg;
  --tz: 0px;
  transform: perspective(980px) rotateX(var(--rx)) rotateY(var(--ry)) translate3d(0, var(--tz), 0);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.neo-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(0, 245, 212, 0.6), rgba(0, 187, 249, 0.32), rgba(158, 240, 26, 0.28));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
  pointer-events: none;
}

.neo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 245, 212, 0.22), transparent 38%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.neo-card:hover {
  --tz: -6px;
  border-color: rgba(0, 245, 212, 0.38);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5), 0 0 26px rgba(0, 245, 212, 0.16);
}

.neo-card:hover::after {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.72rem 1rem;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  --bx: 0px;
  --by: 0px;
  transform: translate3d(var(--bx), var(--by), 0);
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  --by: -2px;
  filter: brightness(1.06);
}

.btn.is-magnetic {
  transition: transform 0.18s ease, filter 0.2s ease, border-color 0.2s ease;
}

.btn-sm {
  padding: 0.52rem 0.82rem;
  font-size: 0.88rem;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent-a), var(--accent-b));
  color: #041616;
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.legal-page .section-head {
  align-items: start;
}

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

.legal-card {
  padding: 1.15rem;
}

.legal-card h3 {
  font-size: 1.04rem;
}

.legal-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.legal-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.legal-card li {
  margin: 0.34rem 0;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 28px, 0);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 12px rgba(37, 211, 102, 0.24);
  }
  50% {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.42), 0 0 24px rgba(37, 211, 102, 0.46);
  }
}

@keyframes pulseBars {
  0%,
  100% {
    filter: brightness(0.95);
  }
  50% {
    filter: brightness(1.2);
  }
}

@keyframes pulseTag {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(0, 245, 212, 0);
  }
  50% {
    box-shadow: 0 0 14px rgba(0, 245, 212, 0.2);
  }
}

@keyframes resultPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

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

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

  .contact-card,
  .estimator-wrap,
  .mini-game-wrap,
  .playground-wrap,
  .mobile-app-wrap,
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .site-header {
    position: static;
  }

  .nav-wrap {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .brand-logo {
    height: 40px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-wrap > .btn.btn-sm {
    order: 2;
    margin-left: auto;
  }

  .nav-links {
    width: 100%;
    order: 3;
    display: none;
    overflow: hidden;
    padding: 0.45rem;
    border-radius: 13px;
    background: rgba(7, 13, 15, 0.86);
  }

  .nav-wrap.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    white-space: nowrap;
    flex: 1 1 calc(50% - 0.5rem);
    justify-content: center;
  }

  .app-store-links {
    flex-direction: column;
  }

  .store-btn {
    width: 100%;
    justify-content: flex-start;
  }

  .whatsapp-float {
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.55rem 0.72rem;
  }

  .whatsapp-float span {
    display: none;
  }

  .section {
    padding: 4.1rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-metrics,
  .footer-grid,
  .palette-grid,
  .feature-grid,
  .slider-grid,
  .services-grid,
  .projects-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    margin-bottom: 1rem;
  }
}

@media (pointer: fine) {
  body {
    cursor: none;
  }

  .cursor-ring,
  .cursor-dot,
  .pointer-glow {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
