  :root {
    --purple: #3D1A6E;
    --purple-deep: #2A1050;
    --purple-darker: #1F0A3E;
    --purple-light: #5A2A9E;
    --purple-glow: #7B4FCF;
    --orange: #F07830;
    --orange-dark: #D6651E;
    --orange-light: #FF9555;
    --night: #0F0820;
    --white: #FFFFFF;
    --cream: #FAF8F5;
    --gray-50: #F8F8FA;
    --gray-100: #EFEEF3;
    --gray-200: #E0DFE7;
    --gray-300: #C9C7D4;
    --gray-400: #9491A6;
    --gray-500: #6E6B85;
    --gray-600: #4F4D63;
    --gray-700: #353349;
    --max-width: 1240px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  *::selection { background: var(--orange); color: var(--white); }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--night);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-weight: 800;
  }

  .serif {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
  }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  img, svg { max-width: 100%; display: block; }
  input, select, textarea { font-family: inherit; }

  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
  }

  /* ====================== NAV ====================== */

  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(15, 8, 32, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; }
  .nav-logo { height: 36px; }
  .nav-cta {
    background: var(--orange);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 14px rgba(240, 120, 48, 0.4);
  }
  .nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240, 120, 48, 0.55);
  }

  /* ====================== STICKY CTA ====================== */

  .sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    background: var(--orange);
    color: var(--white);
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 50px rgba(240, 120, 48, 0.5), 0 0 0 1px rgba(255,255,255,0.08);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    opacity: 0;
    transform: translateY(120px);
    pointer-events: none;
  }
  .sticky-cta.visible {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .sticky-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-4px);
    box-shadow: 0 18px 60px rgba(240, 120, 48, 0.6);
  }
  .sticky-pulse {
    width: 8px; height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.6s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.6); }
  }
  @media (max-width: 600px) {
    .sticky-cta { bottom: 16px; right: 16px; left: 16px; justify-content: center; }
  }

  /* ====================== HERO — CINEMATIC ====================== */

  .hero {
    background: radial-gradient(ellipse at 70% -10%, rgba(240, 120, 48, 0.18) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 110%, rgba(123, 79, 207, 0.32) 0%, transparent 55%),
                linear-gradient(180deg, var(--purple-darker) 0%, var(--night) 100%);
    position: relative;
    overflow: hidden;
    padding: 130px 0 80px;
    color: var(--white);
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
    pointer-events: none;
  }
  .hero-spotlight {
    position: absolute;
    width: 800px; height: 800px;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(240, 120, 48, 0.12) 0%, transparent 60%);
    pointer-events: none;
    animation: float 14s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 30px); }
  }

  .hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .hero-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: heroTextIn 0.9s cubic-bezier(0.4,0,0.2,1) both;
  }
  @keyframes heroTextIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-text .hero-sub {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .hero-text .hero-cta-wrap {
    align-items: flex-start;
    margin-bottom: 0;
  }
  .hero-text .hero-meta {
    justify-content: flex-start;
  }
  .hero-text h1 {
    font-size: clamp(34px, 4.2vw, 62px);
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 18px;
    background: rgba(240, 120, 48, 0.12);
    border: 1px solid rgba(240, 120, 48, 0.4);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 36px;
  }
  .hero-eyebrow-dot {
    width: 7px; height: 7px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(240, 120, 48, 0.25);
    animation: pulseDot 2s ease-in-out infinite;
  }
  @keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
  }

  .hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.045em;
    line-height: 0.98;
  }
  .hero h1 .serif {
    color: var(--orange-light);
    font-weight: 400;
    font-size: 1.05em;
  }
  .hero h1 .glow {
    color: var(--orange-light);
    position: relative;
    display: inline-block;
  }
  .hero h1 .glow::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0; right: 0;
    height: 14px;
    background: var(--orange);
    opacity: 0.22;
    z-index: -1;
    transform: skewX(-6deg);
  }

  .hero-sub {
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: rgba(255,255,255,0.78);
    margin-bottom: 44px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-sub strong { color: var(--white); font-weight: 600; }

  .hero-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 70px;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 14px 40px rgba(240, 120, 48, 0.45), 0 0 0 1px rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.14) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s;
  }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 20px 50px rgba(240, 120, 48, 0.6); }
  .btn-primary:hover::before { transform: translateX(100%); }
  .btn-primary svg { transition: transform 0.2s; position: relative; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .hero-meta {
    display: flex;
    gap: 32px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-meta span { display: flex; align-items: center; gap: 7px; }
  .hero-meta svg { color: var(--orange-light); }

  /* HERO — Visual showcase */
  .hero-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 50px 120px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    animation: heroSlideIn 1s cubic-bezier(0.4,0,0.2,1) 0.25s both;
  }
  @keyframes heroSlideIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(240, 120, 48, 0.15) 0%, transparent 50%);
    pointer-events: none;
  }

  /* ====================== IMAGE PLACEHOLDER ====================== */

  .img-placeholder {
    background: linear-gradient(135deg, rgba(123, 79, 207, 0.08) 0%, rgba(240, 120, 48, 0.08) 100%);
    border: 2px dashed rgba(123, 79, 207, 0.35);
    border-radius: 18px;
    padding: 60px 40px;
    text-align: center;
    color: var(--purple);
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .img-placeholder.dark {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.7);
  }
  .img-placeholder-icon {
    width: 48px; height: 48px;
    background: rgba(123, 79, 207, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    margin-bottom: 6px;
  }
  .img-placeholder.dark .img-placeholder-icon {
    background: rgba(240, 120, 48, 0.18);
    color: var(--orange-light);
  }
  .img-placeholder-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .img-placeholder-instructions {
    font-size: 13px;
    opacity: 0.75;
    max-width: 420px;
    line-height: 1.5;
  }
  .img-placeholder-dim {
    font-size: 11px;
    margin-top: 8px;
    padding: 4px 10px;
    background: rgba(123, 79, 207, 0.1);
    border-radius: 999px;
    font-family: monospace;
    letter-spacing: 0.04em;
  }
  .img-placeholder.dark .img-placeholder-dim {
    background: rgba(255,255,255,0.06);
  }

  /* ====================== NUMBERS BAR ====================== */

  .numbers {
    background: var(--night);
    padding: 60px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .numbers::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(240, 120, 48, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .number-card {
    text-align: center;
    padding: 0 20px;
    position: relative;
  }
  .number-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px; top: 50%;
    width: 1px; height: 60%;
    background: rgba(255,255,255,0.08);
    transform: translateY(-50%);
  }
  .number-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 800;
    color: var(--orange-light);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
  }
  .number-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
    line-height: 1.4;
  }
  @media (max-width: 700px) {
    .numbers-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
    .number-card::after { display: none !important; }
  }

  /* ====================== SECTION BASE ====================== */

  section { position: relative; }

  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 24px;
  }
  .section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--orange);
  }
  .section-title {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 24px;
    color: var(--night);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }
  .section-title .serif { color: var(--orange); }
  .section-title em {
    font-style: normal;
    color: var(--orange);
  }
  .section-sub {
    font-size: 19px;
    color: var(--gray-600);
    max-width: 680px;
    margin-bottom: 64px;
    line-height: 1.55;
  }

  /* ====================== BEFORE/AFTER ====================== */

  .compare {
    padding: 130px 0;
    background: var(--gray-50);
    position: relative;
  }
  .compare-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
  }
  .compare-head .section-title { margin-left: auto; margin-right: auto; }
  .compare-head .section-eyebrow { display: inline-flex; }

  .compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    align-items: stretch;
  }
  .compare-vs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--gray-500);
    box-shadow: 0 8px 24px -8px rgba(61, 26, 110, 0.15);
    z-index: 5;
  }
  .compare-card {
    background: var(--white);
    border-radius: 24px;
    padding: 44px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }
  .compare-card.before {
    background: linear-gradient(180deg, rgba(243, 99, 99, 0.04) 0%, rgba(243, 99, 99, 0.02) 100%);
    border-color: rgba(243, 99, 99, 0.18);
  }
  .compare-card.after {
    background: linear-gradient(180deg, rgba(240, 120, 48, 0.05) 0%, rgba(123, 79, 207, 0.04) 100%);
    border-color: rgba(240, 120, 48, 0.25);
    position: relative;
    overflow: hidden;
  }
  .compare-card.after::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(240, 120, 48, 0.12) 0%, transparent 60%);
  }
  .compare-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
  }
  .before .compare-tag { color: #C84F4F; }
  .after .compare-tag { color: var(--orange); }
  .compare-card h3 {
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--night);
    position: relative;
  }
  .compare-list {
    list-style: none;
    margin-top: auto;
  }
  .compare-list li {
    padding: 14px 0;
    padding-left: 32px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.5;
    position: relative;
  }
  .before .compare-list li { color: var(--gray-600); }
  .compare-list li:last-child { border-bottom: none; }
  .compare-list li::before {
    position: absolute;
    left: 0; top: 18px;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 11px;
  }
  .before .compare-list li::before {
    content: '✕';
    background: rgba(243, 99, 99, 0.12);
    color: #C84F4F;
  }
  .after .compare-list li::before {
    content: '✓';
    background: var(--orange);
    color: var(--white);
  }
  @media (max-width: 880px) {
    .compare-grid { grid-template-columns: 1fr; }
    .compare-vs { left: 50%; top: auto; bottom: 50%; transform: translate(-50%, 50%); display: none; }
  }

  /* ====================== HOW IT WORKS — CINEMATIC ====================== */

  .how {
    padding: 130px 0;
    background: var(--white);
    overflow: hidden;
  }
  .how-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
  }
  .how-head .section-eyebrow { display: inline-flex; }
  .how-head .section-title { margin-left: auto; margin-right: auto; }
  .how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
  }
  .how-step {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 30px;
    border: 1px solid var(--gray-100);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
  }
  .how-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 120, 48, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .how-step:hover::before { opacity: 1; }
  .how-step:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(240, 120, 48, 0.25);
  }
  .how-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.16em;
    margin-bottom: 24px;
    position: relative;
  }
  .how-step h3 {
    font-size: 21px;
    margin-bottom: 14px;
    line-height: 1.2;
    position: relative;
  }
  .how-step p {
    color: var(--gray-600);
    font-size: 14.5px;
    line-height: 1.6;
    position: relative;
  }
  @media (max-width: 880px) {
    .how-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 540px) {
    .how-grid { grid-template-columns: 1fr; }
  }

  /* DASHBOARD SHOWCASE */
  .dashboard-showcase {
    background: linear-gradient(160deg, var(--purple-darker) 0%, var(--night) 100%);
    border-radius: 32px;
    padding: 70px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px -30px rgba(61, 26, 110, 0.4);
  }
  .dashboard-showcase::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(240, 120, 48, 0.18) 0%, transparent 60%);
    pointer-events: none;
  }
  .dashboard-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 70%);
    pointer-events: none;
  }
  .dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .dashboard-text .section-eyebrow { color: var(--orange-light); }
  .dashboard-text .section-eyebrow::before { background: var(--orange-light); }
  .dashboard-text h3 {
    font-size: clamp(28px, 3.2vw, 40px);
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1.1;
  }
  .dashboard-text h3 .serif { color: var(--orange-light); }
  .dashboard-text p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .dashboard-features {
    list-style: none;
    margin-top: 24px;
  }
  .dashboard-features li {
    padding: 12px 0;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .dashboard-features li:last-child { border-bottom: none; }
  .dashboard-features svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 4px;
  }
  @media (max-width: 880px) {
    .dashboard-showcase { padding: 40px 30px; }
    .dashboard-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ====================== PIONEIROS — EXCLUSIVE ====================== */

  .pioneiros {
    padding: 130px 0;
    background: var(--night);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .pioneiros::before {
    content: '';
    position: absolute;
    top: -20%; left: 50%;
    transform: translateX(-50%);
    width: 1200px; height: 800px;
    background: radial-gradient(ellipse, rgba(240, 120, 48, 0.16) 0%, transparent 60%);
    pointer-events: none;
  }
  .pioneiros::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
  }
  .pioneiros-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
  }
  .pioneiros-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 20px;
    background: rgba(240, 120, 48, 0.12);
    border: 1px solid rgba(240, 120, 48, 0.4);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 32px;
  }
  .pioneiros-eyebrow-dot {
    width: 7px; height: 7px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(240, 120, 48, 0.25);
    animation: pulseDot 2s ease-in-out infinite;
  }
  .pioneiros h2 {
    font-size: clamp(40px, 5.5vw, 72px);
    color: var(--white);
    line-height: 1;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
  }
  .pioneiros h2 .serif { color: var(--orange-light); }
  .pioneiros-lead {
    font-size: clamp(17px, 1.5vw, 20px);
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
    max-width: 640px;
    margin: 0 auto 56px;
  }

  .pioneiros-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 56px;
    text-align: left;
  }
  .benefit-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 32px 28px;
    backdrop-filter: blur(20px);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }
  .benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 120, 48, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .benefit-card:hover { border-color: rgba(240, 120, 48, 0.4); transform: translateY(-4px); }
  .benefit-card:hover::before { opacity: 1; }
  .benefit-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: rgba(240, 120, 48, 0.18);
    color: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
  }
  .benefit-card h4 {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.25;
    position: relative;
  }
  .benefit-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    position: relative;
  }

  .pioneiros-cta {
    background: var(--orange);
    color: var(--white);
    padding: 20px 44px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 14px 50px rgba(240, 120, 48, 0.5);
    position: relative;
  }
  .pioneiros-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(240, 120, 48, 0.65);
  }
  .pioneiros-foot {
    margin-top: 22px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
  }
  .pioneiros-foot strong { color: var(--orange-light); font-weight: 600; }
  @media (max-width: 880px) {
    .pioneiros-benefits { grid-template-columns: 1fr; }
  }

  /* ====================== FOUNDERS LETTER ====================== */

  .founders {
    padding: 130px 0;
    background: var(--cream);
    position: relative;
  }
  .founders-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .founders-quote {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.25;
    color: var(--night);
    margin-bottom: 36px;
    letter-spacing: -0.01em;
  }
  .founders-quote .accent { color: var(--orange); }
  .founders-text {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 18px;
  }
  .founders-text em { color: var(--purple); font-style: italic; }
  .founders-sign {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
    display: inline-block;
    font-size: 14px;
    color: var(--gray-500);
  }
  .founders-sign strong {
    color: var(--night);
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 4px;
  }

  /* ====================== TEAM (cross-links) ====================== */

  .team {
    padding: 130px 0;
    background: var(--white);
  }
  .team-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
  }
  .team-head .section-eyebrow { display: inline-flex; }
  .team-head .section-title { margin-left: auto; margin-right: auto; }
  .team-head .section-sub { margin-left: auto; margin-right: auto; margin-bottom: 0; }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .team-card {
    background: var(--white);
    border-radius: 22px;
    padding: 40px 34px;
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
  }
  .team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 120, 48, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .team-card:hover::before { opacity: 1; }
  .team-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(240, 120, 48, 0.18);
  }
  .team-card.current {
    background: linear-gradient(160deg, var(--purple-darker) 0%, var(--purple) 100%);
    color: var(--white);
    border-color: var(--purple-light);
  }
  .team-card.current::before {
    background: radial-gradient(circle at top right, rgba(240, 120, 48, 0.18) 0%, transparent 60%);
    opacity: 1;
  }
  .team-card-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(123, 79, 207, 0.1) 0%, rgba(240, 120, 48, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
  }
  .team-card.current .team-card-icon {
    background: rgba(240, 120, 48, 0.18);
  }
  .team-card-tag {
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    position: relative;
  }
  .team-card.current .team-card-tag { color: var(--orange-light); }
  .team-card h3 {
    font-size: 24px;
    line-height: 1.15;
    color: var(--night);
    position: relative;
  }
  .team-card.current h3 { color: var(--white); }
  .team-card p {
    color: var(--gray-600);
    font-size: 14.5px;
    line-height: 1.6;
    flex-grow: 1;
    position: relative;
  }
  .team-card.current p { color: rgba(255,255,255,0.78); }
  .team-card-link {
    color: var(--purple);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
    margin-top: auto;
    position: relative;
  }
  .team-card-link:hover { gap: 12px; }
  .team-card.current .team-card-link {
    color: var(--orange-light);
    pointer-events: none;
  }
  @media (max-width: 880px) {
    .team-grid { grid-template-columns: 1fr; }
  }

  /* ====================== FAQ ====================== */

  .faq {
    padding: 130px 0;
    background: var(--gray-50);
  }
  .faq-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
  }
  .faq-head .section-eyebrow { display: inline-flex; }
  .faq-head .section-title { margin-left: auto; margin-right: auto; }
  .faq-grid { max-width: 820px; margin: 0 auto; }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s;
  }
  .faq-item.active {
    border-color: var(--purple-light);
    box-shadow: 0 14px 40px -16px rgba(61, 26, 110, 0.18);
  }
  .faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--night);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--purple); }
  .faq-icon {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
    line-height: 1;
  }
  .faq-item.active .faq-icon {
    background: var(--orange);
    color: var(--white);
    transform: rotate(45deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.65;
    padding: 0 30px;
  }
  .faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 30px 26px;
  }

  /* ====================== FINAL CTA ====================== */

  .final-cta {
    padding: 130px 0;
    background: linear-gradient(160deg, var(--purple-darker) 0%, var(--night) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: -10%; left: 50%;
    transform: translateX(-50%);
    width: 1200px; height: 700px;
    background: radial-gradient(ellipse, rgba(240, 120, 48, 0.18) 0%, transparent 60%);
    pointer-events: none;
  }
  .final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
  }
  .final-cta h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.05;
  }
  .final-cta h2 .serif { color: var(--orange-light); }
  .final-cta-lead {
    font-size: 18px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 32px;
    line-height: 1.6;
  }
  .final-cta-points { list-style: none; margin-top: 24px; }
  .final-cta-points li {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
  }
  .final-cta-points svg { color: var(--orange); flex-shrink: 0; }

  .form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 44px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-field label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .form-field input, .form-field select {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 13px 16px;
    color: var(--white);
    font-size: 14px;
    transition: all 0.2s;
  }
  .form-field input::placeholder { color: rgba(255,255,255,0.3); }
  .form-field input:focus, .form-field select:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(240, 120, 48, 0.1);
  }
  .form-field select option { color: var(--night); }
  .form-cta {
    width: 100%;
    background: var(--orange);
    color: var(--white);
    padding: 17px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 16px;
    transition: all 0.3s;
    box-shadow: 0 14px 40px rgba(240, 120, 48, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .form-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(240, 120, 48, 0.55);
  }
  .form-meta {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }
  .form-meta a { color: var(--orange-light); }
  @media (max-width: 880px) {
    .final-cta-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 32px 28px; }
  }

  /* ====================== FOOTER ====================== */

  .footer {
    background: var(--night);
    padding: 70px 0 36px;
    color: rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }
  .footer-logo { height: 32px; margin-bottom: 18px; display: block; }
  .footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; }
  .footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 11px; }
  .footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--orange); }
  .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 16px;
  }
  @media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 880px) {
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
    .hero-text {
      text-align: center;
      align-items: center;
    }
    .hero-text .hero-sub { margin-left: auto; margin-right: auto; max-width: 600px; }
    .hero-text .hero-cta-wrap { align-items: center; }
    .hero-text .hero-meta { justify-content: center; }
    .hero-text h1 { font-size: clamp(38px, 7vw, 60px); }
    .hero-visual { max-width: 680px; margin: 0 auto; }
  }

  @media (max-width: 600px) {
    .hero { padding: 110px 0 70px; }
    .compare, .how, .pioneiros, .founders, .team, .faq, .final-cta { padding: 80px 0; }
    .compare-card { padding: 32px 26px; }
    .dashboard-showcase { padding: 32px 24px; }
  }

  /* ==================== STEP 01 ARROW PULSE ==================== */
  @keyframes arrowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50%       { opacity: 1;   transform: translateX(3px); }
  }
  .how-step-illu polygon {
    animation: arrowPulse 1.6s ease-in-out infinite;
  }

  /* ==================== SCROLL ANIMATIONS ==================== */
  .animate-ready {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
  }
  .animate-ready.visible {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    .animate-ready { opacity: 1; transform: none; transition: none; }
  }

  /* ==================== HERO SVG DASHBOARD MOCKUP ==================== */
  .hero-mockup {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(160deg, #1A1033 0%, #0F0820 100%);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
      0 50px 120px -30px rgba(61, 26, 110, 0.5),
      0 20px 40px -10px rgba(0,0,0,0.4),
      inset 0 1px 0 rgba(255,255,255,0.06);
    overflow: hidden;
    position: relative;
  }
  .hero-mockup::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 5;
  }
  .hero-mockup::after {
    content: '';
    position: absolute;
    top: 11px; left: 16px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #FF5F57;
    box-shadow: 18px 0 0 #FEBC2E, 36px 0 0 #28C840;
    z-index: 6;
  }
  .hero-mockup svg { width: 100%; height: 100%; display: block; }

  /* ==================== HOW STEP ILLUSTRATIONS ==================== */
  .how-step {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
  }
  .how-step-illu {
    height: 200px;
    background: var(--cream);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
  }
  .how-step-illu.white { background: var(--white); border-bottom: 1px solid var(--gray-100); }
  .how-step-illu svg { max-width: 100%; max-height: 100%; }
  .how-step-body {
    padding: 28px 28px 32px;
    flex: 1;
  }
  .how-step-body .how-num { margin-bottom: 14px; }
  @media (max-width: 600px) {
    .how-step-illu { height: 160px; }
  }

  /* ==================== COMPARE — IMAGENS NO TOPO ==================== */
  .compare-illu {
    width: calc(100% + 88px);
    margin: -44px -44px 28px;
    height: 220px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
  }
  .compare-illu svg { width: 100%; height: 100%; display: block; }
  .compare-illu.before-illu { background: #2A2030; }
  .compare-illu.after-illu { background: linear-gradient(135deg, #3D1A6E 0%, #1F0A3E 100%); }
  @media (max-width: 880px) {
    .compare-illu { width: calc(100% + 88px); margin-left: -44px; margin-right: -44px; }
  }
  @media (max-width: 600px) {
    .compare-illu { width: calc(100% + 64px); margin: -32px -32px 22px; height: 180px; }
  }

  /* ==================== DEMO INTERATIVA ==================== */
  .demo {
    padding: 130px 0;
    background: var(--night);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .demo::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(240, 120, 48, 0.10) 0%, transparent 60%);
    pointer-events: none;
  }
  .demo::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 70%);
    pointer-events: none;
  }
  .demo-head {
    max-width: 760px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 2;
  }
  .demo-head .section-eyebrow { color: var(--orange-light); }
  .demo-head .section-eyebrow::before { background: var(--orange-light); }
  .demo-head h2 {
    font-size: clamp(36px, 5vw, 64px);
    color: var(--white);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
  }
  .demo-head h2 .serif { color: var(--orange-light); }
  .demo-head p {
    color: rgba(255,255,255,0.65);
    font-size: 17px;
    line-height: 1.55;
  }
  .demo-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: stretch;
    position: relative;
    z-index: 2;
  }

  /* Redação (esquerda) */
  .essay-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 40px 44px;
    color: var(--night);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px -30px rgba(0,0,0,0.5);
    position: relative;
  }
  .essay-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--night);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .essay-meta {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .essay-body p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 14px;
  }
  /* Trechos com marcação que aparecem ao corrigir */
  .essay-mark {
    position: relative;
    padding: 1px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.5s 0.3s ease;
  }
  .essay-mark .mark-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px; height: 18px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    margin-left: 4px;
    vertical-align: super;
    opacity: 0;
    transform: scale(0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .demo.corrected .essay-mark.m1 { background: rgba(240, 120, 48, 0.18); border-bottom-color: var(--orange); }
  .demo.corrected .essay-mark.m2 { background: rgba(123, 79, 207, 0.18); border-bottom-color: #7B4FCF; }
  .demo.corrected .essay-mark.m3 { background: rgba(243, 99, 99, 0.18); border-bottom-color: #C84F4F; }
  .demo.corrected .essay-mark .mark-num {
    opacity: 1;
    transform: scale(1);
  }
  .demo.corrected .essay-mark.m1 .mark-num { transition-delay: 0.6s; }
  .demo.corrected .essay-mark.m2 .mark-num { transition-delay: 0.85s; background: #7B4FCF; }
  .demo.corrected .essay-mark.m3 .mark-num { transition-delay: 1.1s; background: #C84F4F; }

  /* Comentários (aparecem inline embaixo) */
  .essay-comments {
    list-style: none;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.4s ease, margin-top 0.4s ease;
  }
  .demo.corrected .essay-comments {
    max-height: 400px;
    opacity: 1;
    margin-top: 28px;
    transition: max-height 0.6s ease, opacity 0.4s 0.4s ease, margin-top 0.4s ease;
  }
  .essay-comments li {
    padding: 14px 0 14px 38px;
    border-top: 1px solid var(--gray-200);
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--gray-600);
    position: relative;
  }
  .essay-comments li:first-child { border-top: 0; padding-top: 0; }
  .essay-comments li:first-child::before { top: 0; }
  .essay-comments li::before {
    content: attr(data-num);
    position: absolute;
    left: 0; top: 14px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .essay-comments li.c2::before { background: #7B4FCF; }
  .essay-comments li.c3::before { background: #C84F4F; }
  .essay-comments li strong { color: var(--night); font-weight: 600; }

  /* Painel de nota (direita) */
  .score-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .score-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 28px 30px;
    position: relative;
    overflow: hidden;
  }
  .score-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
  }
  .score-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .score-rubric {
    font-size: 11px;
    color: var(--orange-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .score-rubric::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(240, 120, 48, 0.25);
  }
  .score-big {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 56px;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
  }
  .score-big::after {
    content: '/1000';
    font-size: 18px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    margin-left: 4px;
  }
  .score-big .score-num { display: inline-block; min-width: 110px; }
  .score-big .score-num.placeholder { color: rgba(255,255,255,0.2); font-weight: 300; }
  .competencies { display: grid; gap: 10px; }
  .comp-row {
    display: grid;
    grid-template-columns: 28px 1fr 38px;
    gap: 12px;
    align-items: center;
  }
  .comp-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
  }
  .comp-track {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
  }
  .comp-fill {
    height: 100%;
    width: 0%;
    background: var(--orange);
    border-radius: 99px;
    transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .comp-row.weak .comp-fill { background: linear-gradient(90deg, #C84F4F 0%, #F0843D 100%); }
  .comp-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-align: right;
    letter-spacing: -0.01em;
  }
  .demo.corrected .comp-value { color: var(--white); }
  .demo.corrected .comp-row.weak .comp-value { color: #F0843D; }

  .pedag-card {
    background: linear-gradient(180deg, rgba(123, 79, 207, 0.10) 0%, rgba(61, 26, 110, 0.05) 100%);
    border: 1px solid rgba(123, 79, 207, 0.25);
    border-radius: 16px;
    padding: 22px 24px;
  }
  .pedag-card .score-eyebrow { margin-bottom: 8px; display: block; }
  .pedag-card-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
    letter-spacing: -0.01em;
  }
  .pedag-card-text.placeholder { color: rgba(255,255,255,0.4); font-weight: 500; }

  .demo-cta-btn {
    background: var(--orange);
    color: var(--white);
    padding: 18px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 14px 40px rgba(240, 120, 48, 0.4);
    transition: all 0.3s;
    width: 100%;
  }
  .demo-cta-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(240, 120, 48, 0.55);
  }
  .demo-disclaimer {
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
  }
  .demo-disclaimer::before {
    content: '';
    width: 14px; height: 14px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    flex-shrink: 0;
  }

  @media (max-width: 880px) {
    .demo-grid { grid-template-columns: 1fr; }
    .essay-card { padding: 32px 28px; }
    .score-big { font-size: 44px; }
  }

  /* ==================== PIONEIROS — BARRA DE VAGAS HORIZONTAL ==================== */
  .vagas-bar {
    background: rgba(0,0,0,0.30);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
    backdrop-filter: blur(16px);
  }
  .vagas-slots {
    display: flex;
    gap: 6px;
  }
  .vagas-slot {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
  }
  .vagas-slot.taken {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange-dark);
    box-shadow: 0 4px 12px rgba(240, 120, 48, 0.45);
  }
  .vagas-info {
    text-align: left;
  }
  .vagas-info strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .vagas-info span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    line-height: 1.4;
  }
  .vagas-cta {
    background: var(--orange);
    color: var(--white);
    padding: 14px 26px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(240, 120, 48, 0.35);
    white-space: nowrap;
  }
  .vagas-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(240, 120, 48, 0.5);
  }
  @media (max-width: 880px) {
    .vagas-bar {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 24px 24px;
      text-align: center;
    }
    .vagas-info { text-align: center; }
    .vagas-slots { justify-content: center; flex-wrap: wrap; }
    .vagas-cta { justify-self: center; }
  }
  @media (max-width: 540px) {
    .vagas-slot { width: 28px; height: 28px; font-size: 11px; }
  }
