:root {
  --bg: #08040f;
  --bg-2: #10051e;
  --panel: #170a2a;
  --panel-2: #201039;
  --panel-3: #2a1550;
  --text: #f8f5ff;
  --text-2: #d7cfee;
  --muted: #a89dbc;
  --muted-2: #7f7397;
  --line: rgba(185, 165, 242, 0.16);
  --line-hi: rgba(193, 175, 248, 0.3);
  --purple: #8759ff;
  --purple-2: #b38dff;
  --cyan: #65e8f1;
  --cyan-2: #b5fbff;
  --pink: #e58fff;
  --green: #73e4b0;
  --danger: #ff7e9f;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.24);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family:
    "Outfit",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(
      circle at 82% 6%,
      rgba(122, 69, 255, 0.27),
      transparent 31%
    ),
    radial-gradient(circle at 8% 22%, rgba(65, 177, 255, 0.1), transparent 30%),
    radial-gradient(
      circle at 62% 58%,
      rgba(91, 38, 156, 0.13),
      transparent 40%
    ),
    linear-gradient(180deg, #08030f 0%, #10041c 34%, #120520 58%, #090310 100%);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.page-aura,
.pointer-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
.page-aura {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.06;
  mask-image: linear-gradient(#000, transparent 88%);
}
.pointer-aura {
  z-index: -1;
  background: radial-gradient(
    390px circle at var(--mx, 70%) var(--my, 18%),
    rgba(159, 100, 255, 0.12),
    transparent 72%
  );
}

/* header */
nav#navbar {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 32px));
  min-height: 72px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(188, 170, 245, 0.18);
  border-radius: 26px;
  background: linear-gradient(
    100deg,
    rgba(10, 4, 21, 0.84),
    rgba(19, 7, 37, 0.78) 56%,
    rgba(34, 13, 64, 0.74)
  );
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.3),
    0 0 34px rgba(117, 75, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    top 0.3s,
    padding 0.3s,
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
nav#navbar::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    100deg,
    rgba(101, 232, 241, 0.56),
    rgba(135, 89, 255, 0.46) 34%,
    rgba(135, 89, 255, 0.25) 70%,
    rgba(101, 232, 241, 0.46)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.72;
  pointer-events: none;
}
nav#navbar.scrolled {
  top: 7px;
  background: linear-gradient(
    100deg,
    rgba(8, 3, 17, 0.94),
    rgba(17, 6, 33, 0.92) 58%,
    rgba(27, 10, 52, 0.9)
  );
  border-color: rgba(195, 177, 248, 0.22);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.36),
    0 0 32px rgba(118, 75, 255, 0.07);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.nav-logo-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  overflow: visible;
}
.nav-logo-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(72, 186, 255, 0.2));
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.nav-logo-text span {
  font-weight: 500;
  color: var(--muted-2);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(237, 231, 249, 0.72);
  transition:
    color 0.2s,
    transform 0.2s;
}
.nav-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}
.nav-cta {
  padding: 12px 24px !important;
  border-radius: 999px !important;
  background: linear-gradient(105deg, #6f46ff, #915fff 55%, #7edff0) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 12px 30px rgba(111, 70, 255, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}
.nav-cta:hover {
  box-shadow:
    0 18px 38px rgba(111, 70, 255, 0.5),
    0 0 30px rgba(101, 232, 241, 0.08) !important;
}
.lang-selector {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.038);
  color: var(--text-2);
  cursor: pointer;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 185px;
  padding: 6px;
  margin: 0;
  list-style: none;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(20, 8, 36, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.25s;
  z-index: 20;
}
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.lang-option {
  width: 100%;
  border: 0;
  background: none;
  color: var(--text-2);
  padding: 9px 11px;
  text-align: left;
  border-radius: 9px;
  cursor: pointer;
}
.lang-option:hover {
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}
.lang-option.active {
  color: var(--cyan-2);
  font-weight: 700;
}
.lang-chevron {
  transition: transform 0.2s;
}
.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
}
.theme-toggle {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}
.toggle-track {
  position: relative;
  width: 48px;
  height: 27px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.toggle-thumb {
  position: absolute;
  left: 3px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #7047e8);
  box-shadow: 0 4px 12px rgba(135, 89, 255, 0.46);
  transition: transform 0.3s;
}
.toggle-icon {
  position: absolute;
  right: 7px;
  font-size: 10px;
  color: var(--muted-2);
}
html[data-theme="light"] .toggle-thumb {
  transform: translateX(21px);
}
html[data-theme="light"] .toggle-icon {
  left: 7px;
  right: auto;
  color: var(--purple);
}

/* hero */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(420px, 560px);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  justify-content: center;
  padding: 142px 48px 78px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 72% 74% at 78% 8%,
      rgba(131, 69, 255, 0.22),
      transparent 70%
    ),
    radial-gradient(
      ellipse 44% 44% at 12% 80%,
      rgba(83, 203, 235, 0.08),
      transparent 72%
    );
}
.hero-content {
  max-width: 680px;
  text-align: left;
  position: relative;
  z-index: 4;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 17px;
  border-radius: 999px;
  border: 1px solid rgba(101, 232, 241, 0.18);
  background: linear-gradient(
    90deg,
    rgba(101, 232, 241, 0.07),
    rgba(135, 89, 255, 0.08)
  );
  color: rgba(240, 234, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 5px rgba(101, 232, 241, 0.07),
    0 0 18px rgba(101, 232, 241, 0.58);
  animation: pulseDot 2.3s ease-in-out infinite;
}
.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.065em;
  margin: 0 0 27px;
  color: #fbf8ff;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(
    92deg,
    var(--cyan),
    #91c8ff 38%,
    var(--purple-2) 74%,
    #d7c4ff
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  max-width: 610px;
  margin: 0 0 36px;
  color: rgba(224, 217, 241, 0.73);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    border-color 0.25s;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(105deg, #7147ff, #8f5fff 52%, #74dcec 132%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 12px 34px rgba(112, 67, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 46px rgba(112, 67, 255, 0.47),
    0 0 34px rgba(101, 232, 241, 0.1);
}
.btn-primary svg {
  transition: transform 0.25s;
}
.btn-primary:hover svg {
  transform: translateX(4px);
}
.btn-secondary {
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(192, 171, 248, 0.14);
  backdrop-filter: blur(14px);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(192, 171, 248, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(210, 202, 228, 0.46);
  font-size: 12px;
  font-weight: 600;
}
.trust-item i {
  color: var(--purple-2);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: min(610px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(128, 68, 255, 0.18) 0%,
    rgba(85, 46, 177, 0.08) 42%,
    transparent 70%
  );
  filter: blur(12px);
  z-index: -2;
  pointer-events: none;
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: min(470px, 82%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 48%,
    rgba(102, 229, 241, 0.065),
    transparent 66%
  );
  filter: blur(4px);
  z-index: -1;
  pointer-events: none;
}
.hero-orbit-outer {
  position: absolute;
  width: min(585px, 96%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(190, 171, 248, 0.15);
  box-shadow:
    inset 0 0 76px rgba(109, 63, 240, 0.08),
    0 0 36px rgba(117, 72, 255, 0.06);
  animation: orbitSlow 34s linear infinite;
  transform-origin: 50% 50%;
}
.hero-orbit-outer::before,
.hero-orbit-outer::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow:
    0 0 0 7px rgba(135, 89, 255, 0.07),
    0 0 22px rgba(135, 89, 255, 0.3);
}
.hero-orbit-outer::before {
  top: 17%;
  left: 13%;
}
.hero-orbit-outer::after {
  right: 10%;
  bottom: 20%;
  background: var(--cyan);
  box-shadow:
    0 0 0 7px rgba(101, 232, 241, 0.07),
    0 0 22px rgba(101, 232, 241, 0.32);
}
.hero-stage {
  position: relative;
  width: min(438px, 76%);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(170, 105, 255, 0.22),
    rgba(61, 29, 111, 0.17) 44%,
    rgba(12, 6, 24, 0.5) 72%
  );
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.32),
    inset 0 0 78px rgba(131, 68, 255, 0.11),
    0 0 58px rgba(124, 71, 255, 0.17);
  backdrop-filter: blur(10px);
  overflow: visible;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(
    from 18deg,
    rgba(101, 232, 241, 0.76),
    rgba(135, 89, 255, 0.86) 32%,
    rgba(203, 174, 255, 0.74) 52%,
    rgba(135, 89, 255, 0.65) 74%,
    rgba(101, 232, 241, 0.76)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 18px rgba(135, 89, 255, 0.4));
  animation: ringSpin 18s linear infinite;
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border: 1px dashed rgba(197, 180, 248, 0.12);
  animation: ringSpinReverse 24s linear infinite;
}
.hero-octopus {
  position: relative;
  width: min(295px, 69%);
  z-index: 3;
  filter: drop-shadow(0 28px 40px rgba(118, 61, 255, 0.42));
  animation: octoFloat 5.4s ease-in-out infinite;
}
.hero-float-icon {
  position: absolute;
  z-index: 5;
  width: 66px;
  height: 66px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(191, 173, 248, 0.24);
  background: linear-gradient(
    145deg,
    rgba(43, 17, 76, 0.91),
    rgba(17, 7, 31, 0.92)
  );
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 24px rgba(135, 89, 255, 0.1);
  color: var(--cyan-2);
  backdrop-filter: blur(16px);
}
.hero-float-icon i {
  font-size: 25px;
}
.hero-float-icon.icon-a {
  left: 7%;
  top: 19%;
  animation: iconFloatA 6.2s ease-in-out infinite;
}
.hero-float-icon.icon-b {
  right: 4%;
  top: 30%;
  color: #d5c3ff;
  animation: iconFloatB 6.9s ease-in-out infinite;
}
.hero-float-icon.icon-c {
  right: 17%;
  bottom: 5%;
  color: #8ff0d2;
  animation: iconFloatA 6.7s ease-in-out infinite reverse;
}
.hero-float-icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 22px;
  border: 1px solid rgba(135, 89, 255, 0.1);
  opacity: 0.8;
}

/* video */
.video-section {
  position: relative;
  padding: 98px 48px 116px;
  display: flex;
  justify-content: center;
  overflow: visible;
}
.video-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: min(1050px, 88vw);
  height: 430px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(116, 65, 255, 0.16),
    rgba(80, 204, 230, 0.055) 42%,
    transparent 72%
  );
  filter: blur(28px);
  pointer-events: none;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16/9;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(195, 174, 249, 0.22);
  background: #000;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(101, 231, 241, 0.035),
    0 0 74px rgba(121, 75, 255, 0.12);
  cursor: pointer;
}
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.vid-center-btn {
  position: absolute;
  z-index: 12;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: 0;
  background: none;
  cursor: pointer;
}
.vcb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(101, 231, 241, 0.42);
  background: rgba(113, 69, 255, 0.22);
  animation: ringPulse 2.6s ease-in-out infinite;
}
.vcb-icon {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7450ff, #a069ff 62%, #67ddea);
  box-shadow: 0 8px 26px rgba(113, 69, 255, 0.46);
}
.video-wrapper.is-playing .vid-center-btn {
  opacity: 0.28;
}
.video-wrapper:hover .vid-center-btn,
.video-wrapper:not(.is-playing) .vid-center-btn {
  opacity: 1;
}
.vid-controls {
  position: absolute;
  z-index: 12;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(to top, rgba(7, 4, 14, 0.88), transparent);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}
.video-wrapper:hover .vid-controls,
.vid-controls:focus-within {
  opacity: 1;
  visibility: visible;
}
.vid-progress {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  overflow: hidden;
}
.vid-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  border-radius: 4px;
}
.vol-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ctrl-btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: none;
  color: #fff;
  cursor: pointer;
}
.vol-slider {
  width: 80px;
  accent-color: var(--purple);
}

/* value cloud */
.value-strip {
  padding: 42px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(33, 12, 60, 0.58),
    rgba(19, 6, 36, 0.66)
  );
}
.strip-track {
  width: min(1120px, 100%);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(192, 171, 248, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.032);
  color: rgba(231, 224, 246, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s,
    background 0.25s;
}
.strip-item:hover {
  transform: translateY(-3px);
  border-color: rgba(101, 231, 241, 0.26);
  background: linear-gradient(
    90deg,
    rgba(101, 231, 241, 0.055),
    rgba(141, 92, 255, 0.08)
  );
}
.strip-item i {
  color: var(--cyan);
}
.strip-sep {
  display: none;
}
.strip-track > .strip-item:nth-of-type(n + 9) {
  display: none;
}

/* shared */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--cyan-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}
.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #f8f5ff;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  color: rgba(219, 211, 235, 0.68);
  max-width: 590px;
  line-height: 1.78;
}
.transformation,
.features,
.stats,
.how-it-works,
.objections,
.testimonials,
.cta-section {
  position: relative;
  overflow: hidden;
}
.transformation,
.features,
.how-it-works,
.objections,
.testimonials {
  padding: 138px 48px;
}
.features,
.objections {
  background:
    radial-gradient(
      ellipse 50% 60% at 100% 0%,
      rgba(126, 70, 255, 0.12),
      transparent 70%
    ),
    linear-gradient(180deg, rgba(31, 11, 56, 0.66), rgba(18, 6, 34, 0.72));
}
.transformation-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.pain-points {
  list-style: none;
  margin: 32px 0 40px;
  padding: 0;
}
.pain-points li {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(219, 211, 235, 0.68);
}
.pain-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 10px;
}
.pain-icon.bad {
  background: rgba(239, 68, 68, 0.11);
  color: #f77;
}
.pain-icon.good {
  background: rgba(101, 231, 241, 0.1);
  color: var(--cyan);
}
.transform-card,
.feature-card,
.objection-card,
.testimonial-card {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(192, 171, 248, 0.14);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.018)
  );
  backdrop-filter: blur(18px);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  overflow: hidden;
}
.transform-card::after,
.feature-card::after,
.objection-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    300px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(107, 231, 243, 0.1),
    rgba(141, 92, 255, 0.06) 35%,
    transparent 68%
  );
  transition: opacity 0.25s;
}
.transform-card:hover::after,
.feature-card:hover::after,
.objection-card:hover::after,
.testimonial-card:hover::after {
  opacity: 1;
}
.transform-card:hover,
.feature-card:hover,
.objection-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.006);
  border-color: rgba(101, 231, 241, 0.23);
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(122, 74, 255, 0.07);
}
.transform-card {
  padding: 32px;
  border-radius: 28px;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
}
.before-card {
  margin-bottom: 14px;
  transform: rotate(-1deg);
}
.after-card {
  transform: rotate(1deg);
  border-color: rgba(101, 231, 241, 0.19);
  background: linear-gradient(
    145deg,
    rgba(101, 231, 241, 0.055),
    rgba(141, 92, 255, 0.075)
  );
}
.before-card:hover,
.after-card:hover {
  transform: translateY(-5px) rotate(0deg);
}
.transform-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.transform-card-header.before {
  color: #ff8e9c;
}
.transform-card-header.after {
  color: var(--green);
}
.ttag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 5px 3px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
}
.ttag.neg {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #f68b96;
}
.ttag.pos {
  background: rgba(108, 78, 255, 0.11);
  border: 1px solid rgba(140, 103, 255, 0.2);
  color: #c8b6ff;
}
.transform-arrow {
  text-align: center;
  padding: 18px 0;
  color: var(--cyan);
  font-size: 22px;
  animation: arrowBob 2s ease-in-out infinite;
}
.features-header,
.how-header,
.objections-header,
.testimonials-header {
  text-align: center;
  margin-bottom: 76px;
}
.features-header .section-desc,
.how-header .section-desc,
.testimonials-header .section-desc {
  margin: 0 auto;
}
.features-grid,
.objections-grid,
.testimonials-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card,
.objection-card,
.testimonial-card {
  border-radius: 24px;
  padding: 36px 30px;
  transition:
    transform 0.32s var(--ease),
    border-color 0.32s,
    box-shadow 0.32s;
}
.feature-icon,
.obj-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--cyan-2);
  background: linear-gradient(
    145deg,
    rgba(101, 231, 241, 0.085),
    rgba(141, 92, 255, 0.12)
  );
  border: 1px solid rgba(101, 231, 241, 0.15);
  font-size: 20px;
}
.feature-card h3,
.objection-q,
.testimonial-name {
  color: #f7f4ff;
}
.feature-card h3 {
  font-size: 18px;
  margin: 0 0 11px;
}
.feature-card p,
.objection-a,
.testimonial-card blockquote {
  color: rgba(219, 211, 235, 0.68);
  font-size: 14px;
  line-height: 1.78;
}
.objection-q {
  font-weight: 700;
  margin-bottom: 12px;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 24px;
  top: 10px;
  font-size: 82px;
  line-height: 1;
  color: rgba(141, 92, 255, 0.13);
  font-weight: 800;
}
.testimonial-stars {
  color: #f5c518;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-style: italic;
  margin: 0 0 26px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(141, 92, 255, 0.1);
  border: 1px solid rgba(141, 92, 255, 0.22);
  color: #c7b4ff;
  font-weight: 800;
}
.testimonial-role {
  font-size: 12px;
  color: var(--muted-2);
}
.stats {
  padding: 96px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(133, 94, 217, 0.09), transparent 55%),
    linear-gradient(225deg, rgba(132, 210, 244, 0.045), transparent 50%);
}
.stats-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item h4 {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.045em;
  background: linear-gradient(100deg, #fff, #b9a1ff 72%, #73e6f0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-item p {
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.steps-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(101, 231, 241, 0.32),
    rgba(141, 92, 255, 0.34),
    transparent
  );
}
.step {
  text-align: center;
  position: relative;
  z-index: 2;
}
.step-number {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #10061d;
  border: 1px solid rgba(192, 171, 248, 0.2);
  color: var(--cyan);
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}
.step-number::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(141, 92, 255, 0.2);
  animation: orbitSlow 18s linear infinite;
}
.step h3 {
  margin-bottom: 10px;
}
.step p {
  max-width: 270px;
  margin: auto;
  color: rgba(219, 211, 235, 0.68);
  font-size: 14px;
  line-height: 1.76;
}
.cta-section {
  padding: 150px 48px;
  text-align: center;
  background:
    radial-gradient(
      ellipse 80% 66% at 50% 106%,
      rgba(133, 94, 217, 0.2),
      transparent
    ),
    radial-gradient(
      ellipse 58% 54% at 50% -5%,
      rgba(101, 231, 241, 0.055),
      transparent
    );
}
.cta-glow {
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  width: 700px;
  height: 360px;
  border-radius: 50%;
  background: rgba(133, 94, 217, 0.17);
  filter: blur(120px);
}
.cta-box {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: auto;
  padding: 58px 46px;
  border-radius: 34px;
  border: 1px solid rgba(192, 171, 248, 0.17);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.018)
  );
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}
.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(101, 231, 241, 0.07);
  border: 1px solid rgba(101, 231, 241, 0.15);
  color: var(--cyan-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.cta-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}
.cta-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--purple-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-sub {
  max-width: 540px;
  margin: 0 auto 42px;
  color: rgba(219, 211, 235, 0.68);
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 12px;
}
.cta-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-meta i {
  color: var(--cyan);
}
footer {
  padding: 72px 48px 38px;
  border-top: 1px solid var(--line);
  background: rgba(13, 4, 24, 0.78);
}
.footer-top {
  max-width: 1100px;
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand-logo {
  height: 42px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  max-width: 300px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  max-width: 1100px;
  margin: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.78s var(--ease),
    transform 0.78s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* light theme */
html[data-theme="light"] {
  --text: #161025;
  --text-2: #4d4560;
  --muted: #6e6580;
  --muted-2: #887e9a;
  --line: rgba(99, 72, 160, 0.16);
  --line-hi: rgba(99, 72, 160, 0.26);
}
html[data-theme="light"] body {
  background:
    radial-gradient(
      circle at 82% 4%,
      rgba(135, 89, 255, 0.14),
      transparent 31%
    ),
    radial-gradient(circle at 8% 20%, rgba(65, 177, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #f4f1fb, #ece6f8 56%, #f5f1fb);
}
html[data-theme="light"] nav#navbar {
  background: rgba(248, 246, 252, 0.78);
  box-shadow: 0 16px 40px rgba(57, 36, 88, 0.12);
}
html[data-theme="light"] .nav-links a {
  color: #554a67;
}
html[data-theme="light"] .nav-links a:hover {
  color: #161025;
}
html[data-theme="light"] .nav-logo-text {
  color: #191224;
}
html[data-theme="light"] .hero {
  background:
    radial-gradient(
      ellipse 70% 70% at 78% 8%,
      rgba(135, 89, 255, 0.13),
      transparent 70%
    ),
    radial-gradient(
      ellipse 44% 44% at 12% 80%,
      rgba(83, 203, 235, 0.1),
      transparent 72%
    );
}
html[data-theme="light"] .hero h1 {
  color: #171023;
}
html[data-theme="light"] .hero-sub {
  color: #595068;
}
html[data-theme="light"] .hero-stage {
  background: radial-gradient(
    circle at 50% 45%,
    rgba(163, 103, 255, 0.16),
    rgba(255, 255, 255, 0.48) 52%,
    rgba(245, 241, 251, 0.62) 72%
  );
}
html[data-theme="light"] .feature-card,
html[data-theme="light"] .objection-card,
html[data-theme="light"] .testimonial-card,
html[data-theme="light"] .transform-card,
html[data-theme="light"] .cta-box {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(99, 72, 160, 0.14);
  box-shadow: 0 18px 48px rgba(61, 41, 91, 0.09);
}
html[data-theme="light"] .section-title,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .objection-q,
html[data-theme="light"] .testimonial-name,
html[data-theme="light"] .cta-title {
  color: #181122;
}
html[data-theme="light"] .section-desc,
html[data-theme="light"] .feature-card p,
html[data-theme="light"] .objection-a,
html[data-theme="light"] .testimonial-card blockquote,
html[data-theme="light"] .pain-points li,
html[data-theme="light"] .step p,
html[data-theme="light"] .cta-sub {
  color: #5c536b;
}
html[data-theme="light"] .features,
html[data-theme="light"] .objections {
  background: linear-gradient(
    180deg,
    rgba(229, 221, 245, 0.72),
    rgba(241, 236, 249, 0.78)
  );
}
html[data-theme="light"] .value-strip {
  background: linear-gradient(
    180deg,
    rgba(230, 223, 247, 0.8),
    rgba(241, 236, 249, 0.82)
  );
}
html[data-theme="light"] .strip-item {
  color: #5f556d;
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(99, 72, 160, 0.14);
}
html[data-theme="light"] footer {
  background: rgba(232, 225, 245, 0.82);
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.75);
    opacity: 0.5;
  }
}
@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ringSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes orbitSlow {
  to {
    transform: rotate(360deg);
  }
}
@keyframes octoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes iconFloatA {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}
@keyframes iconFloatB {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(7px) rotate(-2deg);
  }
}
@keyframes ringPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(101, 231, 241, 0.34);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(101, 231, 241, 0);
  }
}
@keyframes arrowBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@media (max-width: 1050px) {
  nav#navbar {
    width: min(100% - 24px, 1320px);
  }
  .nav-links {
    gap: 15px;
  }
  .nav-links > li:nth-child(-n + 3) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    padding: 130px 24px 70px;
  }
  .hero-content {
    text-align: center;
    margin: auto;
  }
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    min-height: 520px;
  }
  .hero-stage {
    width: min(410px, 72%);
  }
  .transformation-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .features-grid,
  .objections-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  nav#navbar {
    top: 8px;
    min-height: 58px;
    padding: 7px 10px;
  }
  .nav-logo-icon {
    width: 38px;
    height: 38px;
  }
  .nav-logo-icon img {
    width: 38px;
    height: 38px;
  }
  .nav-logo-text {
    display: none;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-cta {
    font-size: 12px !important;
    padding: 10px 14px !important;
  }
  .toggle-track {
    width: 43px;
    height: 25px;
  }
  .toggle-thumb {
    width: 19px;
    height: 19px;
  }
  .hero {
    padding: 104px 18px 54px;
  }
  .hero-badge {
    font-size: 11px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(43px, 12vw, 62px);
    line-height: 0.98;
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
    margin: auto;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 15px 20px;
  }
  .hero-trust {
    gap: 10px 15px;
  }
  .hero-visual {
    min-height: 390px;
  }
  .hero-orbit-outer {
    width: min(390px, 96%);
  }
  .hero-stage {
    width: min(320px, 76%);
  }
  .hero-octopus {
    width: min(225px, 70%);
  }
  .hero-float-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }
  .hero-float-icon i {
    font-size: 19px;
  }
  .hero-float-icon.icon-a {
    left: 2%;
    top: 20%;
  }
  .hero-float-icon.icon-b {
    right: 0;
    top: 31%;
  }
  .hero-float-icon.icon-c {
    right: 12%;
    bottom: 3%;
  }
  .video-section,
  .transformation,
  .features,
  .stats,
  .how-it-works,
  .objections,
  .testimonials,
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .video-section {
    padding-top: 64px;
    padding-bottom: 78px;
  }
  .value-strip {
    padding: 32px 16px;
  }
  .section-title {
    font-size: clamp(32px, 9.5vw, 46px);
  }
  .features-header,
  .how-header,
  .objections-header,
  .testimonials-header {
    margin-bottom: 46px;
  }
  .stats-grid {
    gap: 24px;
  }
  .cta-box {
    padding: 42px 20px;
    border-radius: 26px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  footer {
    padding: 58px 24px 28px;
  }
}
@media (max-width: 390px) {
  .nav-cta {
    padding: 9px 11px !important;
  }
  .hero-float-icon.icon-c {
    right: 7%;
  }
}
@media (hover: none) {
  .transform-card:hover,
  .feature-card:hover,
  .objection-card:hover,
  .testimonial-card:hover,
  .strip-item:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== Seção "Sua Mira" — lista vertical ===== */
.persona { position: relative; overflow: hidden; padding: 138px 48px; }
.persona-inner { max-width: 820px; margin: auto; text-align: center; }
.persona-desc { margin: 0 auto; }
.persona-list { list-style: none; margin: 54px 0 0; padding: 0; text-align: left; }
.persona-item { display: flex; align-items: flex-start; gap: 20px; padding: 24px 6px; border-bottom: 1px solid var(--line); transition: transform 0.32s var(--ease); }
.persona-item:first-child { border-top: 1px solid var(--line); }
.persona-item:hover { transform: translateX(6px); }
.persona-icon { width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; flex: 0 0 auto; font-size: 17px; color: var(--cyan-2); background: linear-gradient(145deg, rgba(101,231,241,0.085), rgba(141,92,255,0.12)); border: 1px solid rgba(101,231,241,0.15); }
.persona-item h3 { margin: 2px 0 6px; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: #f7f4ff; }
.persona-item p { margin: 0; font-size: 14px; line-height: 1.78; color: rgba(219,211,235,0.68); }
.persona-close { margin-top: 76px; }
.persona-lead { margin: 0 0 22px; font-size: 17px; line-height: 1.78; color: rgba(219,211,235,0.68); }
.persona-close .section-title { margin-bottom: 30px; }
.persona-close .section-title em,
.persona-inner > .reveal > .section-title em { font-style: normal; background: linear-gradient(90deg, var(--cyan), var(--purple-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.persona-inner > .reveal > .section-label { justify-content: center; }
html[data-theme="light"] .persona-item h3 { color: #181122; }
html[data-theme="light"] .persona-item p,
html[data-theme="light"] .persona-lead { color: #5c536b; }
@media (max-width: 1050px) { .persona { padding: 96px 32px; } }
@media (max-width: 680px) {
  .persona { padding: 82px 24px; }
  .persona-list { margin-top: 40px; }
  .persona-item { gap: 14px; padding: 20px 2px; }
  .persona-item:hover { transform: none; }
  .persona-icon { width: 40px; height: 40px; border-radius: 13px; font-size: 15px; }
  .persona-item h3 { font-size: 17px; }
  .persona-close { margin-top: 56px; }
}

/* ===== Seções novas: split, bolhas, fluxo, economia, preço, FAQ ===== */
.split,
.usage,
.notice,
.economy,
.pricing {
  position: relative;
  overflow: hidden;
  padding: 138px 48px;
}
.usage,
.pricing {
  background:
    radial-gradient(
      ellipse 50% 60% at 0% 0%,
      rgba(126, 70, 255, 0.12),
      transparent 70%
    ),
    linear-gradient(180deg, rgba(31, 11, 56, 0.66), rgba(18, 6, 34, 0.72));
}
html[data-theme="light"] .usage,
html[data-theme="light"] .pricing {
  background: linear-gradient(
    180deg,
    rgba(229, 221, 245, 0.72),
    rgba(241, 236, 249, 0.78)
  );
}
.split-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.split.reverse .split-visual {
  order: -1;
}
.split-text .section-desc + .section-desc {
  margin-top: 18px;
}
.split-text .btn-primary,
.split-text .btn-secondary {
  margin-top: 32px;
}

/* listas com ícone */
.check-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(219, 211, 235, 0.68);
  font-size: 15px;
  line-height: 1.7;
}
.check-list li:first-child {
  border-top: 1px solid var(--line);
}
.check-list li i {
  margin-top: 5px;
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--cyan);
}
html[data-theme="light"] .check-list li {
  color: #5c536b;
}

/* bolhas de conversa */
.bubble-panel,
.flow-card {
  border: 1px solid rgba(192, 171, 248, 0.14);
  border-radius: 24px;
  padding: 28px 26px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.018)
  );
  backdrop-filter: blur(18px);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
html[data-theme="light"] .bubble-panel,
html[data-theme="light"] .flow-card {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(99, 72, 160, 0.14);
}
.bubble-panel-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--cyan-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.bubble {
  position: relative;
  padding: 14px 17px;
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-2);
  border: 1px solid rgba(192, 171, 248, 0.14);
}
.bubble:last-child {
  margin-bottom: 0;
}
.bubble.in {
  border-radius: 4px 18px 18px 18px;
  background: linear-gradient(
    150deg,
    rgba(101, 231, 241, 0.09),
    rgba(141, 92, 255, 0.09)
  );
}
.bubble.out {
  border-radius: 18px 4px 18px 18px;
  background: rgba(255, 255, 255, 0.045);
}
html[data-theme="light"] .bubble {
  color: #43394f;
  border-color: rgba(99, 72, 160, 0.14);
}
html[data-theme="light"] .bubble.out {
  background: rgba(255, 255, 255, 0.72);
}

/* fluxo do open finance */
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}
.flow-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 17px;
  color: var(--cyan-2);
  background: linear-gradient(
    145deg,
    rgba(101, 231, 241, 0.085),
    rgba(141, 92, 255, 0.12)
  );
  border: 1px solid rgba(101, 231, 241, 0.15);
}
.flow-step h3 {
  margin: 3px 0 6px;
  font-size: 17px;
  color: #f7f4ff;
}
.flow-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(219, 211, 235, 0.68);
}
.flow-line {
  width: 1px;
  height: 26px;
  margin: 8px 0 8px 23px;
  background: linear-gradient(
    180deg,
    rgba(101, 231, 241, 0.32),
    rgba(141, 92, 255, 0.28)
  );
}
.security-card .sec-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 600;
  color: #f7f4ff;
}
.security-card .sec-line:last-child {
  border-bottom: none;
}
.security-card .sec-line i {
  color: var(--cyan);
  font-size: 15px;
}
html[data-theme="light"] .flow-step h3,
html[data-theme="light"] .security-card .sec-line {
  color: #181122;
}
html[data-theme="light"] .flow-step p {
  color: #5c536b;
}

/* como é usar */
.usage-inner,
.notice-inner {
  max-width: 1000px;
  margin: auto;
}
.usage-header,
.notice-header {
  text-align: center;
  margin-bottom: 54px;
}
.usage-header .section-label,
.notice-header .section-label,
.pricing-header .section-label,
.economy-inner .section-label {
  justify-content: center;
}
.usage-header .section-desc,
.notice-header .section-desc,
.pricing-header .section-desc {
  margin: 0 auto;
}
.bubble-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.usage-foot {
  margin: 44px auto 0;
  max-width: 620px;
  text-align: center;
  font-size: 17px;
  line-height: 1.78;
  color: rgba(219, 211, 235, 0.68);
}
html[data-theme="light"] .usage-foot {
  color: #5c536b;
}
.notice-list {
  max-width: 720px;
  margin: 0 auto;
}
.notice-list li {
  font-size: 16px;
}

/* 4 passos */
.steps-grid.steps-4 {
  max-width: 1180px;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.steps-grid.steps-4::before {
  left: 13%;
  right: 13%;
}
.how-cta {
  margin-top: 64px;
  text-align: center;
}

/* economia */
.economy-inner {
  max-width: 760px;
  margin: auto;
  text-align: center;
}
.eco-list {
  max-width: 560px;
  margin: 34px auto 0;
  text-align: left;
}
.eco-desc {
  margin: 34px auto 0;
}

/* preço */
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.price-card {
  max-width: 460px;
  margin: auto;
  padding: 44px 38px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(192, 171, 248, 0.2);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
}
html[data-theme="light"] .price-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(99, 72, 160, 0.16);
}
.price-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--cyan-2);
  margin-bottom: 18px;
}
.price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f8f5ff;
  line-height: 1;
}
.price-currency {
  font-size: 26px;
  font-weight: 700;
}
.price-period {
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
}
.price-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}
.price-list {
  list-style: none;
  margin: 30px 0;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}
.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(219, 211, 235, 0.78);
}
.price-list li i {
  font-size: 11px;
  color: var(--cyan);
}
.price-foot {
  margin: 0 0 26px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(219, 211, 235, 0.68);
}
.price-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
  color: rgba(210, 202, 228, 0.46);
  font-size: 12px;
  font-weight: 600;
}
.price-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.price-meta i {
  color: var(--green);
  font-size: 10px;
}
html[data-theme="light"] .price-value {
  color: #181122;
}
html[data-theme="light"] .price-list li,
html[data-theme="light"] .price-foot {
  color: #5c536b;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 2px;
  position: relative;
  font-size: 17px;
  font-weight: 600;
  color: #f7f4ff;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--cyan);
  transition: transform 0.28s var(--ease);
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item summary:hover {
  color: var(--cyan-2);
}
.faq-item p {
  margin: 0;
  padding: 0 40px 24px 2px;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(219, 211, 235, 0.68);
}
html[data-theme="light"] .faq-item summary {
  color: #181122;
}
html[data-theme="light"] .faq-item p {
  color: #5c536b;
}

@media (max-width: 1050px) {
  .split,
  .usage,
  .notice,
  .economy,
  .pricing {
    padding: 96px 32px;
  }
  .split-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .split.reverse .split-visual {
    order: 0;
  }
  .steps-grid.steps-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 30px;
  }
  .steps-grid.steps-4::before {
    display: none;
  }
}
@media (max-width: 680px) {
  .split,
  .usage,
  .notice,
  .economy,
  .pricing {
    padding: 82px 24px;
  }
  .bubble-grid,
  .price-list {
    grid-template-columns: 1fr;
  }
  .steps-grid.steps-4 {
    grid-template-columns: 1fr;
  }
  .usage-header,
  .notice-header {
    margin-bottom: 38px;
  }
  .price-card {
    padding: 34px 22px;
  }
  .price-value {
    font-size: 46px;
  }
  .faq-item summary {
    font-size: 16px;
  }
  .usage-foot {
    font-size: 16px;
  }
}

/* hero sem o bloco de vídeo abaixo: mais respiro antes da faixa */
.hero {
  padding-bottom: 118px;
}
@media (max-width: 680px) {
  .hero {
    padding-bottom: 76px;
  }
}
