:root {
  --bg-0: #080c12;
  --bg-1: #0d1420;
  --bg-2: #121b2b;
  --gold: #c9a22b;
  --gold-hover: #e8c547;
  --cyan: #38bdf8;
  --text: #e8e6e3;
  --text-muted: #9aa4b2;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.04);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --header-h: 4.25rem;
  --space: clamp(1rem, 3vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-0);
  overflow-x: hidden;
}

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

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 10000;
  padding: 0.5rem 1rem;
  background: var(--bg-2);
  color: var(--text);
}

.skip-link:focus {
  left: 0.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, 100% - 2 * var(--space));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 12, 18, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.site-header__inner {
  width: min(1200px, 100% - 2 * var(--space));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
  color: var(--gold-hover);
}

.brand img {
  width: 2rem;
  height: 2rem;
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-actions--portal {
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .header-actions--portal .btn--ghost,
  .header-actions--portal .btn--primary {
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
  }
}

.lang-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--glass);
}

.lang-toggle button {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}

.lang-toggle button[aria-pressed="true"] {
  background: rgba(201, 162, 43, 0.2);
  color: var(--gold-hover);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s var(--ease-out), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--gold), #a88420);
  color: #0a0e14;
  box-shadow: 0 0 0 0 rgba(201, 162, 43, 0);
}

.btn--primary:hover {
  box-shadow: 0 0 28px rgba(201, 162, 43, 0.4);
  text-decoration: none;
  color: #0a0e14;
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(201, 162, 43, 0.5);
  color: var(--gold-hover);
  text-decoration: none;
}

.btn--block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(56, 189, 248, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(201, 162, 43, 0.08), transparent 45%),
    var(--bg-0);
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  animation: grid-drift 40s linear infinite;
  z-index: 0;
}

@keyframes grid-drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(48px);
  }
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.35;
  animation: float-p 8s ease-in-out infinite;
}

.hero__particles span:nth-child(odd) {
  background: var(--gold);
}

.hero__particles span:nth-child(1) {
  left: 10%;
  top: 25%;
}
.hero__particles span:nth-child(2) {
  left: 22%;
  top: 55%;
  animation-delay: 1.2s;
}
.hero__particles span:nth-child(3) {
  left: 78%;
  top: 20%;
  animation-delay: 0.4s;
}
.hero__particles span:nth-child(4) {
  left: 65%;
  top: 70%;
  animation-delay: 2s;
}
.hero__particles span:nth-child(5) {
  left: 45%;
  top: 15%;
  animation-delay: 0.8s;
}
.hero__particles span:nth-child(6) {
  left: 88%;
  top: 45%;
  animation-delay: 1.6s;
}
.hero__particles span:nth-child(7) {
  left: 15%;
  top: 80%;
  animation-delay: 2.4s;
}
.hero__particles span:nth-child(8) {
  left: 55%;
  top: 40%;
  animation-delay: 0.2s;
}
.hero__particles span:nth-child(9) {
  left: 92%;
  top: 78%;
  animation-delay: 1s;
}
.hero__particles span:nth-child(10) {
  left: 35%;
  top: 65%;
  animation-delay: 1.8s;
}
.hero__particles span:nth-child(11) {
  left: 8%;
  top: 42%;
  animation-delay: 2.2s;
}
.hero__particles span:nth-child(12) {
  left: 72%;
  top: 88%;
  animation-delay: 0.6s;
}
.hero__particles span:nth-child(13) {
  left: 50%;
  top: 8%;
  animation-delay: 1.4s;
}
.hero__particles span:nth-child(14) {
  left: 28%;
  top: 32%;
  animation-delay: 2.6s;
}
.hero__particles span:nth-child(15) {
  left: 60%;
  top: 52%;
  animation-delay: 0.3s;
}

@keyframes float-p {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translateY(-18px) scale(1.2);
    opacity: 0.55;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 1.2rem + 4vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  max-width: 20ch;
}

.hero__typewriter {
  color: var(--gold-hover);
}

.hero__cursor {
  display: inline-block;
  width: 3px;
  margin-left: 2px;
  height: 0.9em;
  background: var(--gold);
  vertical-align: -0.05em;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero__sub {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 38ch;
  margin: 0 0 2rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  animation: bounce-soft 2.2s ease-in-out infinite;
}

.hero__scroll:hover {
  color: var(--gold-hover);
  text-decoration: none;
}

.hero__scroll svg {
  width: 1.25rem;
  height: 1.25rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translateX(0);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}

.section--alt {
  background: var(--bg-1);
}

.section--deep {
  background: linear-gradient(180deg, #0a1628 0%, var(--bg-0) 100%);
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section__lead {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

.section-head {
  margin-bottom: 2.5rem;
}

.stats {
  border-block: 1px solid var(--border);
  background: var(--bg-2);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  font-weight: 700;
  color: var(--gold-hover);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat__suffix {
  font-size: 1.25rem;
  color: var(--cyan);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 16ch;
  margin-inline: auto;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-tilt {
  perspective: 800px;
}

.card-tilt__inner {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.12s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.card-tilt:hover .card-tilt__inner {
  border-color: rgba(201, 162, 43, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.card-tilt__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  color: var(--cyan);
}

.card-tilt__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.card-tilt__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pipeline-wrap {
  margin-top: 2rem;
  overflow-x: auto;
}

.pipeline {
  width: 100%;
  min-width: 520px;
  max-width: 900px;
  margin-inline: auto;
  display: block;
}

.pipeline .pipe-line {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  transition: stroke-dashoffset 1.2s var(--ease-out);
}

.pipeline.is-drawn .pipe-line {
  stroke-dashoffset: 0;
}

.pipeline .pipe-line:nth-of-type(2) {
  transition-delay: 0.15s;
}
.pipeline .pipe-line:nth-of-type(3) {
  transition-delay: 0.3s;
}

.pipeline .node {
  transform-origin: center;
}

.pipeline.is-drawn .node {
  animation: node-pop 0.6s var(--ease-out) both;
}

.pipeline.is-drawn .node:nth-of-type(1) {
  animation-delay: 0.1s;
}
.pipeline.is-drawn .node:nth-of-type(2) {
  animation-delay: 0.35s;
}
.pipeline.is-drawn .node:nth-of-type(3) {
  animation-delay: 0.55s;
}
.pipeline.is-drawn .node:nth-of-type(4) {
  animation-delay: 0.75s;
}

@keyframes node-pop {
  from {
    transform: scale(0.85);
    opacity: 0.5;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.pipeline-labels {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 1rem auto 0;
  min-width: 520px;
  padding: 0 0.5rem;
  gap: 0.5rem;
}

.pipeline-labels .pl-item {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pipeline-labels .pl-item small {
  display: block;
  font-weight: 400;
  font-size: 0.72rem;
  margin-top: 0.25rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.multi-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .multi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.multi-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.multi-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.08);
}

.multi-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.multi-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.timeline {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.timeline-col h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  color: var(--gold-hover);
}

.timeline-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border);
}

.timeline-col li {
  position: relative;
  padding-bottom: 1.25rem;
  padding-left: 0.5rem;
}

.timeline-col li::before {
  content: "";
  position: absolute;
  left: calc(-1.5rem - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px var(--bg-1);
}

.timeline-col li strong {
  display: block;
  margin-bottom: 0.25rem;
}

.timeline-col li span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.mock-wrap {
  position: relative;
  margin-top: 2rem;
}

.mock-shell {
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(201, 162, 43, 0.15), rgba(56, 189, 248, 0.1));
  z-index: 0;
  opacity: 0.8;
}

.mock-card {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  padding: 1.5rem;
  transform: translateY(12px);
  transition: transform 0.7s var(--ease-out);
}

.mock-wrap.is-visible .mock-card {
  transform: translateY(0);
}

.mock-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 43, 0.5);
  color: var(--gold-hover);
  margin-bottom: 1rem;
}

.mock-blur {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  opacity: 0.45;
  font-size: 0.85rem;
  line-height: 1.8;
}

.mock-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.mock-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.mock-list li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
}

.persona-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .persona-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.persona {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-2);
}

.persona__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  opacity: 0.85;
}

.persona h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.persona p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pricing-toggle label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.pricing-toggle label.is-active {
  color: var(--text);
}

.switch {
  position: relative;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.switch__slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.switch__slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 2px;
  top: 2px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.35s var(--ease-out), background 0.3s ease;
}

.switch input:focus-visible + .switch__slider {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.switch input:checked + .switch__slider {
  border-color: rgba(201, 162, 43, 0.45);
  background: rgba(201, 162, 43, 0.12);
}

.switch input:checked + .switch__slider::before {
  transform: translateX(24px);
  background: var(--gold-hover);
}

.pricing-section.focus-pro .price-card--free {
  opacity: 0.65;
}

.pricing-section.focus-free .price-card--pro {
  opacity: 0.65;
}

.pricing-section.focus-pro .price-card--pro,
.pricing-section.focus-free .price-card--free {
  opacity: 1;
  transform: scale(1.02);
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.price-card {
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease-out), opacity 0.35s ease;
}

.price-card--pro {
  border-color: rgba(201, 162, 43, 0.35);
}

@media (min-width: 900px) {
  .price-card--pro {
    box-shadow: 0 0 40px rgba(201, 162, 43, 0.12);
  }
}

.price-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.price-was {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-tiers-lead {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-pro-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.price-tier-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding: 0.45rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.15);
}

.price-tier-geo {
  font-size: 0.78rem;
  color: var(--text-muted);
  flex: 1 1 40%;
  min-width: 7rem;
}

.price-tier-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.5rem 0.75rem;
}

.price-was--tier {
  margin: 0;
  font-size: 0.82rem;
}

.price-card .price--tier {
  font-size: 1.2rem;
  margin: 0;
}

.price-discount {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.price-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-hover);
  margin-bottom: 0.25rem;
}

.price-card .price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.price-features li:hover {
  background: rgba(255, 255, 255, 0.02);
}

.price-features .yes {
  color: var(--cyan);
  font-weight: 700;
}

.price-features .no {
  color: var(--text-muted);
}

.manifesto {
  text-align: center;
  padding: clamp(4rem, 12vw, 7rem) 0;
}

.manifesto__lines {
  max-width: 40ch;
  margin-inline: auto;
}

.manifesto__lines p {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 1rem + 1.5vw, 2rem);
  line-height: 1.35;
  margin: 0 0 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.manifesto.is-visible .manifesto__lines p {
  opacity: 1;
  transform: translateY(0);
}

.manifesto.is-visible .manifesto__lines p:nth-child(1) {
  transition-delay: 0.05s;
}
.manifesto.is-visible .manifesto__lines p:nth-child(2) {
  transition-delay: 0.2s;
}
.manifesto.is-visible .manifesto__lines p:nth-child(3) {
  transition-delay: 0.35s;
}
.manifesto.is-visible .manifesto__lines p:nth-child(4) {
  transition-delay: 0.5s;
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

.faq-item button .icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.35s var(--ease-out);
}

.faq-item.is-open button .icon {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-panel-inner {
  padding-bottom: 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 60ch;
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(201, 162, 43, 0.12), transparent 55%),
    var(--bg-1);
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.portal-cta-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.portal-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.portal-cta-hint {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.portal-cta-privacy {
  margin-top: 1.5rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
}

@media (min-width: 520px) {
  .waitlist-form {
    flex-direction: row;
    align-items: stretch;
  }
}

.waitlist-form input[type="email"] {
  flex: 1;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-0);
  color: var(--text);
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.waitlist-form .form-error {
  font-size: 0.85rem;
  color: #f87171;
  display: none;
}

.waitlist-form.is-invalid .form-error {
  display: block;
}

.form-success {
  display: none;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.08);
  color: var(--text);
}

.waitlist-form-wrap.is-done .waitlist-form {
  display: none;
}

.waitlist-form-wrap.is-done .form-success {
  display: block;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-0);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-grid h4 {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.disclaimer {
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 72ch;
  margin-bottom: 1rem;
}

.ip-line {
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.85;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legal-page {
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  min-height: 100vh;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.25rem);
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  max-width: 65ch;
}

.legal-page ul,
.legal-page ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  color: var(--text-muted);
}

.legal-page li {
  margin-bottom: 0.4rem;
}

.legal-meta {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  border-left: 3px solid var(--gold);
  padding: 0.85rem 0 0.85rem 1.1rem;
  margin: 0 0 2rem;
  max-width: 70ch;
  background: var(--glass);
  border-radius: 0 12px 12px 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  color: var(--text-muted);
  text-align: left;
  padding: 0.5rem;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.legal-table thead th {
  font-weight: 600;
  color: var(--text);
}

.legal-page blockquote {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--cyan);
  background: var(--glass);
  border-radius: 0 var(--radius-md, 0.75rem) var(--radius-md, 0.75rem) 0;
  max-width: 65ch;
}

.legal-page blockquote p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ═══ Cookie consent banner ═══ */
.cookie-consent {
  position: fixed;
  z-index: 9999;
  inset: auto 0 0 0;
  padding: var(--space, 1rem);
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.25s var(--ease-out, ease),
    transform 0.25s var(--ease-out, ease);
}

.cookie-consent.cookie-consent--visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent {
    transition: none;
  }
}

.cookie-consent__inner {
  width: 100%;
  max-width: 52rem;
  padding: 1rem 1.15rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 1.25rem);
  box-shadow: var(--shadow-card, 0 4px 24px rgba(0, 0, 0, 0.4));
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cookie-consent__inner {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}

.cookie-consent__text {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cookie-consent__link {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__link:hover {
  color: var(--gold-hover);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-consent__btn {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md, 0.75rem);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.cookie-consent__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cookie-consent__btn--ghost {
  background: transparent;
  color: var(--text);
}

.cookie-consent__btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cookie-consent__btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-0);
}

.cookie-consent__btn--primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.form-remote-error {
  display: none;
  font-size: 0.85rem;
  color: #f87171;
  margin-top: 0.75rem;
  max-width: 42ch;
}

.form-remote-error.is-visible {
  display: block;
}

/* ═══════════════════════════════════════════════════════
   HERO — novas peças
══════════════════════════════════════════════════════ */

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.hero__orb--1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(56,189,248,0.10) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation: orb-drift 18s ease-in-out infinite alternate;
}

.hero__orb--2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201,162,43,0.10) 0%, transparent 70%);
  bottom: 5%;
  right: -5%;
  animation: orb-drift 24s ease-in-out infinite alternate-reverse;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,0.3);
  background: rgba(56,189,248,0.06);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: badge-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56,189,248,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(56,189,248,0); }
}

.btn--lg {
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
}

.hero__trust {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero__trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

.hero__trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero__trust-chips span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text-muted);
  backdrop-filter: blur(6px);
}

/* ═══════════════════════════════════════════════════════
   STATS — número estático
══════════════════════════════════════════════════════ */

.stat__num--static {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  font-weight: 700;
  color: var(--gold-hover);
  line-height: 1;
  margin-bottom: 0.35rem;
}

/* ═══════════════════════════════════════════════════════
   SECTION EYEBROW
══════════════════════════════════════════════════════ */

.section__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.65rem;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════
   O PROCESSO — flow steps
══════════════════════════════════════════════════════ */

.processo-section {
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,162,43,0.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(56,189,248,0.06), transparent 55%),
    var(--bg-0);
}

.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

.flow-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0 1.5rem;
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.flow-step:hover {
  border-color: rgba(56,189,248,0.22);
  box-shadow: 0 0 28px rgba(56,189,248,0.05);
}

.flow-step--final {
  border-color: rgba(201,162,43,0.3);
  background: rgba(201,162,43,0.04);
}

.flow-step--final:hover {
  border-color: rgba(201,162,43,0.45);
  box-shadow: 0 0 32px rgba(201,162,43,0.08);
}

.flow-step__num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(56,189,248,0.35);
  line-height: 1;
  padding-top: 0.1rem;
  flex-shrink: 0;
}

.flow-step__num--final {
  color: rgba(201,162,43,0.55);
  font-size: 1.8rem;
}

.flow-step__body {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.flow-step__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--cyan);
  opacity: 0.85;
  margin-top: 0.1rem;
}

.flow-step__icon--gold {
  color: var(--gold-hover);
}

.flow-step__icon--cyan {
  color: var(--cyan);
}

.flow-step__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.flow-step__title--final {
  color: var(--gold-hover);
}

.flow-step__desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.flow-connector {
  display: flex;
  justify-content: center;
  padding: 0.25rem 0;
  color: var(--border);
  opacity: 0.6;
}

.flow-connector svg {
  width: 24px;
  height: 40px;
  color: rgba(56,189,248,0.3);
}

.processo-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════════
   MESA DE ESPECIALISTAS
══════════════════════════════════════════════════════ */

.mesa-section {
  background: linear-gradient(180deg, #090f1c 0%, var(--bg-0) 100%);
}

.mesa-diagram-wrap {
  max-width: 520px;
  margin: 0 auto 3rem;
}

.mesa-diagram {
  width: 100%;
  height: auto;
  display: block;
}

.mesa-line {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1s var(--ease-out);
}

.mesa-line:nth-of-type(2) { transition-delay: 0.12s; }
.mesa-line:nth-of-type(3) { transition-delay: 0.24s; }
.mesa-line:nth-of-type(4) { transition-delay: 0.36s; }
.mesa-line:nth-of-type(5) { transition-delay: 0.48s; }

.mesa-diagram.is-drawn .mesa-line {
  stroke-dashoffset: 0;
}

.mesa-node {
  transform-origin: center;
}

.mesa-diagram.is-drawn .mesa-node {
  animation: node-pop 0.55s var(--ease-out) both;
}
.mesa-diagram.is-drawn .mesa-node:nth-of-type(1) { animation-delay: 0.25s; }
.mesa-diagram.is-drawn .mesa-node:nth-of-type(2) { animation-delay: 0.40s; }
.mesa-diagram.is-drawn .mesa-node:nth-of-type(3) { animation-delay: 0.55s; }
.mesa-diagram.is-drawn .mesa-node:nth-of-type(4) { animation-delay: 0.70s; }
.mesa-diagram.is-drawn .mesa-node:nth-of-type(5) { animation-delay: 0.85s; }

.auditor-node {
  transform-origin: 240px 210px;
}

.mesa-diagram.is-drawn .auditor-node {
  animation: node-pop 0.7s var(--ease-out) 1s both;
}

.auditor-ring {
  transform-origin: 240px 210px;
  animation: ring-spin 20s linear infinite;
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.mesa-pillars {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .mesa-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mesa-pillar {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mesa-pillar:hover {
  border-color: rgba(56,189,248,0.3);
  box-shadow: 0 0 24px rgba(56,189,248,0.06);
}

.mesa-pillar__icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.9rem;
  color: var(--cyan);
}

.mesa-pillar__icon--gold {
  color: var(--gold-hover);
}

.mesa-pillar h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
}

.mesa-pillar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   ACOMPANHAMENTO DIÁRIO
══════════════════════════════════════════════════════ */

.diario-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(56,189,248,0.06), transparent 55%),
    var(--bg-0);
}

.diario-cards {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .diario-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.diario-card {
  padding: 1.75rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.diario-card--pm {
  border-color: rgba(201,162,43,0.2);
}

.diario-card:hover {
  border-color: rgba(56,189,248,0.28);
  box-shadow: 0 8px 40px rgba(56,189,248,0.07);
}

.diario-card--pm:hover {
  border-color: rgba(201,162,43,0.38);
  box-shadow: 0 8px 40px rgba(201,162,43,0.07);
}

.diario-card__time {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.diario-card__hour {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.diario-card--pm .diario-card__hour {
  color: var(--gold-hover);
}

.diario-card__tz {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.diario-card__body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.diario-card__body p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.diario-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.diario-card__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.diario-card__list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.diario-card--pm .diario-card__list li::before {
  color: var(--gold-hover);
}

.diario-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-2);
}

@media (min-width: 600px) {
  .diario-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.diario-cta__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 52ch;
}

/* ═══════════════════════════════════════════════════════
   PODCAST
══════════════════════════════════════════════════════ */

.podcast-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .podcast-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.podcast-content .section__title {
  margin-bottom: 1rem;
}

.podcast-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 0.85rem;
  max-width: 46ch;
}

.podcast-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.podcast-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.55;
}

.podcast-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.85rem;
}

.podcast-visual {
  display: flex;
  justify-content: center;
}

.podcast-player {
  width: 100%;
  max-width: 340px;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(201,162,43,0.25);
  background: var(--bg-2);
  box-shadow: 0 0 40px rgba(201,162,43,0.08);
}

.podcast-player__wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.podcast-player__wave span {
  width: 4px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0.6;
  animation: wave-bar 1.4s ease-in-out infinite;
}

.podcast-player__wave span:nth-child(1)  { height: 16px; }
.podcast-player__wave span:nth-child(2)  { height: 28px; animation-delay: 0.1s; }
.podcast-player__wave span:nth-child(3)  { height: 40px; animation-delay: 0.2s; }
.podcast-player__wave span:nth-child(4)  { height: 32px; animation-delay: 0.3s; }
.podcast-player__wave span:nth-child(5)  { height: 20px; animation-delay: 0.4s; }
.podcast-player__wave span:nth-child(6)  { height: 44px; animation-delay: 0.5s; }
.podcast-player__wave span:nth-child(7)  { height: 36px; animation-delay: 0.6s; }
.podcast-player__wave span:nth-child(8)  { height: 48px; animation-delay: 0.5s; }
.podcast-player__wave span:nth-child(9)  { height: 36px; animation-delay: 0.4s; }
.podcast-player__wave span:nth-child(10) { height: 44px; animation-delay: 0.3s; }
.podcast-player__wave span:nth-child(11) { height: 20px; animation-delay: 0.2s; }
.podcast-player__wave span:nth-child(12) { height: 32px; animation-delay: 0.1s; }
.podcast-player__wave span:nth-child(13) { height: 40px; animation-delay: 0.2s; }
.podcast-player__wave span:nth-child(14) { height: 28px; animation-delay: 0.3s; }
.podcast-player__wave span:nth-child(15) { height: 16px; animation-delay: 0.4s; }

@keyframes wave-bar {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50%       { transform: scaleY(1.0); opacity: 0.85; }
}

.podcast-player__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.podcast-player__btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a88420);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #0a0e14;
}

.podcast-player__btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.podcast-player__title {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.podcast-player__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.podcast-player__progress {
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  margin-bottom: 1rem;
  overflow: hidden;
}

.podcast-player__bar {
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  border-radius: 2px;
}

.podcast-player__chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.podcast-player__chips span {
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   DIFERENÇA (comparação com vs sem método)
══════════════════════════════════════════════════════ */

.diferenca-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .diferenca-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

.diferenca-col {
  padding: 1.75rem;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.diferenca-col--bad {
  background: rgba(255,255,255,0.01);
  opacity: 0.8;
}

.diferenca-col--good {
  background: rgba(201,162,43,0.04);
  border-color: rgba(201,162,43,0.25);
  box-shadow: 0 0 32px rgba(201,162,43,0.06);
}

.diferenca-col__heading {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1.1rem;
  color: var(--text-muted);
}

.diferenca-col__heading--good {
  color: var(--gold-hover);
}

.diferenca-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.diferenca-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.diferenca-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: rgba(248,113,113,0.7);
  font-weight: 700;
  font-size: 0.8rem;
}

.diferenca-list--good li {
  color: var(--text);
}

.diferenca-list--good li::before {
  content: "✓";
  color: var(--cyan);
}

.diferenca-vs {
  display: none;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--border);
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .diferenca-vs {
    display: block;
  }
}

/* ═══════════════════════════════════════════════════════
   MOCK REPORT — melhorado
══════════════════════════════════════════════════════ */

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mock-week {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.mock-body {
  margin-bottom: 1.25rem;
}

.mock-section-block {
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.mock-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}

.mock-votes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.mock-vote {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  border: 1px solid;
}

.mock-vote--bull {
  color: #4ade80;
  border-color: rgba(74,222,128,0.3);
  background: rgba(74,222,128,0.07);
}

.mock-vote--bear {
  color: #f87171;
  border-color: rgba(248,113,113,0.3);
  background: rgba(248,113,113,0.07);
}

.mock-vote--neutral {
  color: var(--text-muted);
  border-color: var(--border);
  background: var(--glass);
}

.mock-consensus-line {
  font-size: 0.82rem;
}

.mock-consensus-label {
  color: var(--text-muted);
  margin-right: 0.3rem;
}

.mock-consensus-val {
  color: var(--gold-hover);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   PRICING — badge "recomendado"
══════════════════════════════════════════════════════ */

.price-card__rec {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(201,162,43,0.5);
  color: var(--gold-hover);
  margin-bottom: 0.75rem;
  background: rgba(201,162,43,0.08);
}

/* ═══════════════════════════════════════════════════════
   MANIFESTO — linha de destaque
══════════════════════════════════════════════════════ */

.manifesto__accent {
  color: var(--gold-hover) !important;
  position: relative;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION — melhorada
══════════════════════════════════════════════════════ */

.cta-privacy {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.cta-privacy a {
  color: var(--cyan);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */

.footer-brand {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ===== REDE DE CÉREBROS ===== */
.rede-section { }
.rede-lead-block { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.rede-grid {
  display: grid;
  gap: 1rem;
  margin: 0 0 2.5rem;
}
@media (min-width: 640px) { .rede-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .rede-grid { grid-template-columns: repeat(4, 1fr); } }
.rede-node {
  padding: 1.35rem 1.25rem;
  border-radius: 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.rede-node:hover {
  border-color: rgba(56,189,248,0.3);
  box-shadow: 0 0 20px rgba(56,189,248,0.07);
}
.rede-node__icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
  color: var(--cyan);
}
.rede-node__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-hi);
  margin: 0 0 0.3rem;
}
.rede-node__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.rede-arrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.rede-arrow-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 99px;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.25);
  color: var(--cyan);
}
.rede-arrow-badge--gold {
  background: rgba(201,162,43,0.1);
  border-color: rgba(201,162,43,0.3);
  color: var(--gold-hover);
}
.rede-arrow-badge--prime {
  background: rgba(201,162,43,0.18);
  border-color: var(--gold);
  color: var(--gold);
}
.rede-arrow-sep { color: var(--text-muted); opacity: 0.5; font-size: 1rem; }
.rede-conclusion {
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ANALISTAS GRID ===== */
.analistas-grid {
  display: grid;
  gap: 1rem;
  margin: 2.5rem 0;
}
@media (min-width: 640px) { .analistas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .analistas-grid { grid-template-columns: repeat(3, 1fr); } }
.analista-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--cyan);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.analista-card:hover {
  border-color: rgba(56,189,248,0.35);
  box-shadow: 0 0 28px rgba(56,189,248,0.08);
}
.analista-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-hi);
  font-family: 'IBM Plex Sans', sans-serif;
}
.analista-card__spec {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(56,189,248,0.07);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 99px;
  padding: 0.18rem 0.65rem;
  width: fit-content;
}
.analista-card__id {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.analista-card__q {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(232,230,227,0.5);
  line-height: 1.6;
  margin: 0;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
}

/* ===== MESA FLOW LINE ===== */
.mesa-flow-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: -1rem 0 2.5rem;
  flex-wrap: wrap;
}
.mesa-flow-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.85rem;
  border-radius: 99px;
  background: rgba(56,189,248,0.07);
  border: 1px solid rgba(56,189,248,0.22);
  color: var(--cyan);
}
.mesa-flow-badge--senior {
  background: rgba(201,162,43,0.09);
  border-color: rgba(201,162,43,0.28);
  color: var(--gold-hover);
}
.mesa-flow-badge--prime {
  background: rgba(201,162,43,0.16);
  border-color: var(--gold);
  color: var(--gold);
}
.mesa-flow-arrow { color: var(--text-muted); font-size: 0.85rem; opacity: 0.55; }

/* ===== SENIOR BLOCK (Conselho SENIOR) ===== */
.senior-block {
  margin-top: 4rem;
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(201,162,43,0.05) 0%, rgba(9,15,28,0.8) 100%);
  border: 1px solid rgba(201,162,43,0.2);
}
.senior-block .section__eyebrow {
  color: var(--gold-hover);
}
.senior-block__title {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 600;
  margin: 0.4rem 0 0.9rem;
  line-height: 1.3;
}
.senior-block__lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 0.9rem;
  line-height: 1.7;
}
.senior-block__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 2rem;
}
.senior-nodes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.senior-node {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1.5px solid rgba(201,162,43,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-hover);
  letter-spacing: 0.04em;
}
.senior-sep {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.6;
  margin: 0 0.3rem;
}
.senior-prime-badge {
  padding: 0.35rem 1.1rem;
  background: rgba(201,162,43,0.15);
  border: 1.5px solid var(--gold);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}
