:root {
  --bg: #080c14;
  --bg-2: #0b1018;
  --text: #e8eef6;
  --muted: #8b9cb3;
  --accent: #2f9cff;
  --accent-2: #1f8aeb;
  --line: #1e2a3c;
  --surface: #0e1522;
  --max: 72rem;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--text);
  background: linear-gradient(180deg, #090e16 0%, var(--bg) 40%, #070b12 100%);
  font-family: "Sora", "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.atmosphere-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 156, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 156, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, #000 20%, transparent 75%);
  opacity: 0.9;
  animation: grid-drift 28s linear infinite;
}

.atmosphere-fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 18% 0%, rgba(47, 156, 255, 0.07), transparent 60%),
    radial-gradient(ellipse 45% 35% at 88% 8%, rgba(30, 90, 140, 0.06), transparent 55%),
    linear-gradient(180deg, transparent 60%, rgba(7, 11, 18, 0.85) 100%);
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 56px 56px, 56px 56px;
  }
}

.top,
main,
.foot {
  position: relative;
  z-index: 1;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.nav-ghost {
  color: var(--text) !important;
  padding: 0.4rem 0.7rem;
}

.nav-cta {
  color: #041018 !important;
  background: var(--accent);
  padding: 0.45rem 0.9rem;
  border-radius: 0.4rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent-2);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 8vh, 5rem) 1.5rem 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: min(78dvh, 40rem);
}

.hero-logo {
  display: block;
  width: min(280px, 72vw);
  height: auto;
  margin: 0 0 1.35rem;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.85s ease forwards;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text);
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.85s ease 0.1s forwards;
}

.lede {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  color: var(--muted);
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.85s ease 0.2s forwards;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.85rem;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.85s ease 0.3s forwards;
}

.hero-visual {
  margin: 0;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.95s ease 0.18s forwards;
}

.panel-chrome {
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.42);
}

.panel-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: #0c121c;
}

.panel-bar .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #334155;
}

.panel-bar .dot:first-child {
  background: #ef4444;
}
.panel-bar .dot:nth-child(2) {
  background: #eab308;
}
.panel-bar .dot:nth-child(3) {
  background: #22c55e;
}

.panel-bar-label {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-body {
  padding: 1.1rem 1.15rem 1.25rem;
  position: relative;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.stat {
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--line);
  background: #0c121c;
}

.stat-k {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.stat-v {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.feed {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0;
  transform: translateX(10px);
  animation: slide-in 0.55s ease forwards;
}

.feed-item:nth-child(1) {
  animation-delay: 0.55s;
}
.feed-item:nth-child(2) {
  animation-delay: 0.75s;
}
.feed-item:nth-child(3) {
  animation-delay: 0.95s;
}

.feed-tag {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border: 1px solid var(--line);
}

.feed-tag.ok {
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.35);
}
.feed-tag.warn {
  color: #fcd34d;
  border-color: rgba(234, 179, 8, 0.35);
}
.feed-tag.info {
  color: #93c5fd;
  border-color: rgba(47, 156, 255, 0.35);
}

.pulse-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 40% 100%;
  background-repeat: no-repeat;
  animation: sweep 3.2s ease-in-out infinite;
}

@keyframes sweep {
  0% {
    background-position: -40% 0;
  }
  100% {
    background-position: 140% 0;
  }
}

@keyframes slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn.primary {
  background: var(--accent);
  color: #041018;
}

.btn.primary:hover {
  background: var(--accent-2);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.btn.ghost:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}

.band,
.pricing,
.close {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.25rem 1.5rem;
  border-top: 1px solid var(--line);
}

.close {
  padding-bottom: 5rem;
}

h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-lede {
  margin: 0.75rem 0 0;
  max-width: 38rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Feature tabs —— */
.feature-shell {
  margin-top: 2.25rem;
}

.feature-tabs {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.15rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.feature-tab {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.feature-tab:hover {
  color: var(--text);
}

.feature-tab.is-active {
  color: var(--accent);
}

.feature-tab-ink {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, width;
}

.feature-panels {
  position: relative;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "stack";
}

.feature-panel {
  grid-area: stack;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.75rem;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.feature-panel.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  animation: panel-in 0.4s ease both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-copy h3 {
  margin: 0 0 0.55rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.feature-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 28rem;
}

.feature-bullets {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.feature-bullets li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--text);
}

.feature-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
}

.feature-preview {
  border: 1px solid var(--line);
  background: #0c121c;
  min-height: 14rem;
  padding: 1rem;
}

.preview-crm {
  display: grid;
  gap: 0.5rem;
  align-content: center;
}

.crm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--surface);
  opacity: 0;
  transform: translateY(8px);
  animation: fade-up 0.45s ease forwards;
}

.feature-panel.is-active .crm-row:nth-child(1) {
  animation-delay: 0.05s;
}
.feature-panel.is-active .crm-row:nth-child(2) {
  animation-delay: 0.12s;
}
.feature-panel.is-active .crm-row:nth-child(3) {
  animation-delay: 0.2s;
}
.feature-panel.is-active .crm-row:nth-child(4) {
  animation-delay: 0.28s;
}

.crm-row.is-hl {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}

.crm-row strong {
  display: block;
  font-size: 0.9rem;
}

.crm-row span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.crm-row em.st {
  flex-shrink: 0;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.4rem;
  border: 1px solid var(--line);
}

.st.lead {
  color: #93c5fd;
  border-color: rgba(47, 156, 255, 0.35);
}
.st.install {
  color: #fcd34d;
  border-color: rgba(234, 179, 8, 0.35);
}
.st.ok {
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.35);
}
.st.warn {
  color: #fdba74;
  border-color: rgba(249, 115, 22, 0.35);
}

.preview-olt {
  display: grid;
  place-items: center;
  gap: 0.75rem;
  text-align: center;
}

.olt-node {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  font-weight: 600;
  font-size: 0.85rem;
  animation: pulse-soft 2.4s ease-in-out infinite;
}

.olt-links {
  display: flex;
  gap: 1.5rem;
  height: 2rem;
}

.olt-links span {
  width: 1px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: grow-down 0.8s ease forwards;
}

.olt-leafs {
  display: flex;
  gap: 0.75rem;
}

.olt-leafs span {
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0;
  animation: fade-up 0.5s ease forwards;
}

.olt-leafs span:nth-child(1) {
  animation-delay: 0.15s;
}
.olt-leafs span:nth-child(2) {
  animation-delay: 0.28s;
}
.olt-leafs span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse-soft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 156, 255, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(47, 156, 255, 0.08);
  }
}

@keyframes grow-down {
  from {
    transform: scaleY(0);
    transform-origin: top;
  }
  to {
    transform: scaleY(1);
  }
}

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

.preview-mapa {
  padding: 0;
  overflow: hidden;
}

.map-chrome {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.map-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.45rem;
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid var(--line);
  background: #0a1018;
  font-size: 0.65rem;
}

.map-sep {
  display: inline-block;
  width: 1px;
  height: 0.85rem;
  background: var(--line);
  margin: 0 0.1rem;
}

.map-layer {
  color: #6b7c94;
  padding: 0.15rem 0.3rem;
  border: 1px solid transparent;
}

.map-layer.is-on {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-color: color-mix(in srgb, var(--accent) 28%, transparent);
}

.map-layer.is-crm.is-on {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.28);
}

.map-art {
  width: 100%;
  height: auto;
  display: block;
}

.feature-panel.is-active .map-anim.fiber {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: draw 1.8s ease forwards 0.15s;
}

.feature-panel.is-active .map-anim.drop {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw 1.4s ease forwards 0.45s;
}

.feature-panel.is-active .map-anim.zone,
.feature-panel.is-active .map-anim.node,
.feature-panel.is-active .map-anim.pole,
.feature-panel.is-active .map-anim.mufa,
.feature-panel.is-active .map-anim.nap,
.feature-panel.is-active .map-anim.pin {
  opacity: 0;
  animation: fade-in 0.5s ease forwards;
}

.feature-panel.is-active .map-anim.zone {
  animation-delay: 0.2s;
}
.feature-panel.is-active .map-anim.node {
  animation-delay: 0.7s;
}
.feature-panel.is-active .map-anim.pole {
  animation-delay: 0.8s;
}
.feature-panel.is-active .map-anim.mufa {
  animation-delay: 0.9s;
}
.feature-panel.is-active .map-anim.nap {
  animation-delay: 1s;
}
.feature-panel.is-active .map-anim.pin {
  animation-delay: 1.1s;
}
.feature-panel.is-active .map-anim.pin.onu {
  animation-delay: 1.2s;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.preview-billing {
  display: grid;
  gap: 0.75rem;
  align-content: center;
}

.bill-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  animation: fade-up 0.5s ease both;
}

.bill-card:nth-child(2) {
  animation-delay: 0.12s;
}

.bill-card.dim {
  opacity: 0.7;
}

.bill-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

.bill-card strong {
  grid-row: span 2;
  align-self: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.bill-card em {
  font-style: normal;
  font-size: 0.75rem;
  color: #fcd34d;
}

.bill-card em.paid {
  color: #86efac;
}

.preview-support {
  display: grid;
  gap: 0.55rem;
  align-content: center;
}

.ticket {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0;
  animation: slide-in 0.45s ease forwards;
}

.ticket:nth-child(1) {
  animation-delay: 0.05s;
}
.ticket:nth-child(2) {
  animation-delay: 0.18s;
}
.ticket:nth-child(3) {
  animation-delay: 0.3s;
}

.prio {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.35);
  padding: 0.12rem 0.35rem;
}

.prio.mid {
  color: #fcd34d;
  border-color: rgba(234, 179, 8, 0.35);
}

.prio.low {
  color: #93c5fd;
  border-color: rgba(47, 156, 255, 0.35);
}

.preview-campo {
  display: grid;
  place-items: center;
}

.phone {
  width: 7.5rem;
  height: 13rem;
  border: 2px solid var(--line);
  border-radius: 1rem;
  padding: 0.55rem;
  background: #080c14;
  animation: float-y 3.5s ease-in-out infinite;
}

.phone-screen {
  height: 100%;
  border: 1px solid var(--line);
  background: #0e1522;
  position: relative;
  padding: 1.25rem 0.65rem;
}

.gps-dot {
  position: absolute;
  top: 42%;
  left: 48%;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(47, 156, 255, 0.45);
  animation: gps-ping 1.8s ease-out infinite;
}

.phone-line {
  display: block;
  height: 0.45rem;
  margin-top: 0.55rem;
  background: #1a2436;
}

.phone-line.short {
  width: 55%;
}

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

@keyframes gps-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 156, 255, 0.45);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(47, 156, 255, 0);
  }
}

.ops-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.plans-status {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.plans {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.35rem 1.15rem 1.2rem;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.plan:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  transform: translateY(-4px);
  background: #101826;
}

.plan.is-free {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent);
}

.plan-ribbon {
  position: absolute;
  top: 1.05rem;
  right: -2.1rem;
  width: 7.5rem;
  padding: 0.28rem 0;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #041018;
  background: var(--accent);
  transform: rotate(45deg);
  transform-origin: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.plan-name {
  margin: 0;
  font-weight: 600;
  font-size: 1.02rem;
  padding-right: 1.5rem;
}

.plan-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.plan-price {
  margin: 0.35rem 0 0.15rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.plan-price.is-free {
  color: var(--accent);
}

.plan-price small {
  display: block;
  margin-top: 0.25rem;
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.plan-perks {
  list-style: none;
  margin: 0.35rem 0 0.75rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  flex: 1;
}

.plan-perks li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.plan-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--accent);
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.plan-cta:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  color: var(--accent);
}

.plan-cta.is-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #041018;
}

.plan-cta.is-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #041018;
}

.plan.skeleton {
  min-height: 16rem;
  opacity: 0.5;
  gap: 0.75rem;
}

.plan.skeleton span {
  display: block;
  height: 0.7rem;
  background: var(--line);
}

.plan.skeleton span:nth-child(1) {
  width: 55%;
}
.plan.skeleton span:nth-child(2) {
  width: 40%;
  margin-top: 1rem;
  height: 1.4rem;
}
.plan.skeleton span:nth-child(3) {
  width: 100%;
  margin-top: auto;
  height: 2.2rem;
}

.block-explain {
  margin-top: 2.25rem;
  width: 100%;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, transparent);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.35rem 1.5rem;
  align-items: start;
}

.block-explain .ops-kicker {
  grid-column: 1;
}

.block-title {
  margin: 0;
  grid-column: 1;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.block-explain #block-copy {
  margin: 0.35rem 0 0;
  grid-column: 1;
  color: var(--muted);
  max-width: none;
}

.block-meta {
  margin: 0;
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  padding: 0.65rem 0.9rem;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.pricing-cta {
  margin-top: 2rem;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.foot-logo {
  height: 22px;
  width: auto;
  opacity: 0.85;
}

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

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

@media (max-width: 1100px) {
  .plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    order: -1;
  }

  .feature-panel.is-active,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-panels {
    min-height: 0;
  }

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

  .block-explain {
    grid-template-columns: 1fr;
  }

  .block-meta {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 0.5rem;
  }
}

@media (max-width: 720px) {
  .nav a:not(.nav-cta):not(.nav-ghost) {
    display: none;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }
}

/* —— Registro (landing) —— */
.page-register .register-main {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 40rem);
  margin: 0 auto;
  padding: 2rem 0 3.5rem;
}

.register-shell {
  display: grid;
  gap: 1.75rem;
}

.register-intro h1 {
  margin: 0.35rem 0 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.register-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.register-form {
  display: grid;
  gap: 1.25rem;
  padding: 1.35rem 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.register-block {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.9rem;
}

.register-block legend {
  padding: 0;
  margin-bottom: 0.15rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field span {
  font-size: 0.82rem;
  color: var(--muted);
}

.field input,
.field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--bg-2);
  color: var(--text);
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field-hint {
  margin: -0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.register-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  padding-top: 0.35rem;
}

.register-error {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid color-mix(in srgb, #ff6b6b 45%, var(--line));
  border-radius: 0.65rem;
  background: color-mix(in srgb, #ff6b6b 12%, transparent);
  color: #ffb4b4;
  font-size: 0.88rem;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.register-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.register-foot a {
  color: var(--accent);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .field-row {
    grid-template-columns: 1fr;
  }

  .register-actions {
    flex-direction: column-reverse;
  }

  .register-actions .btn {
    width: 100%;
  }
}
