
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --bg: #050608;
      --bg2: #0c0d11;
      --bg3: #111318;
      --card: #14161c;
      --card2: #1a1d26;
      --border: rgba(255, 255, 255, 0.07);
      --border2: rgba(255, 255, 255, 0.12);
      --red: #ff2d2d;
      --red2: #ff5c5c;
      --redglow: rgba(255, 45, 45, 0.15);
      --gold: #f5a623;
      --gold2: #ffd700;
      --goldglow: rgba(245, 166, 35, 0.15);
      --cyan: #00d4ff;
      --cyanfaint: rgba(0, 212, 255, 0.08);
      --green: #00ff87;
      --greenfaint: rgba(0, 255, 135, 0.08);
      --text: #f0f0f5;
      --muted: #8a8c99;
      --muted2: #5a5c69;
      --mono: 'JetBrains Mono', monospace;
      --display: 'Syne', sans-serif;
      --body: 'Space Grotesk', sans-serif;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--body);
      overflow-x: hidden;
      line-height: 1.6
    }

    a {
      text-decoration: none;
      color: inherit
    }

    /* SCROLLBAR */
    ::-webkit-scrollbar {
      width: 4px
    }

    ::-webkit-scrollbar-track {
      background: var(--bg)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--red);
      border-radius: 2px
    }

    /* NOISE OVERLAY */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 68px;
      background: rgba(5, 6, 8, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--display);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.5px
    }

    .nav-logo span {
      color: var(--red)
    }

    .nav-logo .bolt {
      width: 8px;
      height: 8px;
      background: var(--red);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
      display: inline-block;
      margin-right: 4px
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: color 0.2s
    }

    .nav-links a:hover {
      color: var(--text)
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .btn-ghost {
      padding: 8px 20px;
      border: 1px solid var(--border2);
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      transition: all 0.2s;
      background: transparent;
      cursor: pointer;
      font-family: var(--body)
    }

    .btn-ghost:hover {
      color: var(--text);
      border-color: rgba(255, 255, 255, 0.25)
    }

    .btn-red {
      padding: 9px 22px;
      background: var(--red);
      border: none;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      transition: all 0.25s;
      font-family: var(--body);
      letter-spacing: 0.3px
    }

    .btn-red:hover {
      background: #e51f1f;
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(255, 45, 45, 0.35)
    }

    /* TICKER */
    .ticker {
      background: var(--red);
      height: 36px;
      display: flex;
      align-items: center;
      overflow: hidden;
      margin-top: 68px;
      position: relative;
      z-index: 10;
    }

    .ticker-inner {
      display: flex;
      animation: ticker 30s linear infinite;
      white-space: nowrap
    }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 32px;
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      letter-spacing: 0.5px
    }

    .ticker-dot {
      width: 4px;
      height: 4px;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 50%
    }

    @keyframes ticker {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    /* HERO */
    .hero {
      min-height: calc(100vh - 104px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: center;
      padding: 80px 48px 60px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 45, 45, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 45, 45, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .hero-bg-glow {
      position: absolute;
      top: -200px;
      right: -100px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(255, 45, 45, 0.08) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-left {
      position: relative;
      z-index: 1;
      padding-right: 40px
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 12px 5px 8px;
      border: 1px solid rgba(255, 45, 45, 0.3);
      border-radius: 100px;
      background: rgba(255, 45, 45, 0.07);
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 500;
      color: var(--red2);
      margin-bottom: 28px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
    }

    .live-dot {
      width: 6px;
      height: 6px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse 1.2s infinite
    }

    .hero-title {
      font-family: var(--display);
      font-size: clamp(42px, 5vw, 72px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 24px;
    }

    .hero-title em {
      color: var(--red);
      font-style: normal
    }

    .hero-title .line2 {
      color: var(--muted);
      font-weight: 400
    }

    .hero-sub {
      font-size: 17px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 500px;
      margin-bottom: 40px
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 52px
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--red);
      border: none;
      border-radius: 8px;
      font-family: var(--body);
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      transition: all 0.25s;
    }

    .btn-primary:hover {
      background: #e51f1f;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(255, 45, 45, 0.4)
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 24px;
      border: 1px solid var(--border2);
      border-radius: 8px;
      font-family: var(--body);
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      transition: all 0.2s;
      background: transparent;
    }

    .btn-outline:hover {
      border-color: rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.04)
    }

    /* STAT STRIP */
    .hero-stats {
      display: flex;
      gap: 32px;
      padding-top: 32px;
      border-top: 1px solid var(--border)
    }

    .stat-item {
      flex: 1
    }

    .stat-num {
      font-family: var(--display);
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1
    }

    .stat-num span {
      color: var(--red);
      font-size: 20px
    }

    .stat-label {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-top: 4px
    }

    /* HERO RIGHT — DASHBOARD MOCKUP */
    .hero-right {
      position: relative;
      z-index: 1
    }

    .dashboard-mock {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    }

    .dash-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
      background: var(--bg3);
    }

    .dash-dots {
      display: flex;
      gap: 6px
    }

    .dash-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%
    }

    .dash-dot:nth-child(1) {
      background: #ff5f57
    }

    .dash-dot:nth-child(2) {
      background: #febc2e
    }

    .dash-dot:nth-child(3) {
      background: #28c840
    }

    .dash-title {
      font-family: var(--mono);
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.5px
    }

    .dash-body {
      padding: 20px
    }

    /* MAP AREA */
    .map-area {
      height: 180px;
      border-radius: 10px;
      background: var(--bg2);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      margin-bottom: 16px;
    }

    .map-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
      background-size: 24px 24px;
    }

    .map-route {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block
    }

    .map-point {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .map-point.origin {
      background: var(--green);
      left: 25%;
      top: 65%;
      box-shadow: 0 0 12px var(--green)
    }

    .map-point.dest {
      background: var(--red);
      left: 72%;
      top: 30%;
      box-shadow: 0 0 12px var(--red)
    }

    .map-worker {
      position: absolute;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--cyan);
      left: 45%;
      top: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 16px var(--cyan);
      animation: moveworker 6s ease-in-out infinite;
    }

    .map-pulse {
      position: absolute;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1px solid rgba(0, 212, 255, 0.4);
      left: 45%;
      top: 50%;
      transform: translate(-50%, -50%);
      animation: mappulse 2s ease-out infinite;
    }

    .map-line {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%
    }

    .eta-badge {
      position: absolute;
      right: 12px;
      bottom: 12px;
      padding: 6px 10px;
      background: rgba(0, 212, 255, 0.12);
      border: 1px solid rgba(0, 212, 255, 0.25);
      border-radius: 6px;
      font-family: var(--mono);
      font-size: 11px;
      color: var(--cyan);
    }

    .eta-badge strong {
      font-size: 16px;
      display: block;
      line-height: 1
    }

    /* JOB FEED CARDS */
    .jobs-label {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 10px
    }

    .job-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--bg3);
      margin-bottom: 8px;
      transition: all 0.2s;
      cursor: pointer;
    }

    .job-card:hover {
      border-color: var(--border2);
      background: var(--bg2)
    }

    .job-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .job-info {
      flex: 1;
      min-width: 0
    }

    .job-name {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 2px
    }

    .job-meta {
      font-size: 11px;
      color: var(--muted);
      font-family: var(--mono)
    }

    .job-price {
      font-family: var(--display);
      font-size: 15px;
      font-weight: 700;
      color: var(--green)
    }

    .job-badge {
      font-family: var(--mono);
      font-size: 10px;
      padding: 3px 8px;
      border-radius: 100px;
      letter-spacing: 0.5px;
    }

    .badge-new {
      background: rgba(0, 255, 135, 0.1);
      color: var(--green);
      border: 1px solid rgba(0, 255, 135, 0.2)
    }

    .badge-hot {
      background: rgba(255, 45, 45, 0.1);
      color: var(--red2);
      border: 1px solid rgba(255, 45, 45, 0.2)
    }

    .badge-near {
      background: rgba(0, 212, 255, 0.1);
      color: var(--cyan);
      border: 1px solid rgba(0, 212, 255, 0.2)
    }

    /* SECTIONS */
    section {
      padding: 100px 48px
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 500;
      color: var(--red);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .section-label::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--red)
    }

    .section-title {
      font-family: var(--display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .section-sub {
      font-size: 16px;
      color: var(--muted);
      max-width: 560px;
      line-height: 1.7
    }

    /* HOW IT WORKS */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      margin-top: 60px;
      position: relative;
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border2) 20%, var(--border2) 80%, transparent);
      z-index: 0;
    }

    .step-item {
      padding: 20px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .step-num {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      border: 1px solid var(--border);
      background: var(--card);
      font-family: var(--display);
      font-size: 26px;
      font-weight: 800;
      position: relative;
      transition: all 0.3s;
    }

    .step-item:hover .step-num {
      border-color: var(--red);
      box-shadow: 0 0 30px var(--redglow)
    }

    .step-num .step-icon {
      font-size: 28px
    }

    .step-title {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px
    }

    .step-desc {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6
    }

    /* FEATURES BENTO */
    .bento {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: auto;
      gap: 12px;
      margin-top: 60px;
    }

    .bento-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      transition: all 0.3s;
      overflow: hidden;
      position: relative;
    }

    .bento-card:hover {
      border-color: var(--border2);
      transform: translateY(-2px)
    }

    .bento-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: radial-gradient(circle at 50% 0%, rgba(255, 45, 45, 0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    .c1 {
      grid-column: span 5;
      grid-row: span 2
    }

    .c2 {
      grid-column: span 4
    }

    .c3 {
      grid-column: span 3
    }

    .c4 {
      grid-column: span 4
    }

    .c5 {
      grid-column: span 3
    }

    .c6 {
      grid-column: span 5
    }

    .c7 {
      grid-column: span 4;
      grid-row: span 2
    }

    .c8 {
      grid-column: span 3
    }

    .c9 {
      grid-column: span 5
    }

    .c10 {
      grid-column: span 3
    }

    .bento-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
    }

    .icon-red {
      background: rgba(255, 45, 45, 0.1);
      border: 1px solid rgba(255, 45, 45, 0.2)
    }

    .icon-cyan {
      background: rgba(0, 212, 255, 0.1);
      border: 1px solid rgba(0, 212, 255, 0.2)
    }

    .icon-gold {
      background: rgba(245, 166, 35, 0.1);
      border: 1px solid rgba(245, 166, 35, 0.2)
    }

    .icon-green {
      background: rgba(0, 255, 135, 0.1);
      border: 1px solid rgba(0, 255, 135, 0.2)
    }

    .bento-tag {
      display: inline-block;
      font-family: var(--mono);
      font-size: 10px;
      padding: 3px 8px;
      border-radius: 100px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .tag-red {
      background: rgba(255, 45, 45, 0.1);
      color: var(--red2);
      border: 1px solid rgba(255, 45, 45, 0.15)
    }

    .tag-cyan {
      background: rgba(0, 212, 255, 0.1);
      color: var(--cyan);
      border: 1px solid rgba(0, 212, 255, 0.15)
    }

    .tag-gold {
      background: rgba(245, 166, 35, 0.1);
      color: var(--gold);
      border: 1px solid rgba(245, 166, 35, 0.15)
    }

    .tag-green {
      background: rgba(0, 255, 135, 0.1);
      color: var(--green);
      border: 1px solid rgba(0, 255, 135, 0.15)
    }

    .bento-card h3 {
      font-family: var(--display);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -0.3px
    }

    .bento-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7
    }

    /* TERMINAL BLOCK */
    .terminal {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px;
      font-family: var(--mono);
      font-size: 12px;
      margin-top: 16px;
      line-height: 1.8;
    }

    .t-line-red {
      color: var(--red2)
    }

    .t-line-green {
      color: var(--green)
    }

    .t-line-cyan {
      color: var(--cyan)
    }

    .t-line-gold {
      color: var(--gold)
    }

    .t-line-muted {
      color: var(--muted)
    }

    /* BIG NUMBER CARDS */
    .metrics-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 60px;
    }

    .metric-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 24px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }

    .metric-card:hover {
      border-color: var(--border2)
    }

    .metric-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent, var(--red));
    }

    .metric-card.gold-accent {
      --accent: var(--gold)
    }

    .metric-card.cyan-accent {
      --accent: var(--cyan)
    }

    .metric-card.green-accent {
      --accent: var(--green)
    }

    .metric-num {
      font-family: var(--display);
      font-size: 42px;
      font-weight: 800;
      letter-spacing: -2px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .metric-label {
      font-size: 13px;
      color: var(--muted);
      font-family: var(--mono);
      letter-spacing: 0.5px;
      text-transform: uppercase
    }

    .metric-change {
      margin-top: 16px;
      font-size: 12px;
      font-family: var(--mono);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 8px;
      border-radius: 100px;
    }

    .change-up {
      background: rgba(0, 255, 135, 0.1);
      color: var(--green);
      border: 1px solid rgba(0, 255, 135, 0.2)
    }

    .change-badge {
      background: rgba(255, 45, 45, 0.1);
      color: var(--red2);
      border: 1px solid rgba(255, 45, 45, 0.2)
    }

    /* SECURITY SECTION */
    .security-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      margin-top: 60px;
    }

    .security-items {
      display: flex;
      flex-direction: column;
      gap: 16px
    }

    .sec-item {
      display: flex;
      gap: 16px;
      padding: 20px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--card);
      transition: all 0.3s;
    }

    .sec-item:hover {
      border-color: var(--border2);
      background: var(--card2)
    }

    .sec-icon {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .sec-text h4 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 4px
    }

    .sec-text p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6
    }

    .biometric-visual {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      position: relative;
      overflow: hidden;
    }

    .bio-face {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 2px solid var(--border2);
      margin: 0 auto 24px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      background: var(--bg2);
    }

    .bio-face::after {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: 1px solid rgba(0, 255, 135, 0.3);
      animation: biorotate 4s linear infinite;
      border-top-color: var(--green);
    }

    .bio-data {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px
    }

    .bio-row {
      padding: 12px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--bg2);
    }

    .bio-row-label {
      font-family: var(--mono);
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 4px
    }

    .bio-row-val {
      font-size: 13px;
      font-weight: 600
    }

    /* PLANS */
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 60px
    }

    .plan-card {
      border-radius: 16px;
      padding: 32px;
      background: var(--card);
      border: 1px solid var(--border);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .plan-card.popular {
      border-color: var(--red);
      background: linear-gradient(135deg, var(--card) 0%, rgba(255, 45, 45, 0.05) 100%)
    }

    .plan-card.ultra {
      border-color: var(--gold);
      background: linear-gradient(135deg, var(--card) 0%, rgba(245, 166, 35, 0.05) 100%)
    }

    .plan-card:hover {
      transform: translateY(-4px)
    }

    .plan-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      border-radius: 100px;
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .badge-popular {
      background: rgba(255, 45, 45, 0.15);
      color: var(--red2);
      border: 1px solid rgba(255, 45, 45, 0.3)
    }

    .badge-ultra {
      background: rgba(245, 166, 35, 0.15);
      color: var(--gold);
      border: 1px solid rgba(245, 166, 35, 0.3)
    }

    .badge-free {
      background: rgba(255, 255, 255, 0.05);
      color: var(--muted);
      border: 1px solid var(--border)
    }

    .plan-name {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 4px
    }

    .plan-price {
      font-family: var(--display);
      font-size: 42px;
      font-weight: 800;
      letter-spacing: -2px;
      line-height: 1;
      margin: 16px 0 8px;
    }

    .plan-price span {
      font-size: 16px;
      font-weight: 400;
      color: var(--muted);
      font-family: var(--body);
      letter-spacing: 0
    }

    .plan-desc {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 24px;
      line-height: 1.6
    }

    .plan-features {
      list-style: none;
      margin-bottom: 28px
    }

    .plan-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
    }

    .plan-features li:last-child {
      border: none
    }

    .feat-check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      flex-shrink: 0
    }

    .check-yes {
      background: rgba(0, 255, 135, 0.1);
      color: var(--green);
      border: 1px solid rgba(0, 255, 135, 0.2)
    }

    .check-star {
      background: rgba(245, 166, 35, 0.1);
      color: var(--gold);
      border: 1px solid rgba(245, 166, 35, 0.2)
    }

    /* AI SECTION */
    .ai-demo {
      display: grid;
      grid-template-columns: 1fr 56px 1fr;
      gap: 0;
      margin-top: 60px;
      align-items: center;
    }

    .ai-input-block {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      height: 100%;
    }

    .ai-label-bad {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--mono);
      font-size: 10px;
      color: #ff6b6b;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
      padding: 3px 8px;
      background: rgba(255, 45, 45, 0.08);
      border-radius: 4px;
      border: 1px solid rgba(255, 45, 45, 0.15);
    }

    .ai-label-good {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--mono);
      font-size: 10px;
      color: var(--green);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
      padding: 3px 8px;
      background: rgba(0, 255, 135, 0.08);
      border-radius: 4px;
      border: 1px solid rgba(0, 255, 135, 0.15);
    }

    .ai-text {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 16px;
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .ai-highlight-bad {
      background: rgba(255, 45, 45, 0.15);
      color: var(--red2);
      padding: 1px 4px;
      border-radius: 3px;
      text-decoration: line-through;
    }

    .ai-highlight-good {
      background: rgba(0, 255, 135, 0.1);
      color: var(--green);
      padding: 1px 4px;
      border-radius: 3px;
    }

    .ai-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px
    }

    .ai-tag {
      font-family: var(--mono);
      font-size: 10px;
      padding: 3px 8px;
      border-radius: 4px;
      letter-spacing: 0.3px;
    }

    .tag-warn {
      background: rgba(255, 45, 45, 0.1);
      color: var(--red2);
      border: 1px solid rgba(255, 45, 45, 0.2)
    }

    .tag-ok {
      background: rgba(0, 255, 135, 0.08);
      color: var(--green);
      border: 1px solid rgba(0, 255, 135, 0.15)
    }

    .ai-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--red);
      padding: 0;
      align-self: center;
      flex-direction: column;
      gap: 6px;
    }

    .ai-arrow-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(180deg, transparent, var(--red), transparent);
      margin: 0 auto;
    }

    /* FAQ */
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 48px;
    }

    .faq-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .faq-item:hover {
      border-color: var(--border2)
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: start;
      gap: 16px;
    }

    .faq-q h4 {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.5
    }

    .faq-chevron {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid var(--border2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 12px;
      color: var(--muted);
      transition: all 0.2s;
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
      border-color: var(--red);
      color: var(--red)
    }

    .faq-a {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin-top: 12px;
      display: none
    }

    .faq-item.open .faq-a {
      display: block
    }

    /* CTA FINAL */
    .cta-section {
      padding: 100px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(255, 45, 45, 0.1) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .cta-section h2 {
      font-family: var(--display);
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 800;
      letter-spacing: -2px;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .cta-section p {
      font-size: 17px;
      color: var(--muted);
      max-width: 480px;
      margin: 0 auto 40px;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      position: relative;
      z-index: 1;
    }

    .store-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 24px;
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 10px;
      transition: all 0.2s;
      cursor: pointer;
    }

    .store-btn:hover {
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px)
    }

    .store-icon {
      font-size: 24px
    }

    .store-text {
      text-align: left
    }

    .store-text small {
      font-size: 10px;
      color: var(--muted);
      font-family: var(--mono);
      display: block;
      letter-spacing: 0.5px;
      text-transform: uppercase
    }

    .store-text strong {
      font-size: 15px;
      font-weight: 700
    }

    /* FOOTER */
    footer {
      padding: 60px 48px 40px;
      border-top: 1px solid var(--border);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px
    }

    .footer-brand {
      font-family: var(--display);
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 14px
    }

    .footer-brand span {
      color: var(--red)
    }

    .footer-about {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 280px
    }

    .footer-col h5 {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--muted2);
      margin-bottom: 16px
    }

    .footer-col a {
      display: block;
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 8px;
      transition: color 0.2s
    }

    .footer-col a:hover {
      color: var(--text)
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      font-family: var(--mono);
      font-size: 12px;
      color: var(--muted2);
    }

    .footer-cities {
      display: flex;
      gap: 16px
    }

    .city-pill {
      padding: 3px 10px;
      border-radius: 100px;
      border: 1px solid var(--border);
      font-size: 11px;
      color: var(--muted);
    }

    /* ANIMATIONS */
    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.6;
        transform: scale(1.2)
      }
    }

    @keyframes moveworker {
      0% {
        left: 30%;
        top: 60%
      }

      40% {
        left: 48%;
        top: 47%
      }

      70% {
        left: 60%;
        top: 38%
      }

      100% {
        left: 30%;
        top: 60%
      }
    }

    @keyframes mappulse {
      0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1
      }

      100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0
      }
    }

    @keyframes biorotate {
      0% {
        transform: rotate(0deg)
      }

      100% {
        transform: rotate(360deg)
      }
    }

    @keyframes fadeup {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes slideright {
      from {
        opacity: 0;
        transform: translateX(-20px)
      }

      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    .fadeup {
      animation: fadeup 0.6s ease-out forwards;
      opacity: 0
    }

    .d1 {
      animation-delay: 0.1s
    }

    .d2 {
      animation-delay: 0.2s
    }

    .d3 {
      animation-delay: 0.3s
    }

    .d4 {
      animation-delay: 0.4s
    }

    /* DIVIDER */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border2) 50%, transparent);
      margin: 0 48px
    }

    /* SECTION TRANSITIONS */
    .wave-divider {
      width: 100%;
      overflow: hidden;
      line-height: 0;
      position: relative;
      height: 60px;
    }

    .wave-divider svg {
      display: block;
      width: 100%;
      height: 100%
    }

    .wave-divider.to-dark {
      background: var(--bg)
    }

    .wave-divider.to-light {
      background: var(--bg2)
    }

    /* scroll-reveal for all reveal elements */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* SECTION BG ALTERNATES */
    .section-dark {
      background: var(--bg2)
    }

    /* ── TABLET 1024px ── */
    @media(max-width:1024px) {
      nav {
        padding: 0 24px
      }

      nav .nav-links {
        display: none
      }

      .hero {
        grid-template-columns: 1fr;
        padding: 48px 24px 52px;
        min-height: auto
      }

      .hero-right {
        display: none
      }

      .hero-title {
        font-size: clamp(36px, 8vw, 52px)
      }

      .hero-sub {
        font-size: 15px
      }

      .hero-stats {
        gap: 16px
      }

      .stat-num {
        font-size: 22px
      }

      section {
        padding: 64px 24px
      }

      .bento {
        grid-template-columns: 1fr 1fr;
        gap: 10px
      }

      .c1,
      .c2,
      .c3,
      .c4,
      .c5,
      .c6,
      .c7,
      .c8,
      .c9,
      .c10 {
        grid-column: span 2
      }

      .c1,
      .c7 {
        grid-row: span 1
      }

      .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
      }

      .steps-grid::before {
        display: none
      }

      .metrics-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px
      }

      .ai-demo {
        grid-template-columns: 1fr;
        gap: 12px
      }

      .ai-arrow {
        transform: rotate(90deg)
      }

      .security-grid {
        grid-template-columns: 1fr
      }

      .plans-grid {
        grid-template-columns: 1fr
      }

      .faq-grid {
        grid-template-columns: 1fr
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
      }

      .footer-about {
        max-width: 100%
      }

      .cta-section {
        padding: 72px 24px
      }

      .cta-actions {
        flex-direction: column;
        align-items: center
      }
    }

    /* ── MOBILE 768px ── */
    @media(max-width:768px) {
      nav {
        padding: 0 16px;
        height: 60px
      }

      .nav-logo {
        font-size: 17px
      }

      .nav-cta .btn-ghost {
        display: none
      }

      .btn-red {
        padding: 8px 16px;
        font-size: 12px
      }

      .ticker {
        height: 32px
      }

      .ticker-item {
        font-size: 11px;
        padding: 0 20px
      }

      .ticker {
        margin-top: 60px
      }

      .hero {
        padding: 36px 16px 44px
      }

      .hero-eyebrow {
        font-size: 10px
      }

      .hero-title {
        font-size: clamp(30px, 9vw, 44px);
        letter-spacing: -1.5px
      }

      .hero-sub {
        font-size: 14px
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
      }

      .btn-primary,
      .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 13px 20px
      }

      .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding-top: 20px
      }

      .stat-num {
        font-size: 20px
      }

      .stat-label {
        font-size: 10px
      }

      section {
        padding: 52px 16px
      }

      .section-title {
        font-size: clamp(26px, 7vw, 36px);
        letter-spacing: -1px
      }

      .section-sub {
        font-size: 14px
      }

      .steps-grid {
        grid-template-columns: 1fr;
        gap: 0
      }

      .step-item {
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 12px;
        text-align: left;
        padding: 12px 0;
        border-bottom: 1px solid var(--border)
      }

      .step-num {
        width: 52px;
        height: 52px;
        margin: 0;
        font-size: 22px
      }

      .step-num .step-icon {
        font-size: 22px
      }

      .bento {
        grid-template-columns: 1fr;
        gap: 10px
      }

      .c1,
      .c2,
      .c3,
      .c4,
      .c5,
      .c6,
      .c7,
      .c8,
      .c9,
      .c10 {
        grid-column: span 1
      }

      .bento-card {
        padding: 20px
      }

      .terminal {
        font-size: 11px
      }

      .metrics-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px
      }

      .metric-card {
        padding: 18px 16px
      }

      .metric-num {
        font-size: 28px
      }

      .ai-demo {
        gap: 10px
      }

      .ai-input-block {
        padding: 16px
      }

      .ai-text {
        font-size: 13px;
        padding: 12px
      }

      .security-grid {
        gap: 24px
      }

      .bio-data {
        grid-template-columns: 1fr 1fr
      }

      .plans-grid {
        gap: 12px
      }

      .plan-card {
        padding: 22px 18px
      }

      .plan-price {
        font-size: 32px
      }

      .faq-grid {
        grid-template-columns: 1fr;
        gap: 10px
      }

      .faq-item {
        padding: 18px
      }

      .faq-q h4 {
        font-size: 14px
      }

      .cta-section {
        padding: 60px 16px
      }

      .cta-section h2 {
        font-size: clamp(28px, 8vw, 44px);
        letter-spacing: -1px
      }

      .cta-section p {
        font-size: 15px
      }

      .store-btn {
        width: 100%;
        max-width: 280px
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center
      }

      .footer-cities {
        flex-wrap: wrap;
        justify-content: center
      }
    }

    /* ── SMALL MOBILE 480px ── */
    @media(max-width:480px) {
      .hero-title {
        font-size: clamp(28px, 10vw, 38px)
      }

      .nav-cta {
        gap: 8px
      }

      .hero-stats {
        grid-template-columns: 1fr 1fr
      }

      .metrics-row {
        grid-template-columns: 1fr
      }

      .section-title {
        font-size: clamp(24px, 8vw, 32px)
      }

      .bento-card h3 {
        font-size: 16px
      }

      .plan-card.popular {
        order: -1
      }

      .steps-grid {
        gap: 0
      }

      .step-item {
        padding: 10px 0
      }

      .biometric-visual {
        padding: 20px
      }

      .bio-face {
        width: 90px;
        height: 90px;
        font-size: 36px
      }

      .footer-grid {
        gap: 20px
      }

      footer {
        padding: 40px 16px 28px
      }
    }

    /* LIVE FEED pulse animation for jobs */
    .job-card.pulse-in {
      animation: fadeup 0.4s ease-out forwards
    }

    /* HAMBURGER */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: transparent;
      border: 1px solid var(--border2);
      border-radius: 6px;
      cursor: pointer;
      padding: 7px;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 1.5px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.25s
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg)
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0)
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg)
    }

    /* MOBILE MENU */
    .mobile-menu {
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      z-index: 999;
      background: rgba(5, 6, 8, 0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 0;
      transform: translateY(-110%);
      transition: transform 0.3s cubic-bezier(.22, 1, .36, 1);
      padding: 8px 0 16px;
    }

    .mobile-menu.open {
      transform: translateY(0)
    }

    .mobile-menu a {
      padding: 14px 24px;
      font-size: 15px;
      font-weight: 500;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }

    .mobile-menu a:last-child {
      border: none
    }

    .mobile-menu a:hover {
      color: var(--text)
    }

    @media(max-width:768px) {
      .hamburger {
        display: flex
      }

      .nav-cta .btn-ghost {
        display: none
      }
    }

    /* WELCOME MODAL */
    .welcome-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(5, 6, 8, 0.85);
      backdrop-filter: blur(8px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      padding: 24px;
    }

    .welcome-modal-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    .welcome-modal-content {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 24px;
      width: 100%;
      max-width: 400px;
      text-align: center;
      position: relative;
      transform: translateY(20px) scale(0.95);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    }

    .welcome-modal-overlay.show .welcome-modal-content {
      transform: translateY(0) scale(1);
    }

    .welcome-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--muted);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .welcome-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .welcome-logo {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(255, 45, 45, 0.2);
    }

    .welcome-title {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 12px;
      color: #fff;
      letter-spacing: -0.5px;
    }

    .welcome-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    /* TRANSICIÓN DE PÁGINA CON ÁGUILA VOLADORA */
    .transition-overlay {
      position: fixed;
      inset: 0;
      z-index: 100000;
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .transition-overlay.active {
      pointer-events: auto;
      opacity: 1;
    }
    
    .transition-eagle-wrap {
      position: absolute;
      width: 160px;
      height: 160px;
      top: 110%;
      left: -10%;
      transform: translate(-50%, -50%) rotate(35deg);
      filter: drop-shadow(0 0 30px rgba(255, 45, 45, 0.7));
    }
    
    .transition-overlay.animating-out .transition-eagle-wrap {
      animation: flyOut 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }
    
    .transition-overlay.animating-in .transition-eagle-wrap {
      animation: flyIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }
    
    .transition-eagle {
      width: 100%;
      height: 100%;
      object-fit: contain;
      animation: glide 1.2s ease-in-out infinite;
    }
    
    @keyframes flyOut {
      0% {
        top: 110%;
        left: -10%;
        transform: translate(-50%, -50%) scale(0.6) rotate(35deg);
      }
      40% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.4) rotate(15deg);
      }
      100% {
        top: -15%;
        left: 115%;
        transform: translate(-50%, -50%) scale(2.2) rotate(-10deg);
      }
    }
    
    @keyframes flyIn {
      0% {
        top: 110%;
        left: -10%;
        transform: translate(-50%, -50%) scale(2.2) rotate(35deg);
      }
      50% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.1) rotate(15deg);
      }
      100% {
        top: -15%;
        left: 115%;
        transform: translate(-50%, -50%) scale(0.4) rotate(-10deg);
      }
    }
    
    @keyframes glide {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-12px) rotate(-4deg);
      }
    }
  


    /* ═══ FILOSOFÍA SECTION ═══ */

    /* MANIFESTO */
    .filo-manifesto {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      max-width: 800px;
      margin: 48px auto 64px;
      padding: 32px 36px;
      background: linear-gradient(135deg, rgba(255, 45, 45, 0.04) 0%, rgba(245, 166, 35, 0.03) 50%, rgba(0, 212, 255, 0.02) 100%);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      position: relative;
      backdrop-filter: blur(4px);
    }

    .filo-manifesto::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      background: radial-gradient(ellipse at 30% 0%, rgba(255, 45, 45, 0.06) 0%, transparent 50%);
      pointer-events: none;
    }

    .filo-quote-mark {
      font-family: var(--display);
      font-size: 40px;
      color: var(--red);
      opacity: 0.5;
      line-height: 1;
      flex-shrink: 0;
      user-select: none;
    }

    .filo-quote {
      font-family: var(--display);
      font-size: clamp(16px, 2.2vw, 22px);
      font-weight: 600;
      line-height: 1.6;
      letter-spacing: -0.3px;
      color: var(--text);
      font-style: italic;
      border: none;
      margin: 0;
      padding: 0;
    }

    /* PILLARS */
    .filo-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 20px;
      position: relative;
    }

    .filo-pillar {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 28px 28px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(.22, 1, .36, 1);
    }

    .filo-pillar:hover {
      border-color: var(--border2);
      transform: translateY(-4px);
    }

    .filo-pillar.featured {
      border-color: rgba(255, 45, 45, 0.2);
      background: linear-gradient(135deg, var(--card) 0%, rgba(255, 45, 45, 0.04) 100%);
    }

    .filo-pillar.featured:hover {
      border-color: rgba(255, 45, 45, 0.35);
      box-shadow: 0 20px 60px rgba(255, 45, 45, 0.1);
    }

    .filo-pillar-glow {
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      pointer-events: none;
      opacity: 0.7;
    }

    .filo-pillar-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      border: 1px solid;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .filo-pillar-num {
      font-family: var(--display);
      font-size: 64px;
      font-weight: 800;
      position: absolute;
      top: 12px;
      right: 20px;
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .filo-pillar-title {
      font-family: var(--display);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 12px;
      line-height: 1.2;
      position: relative;
      z-index: 1;
    }

    .filo-pillar-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .filo-pillar-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      position: relative;
      z-index: 1;
    }

    .filo-tag {
      font-family: var(--mono);
      font-size: 10px;
      padding: 4px 10px;
      border-radius: 100px;
      letter-spacing: 0.4px;
      font-weight: 600;
    }

    /* Stars animation */
    .filo-stars-demo {
      display: flex;
      gap: 4px;
      margin-top: 16px;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .filo-star-anim {
      font-size: 18px;
      color: var(--gold);
      animation: filo-star-pop 2.5s ease-in-out infinite;
      display: inline-block;
    }

    @keyframes filo-star-pop {

      0%,
      100% {
        transform: scale(1);
        opacity: 0.6
      }

      50% {
        transform: scale(1.3);
        opacity: 1;
        text-shadow: 0 0 12px rgba(245, 166, 35, 0.6)
      }
    }

    /* Dual role visual */
    .filo-dual-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 16px;
      position: relative;
      z-index: 1;
    }

    .filo-dual-role {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 10px 16px;
      border-radius: 10px;
      min-width: 70px;
    }

    .filo-dual-role span:first-child {
      font-size: 20px
    }

    .filo-dual-arrow {
      font-size: 18px;
      color: var(--muted);
      animation: filo-swap 2s ease-in-out infinite;
    }

    @keyframes filo-swap {

      0%,
      100% {
        transform: scaleX(1);
        opacity: 0.5
      }

      50% {
        transform: scaleX(1.15);
        opacity: 1;
        color: var(--text)
      }
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {
      .filo-pillars {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto
      }

      .filo-manifesto {
        margin: 36px auto 48px
      }
    }

    @media(max-width:768px) {
      #filosofia {
        padding: 60px 16px
      }

      .filo-manifesto {
        padding: 24px 20px;
        gap: 10px
      }

      .filo-quote {
        font-size: clamp(14px, 4vw, 18px)
      }

      .filo-quote-mark {
        font-size: 28px
      }

      .filo-pillar {
        padding: 28px 20px 22px
      }

      .filo-pillar-num {
        font-size: 48px;
        top: 8px;
        right: 14px
      }

      .filo-pillar-title {
        font-size: 18px
      }
    }

    /* WELCOME MODAL */
    .welcome-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(5, 6, 8, 0.85);
      backdrop-filter: blur(8px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      padding: 24px;
    }

    .welcome-modal-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    .welcome-modal-content {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 24px;
      width: 100%;
      max-width: 400px;
      text-align: center;
      position: relative;
      transform: translateY(20px) scale(0.95);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    }

    .welcome-modal-overlay.show .welcome-modal-content {
      transform: translateY(0) scale(1);
    }

    .welcome-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--muted);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .welcome-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .welcome-logo {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(255, 45, 45, 0.2);
    }

    .welcome-title {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 12px;
      color: #fff;
      letter-spacing: -0.5px;
    }

    .welcome-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }
  


    /* STORY SECTION */
    .story-progress {
      margin: 40px 0 48px
    }

    .story-track {
      height: 2px;
      background: var(--border);
      border-radius: 2px;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden
    }

    .story-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--red), var(--gold));
      border-radius: 2px;
      width: 16.66%;
      transition: width 0.5s cubic-bezier(.22, 1, .36, 1)
    }

    .story-steps-nav {
      display: flex;
      gap: 0
    }

    .snav-btn {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px 4px;
      border-bottom: 2px solid transparent;
      transition: all 0.2s;
      font-family: var(--body);
    }

    .snav-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid var(--border2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 700;
      color: var(--muted);
      transition: all 0.25s;
    }

    .snav-label {
      font-size: 11px;
      color: var(--muted);
      font-family: var(--mono);
      letter-spacing: 0.3px;
      transition: color 0.2s
    }

    .snav-btn.active .snav-num {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
      box-shadow: 0 0 14px rgba(255, 45, 45, 0.4)
    }

    .snav-btn.active .snav-label {
      color: var(--text)
    }

    .snav-btn:hover .snav-label {
      color: var(--text)
    }

    .story-layout {
      display: grid;
      grid-template-columns: 1fr 280px 1fr;
      gap: 48px;
      align-items: center;
      min-height: 520px;
    }

    /* TEXT CONTENT */
    .story-content {
      position: relative
    }

    .sc-step {
      opacity: 0;
      transform: translateX(-24px);
      transition: opacity 0.45s ease, transform 0.45s ease;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      pointer-events: none;
    }

    .sc-step.active {
      opacity: 1;
      transform: translateX(0);
      position: relative;
      pointer-events: auto
    }

    .sc-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      border-radius: 100px;
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .sc-num {
      font-family: var(--display);
      font-size: 80px;
      font-weight: 800;
      letter-spacing: -4px;
      line-height: 1;
      background: linear-gradient(135deg, var(--red) 0%, rgba(255, 45, 45, 0.15) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 16px;
      display: block;
    }

    .sc-title {
      font-family: var(--display);
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 12px;
      line-height: 1.2
    }

    .sc-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 24px
    }

    .sc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px
    }

    .sc-tag {
      font-family: var(--mono);
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 6px;
      letter-spacing: 0.3px;
    }

    /* PHONE */
    .story-phone-wrap {
      position: relative;
      display: flex;
      justify-content: center
    }

    .story-phone {
      width: 240px;
      height: 480px;
      border-radius: 36px;
      background: var(--bg2);
      border: 2px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.4s ease;
    }

    .story-phone:hover {
      box-shadow: 0 48px 96px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 45, 45, 0.12)
    }

    .phone-notch {
      width: 80px;
      height: 22px;
      background: var(--bg);
      border-radius: 0 0 14px 14px;
      margin: 0 auto;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
    }

    .phone-screen {
      flex: 1;
      overflow: hidden;
      position: relative
    }

    .phone-home-bar {
      width: 80px;
      height: 4px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
      margin: 8px auto;
      flex-shrink: 0;
    }

    /* Particles */
    .phone-particle {
      position: absolute;
      border-radius: 50%;
      animation: float-particle 4s ease-in-out infinite;
      pointer-events: none;
    }

    .p1 {
      width: 8px;
      height: 8px;
      background: var(--red);
      opacity: 0.6;
      top: 20%;
      left: -20px;
      animation-delay: 0s
    }

    .p2 {
      width: 5px;
      height: 5px;
      background: var(--cyan);
      opacity: 0.5;
      top: 60%;
      right: -16px;
      animation-delay: 1s
    }

    .p3 {
      width: 6px;
      height: 6px;
      background: var(--gold);
      opacity: 0.5;
      bottom: 25%;
      left: -18px;
      animation-delay: 2s
    }

    .p4 {
      width: 4px;
      height: 4px;
      background: var(--green);
      opacity: 0.6;
      top: 35%;
      right: -14px;
      animation-delay: 0.5s
    }

    @keyframes float-particle {

      0%,
      100% {
        transform: translateY(0) scale(1)
      }

      50% {
        transform: translateY(-12px) scale(1.2)
      }
    }

    /* PHONE SCREENS */
    .ps {
      width: 100%;
      height: 100%;
      padding: 12px;
      font-family: var(--body);
      overflow: hidden
    }

    .ps-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px
    }

    .ps-appname {
      font-family: var(--display);
      font-size: 13px;
      font-weight: 800;
      color: var(--text)
    }

    .ps-appname span {
      color: var(--red)
    }

    .ps-time {
      font-family: var(--mono);
      font-size: 10px;
      color: var(--muted)
    }

    /* Screen 1 — IA typing */
    .ps1-box {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px;
      margin-bottom: 8px;
    }

    .ps1-label {
      font-family: var(--mono);
      font-size: 9px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px
    }

    .ps1-input {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5
    }

    .ps1-cursor {
      display: inline-block;
      width: 1px;
      height: 12px;
      background: var(--text);
      animation: blink 1s infinite;
      vertical-align: middle
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0
      }
    }

    .ps1-magic {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 6px;
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(255, 45, 45, 0.15), rgba(245, 166, 35, 0.1));
      border: 1px solid rgba(255, 45, 45, 0.2);
      font-size: 10px;
      color: var(--red2);
      font-family: var(--mono);
      margin-bottom: 8px;
    }

    .ps1-result {
      background: rgba(0, 255, 135, 0.05);
      border: 1px solid rgba(0, 255, 135, 0.15);
      border-radius: 10px;
      padding: 10px;
    }

    .ps1-result-text {
      font-size: 11px;
      color: var(--text);
      line-height: 1.6
    }

    .ps1-spark {
      font-size: 14px;
      animation: spin 2s linear infinite;
      display: inline-block
    }

    @keyframes spin {
      from {
        transform: rotate(0deg)
      }

      to {
        transform: rotate(360deg)
      }
    }

    /* Screen 2 — Notifications */
    .ps2-notif {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 8px;
      margin-bottom: 6px;
      animation: slidenotif 0.4s ease forwards;
    }

    .ps2-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    .ps2-info {
      flex: 1
    }

    .ps2-name {
      font-size: 10px;
      font-weight: 700;
      margin-bottom: 1px
    }

    .ps2-price {
      font-family: var(--mono);
      font-size: 13px;
      font-weight: 700;
      color: var(--green)
    }

    .ps2-stars {
      font-size: 9px;
      color: var(--gold)
    }

    @keyframes slidenotif {
      from {
        opacity: 0;
        transform: translateX(20px)
      }

      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    /* Screen 3 — Profile */
    .ps3-profile {
      text-align: center;
      padding: 6px 0 10px
    }

    .ps3-avatar {
      font-size: 36px;
      margin-bottom: 6px
    }

    .ps3-name {
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 2px
    }

    .ps3-stars {
      font-size: 16px;
      color: var(--gold);
      letter-spacing: 2px;
      margin-bottom: 4px
    }

    .ps3-review {
      font-size: 10px;
      color: var(--muted);
      font-style: italic;
      background: var(--card);
      border-radius: 6px;
      padding: 6px 8px;
      margin-bottom: 10px;
    }

    .ps3-btn {
      width: 100%;
      padding: 9px;
      background: var(--green);
      border: none;
      border-radius: 8px;
      font-weight: 700;
      font-size: 12px;
      color: #003d1e;
      cursor: pointer;
      font-family: var(--body);
      animation: pulse-btn 1.5s infinite;
    }

    @keyframes pulse-btn {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.3)
      }

      50% {
        box-shadow: 0 0 0 8px rgba(0, 255, 135, 0)
      }
    }

    /* Screen 4 — GPS Map */
    .ps4-map {
      height: 160px;
      background: var(--bg);
      border-radius: 8px;
      position: relative;
      overflow: hidden;
      margin-bottom: 8px;
      border: 1px solid var(--border);
    }

    .ps4-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(0, 212, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.06) 1px, transparent 1px);
      background-size: 20px 20px;
    }

    .ps4-car {
      position: absolute;
      font-size: 16px;
      animation: drive4 5s ease-in-out infinite;
      filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.6));
    }

    @keyframes drive4 {
      0% {
        left: 15%;
        top: 70%
      }

      40% {
        left: 42%;
        top: 52%
      }

      70% {
        left: 62%;
        top: 35%
      }

      100% {
        left: 15%;
        top: 70%
      }
    }

    .ps4-dest {
      position: absolute;
      right: 22%;
      top: 20%;
      font-size: 16px;
      filter: drop-shadow(0 0 6px rgba(255, 45, 45, 0.8))
    }

    .ps4-origin {
      position: absolute;
      left: 12%;
      bottom: 18%;
      font-size: 12px;
      color: var(--green)
    }

    .ps4-eta {
      background: rgba(0, 212, 255, 0.1);
      border: 1px solid rgba(0, 212, 255, 0.25);
      border-radius: 6px;
      padding: 6px 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .ps4-eta-label {
      font-family: var(--mono);
      font-size: 9px;
      color: var(--muted);
      text-transform: uppercase
    }

    .ps4-eta-num {
      font-family: var(--display);
      font-size: 18px;
      font-weight: 800;
      color: var(--cyan)
    }

    /* Screen 5 — Done */
    .ps5-done {
      text-align: center;
      padding: 10px 0
    }

    .ps5-emoji {
      font-size: 40px;
      margin-bottom: 8px;
      display: block;
      animation: bounce5 1s ease infinite
    }

    @keyframes bounce5 {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-6px)
      }
    }

    .ps5-title {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 4px
    }

    .ps5-sub {
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 12px;
      line-height: 1.5
    }

    .ps5-duality {
      background: linear-gradient(135deg, rgba(255, 45, 45, 0.1), rgba(0, 212, 255, 0.1));
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 8px;
      font-size: 10px;
      color: var(--muted);
      text-align: center;
    }

    .ps5-duality strong {
      color: var(--text);
      font-size: 11px;
      display: block;
      margin-bottom: 3px
    }

    .ps5-roles {
      display: flex;
      gap: 6px;
      margin-top: 6px
    }

    .ps5-role {
      flex: 1;
      padding: 5px;
      border-radius: 6px;
      text-align: center;
      font-size: 10px;
      font-weight: 700;
    }

    .ps5-role.emp {
      background: rgba(255, 45, 45, 0.12);
      color: var(--red2);
      border: 1px solid rgba(255, 45, 45, 0.2)
    }

    .ps5-role.wkr {
      background: rgba(0, 212, 255, 0.1);
      color: var(--cyan);
      border: 1px solid rgba(0, 212, 255, 0.2)
    }

    /* Screen 6 — Payment */
    .ps6-check {
      text-align: center;
      padding: 8px 0 10px;
    }

    .ps6-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(0, 255, 135, 0.12);
      border: 2px solid var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin: 0 auto 8px;
      animation: pop-in 0.5s cubic-bezier(.22, 1, .36, 1);
    }

    @keyframes pop-in {
      from {
        transform: scale(0)
      }

      to {
        transform: scale(1)
      }
    }

    .ps6-amount {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 800;
      color: var(--green);
      margin-bottom: 2px
    }

    .ps6-label {
      font-size: 10px;
      color: var(--muted);
      font-family: var(--mono);
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px
    }

    .ps6-stars-row {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 8px;
      text-align: center;
    }

    .ps6-stars-label {
      font-size: 10px;
      color: var(--muted);
      margin-bottom: 5px;
      font-family: var(--mono)
    }

    .ps6-stars-interactive {
      display: flex;
      gap: 3px;
      justify-content: center
    }

    .ps6-star {
      font-size: 18px;
      cursor: pointer;
      transition: transform 0.15s;
      color: rgba(255, 255, 255, 0.2)
    }

    .ps6-star.lit {
      color: var(--gold)
    }

    .ps6-star:nth-child(5) {
      animation: star-pop 0.3s 0.2s cubic-bezier(.22, 1, .36, 1) both
    }

    @keyframes star-pop {
      from {
        transform: scale(0) rotate(-30deg)
      }

      to {
        transform: scale(1) rotate(0)
      }
    }

    /* RIGHT LIST */
    .story-list {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .sl-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--card);
      cursor: pointer;
      transition: all 0.25s;
    }

    .sl-item:hover {
      border-color: var(--border2);
      background: var(--card2)
    }

    .sl-item.active {
      border-color: rgba(255, 45, 45, 0.35);
      background: rgba(255, 45, 45, 0.05)
    }

    .sl-num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 700;
      border: 1px solid var(--border2);
      color: var(--muted);
      transition: all 0.25s;
    }

    .sl-item.active .sl-num {
      background: var(--red);
      border-color: var(--red);
      color: #fff
    }

    .sl-title {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      transition: color 0.2s
    }

    .sl-item.active .sl-title {
      color: var(--text)
    }

    .sl-emoji {
      font-size: 16px;
      flex-shrink: 0
    }

    /* ARROWS */
    .story-arrows {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 40px;
    }

    .sarrow-btn {
      padding: 10px 24px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid var(--border2);
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.2s;
      font-family: var(--body);
    }

    .sarrow-btn:hover {
      color: var(--text);
      border-color: rgba(255, 255, 255, 0.3)
    }

    .sarrow-btn.red {
      background: var(--red);
      border-color: var(--red);
      color: #fff
    }

    .sarrow-btn.red:hover {
      background: #e51f1f
    }

    .story-dots {
      display: flex;
      gap: 6px;
      align-items: center
    }

    .sdot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--border2);
      cursor: pointer;
      transition: all 0.2s
    }

    .sdot.active {
      background: var(--red);
      width: 20px;
      border-radius: 3px
    }

    /* RESPONSIVE story */
    @media(max-width:1024px) {
      .story-layout {
        grid-template-columns: 1fr 220px;
        gap: 24px
      }

      .story-list {
        display: none
      }

      .sc-num {
        font-size: 56px
      }
    }

    @media(max-width:768px) {
      .story-layout {
        grid-template-columns: 1fr;
        gap: 24px
      }

      .story-phone-wrap {
        order: -1
      }

      .story-phone {
        width: 200px;
        height: 400px
      }

      .snav-label {
        display: none
      }

      .sc-num {
        font-size: 44px
      }

      .sc-title {
        font-size: 22px
      }

      .story-content {
        min-height: 220px
      }
    }

    /* WELCOME MODAL */
    .welcome-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(5, 6, 8, 0.85);
      backdrop-filter: blur(8px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      padding: 24px;
    }

    .welcome-modal-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    .welcome-modal-content {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 24px;
      width: 100%;
      max-width: 400px;
      text-align: center;
      position: relative;
      transform: translateY(20px) scale(0.95);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    }

    .welcome-modal-overlay.show .welcome-modal-content {
      transform: translateY(0) scale(1);
    }

    .welcome-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--muted);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .welcome-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .welcome-logo {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(255, 45, 45, 0.2);
    }

    .welcome-title {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 12px;
      color: #fff;
      letter-spacing: -0.5px;
    }

    .welcome-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }
  


    /* DUAL MAP */
    .dmap-tabs {
      display: flex;
      gap: 8px;
      margin: 40px 0 48px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 6px;
      width: fit-content;
    }

    .dmap-tab {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      border-radius: 8px;
      border: none;
      background: transparent;
      font-family: var(--body);
      font-size: 14px;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.25s;
    }

    .dmap-tab.active {
      background: var(--bg3);
      color: var(--text);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4)
    }

    .dmap-tab-icon {
      font-size: 16px
    }

    .dmap-layout {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 64px;
      align-items: start;
    }

    /* PHONE */
    .dmap-phone-wrap {
      position: relative;
      width: 300px
    }

    .dmap-phone {
      width: 280px;
      height: 560px;
      border-radius: 40px;
      background: #0a0a0c;
      border: 2px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 48px 96px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.03);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.5s;
    }

    .dmap-notch {
      width: 90px;
      height: 24px;
      background: #000;
      border-radius: 0 0 16px 16px;
      margin: 0 auto;
      flex-shrink: 0;
      z-index: 2
    }

    .dmap-screen {
      flex: 1;
      overflow: hidden;
      position: relative;
      background: #111
    }

    .dmap-bar {
      width: 90px;
      height: 4px;
      background: rgba(255, 255, 255, 0.18);
      border-radius: 2px;
      margin: 8px auto;
      flex-shrink: 0
    }

    /* GPS RINGS */
    .dmap-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255, 45, 45, 0.2);
      animation: dmapring 3s ease-out infinite;
      pointer-events: none;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .r1 {
      width: 320px;
      height: 320px;
      animation-delay: 0s
    }

    .r2 {
      width: 400px;
      height: 400px;
      animation-delay: 1s
    }

    @keyframes dmapring {
      0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.85)
      }

      100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.1)
      }
    }

    /* MAP CANVAS */
    .map-canvas {
      width: 100%;
      height: 100%;
      position: relative;
      background: #111318;
      overflow: hidden;
    }

    .map-dark-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(62, 155, 253, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62, 155, 253, 0.04) 1px, transparent 1px);
      background-size: 22px 22px;
    }

    /* Street roads */
    .map-road {
      position: absolute;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 2px
    }

    .map-road.h {
      height: 3px
    }

    .map-road.v {
      width: 3px
    }

    /* Route line */
    .map-route-line {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    /* Markers */
    .map-pin {
      position: absolute;
      transform: translate(-50%, -50%);
      z-index: 5
    }

    .pin-origin {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #3e9bfd;
      box-shadow: 0 0 12px #3e9bfd;
      border: 2px solid #fff
    }

    .pin-dest {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ff3b30;
      box-shadow: 0 0 12px #ff3b30;
      border: 2px solid #fff
    }

    .pin-pivot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 2px solid #fff
    }

    .pin-worker {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #FF9800;
      border: 2px solid #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      z-index: 10;
      box-shadow: 0 0 16px rgba(255, 152, 0, 0.6);
      animation: workerping 2s ease-in-out infinite;
    }

    @keyframes workerping {

      0%,
      100% {
        box-shadow: 0 0 12px rgba(255, 152, 0, 0.6)
      }

      50% {
        box-shadow: 0 0 24px rgba(255, 152, 0, 0.9)
      }
    }

    .pin-me {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #3e9bfd;
      border: 2px solid #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      box-shadow: 0 0 16px rgba(62, 155, 253, 0.6);
    }

    /* HUD CAPSULE */
    .hud-capsule {
      position: absolute;
      top: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(20, 20, 26, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      padding: 8px 14px;
      backdrop-filter: blur(8px);
      z-index: 20;
      white-space: nowrap;
    }

    .hud-item {
      display: flex;
      align-items: center;
      gap: 4px;
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 600;
      color: #fff
    }

    .hud-div {
      width: 1px;
      height: 14px;
      background: rgba(255, 255, 255, 0.2)
    }

    /* FAB MENU */
    .fab-container {
      position: absolute;
      bottom: 16px;
      right: 14px;
      z-index: 30
    }

    .fab-main-btn {
      width: 44px;
      height: 44px;
      border-radius: 22px;
      background: #1e1e1e;
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
      transition: all 0.2s;
    }

    .fab-grid {
      position: absolute;
      bottom: 52px;
      right: 0;
      display: grid;
      grid-template-columns: repeat(3, 36px);
      gap: 8px;
      opacity: 0;
      transform: scale(0.8) translateY(10px);
      transition: all 0.3s cubic-bezier(.22, 1, .36, 1);
      pointer-events: none;
    }

    .fab-grid.open {
      opacity: 1;
      transform: scale(1) translateY(0);
      pointer-events: auto
    }

    .fab-item {
      width: 36px;
      height: 36px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      cursor: pointer;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    }

    .fab-item .fab-tooltip {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      background: #000;
      color: #fff;
      font-size: 9px;
      font-family: var(--mono);
      padding: 2px 6px;
      border-radius: 4px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.15s;
      pointer-events: none;
    }

    .fab-item:hover .fab-tooltip {
      opacity: 1
    }

    /* FINISH OVERLAY */
    .finish-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 50;
    }

    .finish-box {
      background: #1a1a1e;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 20px 18px;
      margin: 0 20px;
      text-align: center;
    }

    .finish-box .ficon {
      font-size: 28px;
      margin-bottom: 8px;
      display: block
    }

    .finish-box .ftitle {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px
    }

    .finish-box .fbody {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6
    }

    .finish-box .fhighlight {
      color: #3e9bfd;
      font-weight: 700
    }

    /* NAV BUTTON */
    .nav-btn {
      position: absolute;
      left: 12px;
      right: 12px;
      border-radius: 12px;
      padding: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      border: none;
      cursor: pointer;
      font-family: var(--body);
    }

    .nav-btn.start {
      bottom: 16px;
      background: #3e9bfd;
      box-shadow: 0 4px 16px rgba(62, 155, 253, 0.4)
    }

    .nav-btn.finish {
      bottom: 16px;
      background: #ff3b30;
      box-shadow: 0 4px 16px rgba(255, 59, 48, 0.4)
    }

    .nav-btn.nextstop {
      bottom: 16px;
      background: #4CAF50;
      box-shadow: 0 4px 16px rgba(76, 175, 80, 0.4)
    }

    /* BOTTOM LEGEND (employer) */
    .map-legend {
      position: absolute;
      bottom: 16px;
      left: 10px;
      right: 10px;
      background: rgba(28, 28, 32, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 10px 14px;
      display: flex;
      justify-content: space-around;
      align-items: center;
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.8);
      font-family: var(--mono)
    }

    .legend-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%
    }

    /* EMPLOYER CLOSE / FOLLOW BTNS */
    .emp-close-btn {
      position: absolute;
      top: 36px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 16px;
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      z-index: 20;
    }

    .emp-follow-btn {
      position: absolute;
      top: 76px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      z-index: 20;
    }

    /* REPORT MODAL */
    .report-modal {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      z-index: 80;
      overflow-y: auto;
      padding: 16px;
    }

    .report-item {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #262626;
      border: 1px solid #333;
      border-radius: 10px;
      padding: 10px 12px;
      margin-bottom: 8px;
      cursor: pointer;
    }

    .report-icon {
      width: 28px;
      height: 28px;
      border-radius: 14px;
      background: rgba(62, 155, 253, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    .report-label {
      font-size: 12px;
      color: #eee;
      font-weight: 500
    }

    /* FEATURES LIST */
    .dmap-features {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding-top: 8px
    }

    .df-group {
      margin-bottom: 8px
    }

    .df-group-title {
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 10px;
      padding-bottom: 6px;
      border-bottom: 1px solid var(--border);
    }

    .df-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 12px;
      background: var(--card);
      border: 1px solid var(--border);
      transition: all 0.2s;
      cursor: default;
    }

    .df-item:hover {
      border-color: var(--border2);
      background: var(--card2)
    }

    .df-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .df-text h4 {
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 3px
    }

    .df-text p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6
    }

    .df-badge {
      font-family: var(--mono);
      font-size: 9px;
      padding: 2px 7px;
      border-radius: 100px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-top: 5px;
      display: inline-block;
    }

    /* RESPONSIVE dmap */
    @media(max-width:1024px) {
      .dmap-layout {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .dmap-phone-wrap {
        margin: 0 auto
      }
    }

    @media(max-width:768px) {
      .dmap-tabs {
        width: 100%;
        justify-content: center
      }

      .dmap-tab {
        flex: 1;
        justify-content: center;
        font-size: 13px;
        padding: 9px 12px
      }

      .dmap-phone {
        width: 240px;
        height: 480px
      }

      .dmap-phone-wrap {
        width: 240px
      }
    }

    /* WELCOME MODAL */
    .welcome-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(5, 6, 8, 0.85);
      backdrop-filter: blur(8px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      padding: 24px;
    }

    .welcome-modal-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    .welcome-modal-content {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 24px;
      width: 100%;
      max-width: 400px;
      text-align: center;
      position: relative;
      transform: translateY(20px) scale(0.95);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    }

    .welcome-modal-overlay.show .welcome-modal-content {
      transform: translateY(0) scale(1);
    }

    .welcome-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--muted);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .welcome-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .welcome-logo {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(255, 45, 45, 0.2);
    }

    .welcome-title {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 12px;
      color: #fff;
      letter-spacing: -0.5px;
    }

    .welcome-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }
  


    /* ═══ SKILLS IA PIPELINE ═══ */

    /* STEPPER NAV */
    .sk-stepper-nav {
      display: flex;
      align-items: center;
      gap: 0;
      margin: 40px 0 48px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .sk-nav-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px 12px;
      transition: all 0.3s;
      font-family: var(--body);
      flex-shrink: 0;
    }

    .sk-nav-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid var(--border2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 700;
      color: var(--muted);
      transition: all 0.35s cubic-bezier(.22, 1, .36, 1);
    }

    .sk-nav-label {
      font-size: 11px;
      color: var(--muted);
      font-family: var(--mono);
      letter-spacing: 0.3px;
      transition: color 0.3s
    }

    .sk-nav-btn.active .sk-nav-num {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
      box-shadow: 0 0 18px rgba(255, 45, 45, 0.5);
      transform: scale(1.1);
    }

    .sk-nav-btn.active .sk-nav-label {
      color: var(--text);
      font-weight: 600
    }

    .sk-nav-btn.done .sk-nav-num {
      background: var(--green);
      border-color: var(--green);
      color: #003d1e
    }

    .sk-nav-connector {
      flex: 1;
      height: 3px;
      background: var(--border);
      border-radius: 2px;
      position: relative;
      overflow: hidden
    }

    .sk-nav-connector-fill {
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, var(--green), var(--cyan));
      border-radius: 2px;
      transition: width 0.6s cubic-bezier(.22, 1, .36, 1)
    }

    /* PIPELINE LAYOUT */
    .sk-pipeline-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      min-height: 480px;
    }

    /* VISUAL PANEL */
    .sk-visual {
      position: relative
    }

    .sk-visual-step {
      opacity: 0;
      transform: translateY(20px) scale(0.97);
      transition: all 0.5s cubic-bezier(.22, 1, .36, 1);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      pointer-events: none;
    }

    .sk-visual-step.active {
      opacity: 1;
      transform: translateY(0) scale(1);
      position: relative;
      pointer-events: auto
    }

    /* CARD DEMO (step 0) */
    .sk-card-demo {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden
    }

    .sk-card-header {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 18px;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      font-weight: 700
    }

    .sk-card-icon {
      font-size: 18px
    }

    .sk-card-body {
      padding: 16px 18px
    }

    .sk-field {
      margin-bottom: 12px
    }

    .sk-field-label {
      font-family: var(--mono);
      font-size: 9px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 4px
    }

    .sk-field-val {
      font-size: 13px;
      color: var(--text);
      padding: 8px 12px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 8px
    }

    .sk-field-row {
      display: flex;
      gap: 12px
    }

    .sk-field.sm {
      flex: 1
    }

    .sk-card-footer {
      padding: 12px 18px;
      border-top: 1px solid var(--border)
    }

    .sk-pulse-btn {
      text-align: center;
      padding: 10px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 13px;
      background: linear-gradient(135deg, var(--red), #ff6b3a);
      color: #fff;
      animation: sk-pulse-glow 2s ease-in-out infinite;
      cursor: pointer;
    }

    @keyframes sk-pulse-glow {

      0%,
      100% {
        box-shadow: 0 0 8px rgba(255, 45, 45, 0.3)
      }

      50% {
        box-shadow: 0 0 24px rgba(255, 45, 45, 0.6)
      }
    }

    .sk-typing {
      position: relative;
      overflow: hidden
    }

    .sk-typing::after {
      content: '';
      width: 2px;
      height: 14px;
      background: var(--text);
      display: inline-block;
      animation: blink 1s infinite;
      vertical-align: middle;
      margin-left: 2px
    }

    /* AI SCANNER (step 1) */
    .sk-ai-scanner {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden
    }

    .sk-scanner-header {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 18px;
      font-size: 13px;
      font-weight: 700;
      border-bottom: 1px solid var(--border);
      background: linear-gradient(135deg, rgba(245, 166, 35, 0.06), rgba(255, 45, 45, 0.04))
    }

    .sk-scanner-spark {
      font-size: 16px;
      animation: spin 3s linear infinite;
      display: inline-block
    }

    .sk-scanner-body {
      padding: 16px 18px
    }

    .sk-scan-line {
      height: 4px;
      background: var(--bg);
      border-radius: 2px;
      overflow: hidden;
      margin-bottom: 16px
    }

    .sk-scan-progress {
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, var(--red), var(--gold), var(--cyan));
      border-radius: 2px;
      animation: sk-scan-sweep 3s ease-in-out infinite
    }

    @keyframes sk-scan-sweep {
      0% {
        width: 0
      }

      50% {
        width: 100%
      }

      100% {
        width: 100%
      }
    }

    .sk-scan-results {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px
    }

    .sk-scan-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 8px;
      background: var(--bg);
      border: 1px solid var(--border);
      opacity: 0;
      animation: sk-fade-in 0.5s ease forwards;
    }

    .sk-scan-item.found {
      opacity: 1
    }

    .sk-scan-check {
      font-size: 14px
    }

    .sk-scan-name {
      flex: 1;
      font-size: 12px;
      font-weight: 600
    }

    .sk-scan-status {
      font-family: var(--mono);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 2px 8px;
      border-radius: 100px
    }

    .sk-scan-status.ok {
      background: rgba(0, 255, 135, 0.1);
      color: var(--green);
      border: 1px solid rgba(0, 255, 135, 0.2)
    }

    .sk-scan-status.detect {
      background: rgba(0, 212, 255, 0.1);
      color: var(--cyan);
      border: 1px solid rgba(0, 212, 255, 0.2)
    }

    .sk-detected-skills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px
    }

    .sk-pill {
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(245, 166, 35, 0.08));
      border: 1px solid rgba(0, 212, 255, 0.25);
      color: var(--text);
      opacity: 0;
      animation: sk-pill-pop 0.4s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    @keyframes sk-pill-pop {
      from {
        opacity: 0;
        transform: scale(0.7)
      }

      to {
        opacity: 1;
        transform: scale(1)
      }
    }

    @keyframes sk-fade-in {
      from {
        opacity: 0;
        transform: translateX(-10px)
      }

      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    .sk-normalizer {
      background: rgba(245, 166, 35, 0.05);
      border: 1px solid rgba(245, 166, 35, 0.15);
      border-radius: 10px;
      padding: 10px 14px
    }

    .sk-norm-label {
      font-family: var(--mono);
      font-size: 9px;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px
    }

    .sk-norm-row {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px
    }

    .sk-norm-input {
      color: var(--muted);
      text-decoration: line-through
    }

    .sk-norm-arrow {
      color: var(--gold);
      font-weight: 700
    }

    .sk-norm-output {
      color: var(--text);
      font-weight: 700
    }

    .sk-norm-badge {
      font-family: var(--mono);
      font-size: 8px;
      padding: 2px 6px;
      border-radius: 100px;
      background: rgba(0, 255, 135, 0.1);
      color: var(--green);
      border: 1px solid rgba(0, 255, 135, 0.2)
    }

    /* PROFILE CARD (step 2) */
    .sk-profile-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden
    }

    .sk-profile-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 18px;
      border-bottom: 1px solid var(--border)
    }

    .sk-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--bg3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      border: 2px solid var(--border2)
    }

    .sk-profile-info {
      flex: 1
    }

    .sk-profile-name {
      font-size: 15px;
      font-weight: 700
    }

    .sk-profile-stars {
      font-size: 12px;
      color: var(--gold);
      letter-spacing: 1px
    }

    .sk-profile-stars span {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted);
      margin-left: 4px
    }

    .sk-profile-badge {
      font-family: var(--mono);
      font-size: 8px;
      padding: 3px 8px;
      border-radius: 100px;
      background: rgba(0, 255, 135, 0.1);
      color: var(--green);
      border: 1px solid rgba(0, 255, 135, 0.2);
      letter-spacing: 0.5px
    }

    .sk-skills-grid {
      padding: 16px 18px
    }

    .sk-skills-title {
      font-family: var(--mono);
      font-size: 10px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px
    }

    .sk-skill-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px
    }

    .sk-skill-chip {
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 100px;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--muted);
      white-space: nowrap;
      transition: all 0.3s;
    }

    .sk-skill-chip.lit {
      border-color: rgba(0, 212, 255, 0.3);
      color: var(--text);
      background: rgba(0, 212, 255, 0.06)
    }

    .sk-skill-chip.new-pulse {
      animation: sk-new-skill 1.5s ease-in-out infinite;
      border-color: rgba(245, 166, 35, 0.4);
      background: rgba(245, 166, 35, 0.08)
    }

    @keyframes sk-new-skill {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.3)
      }

      50% {
        box-shadow: 0 0 0 6px rgba(245, 166, 35, 0)
      }
    }

    .sk-skill-count {
      font-family: var(--mono);
      font-size: 9px;
      color: var(--muted);
      margin-left: 4px
    }

    .sk-skill-bar {
      flex: 1;
      height: 4px;
      background: var(--bg);
      border-radius: 2px;
      overflow: hidden
    }

    .sk-skill-fill {
      height: 100%;
      border-radius: 2px;
      transition: width 1s cubic-bezier(.22, 1, .36, 1)
    }

    .sk-profile-note {
      padding: 12px 18px;
      border-top: 1px solid var(--border);
      font-size: 11px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px
    }

    /* MATCHING (step 3) */
    .sk-match-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0
    }

    .sk-match-pub {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px 20px;
      width: 100%
    }

    .sk-match-pub-header {
      font-size: 11px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 8px
    }

    .sk-match-pub-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 4px
    }

    .sk-match-pub-price {
      font-family: var(--mono);
      font-size: 18px;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 10px
    }

    .sk-match-pub-skills {
      display: flex;
      flex-wrap: wrap;
      gap: 6px
    }

    .sk-match-tag {
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 100px;
      border: 1px solid var(--border);
      color: var(--muted)
    }

    .sk-match-tag.glow {
      border-color: rgba(0, 255, 135, 0.4);
      color: var(--green);
      background: rgba(0, 255, 135, 0.08);
      box-shadow: 0 0 12px rgba(0, 255, 135, 0.15);
      animation: sk-glow-pulse 2s ease infinite
    }

    .sk-match-tag.dim {
      opacity: 0.5
    }

    @keyframes sk-glow-pulse {

      0%,
      100% {
        box-shadow: 0 0 8px rgba(0, 255, 135, 0.1)
      }

      50% {
        box-shadow: 0 0 18px rgba(0, 255, 135, 0.3)
      }
    }

    .sk-match-arrow-down {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 12px 0;
      color: var(--gold);
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      position: relative
    }

    .sk-match-arrow-pulse {
      width: 2px;
      height: 24px;
      background: linear-gradient(180deg, var(--gold), transparent);
      animation: sk-arrow-flow 1.5s ease infinite
    }

    @keyframes sk-arrow-flow {
      0% {
        opacity: 1;
        transform: scaleY(1)
      }

      100% {
        opacity: 0;
        transform: scaleY(0.5)
      }
    }

    .sk-match-user {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--card);
      border: 1px solid rgba(0, 255, 135, 0.2);
      border-radius: 14px;
      padding: 14px 18px;
      width: 100%
    }

    .sk-match-avatar {
      font-size: 28px
    }

    .sk-match-info {
      flex: 1
    }

    .sk-match-name {
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 4px
    }

    .sk-match-user-skills {
      display: flex;
      flex-wrap: wrap;
      gap: 4px
    }

    .sk-match-user-tag {
      font-size: 10px;
      padding: 2px 8px;
      border-radius: 100px;
      border: 1px solid var(--border);
      color: var(--muted)
    }

    .sk-match-user-tag.lit {
      border-color: rgba(0, 255, 135, 0.3);
      color: var(--green);
      background: rgba(0, 255, 135, 0.06)
    }

    .sk-match-badge-hit {
      font-family: var(--mono);
      font-size: 9px;
      padding: 4px 10px;
      border-radius: 100px;
      background: rgba(0, 255, 135, 0.1);
      color: var(--green);
      border: 1px solid rgba(0, 255, 135, 0.25);
      letter-spacing: 0.5px;
      white-space: nowrap
    }

    .sk-match-explain {
      font-size: 12px;
      color: var(--muted);
      text-align: center;
      padding: 12px 16px;
      line-height: 1.7;
      margin-top: 8px
    }

    /* PRICE SUGGESTION (step 4) */
    .sk-price-container {
      background: var(--card);
      border: 1px solid rgba(245, 166, 35, 0.2);
      border-radius: 16px;
      overflow: hidden
    }

    .sk-price-header {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 18px;
      border-bottom: 1px solid var(--border);
      background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(255, 45, 45, 0.04))
    }

    .sk-price-crown {
      font-size: 18px
    }

    .sk-price-ultra {
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 1px;
      padding: 2px 8px;
      border-radius: 100px;
      background: rgba(245, 166, 35, 0.15);
      border: 1px solid rgba(245, 166, 35, 0.3)
    }

    .sk-price-label {
      font-size: 12px;
      color: var(--muted);
      margin-left: auto
    }

    .sk-price-chart {
      padding: 16px 18px
    }

    .sk-price-chart-title {
      font-family: var(--mono);
      font-size: 10px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 14px
    }

    .sk-price-bars {
      display: flex;
      align-items: flex-end;
      gap: 12px;
      height: 120px;
      padding-bottom: 24px;
      position: relative
    }

    .sk-price-bars::after {
      content: '';
      position: absolute;
      bottom: 24px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--border)
    }

    .sk-price-bar-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      height: 100%;
      justify-content: flex-end
    }

    .sk-price-bar {
      width: 100%;
      border-radius: 6px 6px 0 0;
      background: linear-gradient(180deg, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.08));
      border: 1px solid rgba(0, 212, 255, 0.2);
      border-bottom: none;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 6px;
      transition: height 1s cubic-bezier(.22, 1, .36, 1);
    }

    .sk-price-bar span {
      font-family: var(--mono);
      font-size: 10px;
      color: var(--cyan);
      font-weight: 700
    }

    .sk-price-bar.highlight {
      background: linear-gradient(180deg, rgba(245, 166, 35, 0.4), rgba(245, 166, 35, 0.1));
      border-color: rgba(245, 166, 35, 0.3)
    }

    .sk-price-bar.highlight span {
      color: var(--gold)
    }

    .sk-price-bar-label {
      font-family: var(--mono);
      font-size: 9px;
      color: var(--muted)
    }

    .sk-price-suggestion {
      padding: 16px 18px;
      border-top: 1px solid var(--border);
      text-align: center
    }

    .sk-price-sug-label {
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px
    }

    .sk-price-sug-amount {
      font-family: var(--display);
      font-size: 36px;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: -1px;
      margin-bottom: 4px
    }

    .sk-price-sug-detail {
      font-size: 11px;
      color: var(--muted);
      line-height: 1.6
    }

    .sk-price-note {
      padding: 12px 18px;
      border-top: 1px solid var(--border);
      font-size: 11px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(245, 166, 35, 0.03)
    }

    /* TEXT CONTENT */
    .sk-text-content {
      position: relative;
      min-height: 400px
    }

    .sk-text-step {
      opacity: 0;
      transform: translateX(24px);
      transition: all 0.5s cubic-bezier(.22, 1, .36, 1);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      pointer-events: none;
    }

    .sk-text-step.active {
      opacity: 1;
      transform: translateX(0);
      position: relative;
      pointer-events: auto
    }

    .sk-text-badge {
      display: inline-flex;
      padding: 5px 14px;
      border-radius: 100px;
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.5px;
      border: 1px solid;
      margin-bottom: 16px;
    }

    .sk-text-title {
      font-family: var(--display);
      font-size: 26px;
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 14px;
      line-height: 1.2
    }

    .sk-text-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 20px
    }

    .sk-text-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px
    }

    .sk-text-tag {
      font-size: 11px;
      padding: 5px 12px;
      border-radius: 8px;
      font-weight: 600;
      letter-spacing: 0.2px
    }

    /* ARROWS */
    .sk-arrows {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 40px
    }

    .sk-dots {
      display: flex;
      gap: 6px;
      align-items: center
    }

    .sk-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--border2);
      cursor: pointer;
      transition: all 0.3s
    }

    .sk-dot.active {
      background: var(--red);
      width: 20px;
      border-radius: 3px
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {
      .sk-pipeline-layout {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .sk-text-content {
        min-height: auto
      }
    }

    @media(max-width:768px) {
      .sk-stepper-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0;
        padding-bottom: 8px
      }

      .sk-nav-label {
        display: none
      }

      .sk-nav-btn {
        padding: 8px 8px
      }

      .sk-text-title {
        font-size: 22px
      }

      .sk-price-sug-amount {
        font-size: 28px
      }

      #skills-ia {
        padding: 60px 20px
      }
    }

    @media(max-width:480px) {
      .sk-field-row {
        flex-direction: column;
        gap: 8px
      }

      .sk-match-user {
        flex-wrap: wrap
      }
    }

    /* WELCOME MODAL */
    .welcome-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(5, 6, 8, 0.85);
      backdrop-filter: blur(8px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      padding: 24px;
    }

    .welcome-modal-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    .welcome-modal-content {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 24px;
      width: 100%;
      max-width: 400px;
      text-align: center;
      position: relative;
      transform: translateY(20px) scale(0.95);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    }

    .welcome-modal-overlay.show .welcome-modal-content {
      transform: translateY(0) scale(1);
    }

    .welcome-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--muted);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .welcome-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .welcome-logo {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(255, 45, 45, 0.2);
    }

    .welcome-title {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 12px;
      color: #fff;
      letter-spacing: -0.5px;
    }

    .welcome-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }
  


    /* CONTACT MODAL */
    .contact-overlay {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(8px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .contact-overlay.open {
      display: flex
    }

    .contact-modal {
      background: var(--bg2);
      border: 1px solid var(--border2);
      border-radius: 20px;
      width: 100%;
      max-width: 520px;
      box-shadow: 0 48px 96px rgba(0, 0, 0, 0.6);
      animation: cm-slide 0.35s cubic-bezier(.22, 1, .36, 1);
    }

    @keyframes cm-slide {
      from {
        opacity: 0;
        transform: translateY(24px) scale(0.96)
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1)
      }
    }

    .contact-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid var(--border);
    }

    .contact-close {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--border2);
      background: transparent;
      color: var(--muted);
      font-size: 16px;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-close:hover {
      border-color: var(--red);
      color: var(--red)
    }

    #contact-form {
      padding: 20px 24px
    }

    .cf-group {
      margin-bottom: 16px
    }

    .cf-label {
      display: block;
      font-family: var(--mono);
      font-size: 10px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px
    }

    .cf-input {
      width: 100%;
      padding: 10px 14px;
      border-radius: 10px;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: var(--body);
      font-size: 14px;
      transition: border-color 0.2s;
      outline: none;
      resize: vertical;
    }

    .cf-input:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.1)
    }

    .cf-input::placeholder {
      color: var(--muted2)
    }

    .cf-input.invalid {
      border-color: #ff3b30;
      box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1)
    }

    select.cf-input {
      cursor: pointer;
      appearance: auto;
      -webkit-appearance: auto
    }

    select.cf-input option {
      background: var(--bg2);
      color: var(--text)
    }

    .cf-error {
      font-size: 11px;
      color: #ff3b30;
      margin-top: 4px;
      display: none;
      font-family: var(--mono)
    }

    .cf-error.show {
      display: block
    }

    .cf-counter {
      font-family: var(--mono);
      font-size: 10px;
      color: var(--muted);
      margin-top: 4px
    }

    .cf-actions {
      display: flex;
      gap: 12px;
      margin-top: 20px
    }

    .cf-btn-cancel {
      flex: 1;
      padding: 12px;
      border-radius: 10px;
      border: 1px solid var(--border2);
      background: transparent;
      color: var(--muted);
      font-family: var(--body);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }

    .cf-btn-cancel:hover {
      border-color: var(--text);
      color: var(--text)
    }

    .cf-btn-send {
      flex: 2;
      padding: 12px;
      border-radius: 10px;
      border: none;
      background: var(--red);
      color: #fff;
      font-family: var(--body);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
    }

    .cf-btn-send:hover {
      background: #e51f1f;
      transform: translateY(-1px)
    }

    .cf-btn-send:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none
    }

    .cf-status {
      margin-top: 16px;
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 13px;
      text-align: center;
      display: none;
    }

    .cf-status.success {
      display: block;
      background: rgba(0, 255, 135, 0.08);
      color: var(--green);
      border: 1px solid rgba(0, 255, 135, 0.2)
    }

    .cf-status.error {
      display: block;
      background: rgba(255, 59, 48, 0.08);
      color: #ff3b30;
      border: 1px solid rgba(255, 59, 48, 0.2)
    }

    @media(max-width:768px) {
      .contact-modal {
        max-width: 100%;
        border-radius: 16px
      }

      #contact-form {
        padding: 16px 18px
      }
    }

    /* WELCOME MODAL */
    .welcome-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(5, 6, 8, 0.85);
      backdrop-filter: blur(8px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      padding: 24px;
    }

    .welcome-modal-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    .welcome-modal-content {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 24px;
      width: 100%;
      max-width: 400px;
      text-align: center;
      position: relative;
      transform: translateY(20px) scale(0.95);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    }

    .welcome-modal-overlay.show .welcome-modal-content {
      transform: translateY(0) scale(1);
    }

    .welcome-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--muted);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .welcome-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .welcome-logo {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(255, 45, 45, 0.2);
    }

    .welcome-title {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 12px;
      color: #fff;
      letter-spacing: -0.5px;
    }

    .welcome-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }
  


    /* DOWNLOAD GATE */
    .dg-overlay {
      position: fixed;
      inset: 0;
      z-index: 10001;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(12px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .dg-overlay.open {
      display: flex
    }

    .dg-modal {
      background: var(--bg2);
      border: 1px solid var(--border2);
      border-radius: 20px;
      width: 100%;
      max-width: 500px;
      box-shadow: 0 48px 96px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.03);
      animation: cm-slide 0.35s cubic-bezier(.22, 1, .36, 1);
      overflow: hidden;
    }

    .dg-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 20px 24px;
      border-bottom: 1px solid var(--border);
    }

    .dg-header-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(255, 45, 45, 0.1);
      border: 1px solid rgba(255, 45, 45, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .dg-title {
      font-family: var(--display);
      font-size: 17px;
      font-weight: 800;
      letter-spacing: -0.5px
    }

    .dg-subtitle {
      font-size: 11px;
      color: var(--muted);
      font-family: var(--mono);
      letter-spacing: 0.3px;
      margin-top: 2px
    }

    .dg-close {
      margin-left: auto;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--border2);
      background: transparent;
      color: var(--muted);
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .dg-close:hover {
      border-color: var(--red);
      color: var(--red)
    }

    .dg-body {
      padding: 20px 24px
    }

    .dg-notice {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 10px;
      margin-bottom: 20px;
      background: rgba(245, 166, 35, 0.06);
      border: 1px solid rgba(245, 166, 35, 0.15);
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6;
    }

    .dg-notice span:first-child {
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 1px
    }

    @media(max-width:768px) {
      .dg-modal {
        max-width: 100%;
        border-radius: 16px
      }

      .dg-body {
        padding: 16px 18px
      }

      .dg-header {
        padding: 16px 18px
      }
    }

    /* WELCOME MODAL */
    .welcome-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(5, 6, 8, 0.85);
      backdrop-filter: blur(8px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      padding: 24px;
    }

    .welcome-modal-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    .welcome-modal-content {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 24px;
      width: 100%;
      max-width: 400px;
      text-align: center;
      position: relative;
      transform: translateY(20px) scale(0.95);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    }

    .welcome-modal-overlay.show .welcome-modal-content {
      transform: translateY(0) scale(1);
    }

    .welcome-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--muted);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .welcome-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .welcome-logo {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(255, 45, 45, 0.2);
    }

    .welcome-title {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 12px;
      color: #fff;
      letter-spacing: -0.5px;
    }

    .welcome-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }
  