:root {
      color-scheme: dark;
      --page-max: 1668px;
      --bg: #101010;
      --bg-2: #151515;
      --panel: rgba(20, 20, 20, .86);
      --panel-2: rgba(255,255,255,.045);
      --ink: #fbfbf7;
      --ink-soft: rgba(255,255,255,.68);
      --muted: rgba(255,255,255,.46);
      --muted-2: rgba(255,255,255,.26);
      --line: rgba(255,255,255,.11);
      --line-strong: rgba(255,255,255,.22);
      --red: #ff1010;
      --red-2: #ff3535;
      --red-deep: #9f0000;
      --orange: #ff6a2a;
      --green: #ff1010;
      --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-display: "Anton", "Oswald", "Arial Narrow", Impact, sans-serif;
      --ease: cubic-bezier(.16, 1, .3, 1);
      --shadow-deep: 0 34px 90px rgba(0,0,0,.54), inset 0 1px 0 rgba(255,255,255,.045);
      --track: .22em;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: #fff; }
    body {
      margin: 0;
      background: #fff;
      color: var(--ink);
      font-family: var(--font-body);
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, select { font: inherit; color: inherit; }
    ::selection { background: rgba(255,16,16,.32); color: #fff; }

    .page {
      width: min(100%, var(--page-max));
      min-height: 100vh;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
      background:
        radial-gradient(1100px 700px at 83% 0%, rgba(255, 16, 16, .16), transparent 58%),
        radial-gradient(900px 560px at 12% 8%, rgba(255,255,255,.055), transparent 65%),
        linear-gradient(180deg, #171717 0%, #111 34%, #121212 100%);
      border-radius: 42px;
      box-shadow: 0 0 80px rgba(0,0,0,.08);
    }
    .page::before {
      content: "";
      position: fixed;
      inset: 0 auto 0 0;
      width: min(100%, var(--page-max));
      pointer-events: none;
      opacity: .34;
      z-index: 1;
      background:
        radial-gradient(700px 450px at 55% 12%, rgba(255,255,255,.05), transparent 70%),
        radial-gradient(800px 560px at 86% 22%, rgba(255,16,16,.14), transparent 68%);
      mix-blend-mode: screen;
    }
    .page > * { position: relative; z-index: 2; }
    .grid-bg {
      background-image:
        linear-gradient(rgba(255,255,255,.042) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px);
      background-size: 165px 165px;
    }
    .sub-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        radial-gradient(circle at 0 0, rgba(255,16,16,.11) 0 1px, transparent 2px);
      background-size: 28px 28px;
      opacity: .12;
      mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
    }

    /* Navigation */
    .hero-nav {
      position: absolute;
      inset: 0 0 auto 0;
      height: 106px;
      z-index: 40;
      display: grid;
      grid-template-columns: 218px 1fr 176px;
      align-items: center;
      padding: 28px 46px 0;
      pointer-events: none;
    }
    .hero-nav > * { pointer-events: auto; }
    .logo-link {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
    }
    .logo-link img {
      width: 58px;
      height: 58px;
      object-fit: contain;
      filter: drop-shadow(0 0 18px rgba(255,16,16,.28));
    }
    .nav-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(30px, 3.4vw, 66px);
      padding-right: 70px;
    }
    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,.70);
      text-transform: uppercase;
      letter-spacing: var(--track);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
      transition: color .25s var(--ease), opacity .25s var(--ease), text-shadow .25s var(--ease);
    }
    .nav-link i {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.58);
      display: inline-block;
      transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    }
    .nav-link.active,
    .nav-link:hover { color: rgba(255,255,255,.96); text-shadow: 0 0 18px rgba(255,255,255,.12); }
    .nav-link.active i { background: var(--red); border-color: var(--red); box-shadow: 0 0 16px rgba(255,16,16,.45); }
    .wa-pill {
      justify-self: end;
      height: 47px;
      min-width: 130px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,.17);
      background: rgba(255,255,255,.045);
      backdrop-filter: blur(12px);
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: 12px;
      font-weight: 900;
      color: rgba(255,255,255,.76);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
    }
    .wa-pill:hover { transform: translateY(-2px); border-color: rgba(255,16,16,.45); background: rgba(255,16,16,.10); box-shadow: 0 0 38px rgba(255,16,16,.20); }

    /* Hero */
    .hero-section {
      position: relative;
      min-height: 928px;
      padding: 0 46px 62px;
      overflow: hidden;
    }
    .hero-copy {
      position: relative;
      z-index: 8;
      width: min(760px, 52vw);
      padding-top: 145px;
    }
    .talent-meta {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-bottom: 34px;
    }
    .liquid-social-stack { display: inline-flex; align-items: center; isolation: isolate; }
    .liquid-social-icon {
      width: 33px;
      height: 33px;
      margin-right: -7px;
      border-radius: 12px;
      overflow: hidden;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.32);
      background: rgba(255,255,255,.06);
      box-shadow:
        0 8px 18px rgba(0,0,0,.34),
        0 0 18px rgba(255,16,16,.14),
        inset 0 1px 0 rgba(255,255,255,.35);
      backdrop-filter: blur(10px) saturate(1.25);
    }
    .liquid-social-icon img { width: 100%; height: 100%; object-fit: cover; }
    .liquid-social-icon.youtube { z-index: 2; }
    .talent-meta p {
      margin: 0;
      color: rgba(255,255,255,.38);
      text-transform: uppercase;
      letter-spacing: .22em;
      font-size: 13px;
      font-weight: 900;
    }
    .remote-pill {
      position: absolute;
      top: 185px;
      left: min(622px, calc(100vw - 700px));
      z-index: 9;
      display: inline-flex;
      align-items: center;
      height: 40px;
      padding: 0 25px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(18,18,18,.82);
      color: rgba(255,255,255,.86);
      text-transform: uppercase;
      letter-spacing: .20em;
      font-size: 11px;
      font-weight: 900;
      box-shadow: 0 14px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.05);
    }
    .hero-title {
      position: relative;
      z-index: 10;
      width: 820px;
      margin: 0;
      font-family: var(--font-display);
      text-transform: uppercase;
      color: #fff;
      line-height: .79;
      letter-spacing: -.058em;
      font-weight: 400;
      transform: scaleX(1.01);
      transform-origin: left center;
    }
    .hero-title span { display: block; font-size: clamp(112px, 12.8vw, 210px); white-space: nowrap; }
    .hero-title span:nth-child(2) { margin-top: -12px; padding-left: 78px; font-size: clamp(102px, 11.4vw, 184px); }
    .hero-title .title-muted { margin-top: -16px; padding-left: 0; color: rgba(255,255,255,.255); font-size: clamp(104px, 11.8vw, 190px); }
    .offer-strip {
      position: relative;
      z-index: 11;
      display: flex;
      align-items: center;
      gap: 17px;
      margin: 7px 0 27px 27px;
      text-transform: uppercase;
      letter-spacing: .22em;
      font-size: 12px;
      font-weight: 900;
      color: rgba(255,255,255,.43);
    }
    .offer-pill {
      height: 29px;
      display: inline-flex;
      align-items: center;
      padding: 0 23px;
      border-radius: 999px;
      background: linear-gradient(180deg, #ff3c3c, #ff1010);
      color: #fff;
      letter-spacing: .18em;
      box-shadow: 0 14px 30px rgba(255,16,16,.20);
    }
    .offer-strip i { width: 27px; height: 1px; background: rgba(255,255,255,.30); }
    .hero-lead {
      position: relative;
      z-index: 11;
      max-width: 570px;
      margin: 0 0 30px;
      color: rgba(255,255,255,.68);
      text-transform: uppercase;
      letter-spacing: .02em;
      font-size: 17px;
      line-height: 1.55;
      font-weight: 600;
    }
    .hero-actions { display: flex; align-items: center; gap: 14px; }
    .button {
      position: relative;
      min-width: 244px;
      height: 58px;
      padding: 0 44px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      isolation: isolate;
      border: 1px solid rgba(255,255,255,.09);
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: 14px;
      font-weight: 900;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
    }
    .button-primary { background: #0b0b0b; color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 22px 45px rgba(0,0,0,.34); }
    .button-primary::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: .85;
      background: radial-gradient(110px 22px at 72% 0%, rgba(255,16,16,.95), transparent 70%);
    }
    .button-secondary { min-width: 132px; padding: 0 28px; background: rgba(255,255,255,.02); border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.38); }
    .button:hover { transform: translateY(-2px); }
    .button-primary:hover { border-color: rgba(255,16,16,.45); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 40px rgba(0,0,0,.38), 0 0 46px rgba(255,16,16,.22); }
    .button-secondary:hover { color: rgba(255,255,255,.84); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }
    .hero-panel {
      position: absolute;
      z-index: 5;
      top: 12px;
      right: 20px;
      bottom: 0;
      width: min(768px, 47vw);
      min-height: 858px;
      overflow: hidden;
      border-radius: 58px;
      background: #2a0505;
      box-shadow: 0 0 0 14px #111213, -36px 0 90px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
    }
    .hero-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(255,255,255,.04), transparent 20%, rgba(0,0,0,.1) 100%),
        radial-gradient(520px 320px at 52% 35%, rgba(255,16,16,.12), transparent 70%);
    }
    .hero-panel img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: saturate(1.03) contrast(1.02) brightness(.98); }

    /* Sections */
    .section { position: relative; padding: 104px 46px; overflow: hidden; }
    .section-head { max-width: 930px; margin: 0 auto 66px; text-align: center; }
    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      height: 34px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.035);
      color: rgba(255,255,255,.70);
      text-transform: uppercase;
      letter-spacing: .22em;
      font-size: 11px;
      font-weight: 900;
      margin-bottom: 25px;
    }
    .section-kicker::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--red); box-shadow: 0 0 14px rgba(255,16,16,.54); }
    .section-title {
      margin: 0;
      color: #fff;
      font-size: clamp(42px, 5vw, 78px);
      line-height: 1.03;
      letter-spacing: -.055em;
      font-weight: 700;
      text-transform: uppercase;
    }
    .section-title strong { color: var(--red); font-weight: inherit; }
    .section-title span { color: rgba(255,255,255,.26); }
    .section-text { max-width: 720px; margin: 25px auto 0; color: rgba(255,255,255,.60); font-size: 16px; line-height: 1.65; font-weight: 550; }

    /* Platform section / 03 */
    .platform-wrap {
      max-width: 1550px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 28px;
      align-items: stretch;
    }
    .platform-intro {
      position: relative;
      min-height: 560px;
      border-radius: 42px;
      padding: 54px 58px;
      border: 1px solid rgba(255,255,255,.11);
      background:
        radial-gradient(500px 360px at 86% 0%, rgba(255,16,16,.18), transparent 70%),
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
      box-shadow: var(--shadow-deep);
      overflow: hidden;
    }
    .section-number {
      position: absolute;
      right: 30px;
      bottom: -62px;
      font-family: var(--font-display);
      color: rgba(255,255,255,.06);
      font-size: clamp(190px, 22vw, 360px);
      line-height: .75;
      letter-spacing: -.08em;
      pointer-events: none;
    }
    .platform-icons { display: flex; align-items: center; gap: 12px; margin-bottom: 62px; }
    .platform-icons img { width: 66px; height: 66px; object-fit: cover; border-radius: 22px; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 12px 30px rgba(0,0,0,.3), 0 0 22px rgba(255,16,16,.12); }
    .platform-intro h2 { position: relative; margin: 0 0 24px; font-size: clamp(42px, 5vw, 72px); line-height: .98; letter-spacing: -.055em; text-transform: uppercase; }
    .platform-intro h2 span { color: var(--red); }
    .platform-intro p { position: relative; max-width: 520px; color: rgba(255,255,255,.63); font-size: 17px; line-height: 1.62; margin: 0 0 30px; }
    .platform-tags { position: relative; display: flex; flex-wrap: wrap; gap: 10px; }
    .platform-tags span { display: inline-flex; align-items: center; height: 35px; padding: 0 15px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 900; }
    .process-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .process-card {
      min-height: 270px;
      padding: 35px 34px;
      border-radius: 34px;
      border: 1px solid rgba(255,255,255,.11);
      background: linear-gradient(180deg, rgba(9,9,9,.86), rgba(20,20,20,.72));
      box-shadow: 0 22px 55px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.035);
      position: relative;
      overflow: hidden;
      transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
    }
    .process-card:hover { transform: translateY(-4px); border-color: rgba(255,16,16,.35); box-shadow: 0 28px 65px rgba(0,0,0,.38), 0 0 44px rgba(255,16,16,.12); }
    .process-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(240px 150px at 100% 0%, rgba(255,16,16,.10), transparent 70%); pointer-events: none; }
    .process-index { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 32px; }
    .process-index span { color: var(--red); font-family: var(--font-display); font-size: 33px; line-height: 1; }
    .line-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); color: #fff; }
    .line-icon svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .process-card h3 { margin: 0 0 14px; font-size: 25px; line-height: 1; letter-spacing: -.045em; }
    .process-card p { margin: 0; color: rgba(255,255,255,.55); line-height: 1.58; font-size: 15px; }

    /* Strategy generator */
    .strategy-section { padding-top: 112px; }
    .strategy-lab {
      max-width: 1550px;
      margin: 0 auto;
      border-radius: 44px;
      border: 1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(740px 520px at 100% 0%, rgba(255,16,16,.11), transparent 66%),
        linear-gradient(180deg, rgba(255,255,255,.038), rgba(255,255,255,.012));
      box-shadow: var(--shadow-deep);
      overflow: hidden;
    }
    .lab-header {
      min-height: 92px;
      padding: 26px 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      border-bottom: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.24);
    }
    .lab-header strong { text-transform: uppercase; letter-spacing: .20em; font-size: 13px; color: rgba(255,255,255,.82); }
    .lab-header span { display: inline-flex; align-items: center; height: 33px; padding: 0 14px; border-radius: 10px; border: 1px solid rgba(255,16,16,.48); background: rgba(255,16,16,.10); color: #ffb8b8; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 900; }
    .lab-body { display: grid; grid-template-columns: minmax(340px, .88fr) minmax(0, 1.12fr); gap: 0; }
    .lab-controls { padding: 38px; border-right: 1px solid rgba(255,255,255,.10); }
    .control-block + .control-block { margin-top: 34px; }
    .control-label { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 16px; color: rgba(255,255,255,.50); text-transform: uppercase; letter-spacing: .20em; font-size: 11px; font-weight: 900; }
    .option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
    .format-grid { grid-template-columns: 1fr; }
    .option-btn {
      min-height: 54px;
      padding: 14px 16px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.045);
      color: rgba(255,255,255,.68);
      text-align: left;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
    }
    .option-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.24); color: #fff; background: rgba(255,255,255,.07); }
    .option-btn.active { color: #fff; border-color: rgba(255,16,16,.62); background: linear-gradient(180deg, rgba(255,16,16,.20), rgba(255,16,16,.08)); box-shadow: 0 0 0 1px rgba(255,16,16,.10), 0 0 28px rgba(255,16,16,.13); }
    .lab-note { margin: 28px 0 0; padding: 18px 18px; border-radius: 18px; border: 1px solid rgba(255,255,255,.10); background: rgba(0,0,0,.24); color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.55; }
    .lab-note strong { color: #fff; }
    .strategy-result { padding: 38px; }
    .result-card {
      min-height: 100%;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,.12);
      background: linear-gradient(180deg, rgba(7,7,7,.88), rgba(14,14,14,.78));
      overflow: hidden;
      box-shadow: 0 25px 58px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.04);
    }
    .result-top { padding: 34px 34px 26px; border-bottom: 1px solid rgba(255,255,255,.09); position: relative; }
    .result-top::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 250px at 92% 0%, rgba(255,16,16,.14), transparent 68%); pointer-events: none; }
    .result-top > * { position: relative; }
    .result-eyebrow { margin: 0 0 13px; color: var(--red); text-transform: uppercase; letter-spacing: .19em; font-size: 11px; font-weight: 900; }
    .result-title { margin: 0 0 14px; font-size: clamp(28px, 3.2vw, 46px); line-height: 1.05; letter-spacing: -.055em; }
    .result-summary { margin: 0; max-width: 720px; color: rgba(255,255,255,.62); line-height: 1.62; }
    .kpi-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding: 24px 34px; border-bottom: 1px solid rgba(255,255,255,.09); }
    .kpi { padding: 18px 18px; border-radius: 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); }
    .kpi small { display: block; margin-bottom: 10px; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .16em; font-size: 10px; font-weight: 900; }
    .kpi strong { display: block; color: #fff; font-size: 19px; line-height: 1.2; }
    .result-details { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding: 28px 34px 34px; }
    .detail-box h4 { margin: 0 0 14px; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .17em; }
    .detail-box ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
    .detail-box li { color: rgba(255,255,255,.60); line-height: 1.5; font-size: 14px; display: grid; grid-template-columns: 18px 1fr; gap: 10px; }
    .detail-box li::before { content: ""; width: 7px; height: 7px; margin-top: .55em; border-radius: 999px; background: var(--red); box-shadow: 0 0 12px rgba(255,16,16,.5); }
    .no-price-bar { margin: 0 34px 34px; padding: 17px 20px; border-radius: 18px; border: 1px solid rgba(255,16,16,.28); background: rgba(255,16,16,.08); color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.5; }
    .no-price-bar strong { color: #fff; }

    /* Method */
    .method-wrap { max-width: 1550px; margin: 0 auto; display: grid; grid-template-columns: .86fr 1.14fr; gap: 28px; align-items: start; }
    .method-copy {
      position: sticky;
      top: 32px;
      border-radius: 38px;
      border: 1px solid rgba(255,255,255,.11);
      background:
        radial-gradient(500px 340px at 80% 0%, rgba(255,16,16,.12), transparent 70%),
        rgba(0,0,0,.23);
      box-shadow: var(--shadow-deep);
      padding: 48px;
    }
    .method-copy h2 { margin: 0 0 24px; font-size: clamp(38px, 4vw, 64px); line-height: 1; letter-spacing: -.055em; text-transform: uppercase; }
    .method-copy h2 span { color: rgba(255,255,255,.28); }
    .method-copy p { margin: 0 0 28px; color: rgba(255,255,255,.60); line-height: 1.62; font-size: 16px; }
    .method-quote { padding: 19px 21px; border-left: 3px solid var(--red); background: rgba(255,255,255,.035); border-radius: 0 18px 18px 0; color: rgba(255,255,255,.74); font-weight: 700; }
    .steps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .step-card { min-height: 210px; padding: 26px; border-radius: 28px; border: 1px solid rgba(255,255,255,.10); background: rgba(10,10,10,.58); box-shadow: 0 20px 46px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.035); }
    .step-card header { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 28px; }
    .step-card header span { color: var(--red); font-family: var(--font-display); font-size: 30px; }
    .step-card header i { width: 45px; height: 45px; border-radius: 15px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: rgba(255,255,255,.84); font-style: normal; }
    .step-card h3 { margin: 0 0 12px; font-size: 22px; line-height: 1.05; letter-spacing: -.04em; }
    .step-card p { margin: 0; color: rgba(255,255,255,.55); line-height: 1.55; font-size: 14px; }

    /* Proof */
    .proof-section { padding-top: 114px; }
    .proof-grid { max-width: 1550px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 28px; }
    .proof-main, .proof-stats { border-radius: 38px; border: 1px solid rgba(255,255,255,.11); background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); box-shadow: var(--shadow-deep); overflow: hidden; }
    .proof-main { padding: 48px; min-height: 520px; display: flex; flex-direction: column; justify-content: space-between; }
    .proof-main h2 { margin: 0; font-size: clamp(42px, 4.8vw, 76px); line-height: 1; letter-spacing: -.055em; text-transform: uppercase; }
    .proof-main h2 span { color: var(--red); }
    .proof-main p { margin: 28px 0 0; max-width: 660px; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.65; }
    .proof-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
    .proof-pill-row span { height: 35px; display: inline-flex; align-items: center; padding: 0 15px; border-radius: 999px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 900; }
    .proof-stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
    .stat-box { min-height: 260px; padding: 36px; border-right: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); }
    .stat-box:nth-child(2n) { border-right: 0; }
    .stat-box:nth-child(n+3) { border-bottom: 0; }
    .stat-box strong { display: block; margin-bottom: 24px; color: #fff; font-family: var(--font-display); font-size: clamp(52px, 5vw, 86px); line-height: .9; letter-spacing: -.06em; font-weight: 400; }
    .stat-box strong.wide-number { font-size: clamp(38px, 4vw, 66px); letter-spacing: -.045em; }
    .stat-box h3 { margin: 0 0 12px; font-size: 20px; letter-spacing: -.035em; }
    .stat-box p { margin: 0; color: rgba(255,255,255,.52); line-height: 1.55; font-size: 14px; }

    /* Metrics */
    .metrics-wrap { max-width: 1550px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
    .metric-card { min-height: 210px; padding: 28px; border-radius: 28px; background: rgba(9,9,9,.55); border: 1px solid rgba(255,255,255,.10); box-shadow: 0 18px 42px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.03); }
    .metric-card .metric-icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 28px; color: #fff; border: 1px solid rgba(255,16,16,.32); background: rgba(255,16,16,.10); }
    .metric-card h3 { margin: 0 0 12px; font-size: 22px; letter-spacing: -.04em; }
    .metric-card p { margin: 0; color: rgba(255,255,255,.55); line-height: 1.55; font-size: 14px; }

    /* CTA / Footer */
    .cta-section { padding-bottom: 70px; }
    .cta-box {
      max-width: 1550px;
      margin: 0 auto;
      min-height: 390px;
      border-radius: 42px;
      padding: 54px;
      border: 1px solid rgba(255,255,255,.13);
      background:
        radial-gradient(760px 420px at 92% 0%, rgba(255,16,16,.24), transparent 68%),
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
      box-shadow: var(--shadow-deep);
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 28px;
      overflow: hidden;
      position: relative;
    }
    .cta-box::before { content: "4U"; position: absolute; right: 34px; top: 18px; color: rgba(255,255,255,.055); font-family: var(--font-display); font-size: 300px; line-height: .9; letter-spacing: -.08em; pointer-events: none; }
    .cta-box > * { position: relative; }
    .cta-box h2 { margin: 0 0 24px; font-size: clamp(46px, 5.4vw, 84px); line-height: .98; letter-spacing: -.055em; text-transform: uppercase; }
    .cta-box h2 span { color: var(--red); }
    .cta-box p { margin: 0; max-width: 710px; color: rgba(255,255,255,.64); font-size: 17px; line-height: 1.6; }
    .site-footer { margin: 0 48px 54px; padding: 54px 56px; border-radius: 30px; background: #050505; box-shadow: 0 25px 70px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.035); }
    .footer-main { display: grid; grid-template-columns: 1.3fr repeat(3, .72fr); gap: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .footer-brand img { width: 86px; height: 86px; object-fit: contain; filter: drop-shadow(0 0 18px rgba(255,16,16,.22)); margin-bottom: 24px; }
    .footer-brand p { max-width: 390px; margin: 0; color: rgba(255,255,255,.60); line-height: 1.56; }
    .footer-col { display: flex; flex-direction: column; gap: 17px; }
    .footer-col h3 { margin: 0 0 10px; color: #fff; text-transform: uppercase; letter-spacing: .20em; font-size: 13px; font-weight: 900; }
    .footer-col a { color: rgba(255,255,255,.54); font-size: 15px; transition: color .22s var(--ease); }
    .footer-col a:hover { color: var(--red); }
    .footer-bottom { padding-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
    .footer-bottom p { margin: 0; color: rgba(255,255,255,.34); text-transform: uppercase; letter-spacing: .13em; font-size: 12px; font-weight: 800; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-socials a { width: 36px; height: 36px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); }
    .footer-socials img { width: 100%; height: 100%; object-fit: cover; }

    /* Animation */
    .reveal { opacity: 0; transform: translateY(24px); filter: blur(6px); transition: opacity .85s var(--ease), transform .85s var(--ease), filter .85s var(--ease); }
    .reveal.in-view { opacity: 1; transform: translateY(0); filter: blur(0); }
    .delay-1 { transition-delay: .08s; }
    .delay-2 { transition-delay: .16s; }

    @media (prefers-reduced-motion: reduce) {
      * { scroll-behavior: auto !important; }
      .reveal { opacity: 1; transform: none; filter: none; transition: none; }
    }

    @media (max-width: 1220px) {
      .page { border-radius: 28px; }
      .hero-nav { grid-template-columns: 86px 1fr 132px; padding: 24px 26px 0; }
      .nav-group { gap: 22px; padding-right: 10px; justify-content: flex-start; overflow: auto; }
      .nav-link { font-size: 11px; letter-spacing: .16em; }
      .hero-section { min-height: auto; padding: 120px 26px 54px; display: grid; gap: 32px; }
      .hero-copy { width: 100%; padding-top: 0; }
      .hero-panel { position: relative; top: auto; right: auto; bottom: auto; width: 100%; min-height: 620px; border-radius: 46px; box-shadow: 0 0 0 8px #111213; }
      .hero-title { width: 100%; }
      .remote-pill { position: static; display: inline-flex; margin: 0 0 22px; }
      .platform-wrap, .lab-body, .method-wrap, .proof-grid, .cta-box { grid-template-columns: 1fr; }
      .lab-controls { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
      .method-copy { position: relative; top: auto; }
      .footer-main { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 820px) {
      .hero-nav { height: 76px; grid-template-columns: 54px 1fr; padding: 16px 18px 0; }
      .logo-link, .logo-link img { width: 44px; height: 44px; }
      .nav-group { display: none; }
      .wa-pill { min-width: 92px; height: 38px; font-size: 10px; letter-spacing: .14em; }
      .hero-section { padding: 100px 18px 42px; }
      .talent-meta { align-items: flex-start; gap: 14px; }
      .talent-meta p { font-size: 10px; line-height: 1.5; }
      .liquid-social-icon { width: 29px; height: 29px; border-radius: 10px; }
      .hero-title span { font-size: clamp(75px, 24vw, 118px); }
      .hero-title span:nth-child(2) { padding-left: 34px; font-size: clamp(64px, 20vw, 100px); }
      .hero-title .title-muted { font-size: clamp(64px, 20vw, 100px); }
      .offer-strip { margin-left: 0; flex-wrap: wrap; font-size: 10px; }
      .hero-lead { font-size: 14px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .button { min-width: 0; width: 100%; }
      .hero-panel { min-height: 480px; border-radius: 34px; }
      .section { padding: 76px 18px; }
      .section-head { margin-bottom: 42px; }
      .section-title { font-size: 38px; }
      .section-text { font-size: 14px; }
      .platform-intro { min-height: auto; padding: 34px 24px; border-radius: 28px; }
      .platform-icons { margin-bottom: 38px; }
      .platform-icons img { width: 54px; height: 54px; border-radius: 18px; }
      .process-grid, .steps-grid, .proof-stats, .metrics-wrap, .kpi-grid, .result-details { grid-template-columns: 1fr; }
      .process-card, .step-card, .metric-card { min-height: auto; }
      .lab-header { align-items: flex-start; flex-direction: column; }
      .lab-controls, .strategy-result { padding: 22px; }
      .option-grid { grid-template-columns: 1fr; }
      .result-top, .kpi-grid, .result-details { padding-left: 22px; padding-right: 22px; }
      .no-price-bar { margin-left: 22px; margin-right: 22px; }
      .method-copy, .proof-main, .cta-box { padding: 30px 24px; border-radius: 28px; }
      .stat-box { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09) !important; min-height: auto; padding: 28px; }
      .stat-box:last-child { border-bottom: 0 !important; }
      .cta-box { min-height: auto; }
      .cta-box::before { font-size: 170px; top: 20px; right: 12px; }
      .site-footer { margin: 0 18px 28px; padding: 38px 28px; }
      .footer-main { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }


/* Ajustes finos solicitados — mobile */
@media (max-width: 820px) {
  .hero-section {
    padding: 96px 18px 34px;
  }

  .talent-meta {
    margin-bottom: 26px;
  }

  .remote-pill {
    height: 36px;
    margin-bottom: 18px;
    padding: 0 20px;
    font-size: 10px;
    letter-spacing: .16em;
  }

  .offer-strip {
    width: 100%;
    max-width: calc(100vw - 36px);
    margin: 4px 0 20px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: visible;
    font-size: clamp(7.25px, 2.05vw, 8.8px);
    letter-spacing: .095em;
    line-height: 1;
  }

  .offer-strip span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .offer-pill {
    height: 29px;
    padding: 0 11px;
    letter-spacing: .095em;
  }

  .offer-strip i {
    flex: 0 0 10px;
    width: 10px;
  }

  .hero-lead {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 13.5px;
    line-height: 1.52;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    height: 56px;
  }

  .section {
    padding: 58px 18px;
  }

  .strategy-section,
  .proof-section {
    padding-top: 58px;
  }

  .cta-section {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-kicker {
    height: 32px;
    padding: 0 13px;
    gap: 9px;
    margin-bottom: 18px;
    font-size: 9px;
    letter-spacing: .14em;
  }

  .section-title {
    font-size: clamp(32px, 10.2vw, 38px);
    line-height: 1.04;
  }

  .section-text {
    margin-top: 16px;
    font-size: 13.4px;
    line-height: 1.56;
  }

  .platform-wrap,
  .lab-body,
  .method-wrap,
  .proof-grid,
  .metrics-wrap {
    gap: 16px;
  }

  .platform-intro,
  .method-copy,
  .proof-main,
  .cta-box {
    padding: 28px 22px;
  }

  .platform-icons {
    margin-bottom: 28px;
  }

  .platform-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 11vw, 48px);
  }

  .platform-intro p,
  .method-copy p,
  .proof-main p,
  .cta-box p {
    font-size: 14px;
    line-height: 1.56;
  }

  .platform-tags {
    gap: 8px;
  }

  .platform-tags span,
  .proof-pill-row span {
    height: 32px;
    padding: 0 12px;
    font-size: 8.7px;
    letter-spacing: .11em;
  }

  .process-grid,
  .steps-grid,
  .proof-stats,
  .metrics-wrap,
  .kpi-grid,
  .result-details {
    gap: 14px;
  }

  .process-card,
  .step-card,
  .metric-card {
    padding: 24px;
    border-radius: 24px;
  }

  .process-index,
  .step-card header {
    margin-bottom: 20px;
  }

  .line-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .lab-controls,
  .strategy-result {
    padding: 20px;
  }

  .control-block {
    margin-bottom: 22px;
  }

  .result-top,
  .kpi-grid,
  .result-details {
    padding-left: 18px;
    padding-right: 18px;
  }

  .no-price-bar {
    margin-left: 18px;
    margin-right: 18px;
  }

  .proof-main {
    min-height: auto;
  }

  .stat-box {
    padding: 24px;
  }

  .site-footer {
    margin-top: 0;
  }
}

@media (max-width: 390px) {
  .offer-strip {
    gap: 6px;
    font-size: 6.85px;
    letter-spacing: .075em;
  }
  .offer-pill {
    padding: 0 9px;
    letter-spacing: .075em;
  }
  .offer-strip i {
    flex-basis: 8px;
    width: 8px;
  }
}

/* Ajuste final mobile — faixa do hero em linha única e ritmo mais compacto */
@media (max-width: 820px) {
  .offer-strip {
    margin: 2px 0 18px;
    gap: clamp(5px, 1.7vw, 8px);
    font-size: clamp(7.1px, 2.1vw, 8.7px);
    letter-spacing: .08em;
  }

  .offer-strip i {
    display: none !important;
  }

  .offer-pill {
    height: 27px;
    padding: 0 clamp(9px, 2.6vw, 12px);
    letter-spacing: .08em;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .strategy-section,
  .proof-section {
    padding-top: 50px;
  }

  .cta-section {
    padding-top: 48px;
    padding-bottom: 38px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-text {
    margin-top: 14px;
  }

  .hero-panel {
    min-height: 415px;
  }
}

@media (max-width: 390px) {
  .offer-strip {
    gap: 5px;
    font-size: 6.9px;
    letter-spacing: .055em;
  }

  .offer-pill {
    padding: 0 8px;
    letter-spacing: .055em;
  }
}
