﻿:root {
  --bg-deep: #030014;
  --primary: #7928CA;
  --secondary: #FF0080;
  --cyan: #00DFD8;
  --text-main: #ffffff;
  --text-dim: #8892b0;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --panel: rgba(18, 10, 32, 0.78);
  --border: rgba(255,255,255,0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  display: none;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

section {
  scroll-margin-top: 90px;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
}

.ambient-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 50%, rgba(121,40,202,0.15) 0%, transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(255,0,128,0.15) 0%, transparent 25%);
  z-index: -1;
  pointer-events: none;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flowGradient {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: -200% center;
  }
}

@keyframes enterUp {
  to {
    opacity: 1;
    transform: translate3d(0,0,0);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translate3d(0,0,0);
  }

  50% {
    transform: translate3d(0,-10px,0);
  }
}

/* =============================
   NAVBAR
   ============================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(3, 0, 20, 0.6);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  animation: fadeInDown 650ms forwards 180ms;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--text-main);
  white-space: nowrap;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  flex: 0 0 auto;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-link {
  position: relative;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 200ms, background 200ms;
  white-space: nowrap;
}

.nav-link:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--secondary));
  transition: width 300ms ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 40%;
}

.nav-link.active {
  background: linear-gradient(90deg, var(--cyan), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.nav-link.active::after {
  width: 100%;
}

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

.btn-ghost {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 19px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: 300ms;
  white-space: nowrap;
  font-family: var(--font-display);
}

.btn-ghost:hover {
  color: white;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

.mega-btn {
  position: relative;
  padding: 2px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--cyan), var(--secondary));
  background-size: 200% auto;
  animation: flowGradient 3000ms linear infinite;
  display: inline-block;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.mega-btn .btn-content {
  display: block;
  padding: 9px 22px;
  background: #000;
  border-radius: 7px;
  color: white;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14px;
  white-space: nowrap;
  transition: background 300ms;
}

.mega-btn:hover {
  box-shadow: 0 0 22px rgba(255,0,128,0.5);
  transform: translateY(-2px);
}

.mega-btn:hover .btn-content {
  background: transparent;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  z-index: 1010;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger-icon {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 300ms ease;
}

.mobile-menu-btn.open .hamburger-icon span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.open .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open .hamburger-icon span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 0, 20, 0.5);
  z-index: 999;
  backdrop-filter: blur(4px);
}

.nav-mobile-overlay.open {
  display: block;
}

.nav-mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 86%;
  height: 100vh;
  background: rgba(6, 1, 30, 0.97);
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  padding: 96px 24px 32px;
  gap: 8px;
  transition: right 350ms ease;
}

.nav-mobile-panel.open {
  right: 0;
}

.nav-mobile-panel .nav-link {
  font-size: 17px;
  padding: 14px 16px;
  border-radius: 12px;
  display: block;
  text-align: left;
}

.nav-mobile-panel .nav-link::after {
  display: none;
}

.nav-mobile-panel .nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 12px 0;
}

.mobile-cta-group {
  display: grid;
  gap: 12px;
}

.mobile-cta-group .btn-ghost,
.mobile-cta-group .mega-btn {
  width: 100%;
  text-align: center;
}

/* =============================
   HERO
   ============================= */
.hero-shell {
  position: relative;
  z-index: 1;
  width: 1180px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 126px 0 72px;
}

.hero-section {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: enterUp 700ms ease-out 240ms forwards;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(0,223,216,0.22);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0,223,216,0.06);
  font-weight: 700;
  font-size: 14px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0,223,216,0.12);
}

.titan-title {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 78px;
  line-height: 0.9;
  letter-spacing: -2px;
  color: white;
}

.neon-gradient {
  background: linear-gradient(90deg, var(--cyan), var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  max-width: 650px;
  margin-top: 24px;
  color: var(--text-dim);
  font-size: 19px;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  align-items: center;
}

.mega-btn-hero {
  position: relative;
  padding: 2px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--cyan), var(--secondary));
  background-size: 200% auto;
  animation: flowGradient 3000ms linear infinite;
  display: inline-block;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.mega-btn-hero .btn-content {
  display: block;
  padding: 16px 25px;
  background: #000;
  border-radius: 12px;
  color: white;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 16px;
}

.mega-btn-hero:hover {
  box-shadow: 0 0 26px rgba(255,0,128,0.5);
  transform: translateY(-2px);
}

.mega-btn-hero:hover .btn-content {
  background: transparent;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.btn-secondary-link {
  color: var(--text-dim);
  font-weight: 700;
  padding: 16px 18px;
  transition: color 200ms;
}

.btn-secondary-link:hover {
  color: white;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  color: var(--text-dim);
  font-weight: 600;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-check {
  color: var(--cyan);
}

.hero-visual {
  position: relative;
  min-width: 0;
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  animation: enterUp 750ms ease-out 320ms forwards;
}

.hero-glow-bg {
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle, rgba(0,223,216,0.12), transparent 62%);
  pointer-events: none;
}

.dashboard-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(24, 12, 44, 0.95), rgba(8, 3, 21, 0.95));
  box-shadow: var(--shadow);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.dash-dots {
  display: flex;
  gap: 7px;
  flex: 0 0 auto;
}

.dash-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}

.dd-r {
  background: #ff5f57;
}

.dd-y {
  background: #ffbd2e;
}

.dd-g {
  background: #28c840;
}

.dash-url {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: #bdb6da;
  background: rgba(0,0,0,0.22);
  font-size: 13px;
  font-weight: 700;
}

.dash-body {
  padding-bottom: 24px;
}

.preview-hero {
  display: grid;
  grid-template-columns: 1fr 168px;
  gap: 18px;
  padding: 24px;
}

.preview-hero small {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 12px;
}

.preview-hero h2 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 33px;
  line-height: 1.02;
}

.preview-hero p {
  margin-top: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  font-size: 15px;
}

.preview-hero img {
  width: 168px;
  height: 210px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}

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

.preview-grid article {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
}

.preview-grid img {
  width: 100%;
  aspect-ratio: 1.16;
  border-radius: 12px;
  object-fit: cover;
}

.preview-grid strong,
.preview-grid span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-grid strong {
  margin-top: 10px;
  font-size: 14px;
}

.preview-grid span {
  margin-top: 4px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.api-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 24px;
  padding: 13px 14px;
  border: 1px solid rgba(0,223,216,0.2);
  border-radius: 16px;
  background: rgba(0,0,0,0.23);
}

.api-bar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #cfc9ea;
  font-size: 13px;
  font-weight: 750;
}

.api-bar strong {
  color: #001113;
  background: var(--cyan);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 950;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: white;
  background: rgba(15,5,31,0.88);
  box-shadow: 0 16px 40px rgba(0,0,0,0.34);
  font-size: 13px;
  font-weight: 900;
  will-change: transform;
  animation: chipFloat 5800ms ease-in-out infinite;
}

.floating-chip span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
}

.chip-one {
  top: 7%;
  left: 176px;
}

.chip-two {
  top: 46%;
  right: -28px;
  animation-delay: -1600ms;
}

.chip-three {
  bottom: 9%;
  left: -26px;
  animation-delay: -3000ms;
}

/* =============================
   TITULOS GENERALES
   ============================= */
.section-title {
  font-size: 52px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.section-header-center {
  text-align: center;
  margin-bottom: 62px;
  width: 100%;
}

.section-subtitle {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 680px;
  margin: 15px auto 0;
  line-height: 1.6;
}

/* =============================
   CATALOGOS
   ============================= */
.catalog-section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
  background: radial-gradient(circle at center, rgba(121,40,202,0.035) 0%, transparent 68%);
}

.catalog-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.catalog-main-card,
.catalog-info-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12, 10, 28, 0.58);
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
  overflow: hidden;
}

.catalog-main-card {
  min-height: 520px;
  border-radius: 26px;
  padding: 22px;
}

.catalog-card-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,223,216,0.14), transparent 65%);
  pointer-events: none;
}

.catalog-panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
  padding: 0 4px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.catalog-panel-head span {
  color: var(--text-dim);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

.catalog-panel-head strong {
  color: #030014;
  background: var(--cyan);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.catalog-admin-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding-top: 22px;
}

.catalog-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
}

.catalog-sidebar span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.035);
  font-weight: 700;
  font-size: 14px;
}

.catalog-sidebar .is-active {
  color: white;
  border-color: rgba(255,0,128,0.36);
  background: linear-gradient(90deg, rgba(121,40,202,0.5), rgba(255,0,128,0.34));
}

.catalog-list {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.catalog-list-row {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}

.catalog-list-row.active {
  border-color: rgba(0,223,216,0.3);
  background: rgba(0,223,216,0.065);
}

.catalog-list-row img {
  width: 78px;
  height: 70px;
  border-radius: 14px;
  object-fit: cover;
}

.catalog-list-row div {
  min-width: 0;
}

.catalog-list-row strong,
.catalog-list-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-list-row strong {
  font-family: var(--font-display);
  font-size: 16px;
}

.catalog-list-row small {
  margin-top: 4px;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 13px;
}

.catalog-list-row b {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 17px;
}

.catalog-info-stack {
  display: grid;
  gap: 18px;
}

.catalog-info-card {
  border-radius: 22px;
  padding: 24px;
}

.catalog-info-card:hover {
  border-color: rgba(255,255,255,0.17);
  background: rgba(255,255,255,0.045);
  transform: translateY(-4px);
  transition: transform 250ms ease, background 250ms ease, border-color 250ms ease;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}

.info-icon.cyan {
  color: var(--cyan);
  background: rgba(0,223,216,0.12);
  border: 1px solid rgba(0,223,216,0.25);
}

.info-icon.pink {
  color: var(--secondary);
  background: rgba(255,0,128,0.12);
  border: 1px solid rgba(255,0,128,0.25);
}

.info-icon.purple {
  color: #ae4aff;
  background: rgba(121,40,202,0.14);
  border: 1px solid rgba(121,40,202,0.28);
}

.catalog-info-card h3 {
  color: white;
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
}

.catalog-info-card p {
  color: var(--text-dim);
  line-height: 1.65;
  font-size: 15px;
}

.code-chip,
.site-chip {
  margin-top: 18px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,223,216,0.18);
  color: var(--cyan);
  background: rgba(0,0,0,0.24);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-chip {
  color: white;
  border-color: rgba(255,0,128,0.2);
  background: linear-gradient(90deg, rgba(121,40,202,0.18), rgba(255,0,128,0.14));
}

.reveal-soft {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: enterUp 720ms ease-out forwards;
}

/* =============================
   BUILDER
   ============================= */
.builder-section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.builder-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.builder-editor-shell {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  background: rgba(12, 10, 28, 0.66);
  box-shadow: 0 32px 90px rgba(0,0,0,0.34);
}

.builder-topbar.premium {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.builder-path {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255,255,255,0.42);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
}

.builder-topbar button,
.builder-inspector button {
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 9px;
  color: white;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  font-family: var(--font-display);
  font-weight: 800;
  cursor: default;
  font-size: 13px;
}

.builder-workspace {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr) 255px;
  min-height: 560px;
}

.builder-files.compact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.14);
}

.builder-files strong,
.builder-inspector strong {
  margin-bottom: 10px;
  color: white;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
}

.builder-files span {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 11px;
  border-radius: 10px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 700;
}

.builder-files .file-active {
  color: white;
  background: rgba(0,223,216,0.12);
  border: 1px solid rgba(0,223,216,0.18);
}

.visual-canvas {
  position: relative;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,0,128,0.10), transparent 58%),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  min-width: 0;
}

.site-preview-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 26px;
  background: #07030d;
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}

.site-preview-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 20px;
  background: rgba(3,0,20,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-preview-nav b {
  margin-right: auto;
  font-family: var(--font-display);
  font-size: 16px;
}

.site-preview-nav span {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 800;
}

.site-preview-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 285px;
  padding: 24px;
  gap: 22px;
  align-items: center;
}

.preview-copy {
  position: relative;
  z-index: 2;
}

.preview-copy small {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.preview-copy h3 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 0.98;
}

.preview-copy p {
  margin-top: 12px;
  color: var(--text-dim);
  line-height: 1.55;
  font-size: 15px;
}

.preview-copy a {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 10px;
  color: white;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}

.site-preview-hero > img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
}

.editable-tag {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(0,223,216,0.38);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(3,0,20,0.88);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  font-size: 12px;
  font-weight: 900;
}

.tag-title {
  left: 24px;
  top: 78px;
}

.tag-image {
  right: 32px;
  bottom: 118px;
}

.site-preview-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 0 24px 24px;
}

.site-preview-products article {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
}

.site-preview-products img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
  border-radius: 14px;
}

.site-preview-products strong,
.site-preview-products span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-preview-products strong {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 15px;
}

.site-preview-products span {
  margin-top: 4px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.builder-inspector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-left: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.16);
}

.builder-inspector label {
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 800;
}

.fake-input {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #d7d2ef;
  background: rgba(255,255,255,0.045);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.image-url {
  color: var(--cyan);
}

.builder-capabilities.better {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.builder-mini-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  background: rgba(12, 10, 28, 0.54);
}

.builder-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.17);
  background: rgba(255,255,255,0.045);
  transition: transform 250ms ease, background 250ms ease, border-color 250ms ease;
}

.cap-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 13px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
}

.cap-icon.cyan {
  color: var(--cyan);
  background: rgba(0,223,216,0.12);
  border: 1px solid rgba(0,223,216,0.25);
}

.cap-icon.pink {
  color: var(--secondary);
  background: rgba(255,0,128,0.12);
  border: 1px solid rgba(255,0,128,0.25);
}

.cap-icon.purple {
  color: #ae4aff;
  background: rgba(121,40,202,0.14);
  border: 1px solid rgba(121,40,202,0.28);
}

.builder-mini-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
}

.builder-mini-card p {
  color: var(--text-dim);
  line-height: 1.62;
  font-size: 15px;
}

/* =============================
   HOSTING
   ============================= */
.hosting-section {
  position: relative;
  z-index: 1;
  padding: 104px 0;
  overflow: hidden;
}

.hosting-orbit {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 24%, rgba(0,223,216,0.12), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(255,0,128,0.11), transparent 34%),
    radial-gradient(circle at 50% 94%, rgba(121,40,202,0.15), transparent 36%);
  pointer-events: none;
  z-index: -1;
}

.hosting-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,223,216,0.24);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0,223,216,0.06);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hosting-kicker span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0,223,216,0.85);
}

.hosting-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.hosting-domain-card,
.hosting-metric-card,
.hosting-bottom-strip {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12, 10, 28, 0.62);
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
  overflow: hidden;
}

.hosting-domain-card {
  min-height: 520px;
  border-radius: 30px;
}

.domain-browser-bar {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.domain-browser-bar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255,255,255,0.48);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
}

.domain-preview {
  position: relative;
  min-height: 458px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(3,0,20,0.94), rgba(3,0,20,0.60)),
    url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1200&q=82') center/cover;
}

.domain-preview::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  right: -130px;
  bottom: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,223,216,0.18), transparent 66%);
  pointer-events: none;
}

.domain-preview > * {
  position: relative;
  z-index: 1;
}

.domain-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0,223,216,0.34);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0,223,216,0.08);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.domain-preview h3 {
  max-width: 650px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 0.96;
  letter-spacing: -1.5px;
}

.domain-preview p {
  max-width: 560px;
  margin-top: 20px;
  color: var(--text-dim);
  line-height: 1.65;
  font-size: 17px;
}

.domain-line {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  min-height: 38px;
  margin: 24px 10px 0 0;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  color: #ece8ff;
  font-size: 14px;
}

.domain-line span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0,223,216,0.6);
}

.hosting-metrics {
  display: grid;
  gap: 18px;
}

.hosting-metric-card {
  position: relative;
  min-height: 160px;
  border-radius: 24px;
  padding: 26px;
}

.hosting-metric-card::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  pointer-events: none;
}

.hosting-metric-card.cyan::after {
  background: radial-gradient(circle, rgba(0,223,216,0.18), transparent 66%);
}

.hosting-metric-card.pink::after {
  background: radial-gradient(circle, rgba(255,0,128,0.18), transparent 66%);
}

.hosting-metric-card.purple::after {
  background: radial-gradient(circle, rgba(121,40,202,0.22), transparent 66%);
}

.hosting-metric-card:hover,
.hosting-bottom-strip article:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.045);
  transition: transform 250ms ease, background 250ms ease, border-color 250ms ease;
}

.hosting-metric-card span {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.hosting-metric-card.cyan span {
  color: var(--cyan);
}

.hosting-metric-card.pink span {
  color: var(--secondary);
}

.hosting-metric-card.purple span {
  color: #ae4aff;
}

.hosting-metric-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 20px;
}

.hosting-metric-card p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin-top: 8px;
  color: var(--text-dim);
  line-height: 1.58;
  font-size: 15px;
}

.hosting-bottom-strip {
  max-width: 1200px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 24px;
}

.hosting-bottom-strip article {
  min-height: 116px;
  padding: 22px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.hosting-bottom-strip article:last-child {
  border-right: 0;
}

.hosting-bottom-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0,223,216,0.1);
  border: 1px solid rgba(0,223,216,0.22);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 950;
}

.hosting-bottom-strip strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 17px;
}

/* =============================
   PRECIOS
   ============================= */
.pricing-section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.pricing-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  background: rgba(12, 10, 28, 0.62);
  box-shadow: 0 28px 80px rgba(0,0,0,0.24);
  overflow: hidden;
}

.pricing-card::after {
  content: '';
  position: absolute;
  inset: auto 22px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.pricing-card.featured-plan {
  border-color: rgba(255,0,128,0.46);
  background: linear-gradient(180deg, rgba(35, 13, 54, 0.92), rgba(12, 10, 28, 0.78));
  box-shadow: 0 34px 100px rgba(255,0,128,0.16), 0 22px 70px rgba(0,0,0,0.28);
  transform: translateY(-14px);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #030014;
  background: var(--cyan);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
}

.plan-kicker {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 23px;
  margin-bottom: 18px;
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.price-line strong {
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 0.9;
  letter-spacing: -1.2px;
}

.price-line span {
  color: var(--text-dim);
  font-weight: 800;
  margin-bottom: 4px;
  font-size: 14px;
}

.plan-desc {
  min-height: 86px;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 20px;
  font-size: 15px;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.pricing-card li {
  position: relative;
  padding-left: 26px;
  color: #e9e5ff;
  line-height: 1.35;
  font-weight: 650;
  font-size: 15px;
}

.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0,223,216,0.45);
}

.plan-mega-btn,
.agency-mega-btn {
  display: block;
  padding: 2px;
  line-height: 1;
}

.pricing-card .plan-mega-btn,
.agency-note .agency-mega-btn {
  display: inline-block;
  width: 100%;
  min-height: 0;
  padding: 2px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--cyan), var(--secondary));
  background-size: 200% auto;
  animation: flowGradient 3000ms linear infinite;
  line-height: 0;
  vertical-align: top;
  margin-top: auto;
  text-align: center;
}

.pricing-card .plan-mega-btn .btn-content,
.agency-note .agency-mega-btn .btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 9px 22px;
  border-radius: 7px;
  background: #000;
  color: white;
  line-height: 1.15;
  font-size: 14px;
  max-width: none;
}

.agency-note {
  max-width: 1240px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  background: rgba(12, 10, 28, 0.55);
}

.agency-note span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.agency-note h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 6px;
}

.agency-note p {
  max-width: 760px;
  color: var(--text-dim);
  line-height: 1.6;
  font-size: 15px;
}

.agency-note .agency-mega-btn {
  flex: 0 0 240px;
  width: auto;
}

/* =============================
   FOOTER
   ============================= */
.container-fw {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer {
  background: #02000a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 80px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 350px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
  text-decoration: none;
}

.social-btn img {
  width: 24px;
  height: 24px;
  transition: transform 300ms ease;
}

.social-btn.tiktok img {
  background: white;
  border-radius: 6px;
  padding: 2px;
}

.social-btn.facebook:hover {
  background: rgba(24, 119, 242, 0.1);
  border-color: #1877F2;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.1);
  border-color: #E1306C;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.social-btn.tiktok:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: #00f2fe;
  transform: translateY(-4px);
  box-shadow: -4px 8px 15px rgba(0, 242, 254, 0.2), 4px 8px 15px rgba(255, 0, 80, 0.2);
}

.social-btn.youtube:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: #FF0000;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.social-btn:hover img {
  transform: scale(1.15);
}

.footer-links-col h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 15px;
  transition: color 200ms, transform 200ms;
}

.footer-links-col a:hover {
  color: var(--cyan);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  text-align: center;
  color: rgba(136, 146, 176, 0.6);
  font-size: 14px;
}

/* =============================
   TABLET
   ============================= */
@media (max-width: 1120px) {
  .navbar {
    padding: 0 24px;
  }

  .nav-center,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-shell,
  .catalog-section,
  .builder-section,
  .hosting-section,
  .pricing-section {
    max-width: 100%;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 44px;
    text-align: center;
  }

  .hero-copy,
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    max-width: 720px;
    margin: 0 auto;
  }

  .titan-title {
    font-size: 68px;
  }

  .section-title {
    font-size: 44px;
  }

  .catalog-system-grid,
  .builder-showcase,
  .hosting-grid,
  .pricing-grid,
  .agency-note,
  .hosting-bottom-strip {
    width: calc(100% - 40px);
    max-width: 100%;
  }

  .catalog-system-grid,
  .hosting-grid {
    grid-template-columns: 1fr;
  }

  .builder-workspace {
    grid-template-columns: 168px 1fr;
  }

  .builder-inspector {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    align-items: end;
  }

  .builder-inspector strong {
    grid-column: 1 / -1;
  }

  .builder-capabilities.better {
    grid-template-columns: 1fr;
  }

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

  .pricing-card.featured-plan {
    transform: none;
  }

  .footer-grid {
    width: calc(100% - 40px);
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* =============================
   MOBILE
   ============================= */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .navbar {
    height: 70px;
    padding: 0 16px;
  }

  .logo-container {
    font-size: 16px;
    max-width: 220px;
    overflow: hidden;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 15px;
  }

  .nav-mobile-panel {
    width: 300px;
    max-width: 86%;
    padding: 90px 20px 28px;
  }

  .hero-shell {
    width: calc(100% - 28px);
    max-width: 100%;
    padding: 108px 0 56px;
  }

  .hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .pill-badge {
    font-size: 12px;
    padding: 8px 12px;
  }

  .titan-title {
    margin-top: 18px;
    font-size: 46px;
    line-height: 0.96;
    letter-spacing: -1px;
  }

  .hero-desc {
    max-width: 100%;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.62;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
    width: 100%;
  }

  .mega-btn-hero,
  .btn-secondary-link {
    width: 100%;
    text-align: center;
  }

  .mega-btn-hero .btn-content {
    padding: 15px 18px;
    font-size: 15px;
  }

  .trust-row {
    display: grid;
    gap: 10px;
    justify-content: center;
    margin-top: 22px;
    font-size: 14px;
  }

  .trust-item {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
  }

  .dashboard-card {
    border-radius: 22px;
  }

  .dash-header {
    min-height: 54px;
    padding: 0 12px;
    gap: 10px;
  }

  .dash-dots span {
    width: 9px;
    height: 9px;
  }

  .dash-url {
    font-size: 11px;
    padding: 9px 10px;
  }

  .preview-hero {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
    text-align: left;
  }

  .preview-hero h2 {
    font-size: 27px;
  }

  .preview-hero p {
    font-size: 14px;
  }

  .preview-hero img {
    width: 100%;
    height: 210px;
    border-radius: 18px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .api-bar {
    margin: 0 18px;
    padding: 12px;
  }

  .api-bar span {
    font-size: 12px;
  }

  .floating-chip {
    display: none;
  }

  .section-header-center {
    margin-bottom: 40px;
    padding: 0;
  }

  .section-title {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-subtitle {
    font-size: 15px;
    line-height: 1.62;
    max-width: 100%;
  }

  .catalog-section,
  .builder-section,
  .hosting-section,
  .pricing-section {
    padding: 72px 14px;
  }

  .catalog-system-grid,
  .builder-showcase,
  .hosting-grid,
  .pricing-grid,
  .agency-note,
  .hosting-bottom-strip {
    width: 100%;
    max-width: 100%;
  }

  .catalog-system-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-main-card,
  .catalog-info-card {
    border-radius: 20px;
    padding: 18px;
  }

  .catalog-main-card {
    min-height: auto;
  }

  .catalog-admin-preview {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog-sidebar {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .catalog-sidebar span {
    justify-content: center;
    min-height: 38px;
    padding: 0 6px;
    font-size: 12px;
    text-align: center;
  }

  .catalog-list-row {
    grid-template-columns: 64px 1fr;
    gap: 12px;
    padding: 10px;
  }

  .catalog-list-row img {
    width: 64px;
    height: 60px;
  }

  .catalog-list-row b {
    grid-column: 2;
    font-size: 15px;
  }

  .catalog-info-card {
    text-align: center;
  }

  .catalog-info-card h3 {
    font-size: 19px;
  }

  .catalog-info-card p {
    font-size: 14px;
  }

  .code-chip,
  .site-chip {
    font-size: 12px;
    text-align: center;
  }

  .builder-editor-shell,
  .builder-mini-card {
    border-radius: 20px;
  }

  .builder-topbar.premium {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 14px;
  }

  .builder-path {
    font-size: 11px;
  }

  .builder-topbar button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .builder-workspace {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .builder-files.compact {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .builder-files strong {
    grid-column: 1 / -1;
    text-align: center;
  }

  .builder-files span {
    justify-content: center;
    text-align: center;
  }

  .visual-canvas {
    padding: 12px;
  }

  .site-preview-card {
    min-height: auto;
    border-radius: 20px;
  }

  .site-preview-nav {
    min-height: 54px;
    padding: 0 14px;
    gap: 10px;
  }

  .site-preview-nav span {
    display: none;
  }

  .site-preview-hero {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 16px;
    text-align: center;
  }

  .preview-copy h3 {
    font-size: 31px;
  }

  .preview-copy p {
    font-size: 14px;
  }

  .preview-copy a {
    width: 100%;
    justify-content: center;
  }

  .site-preview-hero > img {
    height: 210px;
  }

  .site-preview-products {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .builder-inspector {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tag-title,
  .tag-image {
    display: none;
  }

  .builder-capabilities.better {
    grid-template-columns: 1fr;
  }

  .builder-mini-card {
    text-align: center;
    padding: 22px;
  }

  .hosting-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hosting-domain-card,
  .hosting-metric-card,
  .hosting-bottom-strip {
    border-radius: 20px;
  }

  .hosting-domain-card {
    min-height: auto;
  }

  .domain-browser-bar {
    min-height: 56px;
    padding: 0 12px;
    gap: 10px;
  }

  .domain-browser-bar span {
    font-size: 11px;
  }

  .domain-preview {
    min-height: 430px;
    padding: 26px 18px;
    text-align: center;
    align-items: center;
  }

  .domain-preview h3 {
    font-size: 36px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .domain-preview p {
    font-size: 15px;
    line-height: 1.62;
  }

  .domain-line {
    margin: 14px auto 0;
    font-size: 13px;
  }

  .hosting-metric-card {
    min-height: auto;
    padding: 24px 18px;
    text-align: center;
  }

  .hosting-metric-card span {
    font-size: 46px;
  }

  .hosting-metric-card strong {
    font-size: 19px;
  }

  .hosting-metric-card p {
    max-width: 100%;
    font-size: 14px;
  }

  .hosting-bottom-strip {
    grid-template-columns: 1fr;
  }

  .hosting-bottom-strip article {
    min-height: 105px;
    text-align: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .hosting-bottom-strip article:last-child {
    border-bottom: 0;
  }

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

  .pricing-card,
  .agency-note {
    border-radius: 20px;
  }

  .pricing-card {
    min-height: auto;
    padding: 24px 20px;
    text-align: center;
  }

  .popular-badge {
    position: static;
    width: fit-content;
    margin: 0 auto 14px;
  }

  .price-line {
    justify-content: center;
  }

  .price-line strong {
    font-size: 46px;
  }

  .plan-desc {
    min-height: auto;
    font-size: 14px;
  }

  .pricing-card ul {
    text-align: left;
  }

  .pricing-card li {
    font-size: 14px;
  }

  .agency-note {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .agency-note h3 {
    font-size: 24px;
  }

  .agency-note p {
    font-size: 14px;
  }

  .agency-note .agency-mega-btn {
    width: 100%;
    flex: 0 0 auto;
  }

  .site-footer {
    padding: 64px 14px 0;
  }

  .footer-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
    margin-bottom: 44px;
  }

  .footer-desc {
    margin: 0 auto 28px;
    font-size: 14px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links-col h4 {
    font-size: 17px;
  }

  .footer-links-col a {
    font-size: 14px;
  }

  .footer-links-col a:hover {
    transform: none;
    color: var(--cyan);
  }

  .footer-bottom {
    padding: 22px 0;
    font-size: 13px;
  }
}

/* =============================
   MOBILE CHICO
   ============================= */
@media (max-width: 420px) {
  .titan-title {
    font-size: 30px;
  }

  .section-title {
    font-size: 26px;
  }

  .hero-desc,
  .section-subtitle {
    font-size: 14px;
  }

  .preview-hero h2 {
    font-size: 24px;
  }

  .preview-copy h3 {
    font-size: 28px;
  }

  .domain-preview h3 {
    font-size: 32px;
  }

  .hosting-metric-card span {
    font-size: 42px;
  }

  .price-line strong {
    font-size: 42px;
  }
}

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

/* =============================
   AJUSTE RESTAURANTE DEMO HERO
   2 PRODUCTOS POR FILA
   ============================= */

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 24px 24px;
}

.preview-grid article {
  min-width: 0;
  padding: 10px;
  border-radius: 16px;
}

.preview-grid img {
  width: 100%;
  height: 95px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 12px;
}

.preview-grid strong {
  display: block;
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.25;
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
}

.preview-grid span {
  display: block;
  margin-top: 4px;
  color: var(--cyan);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
}

/* Ajuste para que el demo no se haga enorme */
.dashboard-card {
  max-width: 540px;
  margin-left: auto;
}

.preview-hero {
  grid-template-columns: 1fr 145px;
  gap: 16px;
  padding: 22px;
}

.preview-hero img {
  width: 145px;
  height: 175px;
  border-radius: 18px;
}

.preview-hero h2 {
  font-size: 29px;
}

.preview-hero p {
  font-size: 14px;
}

/* =============================
   MOVIL RESTAURANTE DEMO
   ============================= */
@media (max-width: 760px) {
  .dashboard-card {
    max-width: 100%;
    margin: 0 auto;
  }

  .preview-hero {
    grid-template-columns: 1fr;
    padding: 18px;
    text-align: center;
  }

  .preview-hero img {
    width: 100%;
    height: 180px;
    border-radius: 16px;
  }

  .preview-hero h2 {
    font-size: 25px;
    line-height: 1.05;
  }

  .preview-hero p {
    font-size: 14px;
  }

  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 18px 18px;
  }

  .preview-grid article {
    padding: 9px;
    border-radius: 15px;
  }

  .preview-grid img {
    height: 82px;
    border-radius: 11px;
  }

  .preview-grid strong {
    font-size: 12px;
    line-height: 1.22;
    margin-top: 8px;
  }

  .preview-grid span {
    font-size: 12px;
  }

  .api-bar {
    margin: 0 18px;
  }
}

@media (max-width: 420px) {
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .preview-grid img {
    height: 74px;
  }

  .preview-grid strong {
    font-size: 11px;
  }

  .preview-grid span {
    font-size: 11px;
  }
}