:root {
  --bg: #07070c;
  --bg-soft: #11111b;
  --surface: rgba(20, 20, 31, 0.72);
  --surface-strong: rgba(28, 28, 44, 0.88);
  --border: rgba(180, 120, 255, 0.2);
  --text: #f7f2ff;
  --muted: #b9adc9;
  --accent: #b146ff;
  --accent-2: #6e7dff;
  --accent-3: #f267c3;
  --success: #7bf7c2;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(98, 112, 255, 0.16), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(166, 78, 255, 0.12), transparent 28%),
    radial-gradient(circle at 78% 68%, rgba(96, 49, 168, 0.14), transparent 30%),
    linear-gradient(145deg, #06070b 0%, #0a0b12 38%, #11101a 62%, #090a0f 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -2;
}

body::before {
  top: -14rem;
  left: -12rem;
  background: rgba(110, 125, 255, 0.12);
}

body::after {
  right: -12rem;
  bottom: -4rem;
  background: rgba(177, 70, 255, 0.12);
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-shell::before {
  z-index: -2;
  opacity: 0.32;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 140px 140px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}

.page-shell::after {
  z-index: -2;
  opacity: 0.12;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.22) 0.6px, transparent 0.8px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}

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

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

.page-shell {
  position: relative;
  isolation: isolate;
}

.particle-canvas,
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.particle-canvas {
  z-index: -1;
  opacity: 0.28;
}

.cursor-glow {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 70, 255, 0.18) 0%, rgba(177, 70, 255, 0) 68%);
  filter: blur(12px);
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform 120ms linear;
}

.topbar,
.section {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 10;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(10, 11, 17, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img {
  width: 3rem;
  height: 3rem;
  padding: 0.32rem;
  object-fit: cover;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(110, 125, 255, 0.88), rgba(177, 70, 255, 0.92), rgba(242, 103, 195, 0.84));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(177, 70, 255, 0.22);
}

.brand span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
}

.nav a {
  position: relative;
  transition: color 240ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
  transition: transform 240ms ease;
}

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

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section {
  padding: 7rem 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #d4b4ff;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero-logo-ring {
  position: relative;
  width: clamp(12.5rem, 24vw, 19rem);
  aspect-ratio: 1;
  margin-bottom: 1.75rem;
  padding: 0.9rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(110, 125, 255, 0.85), rgba(177, 70, 255, 0.9), rgba(242, 103, 195, 0.82));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 40px rgba(177, 70, 255, 0.45),
    0 0 90px rgba(110, 125, 255, 0.2);
}

.hero-logo-ring::before {
  content: "";
  position: absolute;
  inset: -1.1rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 70, 255, 0.28) 0%, rgba(177, 70, 255, 0) 70%);
  filter: blur(14px);
  z-index: -1;
}

.hero-logo-ring-inner {
  width: 100%;
  height: 100%;
  padding: 0.55rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 14, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 6.7vw, 6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

h3 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.subheadline,
.hero-panel p,
.section-heading p:not(.eyebrow),
.offer-lead,
.service-card p,
.experience-copy p,
.cta-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.subheadline {
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, rgba(106, 125, 255, 0.95), rgba(197, 83, 255, 0.92), rgba(242, 103, 195, 0.95));
  box-shadow: 0 18px 50px rgba(177, 70, 255, 0.38);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.glass-card,
.service-card,
.mockup-window,
.mockup-phone,
.cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface);
  backdrop-filter: blur(22px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.glass-card::before,
.service-card::before,
.mockup-window::before,
.mockup-phone::before,
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  opacity: 0.65;
  pointer-events: none;
}

.hero-panel .glass-card,
.cta-card {
  padding: 2rem;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--muted);
}

.status-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px rgba(123, 247, 194, 0.8);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.metric-grid article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
  color: #f6d0ff;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.offer-highlight {
  position: relative;
}

.offer-glow {
  position: absolute;
  inset: 6% 8%;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(110, 125, 255, 0.24), rgba(177, 70, 255, 0.22), rgba(242, 103, 195, 0.18));
  filter: blur(50px);
}

.offer-content {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(201, 133, 255, 0.28);
  background:
    linear-gradient(160deg, rgba(110, 125, 255, 0.08), rgba(177, 70, 255, 0.04) 55%, rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 23, 0.82);
}

.offer-lead {
  margin-top: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  color: var(--text);
  max-width: 50rem;
}

.offer-steps,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.offer-steps article,
.service-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-steps span,
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3));
  box-shadow: 0 16px 35px rgba(177, 70, 255, 0.28);
}

.service-card {
  min-height: 18rem;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.service-card:hover {
  border-color: rgba(201, 133, 255, 0.4);
  box-shadow: 0 28px 70px rgba(92, 34, 160, 0.28);
}

.experience-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.mockup-stack {
  position: relative;
  min-height: 34rem;
}

.mockup-window {
  width: min(100%, 36rem);
  padding: 1rem;
}

.window-bar {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.window-bar span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.window-body {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(110, 125, 255, 0.12), rgba(255, 255, 255, 0.03));
  min-height: 22rem;
}

.mockup-chart {
  height: 10rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 20% 20%, rgba(177, 70, 255, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(110, 125, 255, 0.55), rgba(242, 103, 195, 0.16));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.mockup-lines {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.mockup-lines span {
  height: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.mockup-lines span:nth-child(1) {
  width: 82%;
}

.mockup-lines span:nth-child(2) {
  width: 66%;
}

.mockup-lines span:nth-child(3) {
  width: 72%;
}

.mockup-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 14rem;
  padding: 0.75rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(14, 14, 24, 0.92), rgba(31, 18, 41, 0.9));
}

.phone-screen {
  min-height: 24rem;
  border-radius: 1.5rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(8, 8, 14, 0.84);
}

.chat-bubble {
  max-width: 85%;
  margin-bottom: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.incoming {
  background: rgba(255, 255, 255, 0.08);
  border-top-left-radius: 0.4rem;
}

.outgoing {
  margin-left: auto;
  color: #120717;
  background: linear-gradient(135deg, #b89fff, #ef8bd1);
  border-top-right-radius: 0.4rem;
}

.experience-copy {
  display: grid;
  gap: 1rem;
}

.experience-copy .glass-card {
  padding: 1.5rem;
}

.cta-card {
  padding: 3rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(177, 70, 255, 0.16), transparent 45%),
    rgba(14, 14, 23, 0.88);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.8rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  color: #08120d;
  font-weight: 800;
  background: linear-gradient(135deg, #82ffb8, #25d366);
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.28);
}

.whatsapp-float::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: #0f5d2c;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.98);
  transition:
    opacity 800ms ease,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

[data-reveal="left"] {
  transform: translate3d(-42px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(42px, 0, 0);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

.floating {
  animation: float 5.8s ease-in-out infinite;
}

.floating-slow {
  animation: float 8.5s ease-in-out infinite;
}

.pulse-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(207, 151, 255, 0.18);
  animation: pulse 3s ease-in-out infinite;
  pointer-events: none;
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    box-shadow: 0 0 0 rgba(177, 70, 255, 0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 35px rgba(177, 70, 255, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  [data-reveal="left"],
  [data-reveal="right"],
  [data-reveal="scale"] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .topbar {
    border-radius: 1.5rem;
    top: 0.75rem;
    padding: 1rem 1.1rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    gap: 0.9rem;
    justify-content: flex-end;
    flex-wrap: nowrap;
    font-size: 0.95rem;
  }

  .hero,
  .experience-layout,
  .offer-steps,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

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

  .mockup-stack {
    min-height: 30rem;
  }

  .mockup-phone {
    position: relative;
    margin-top: 1rem;
    width: min(100%, 18rem);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .topbar,
  .section {
    width: min(calc(100% - 1rem), var(--container));
  }

  .topbar {
    top: 0.6rem;
    padding: 0.9rem 0.95rem;
    border-radius: 1.2rem;
    gap: 0.85rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
    font-size: 0.86rem;
    text-align: center;
  }

  .nav a {
    padding: 0.55rem 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    gap: 1.4rem;
    padding-top: 2.2rem;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1;
  }

  .eyebrow {
    margin-bottom: 0.85rem;
    letter-spacing: 0.26em;
    font-size: 0.76rem;
  }

  .hero-copy,
  .section-heading {
    max-width: 100%;
  }

  .hero-logo-ring {
    width: min(72vw, 17rem);
    margin-inline: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .subheadline {
    font-size: 1rem;
    line-height: 1.65;
    margin-inline: auto;
  }

  .hero-panel .glass-card,
  .offer-content,
  .experience-copy .glass-card,
  .cta-card,
  .service-card,
  .offer-steps article {
    border-radius: 1.4rem;
  }

  .hero-panel .glass-card,
  .offer-content,
  .cta-card {
    padding: 1.25rem;
  }

  .offer-lead {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .offer-steps,
  .service-grid,
  .experience-copy {
    gap: 0.9rem;
  }

  .service-card,
  .offer-steps article {
    min-height: auto;
    padding: 1.2rem;
  }

  .experience-layout {
    gap: 1.25rem;
  }

  .mockup-stack {
    min-height: auto;
  }

  .mockup-window {
    width: 100%;
  }

  .window-body {
    min-height: 16rem;
  }

  .mockup-phone {
    width: min(72%, 15rem);
    margin-left: auto;
  }

  .phone-screen {
    min-height: 18rem;
  }

  .button,
  .whatsapp-float {
    width: 100%;
  }

  .whatsapp-float {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0 1rem;
  }
}
