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

:root {
  --bg-1: #010a2c;
  --bg-2: #0a0f2c;
  --accent-1: #00d4ff;
  --accent-2: #0072ff;
  --card: rgba(8, 17, 50, 0.7);
  --line: rgba(107, 196, 255, 0.25);
  --text: #f6fbff;
  --muted: #b8cee9;
  --ok: #56f3cb;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(0, 212, 255, 0.22) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 84% 14%,
      rgba(0, 114, 255, 0.2) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 78%,
      rgba(0, 212, 255, 0.15) 0%,
      transparent 35%
    ),
    linear-gradient(130deg, var(--bg-1) 0%, var(--bg-2) 48%, #07163a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.28;
  animation: gridMove 20s linear infinite;
}

.bg-icons {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-icons span {
  position: absolute;
  color: rgba(182, 236, 255, 0.06);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.08);
  animation: floatIcon 20s ease-in-out infinite;
}

.bg-icons span:nth-child(1) {
  display: none;
}

.bg-icons span:nth-child(n + 2) {
  opacity: 0.1;
}

.bg-icons span:nth-child(1) {
  left: -9999px;
  top: -9999px;
}

.bg-icons span:nth-child(2) {
  left: 74%;
  top: 2%;
  font-size: 2.4rem;
  animation-duration: 8s;
  animation-delay: -2s;
}

.bg-icons span:nth-child(3) {
  left: 90%;
  top: 16%;
  font-size: 2.2rem;
  animation-duration: 9s;
  animation-delay: -5s;
}

.bg-icons span:nth-child(4) {
  left: 12%;
  top: 74%;
  font-size: 1.45rem;
  animation-duration: 18s;
  animation-delay: -3s;
}

.bg-icons span:nth-child(5) {
  left: 30%;
  top: 20%;
  font-size: 1.4rem;
  animation-duration: 15s;
  animation-delay: -7s;
}

.bg-icons span:nth-child(6) {
  left: 10%;
  top: 58%;
  font-size: 1.35rem;
  animation-duration: 16s;
  animation-delay: -4s;
}

.bg-icons span:nth-child(7) {
  left: 52%;
  top: 12%;
  font-size: 1.4rem;
  animation-duration: 12s;
  animation-delay: -6s;
}

.bg-icons span:nth-child(8) {
  left: 22%;
  top: 82%;
  font-size: 1.4rem;
  animation-duration: 19s;
  animation-delay: -1s;
}

@keyframes gridMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(46px);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.28;
  }
  50% {
    transform: translateY(-16px) rotate(4deg);
    opacity: 0.62;
  }
}

@keyframes floatIconFocus {
  0%,
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0.72;
  }
  50% {
    transform: translateY(-24px) scale(1.09) rotate(7deg);
    opacity: 1;
  }
}

@keyframes iconOrbitPulse {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.95;
  }
  25% {
    transform: translate(-8px, 6px) scale(1.05) rotate(-6deg);
    opacity: 1;
  }
  50% {
    transform: translate(3px, 14px) scale(1.1) rotate(5deg);
    opacity: 1;
  }
  75% {
    transform: translate(10px, 5px) scale(1.04) rotate(-4deg);
    opacity: 1;
  }
}

.page-wrap {
  min-height: 100dvh;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 28px;
}

.post-canvas {
  width: min(100%, 1100px);
  background: linear-gradient(
    145deg,
    rgba(14, 27, 73, 0.82) 0%,
    rgba(5, 14, 42, 0.9) 100%
  );
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  box-shadow:
    0 22px 60px rgba(0, 8, 30, 0.5),
    0 0 40px rgba(0, 212, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.post-canvas::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  top: -120px;
  right: -110px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.34) 0%,
    transparent 70%
  );
  filter: blur(8px);
  pointer-events: none;
}

.hero-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.micro-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #98ecff;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #dcf6ff 0%, #8ddcff 45%, #5ab2ff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    titleSheen 6.2s linear infinite,
    titleWave 4.4s cubic-bezier(0.42, 0, 0.25, 1) infinite;
}

@keyframes titleSheen {
  0%,
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 0 rgba(0, 212, 255, 0));
  }
  50% {
    background-position: 130% 50%;
    filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.5));
  }
}

@keyframes titleWave {
  0%,
  100% {
    transform: translateY(0) skewX(0deg);
  }
  50% {
    transform: translateY(-2px) skewX(-2deg);
  }
}

.hero-subtitle {
  margin-top: 12px;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.12rem);
}

.hero-kpis {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-kpis span {
  font-size: 0.74rem;
  font-weight: 600;
  color: #d4f4ff;
  letter-spacing: 0.01em;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(128, 225, 255, 0.35);
  padding: 8px 10px;
  border-radius: 999px;
}

.brand-logo {
  width: 146px;
  height: 146px;
  object-fit: contain;
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.99),
    rgba(228, 242, 255, 0.97)
  );
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.32),
    0 0 0 3px rgba(92, 182, 255, 0.22),
    0 0 0 8px rgba(15, 23, 42, 0.22);
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.grid-main {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.glass-card,
.plan-card {
  background: linear-gradient(155deg, #ffffff 0%, #f3f9ff 100%);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 22px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

.glass-card::before,
.plan-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #2563eb 55%, transparent 88%);
}

h2 {
  font-size: 1.02rem;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  color: #1d4ed8;
}

.glass-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.glass-card li,
.check-grid p,
.problem-card p,
.plan-card p {
  color: #334155;
  line-height: 1.45;
  font-size: 0.92rem;
}

.post-footer p {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.problem-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.problem-stack {
  display: grid;
  gap: 12px;
}

.problem-stack p {
  margin: 0;
}

.problem-lead {
  color: #0f172a;
  font-weight: 600;
}

.problem-types {
  display: grid;
  gap: 10px;
}

.problem-type {
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.24);
  border-radius: 12px;
  padding: 10px 12px;
}

.problem-proof {
  padding: 11px 12px;
  border-left: 3px solid #2563eb;
  background: #eff6ff;
  border-radius: 8px;
  font-style: italic;
  color: #1e3a8a;
}

.problem-flow {
  display: grid;
  gap: 8px;
}

.problem-final {
  color: #0f172a;
  font-weight: 600;
}

.result-chip {
  display: inline-block;
  margin-top: 12px;
  color: #001f3a;
  background: linear-gradient(90deg, #78efff 0%, #5cabff 100%);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
}

.full-width {
  margin-top: 16px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.check-grid p {
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 14px;
  padding: 10px;
  background: #ffffff;
}

.check-grid p::first-letter {
  color: var(--ok);
}

.plans-grid {
  margin-top: 16px;
  grid-template-columns: 1fr 1fr;
}

.portfolio-example {
  margin-top: 16px;
}

.portfolio-intro {
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.5;
}

.portfolio-points {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.portfolio-points p {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(59, 130, 246, 0.24);
  border-radius: 10px;
  background: #ffffff;
  color: #334155;
}

.cta-portfolio {
  margin-top: 12px;
  display: inline-flex;
  color: #ffffff;
  border-color: rgba(37, 99, 235, 0.45);
  background: linear-gradient(120deg, #2563eb 0%, #0ea5e9 100%);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
}

.cta-portfolio:hover {
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.35);
}

.invest-box {
  margin-top: 16px;
}

.invest-controls {
  display: grid;
  gap: 8px;
  max-width: 420px;
}

.invest-controls label {
  font-size: 0.86rem;
  color: #1e3a8a;
  font-weight: 600;
}

.invest-controls select {
  width: 100%;
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: #ffffff;
  color: #0f172a;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
}

.plan-delivery {
  margin-top: 12px;
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.24);
  border-radius: 12px;
  padding: 12px;
}

.plan-delivery h3 {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #1d4ed8;
}

.plan-delivery ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.plan-delivery li {
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.4;
}

.invest-preview {
  margin-top: 12px;
  background: #eff6ff;
  border: 1px solid rgba(59, 130, 246, 0.24);
  border-radius: 10px;
  padding: 10px 12px;
  color: #1e3a8a;
}

.invest-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.plan-card h3 {
  color: #1d4ed8;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.price {
  color: #0f172a;
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-card.featured {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.25) inset,
    0 14px 30px rgba(37, 99, 235, 0.2);
  background: linear-gradient(150deg, #ffffff 0%, #e8f2ff 100%);
}

.plan-tag {
  margin-top: 10px;
  color: #1e40af;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}

.post-footer {
  margin-top: 16px;
  border-top: 1px solid rgba(150, 220, 255, 0.22);
  padding-top: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.post-footer p {
  max-width: 760px;
}

.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.94rem;
}

.cta {
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
  color: #042243;
  background: linear-gradient(90deg, #76f0ff 0%, #58a7ff 100%);
  border-radius: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(219, 248, 255, 0.7);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cta-subinfo {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: normal;
  opacity: 0.92;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76, 180, 255, 0.35);
}

.cta-secondary {
  color: #d7f4ff;
  background: transparent;
  border-color: rgba(145, 223, 255, 0.45);
}

.cta-secondary:hover {
  box-shadow: 0 8px 24px rgba(76, 180, 255, 0.2);
}

.cta-linkedin {
  color: #ffffff;
  border-color: rgba(147, 211, 255, 0.45);
  background: linear-gradient(120deg, #0a66c2 0%, #1279df 55%, #1d9bf0 100%);
  box-shadow: 0 10px 24px rgba(10, 102, 194, 0.35);
}

.cta-linkedin:hover {
  box-shadow: 0 14px 30px rgba(29, 155, 240, 0.35);
}

.cta-invest-linkedin {
  color: #ffffff;
  border-color: rgba(10, 102, 194, 0.45);
  background: linear-gradient(120deg, #0a66c2 0%, #0f75db 55%, #1d9bf0 100%);
  box-shadow: 0 12px 26px rgba(10, 102, 194, 0.35);
  animation: linkedinPulse 2.4s ease-in-out infinite;
}

.cta-invest-linkedin:hover {
  box-shadow: 0 16px 34px rgba(29, 155, 240, 0.4);
}

@keyframes linkedinPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}

.cta-mentoria-highlight {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(120deg, #0ea5e9 0%, #2563eb 48%, #10b981 100%);
  background-size: 200% 200%;
  animation: mentoriaGlow 3s ease infinite;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.cta-mentoria-highlight:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.3);
}

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

@media (max-width: 980px) {
  .page-wrap {
    padding: 12px;
  }

  .post-canvas {
    border-radius: 22px;
    padding: 18px;
  }

  .grid-main,
  .plans-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .hero-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-kpis span {
    width: 100%;
  }

  .brand-logo {
    width: 108px;
    height: 108px;
  }

  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-actions {
    width: 100%;
  }

  .invest-controls {
    max-width: 100%;
  }

  .invest-actions {
    width: 100%;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .bg-icons span {
    font-size: 1.2rem !important;
  }

  .bg-icons span:nth-child(1) {
    display: none;
  }
}
