    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

    :root {
      --bg-surface: #FFFFFF;
      --bg-primary: #FFFFFF;
      --text-primary: #0A0A0A;
      --text-secondary: #6B6B70;
      --accent-color: #000000;
      --accent-hover: #333333;
      --border-light: #E5E5EA;
      --radius-sm: 8px;
      --radius-md: 16px;
      --shadow-float: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #F9F9FA;
      color: var(--text-primary);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img {
      display: block;
    }

    /* ═══ NAVBAR ═══ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 60px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-light);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
    }

    .nav-logo {
      font-size: 20px;
      font-weight: 600;
      color: var(--text-primary);
      text-decoration: none;
      letter-spacing: -0.03em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-primary);
      text-decoration: none;
      transition: color .15s;
    }

    .nav-link:hover {
      color: var(--text-secondary);
    }

    .nav-btn {
      font-size: 13px;
      font-weight: 500;
      padding: 8px 18px;
      background: var(--accent-color);
      color: #FFF;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: background .15s;
    }

    .nav-btn:hover {
      background: var(--accent-hover);
    }

    .mobile-nav-menu { display: none; }

    /* ═══════════════════════════════════
   MASTER SHOWCASE (UNIFIED DOM)
   ═══════════════════════════════════ */
    .master-showcase-section {
      width: 100%;
      padding-top: 60px;
      padding-bottom: 120px;
      background: #F9F9FA;
      position: relative;
      z-index: 2;
    }

    .master-grid-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      padding: 0 2rem;
    }

    /* ═══ LEFT: STICKY PHONE ═══ */
    .master-visual-column {
      position: -webkit-sticky;
      position: sticky;
      top: 15vh;
      height: 85vh;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      perspective: 1200px;
      padding-top: 5vh;
    }

    .phone-mockup-3d {
      position: relative;
      width: 300px;
      height: 620px;
      background-color: #000;
      border-radius: 44px;
      border: 12px solid #111;
      box-shadow: 30px 40px 60px rgba(0, 0, 0, 0.15);
      transform-style: preserve-3d;
      transform: rotateX(15deg) rotateY(15deg) rotateZ(-5deg);
      will-change: transform;
    }

    .phone-screen {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 32px;
      opacity: 0;
      transition: opacity 1.2s ease;
      z-index: 1;
    }

    .phone-screen.is-active {
      opacity: 1;
      z-index: 2;
    }

    .phone-glare {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 32px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%);
      pointer-events: none;
      z-index: 5;
    }

    /* Overlays */
    .ov-layer {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      flex-direction: column;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.5s ease;
      border-radius: 32px;
      overflow: hidden;
    }

    .ov-layer.is-visible {
      opacity: 1;
    }





    /* ═══ PLANNER OVERLAY (Tab 2 screen) ═══ */
    .plan-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 32px;
      background: #F9F9FA;
      z-index: 3;
      opacity: 0;
      transition: opacity 1.2s ease;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      font-family: 'Inter', sans-serif;
    }

    .plan-overlay.is-visible {
      opacity: 1;
    }

    .po-wrap {
      flex: 1;
      padding: 44px 14px 8px;
      overflow: hidden;
    }

    .po-hdr {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 0 12px;
    }

    .po-hdr svg {
      color: #0A0A0A;
      stroke: #0A0A0A;
    }

    .po-hdr-t {
      font-size: 15px;
      font-weight: 600;
      color: #0A0A0A;
    }

    .po-trip {
      background: #fff;
      border-radius: 12px;
      padding: 12px 14px;
      margin-bottom: 14px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .po-trip-cover {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
    }

    .po-trip-text {
      flex: 1;
    }

    .po-trip-label {
      font-size: 9px;
      font-weight: 600;
      color: #6B6B70;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 2px;
    }

    .po-trip-name {
      font-size: 15px;
      font-weight: 600;
      color: #0A0A0A;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .po-trip-meta {
      font-size: 11px;
      color: #6B6B70;
      margin-top: 2px;
    }

    .po-steps {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .po-step {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border-radius: 12px;
      padding: 12px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .po-active {
      border: 1.5px solid #0A0A0A;
    }

    .po-locked {
      opacity: 0.45;
    }

    .po-num {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 800;
      flex-shrink: 0;
    }

    .po-num-done {
      background: var(--accent, #E8366D);
      color: #fff;
    }

    .po-num-active {
      background: #0A0A0A;
      color: #fff;
    }

    .po-num-locked {
      background: #E5E5EA;
      color: #6B6B70;
    }

    .po-info {
      flex: 1;
      min-width: 0;
    }

    .po-name {
      font-size: 13px;
      font-weight: 600;
      color: #0A0A0A;
    }

    .po-sub {
      font-size: 10px;
      color: #6B6B70;
      margin-top: 1px;
    }

    .po-chip {
      font-size: 9px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 6px;
      flex-shrink: 0;
    }

    .po-chip-done {
      background: #fdf2f4;
      color: var(--accent, #E8366D);
    }

    .po-chip-active {
      background: #f0f0f0;
      color: #0A0A0A;
    }

    .po-chip-locked {
      background: #f5f5f5;
      color: #999;
    }


    .po-thumbs {
      display: flex;
      gap: 4px;
      margin-top: 6px;
    }

    .po-thumb {
      width: 36px;
      height: 28px;
      border-radius: 5px;
      background-size: cover;
      background-position: center;
    }

    .po-thumb-more {
      width: 36px;
      height: 28px;
      border-radius: 5px;
      background: #f0f0f0;
      color: #6B6B70;
      font-size: 9px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .po-voters {
      display: flex;
      gap: -4px;
      margin-top: 6px;
    }

    .po-voter {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      color: #fff;
      font-size: 7px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid #fff;
      margin-right: -4px;
    }

    .po-progress {
      margin-top: 14px;
    }

    .po-prog-bar {
      height: 3px;
      background: #E5E5EA;
      border-radius: 2px;
      overflow: hidden;
    }

    .po-prog-fill {
      width: 50%;
      height: 100%;
      background: var(--accent, #E8366D);
      border-radius: 2px;
    }

    .po-prog-text {
      font-size: 10px;
      color: #6B6B70;
      margin-top: 4px;
    }

    .po-nav {
      display: flex;
      justify-content: space-around;
      padding: 8px 0 6px;
      border-top: 1px solid #E5E5EA;
      background: #fff;
    }

    .po-nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      font-size: 8px;
      color: #999;
      font-weight: 500;
    }

    .po-nav-item svg {
      color: #999;
    }

    .po-nav-active {
      color: var(--accent, #E8366D);
    }

    .po-nav-active svg {
      color: var(--accent, #E8366D);
      stroke: var(--accent, #E8366D);
    }


    /* ═══ VOTE OVERLAY (Tab 3 screen) ═══ */
    .vote-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 32px;
      background: #F9F9FA;
      z-index: 3;
      opacity: 0;
      transition: opacity 1.2s ease;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      font-family: 'Inter', sans-serif;
    }

    .vote-overlay.is-visible {
      opacity: 1;
    }

    .vo-wrap {
      flex: 1;
      padding: 44px 14px 8px;
      overflow: hidden;
    }

    .vo-hdr {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 0 12px;
    }

    .vo-hdr-t {
      font-size: 15px;
      font-weight: 600;
      color: #0A0A0A;
    }

    .vo-hdr-badge {
      margin-left: auto;
      font-size: 9px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 10px;
      background: var(--accent, #E8366D);
      color: #fff;
    }

    .vo-trip-ctx {
      padding: 0 0 10px;
    }

    .vo-trip-nm {
      font-size: 14px;
      font-weight: 600;
      color: #0A0A0A;
    }

    .vo-trip-meta {
      font-size: 10px;
      color: #6B6B70;
      margin-top: 1px;
    }

    .vo-cards {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .vo-card {
      background: #fff;
      border-radius: 12px;
      padding: 10px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }

    .vo-card-voted {
      border: 1.5px solid var(--accent, #E8366D);
    }

    .vo-card-img {
      width: 44px;
      height: 34px;
      border-radius: 6px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .vo-card-info {
      flex: 1;
      min-width: 0;
    }

    .vo-card-nm {
      font-size: 11px;
      font-weight: 600;
      color: #0A0A0A;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .vo-card-meta {
      font-size: 9px;
      color: #6B6B70;
    }

    .vo-card-votes {
      display: flex;
      gap: -2px;
    }

    .vo-vote-dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      color: #fff;
      font-size: 6px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid #fff;
      margin-right: -3px;
    }

    .vo-card-bar {
      width: 100%;
      height: 3px;
      background: #E5E5EA;
      border-radius: 2px;
      overflow: hidden;
    }

    .vo-card-fill {
      height: 100%;
      background: var(--accent, #E8366D);
      border-radius: 2px;
      transition: width 0.6s ease;
    }

    .vo-card-pct {
      font-size: 8px;
      color: #6B6B70;
      margin-left: auto;
    }

    .vo-voters {
      margin-top: 12px;
      background: #fff;
      border-radius: 12px;
      padding: 10px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .vo-voter-row {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 4px 0;
    }

    .vo-v-av {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      color: #fff;
      font-size: 7px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .vo-v-nm {
      flex: 1;
      font-size: 11px;
      font-weight: 500;
      color: #0A0A0A;
    }

    .vo-v-tag {
      font-size: 9px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 6px;
    }

    .vo-v-done {
      background: #fdf2f4;
      color: var(--accent, #E8366D);
    }

    .vo-v-wait {
      background: #f5f5f5;
      color: #999;
    }

    /* ═══ RIGHT: CONTENT ═══ */
    .master-content-column {
      display: flex;
      flex-direction: column;
    }

    .hero-content-block {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-bottom: 20vh;
    }

    .hero-title {
      font-family: 'Poppins', sans-serif;
      font-size: 4.5rem;
      line-height: 1.1;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
    }

    .hero-subtitle {
      font-family: 'Inter', sans-serif;
      font-size: 1.5rem;
      color: var(--text-secondary);
      margin-bottom: 2.5rem;
      max-width: 90%;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
    }

    .btn-primary {
      background-color: var(--accent-color);
      color: #FFF;
      padding: 1rem 2.5rem;
      border-radius: 12px;
      font-family: 'Inter', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .btn-primary:hover {
      opacity: 0.8;
    }

    .btn-secondary {
      background-color: transparent;
      color: var(--text-primary);
      padding: 1rem 2.5rem;
      border-radius: 12px;
      font-family: 'Inter', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      border: 2px solid var(--border-light);
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .btn-secondary:hover {
      background-color: #E5E5EA;
    }

    /* USP Block */
    .usp-content-block {
      padding-bottom: 30vh;
    }

    .mobile-dots {
      display: none;
    }

    .mobile-step-label {
      display: none;
    }

    .scroll-tab {
      display: flex;
      min-height: 50vh;
      padding: 2rem 0;
      cursor: pointer;
      opacity: 0.3;
      transition: opacity 0.5s ease;
      position: relative;
    }

    .scroll-tab.is-active-tab,
    .scroll-tab:hover {
      opacity: 1;
    }

    .tab-progress-line {
      width: 4px;
      background-color: var(--border-light);
      margin-right: 2rem;
      border-radius: 4px;
      position: relative;
      overflow: hidden;
      height: auto;
    }

    .scroll-tab.is-active-tab .tab-progress-line::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--accent-color);
      animation: fillDown 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    @keyframes fillDown {
      from {
        transform: translateY(-100%);
      }

      to {
        transform: translateY(0);
      }
    }

    .tab-content {
      flex: 1;
    }

    .step-title {
      font-family: 'Poppins', sans-serif;
      font-size: 3rem;
      color: var(--text-primary);
      margin-bottom: 1rem;
      transition: transform 0.4s ease;
    }

    .scroll-tab.is-active-tab .step-title {
      transform: translateX(15px);
    }

    .step-description {
      font-family: 'Inter', sans-serif;
      font-size: 1.25rem;
      line-height: 1.6;
      color: var(--text-secondary);
    }

    /* ═══ OVERLAY UI STYLES (from original) ═══ */
    .ov-ftop {
      padding: 40px 14px 0;
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .ov-chip {
      display: flex;
      align-items: center;
      gap: 4px;
      background: rgba(0, 0, 0, .3);
      backdrop-filter: blur(8px);
      border-radius: 20px;
      padding: 6px 12px;
      font-size: 10px;
      font-weight: 600;
      color: #FFF
    }

    .ov-chip svg {
      width: 11px;
      height: 11px
    }

    .ov-tabs {
      display: flex;
      gap: 12px
    }

    .ov-tab {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255, 255, 255, .4)
    }

    .ov-tab-a {
      color: #FFF;
      border-bottom: 1.5px solid #FFF;
      padding-bottom: 2px
    }

    .ov-side {
      position: absolute;
      right: 14px;
      bottom: 80px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center
    }

    .ov-si {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px
    }

    .ov-si svg {
      width: 20px;
      height: 20px;
      color: #FFF
    }

    .ov-si span {
      font-size: 8px;
      font-weight: 500;
      color: rgba(255, 255, 255, .7)
    }

    .ov-fbot {
      padding: 0 14px 16px;
      background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent);
      margin-top: auto
    }

    .ov-cr {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 6px
    }

    .ov-av {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .3);
      border: 1.5px solid rgba(255, 255, 255, .5)
    }

    .ov-nm {
      font-size: 11px;
      font-weight: 600;
      color: #FFF
    }

    .ov-tt {
      font-size: 13px;
      font-weight: 600;
      color: #FFF;
      line-height: 1.3;
      margin-bottom: 8px
    }

    .ov-tb {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(255, 255, 255, .15);
      backdrop-filter: blur(8px);
      border-radius: 20px;
      padding: 7px 14px;
      font-size: 10px;
      font-weight: 600;
      color: #FFF
    }

    .ov-tb svg {
      width: 12px;
      height: 12px
    }

    .ov-bar {
      display: flex;
      justify-content: space-around;
      padding: 8px 0 4px;
      background: rgba(0, 0, 0, .5);
      border-top: 1px solid rgba(255, 255, 255, .05)
    }

    .ov-bi {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px
    }

    .ov-bi svg {
      width: 16px;
      height: 16px;
      color: rgba(255, 255, 255, .35)
    }

    .ov-bi-a svg {
      color: #FFF
    }

    .ov-bi span {
      font-size: 7px;
      font-weight: 500;
      color: rgba(255, 255, 255, .3)
    }

    .ov-bi-a span {
      color: #FFF
    }

    .ov-cir {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(0, 0, 0, .3);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .ov-cir svg {
      width: 13px;
      height: 13px;
      color: #FFF
    }

    .ov-sheet {
      margin-top: auto;
      background: var(--bg-primary);
      border-radius: 20px 20px 0 0;
      padding: 16px 14px 12px;
      color: var(--text-primary)
    }

    .ts-fl {
      font-size: 12px;
      margin-bottom: 3px
    }

    .ts-nm {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.2
    }

    .ts-by {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-top: 6px
    }

    .ts-byav {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--border-light)
    }

    .ts-byn {
      font-size: 11px;
      color: var(--text-secondary)
    }

    .ts-days {
      display: flex;
      gap: 6px;
      margin-top: 10px
    }

    .ts-day {
      font-size: 10px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px
    }

    .ts-day-a {
      background: var(--accent-color);
      color: #FFF
    }

    .ts-day-i {
      background: var(--bg-primary);
      color: var(--text-secondary)
    }

    .ts-stops {
      display: flex;
      gap: 7px;
      margin-top: 10px;
      overflow: hidden
    }

    .ts-st {
      flex-shrink: 0;
      width: 100px;
      background: var(--bg-primary);
      border-radius: var(--radius-sm);
      padding: 5px
    }

    .ts-sti {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: 6px;
      overflow: hidden;
      background: var(--border-light)
    }

    .ts-sti img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .ts-stn {
      font-size: 9px;
      font-weight: 600;
      margin-top: 4px;
      line-height: 1.2
    }

    .ts-stt {
      font-size: 8px;
      color: var(--text-secondary);
      margin-top: 1px
    }

    .ts-btns {
      display: flex;
      gap: 7px;
      margin-top: 10px
    }

    .ts-btn {
      flex: 1;
      height: 32px;
      border-radius: var(--radius-sm);
      font-size: 11px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px
    }

    .ts-btn svg {
      width: 12px;
      height: 12px
    }

    .ts-btn-o {
      background: transparent;
      border: 1.5px solid var(--border-light);
      color: var(--text-secondary)
    }

    .ts-btn-f {
      background: var(--accent-color);
      color: #FFF;
      border: none
    }

    .ov-pbk {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(0, 0, 0, .3);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .ov-pbk svg {
      width: 13px;
      height: 13px;
      color: #FFF
    }

    .ov-plbl {
      font-size: 13px;
      font-weight: 600;
      color: #FFF;
      text-shadow: 0 1px 4px rgba(0, 0, 0, .4)
    }

    .ov-psheet {
      margin-top: auto;
      background: var(--bg-primary);
      border-radius: 20px 20px 0 0;
      padding: 16px 14px 12px;
      color: var(--text-primary);
      max-height: 66%;
      overflow: hidden
    }

    .ov-phd {
      width: 34px;
      height: 3px;
      background: var(--border-light);
      border-radius: 2px;
      margin: 0 auto 10px
    }

    .ov-ptn {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.2
    }

    .ov-pmt {
      font-size: 11px;
      color: var(--text-secondary);
      margin: 3px 0 10px
    }

    .ps {
      background: var(--bg-surface);
      border-radius: var(--radius-sm);
      padding: 9px 10px;
      margin-bottom: 6px
    }

    .ps-h {
      display: flex;
      align-items: center;
      gap: 7px
    }

    .ps-n {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8px;
      font-weight: 700
    }

    .ps-nd {
      background: var(--accent, #E8366D);
      color: #FFF
    }

    .ps-na {
      background: var(--accent-color);
      color: #FFF
    }

    .ps-nl {
      background: var(--border-light);
      color: var(--text-secondary)
    }

    .ps-t {
      flex: 1;
      font-size: 11px;
      font-weight: 600
    }

    .ps-b {
      font-size: 8px;
      font-weight: 600;
      padding: 2px 7px;
      border-radius: 4px
    }

    .ps-bd {
      background: #fdf2f4;
      color: var(--accent, #E8366D)
    }

    .ps-ba {
      background: #eef2ff;
      color: #6366f1
    }

    .ps-bl {
      background: var(--bg-surface);
      color: var(--text-secondary)
    }

    .ps-trips {
      display: flex;
      gap: 5px;
      margin-top: 7px
    }

    .ps-tr {
      flex-shrink: 0;
      width: 72px;
      background: var(--bg-primary);
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, .05)
    }

    .ps-tri {
      width: 100%;
      aspect-ratio: 3/2;
      overflow: hidden;
      background: var(--border-light)
    }

    .ps-tri img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .ps-trn {
      font-size: 7px;
      font-weight: 600;
      padding: 3px 4px;
      line-height: 1.2
    }

    .pv {
      margin-top: 7px;
      padding: 7px 9px;
      background: var(--bg-surface);
      border-radius: 7px
    }

    .pv-bar {
      height: 3px;
      background: var(--border-light);
      border-radius: 2px;
      overflow: hidden;
      margin-bottom: 5px
    }

    .pv-fill {
      height: 100%;
      width: 66%;
      background: var(--accent, #E8366D);
      border-radius: 2px
    }

    .pv-stat {
      font-size: 9px;
      color: var(--text-secondary)
    }

    .pv-stat b {
      color: var(--text-primary)
    }

    .pv-ppl {
      display: flex;
      gap: 4px;
      margin-top: 5px;
      flex-wrap: wrap
    }

    .pv-p {
      display: flex;
      align-items: center;
      gap: 3px;
      padding: 2px 6px;
      border-radius: 4px;
      background: var(--bg-primary)
    }

    .pv-av {
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: var(--border-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 6px;
      font-weight: 700;
      color: var(--text-secondary)
    }

    .pv-pn {
      font-size: 8px;
      font-weight: 500
    }

    .pv-pt {
      font-size: 7px;
      font-weight: 600;
      padding: 1px 5px;
      border-radius: 3px
    }

    .pv-pty {
      background: #fdf2f4;
      color: var(--accent, #E8366D)
    }

    .pv-ptn {
      background: var(--bg-surface);
      color: var(--border-light)
    }

    .pv-dl {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 5px;
      padding: 4px 8px;
      background: #fffbeb;
      border-radius: 5px;
      font-size: 8px;
      color: #b08d35
    }

    .pv-dl svg {
      width: 10px;
      height: 10px;
      color: #d4a843
    }

    /* ═══ SECTIONS (Creators / Suppliers) ═══ */
    .sect {
      padding: 100px 40px;
      border-top: 1px solid var(--border-light);
      background: var(--bg-primary)
    }

    .sect-in {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center
    }

    .sect--rev .sect-photo {
      order: 2
    }

    .sect--rev .sect-copy {
      order: 1
    }

    .sect-photo {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-md);
      aspect-ratio: 4/5
    }

    .sect-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s ease
    }

    .sect-photo:hover img {
      transform: scale(1.03)
    }

    .sect-ey {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-bottom: 14px
    }

    .sect-t {
      font-family: 'Poppins', serif;
      font-size: 38px;
      font-weight: 600;
      line-height: 1.1
    }

    .sect-t em {
      font-style: italic;
      color: var(--text-secondary)
    }

    .sect-d {
      font-size: 15px;
      line-height: 1.65;
      color: var(--text-secondary);
      margin-top: 14px;
      max-width: 420px
    }

    .sect-feats {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 22px
    }

    .sff {
      display: flex;
      align-items: flex-start;
      gap: 9px
    }

    .sff svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--text-secondary)
    }

    .sff p {
      font-size: 13px;
      line-height: 1.5;
      color: var(--text-secondary)
    }

    .sff p strong {
      font-weight: 600;
      color: var(--text-primary)
    }

    .sect-btn {
      margin-top: 28px;
      display: inline-flex;
      font-size: 14px;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      background: var(--accent-color);
      color: #FFF;
      border: none;
      cursor: pointer;
      transition: background .15s
    }

    .sect-btn:hover {
      background: var(--accent-hover)
    }

    .stats {
      display: flex;
      gap: 28px;
      margin-top: 22px
    }

    .stat-n {
      font-size: 28px;
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1;
      color: var(--text-primary)
    }

    .stat-l {
      font-size: 10px;
      color: var(--text-secondary);
      margin-top: 2px
    }

    .footer {
      border-top: 1px solid #e8e8ec;
      padding: 60px 40px 32px;
      background: #F9F9FA;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      gap: 60px;
      margin-bottom: 40px;
    }

    .footer-brand {
      flex-shrink: 0;
    }

    .footer-logo {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #0a0a0a;
    }

    .footer-tagline {
      font-size: 13px;
      color: #6b7280;
      margin-top: 6px;
    }

    .footer-links {
      display: flex;
      gap: 60px;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-col-title {
      font-size: 12px;
      font-weight: 600;
      color: #0a0a0a;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }

    .footer-col a {
      font-size: 13px;
      color: #6b7280;
      text-decoration: none;
      transition: color .15s;
    }

    .footer-col a:hover {
      color: #0a0a0a;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      border-top: 1px solid #e8e8ec;
      font-size: 12px;
      color: #6b7280;
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .footer-social a {
      color: #6b7280;
      text-decoration: none;
      transition: color .15s;
    }

    .footer-social a:hover {
      color: #0a0a0a;
    }

    /* ═══ RESPONSIVE ═══ */

    /* Laptop screens — shorter viewport height */
    @media (min-width: 901px) and (max-height: 900px) {
      .phone-mockup-3d {
        width: 250px;
        height: 520px;
        border-radius: 38px;
        border-width: 10px;
      }

      .phone-screen,
      .phone-glare,
      .ov-layer {
        border-radius: 28px;
      }
    }

    @media (max-width: 900px) {
      .master-grid-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
      }

      /* Phone — static, centered, not sticky */
      .master-visual-column {
        position: relative;
        top: auto;
        height: auto;
        padding: 40px 0 24px;
        align-items: center;
        perspective: none;
      }

      .phone-mockup-3d {
        width: 220px;
        height: 460px;
        border-width: 8px;
        border-radius: 32px;
        transform: none !important;
      }

      .phone-screen,
      .phone-glare,
      .ov-layer {
        border-radius: 24px;
      }

      /* Content column — no overlap */
      .master-content-column {
        z-index: 20;
        padding: 0 24px;
      }

      /* Hero block */
      .hero-content-block {
        min-height: auto;
        padding: 0 0 32px;
        text-align: center;
        margin-bottom: 0;
        padding-bottom: 0;
      }

      .hero-title {
        font-size: 2.2rem;
      }

      .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
      }

      .sect-in {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .sect--rev .sect-photo,
      .sect--rev .sect-copy {
        order: unset;
      }

      .sect-photo {
        max-height: 380px;
        max-width: 400px;
        margin: 0 auto;
      }

      .sect-copy {
        max-width: 480px;
        margin: 0 auto;
      }

      .nav {
        padding: 0 20px;
      }

      .nav-links {
        display: none;
      }
    }

    /* ═══════════════════════════════════════
   CREATOR SECTION
   ═══════════════════════════════════════ */
    .creator-section {
      background: #f5f5f7;
      padding: 120px 24px 100px;
      position: relative;
      z-index: 2;
      border-top: 1px solid #e0e0e0;
    }

    .creator-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .creator-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .creator-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      color: #0A0A0A;
      letter-spacing: -0.02em;
    }

    /* Creator USP layout */
    .creator-usp {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 140px;
    }

    .creator-usp:last-child {
      margin-bottom: 0;
    }

    .creator-usp-reverse {
      direction: rtl;
    }

    .creator-usp-reverse>* {
      direction: ltr;
    }

    .cr-step-badge {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--accent, #E8366D);
      margin-bottom: 12px;
    }

    .creator-usp-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 700;
      color: #0A0A0A;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .cr-num {
      color: var(--accent, #E8366D);
    }

    .creator-usp-desc {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: #444;
      line-height: 1.7;
      max-width: 460px;
    }

    .creator-usp-visual {
      width: 100%;
    }

    /* Visual box — shared container for all 3 steps */
    .cr-visual-box {
      background: #f0f4fa;
      border-radius: 24px;
      padding: 40px 36px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cr-visual-card {
      width: 100%;
      max-width: 380px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    }

    .cr-visual-card--padded {
      padding: 32px;
    }

    .cr-apply-inner {
      padding: 28px 28px 0;
    }

    .cr-apply-cta {
      padding: 24px 28px;
    }

    /* Scene wrapper with floating elements */
    .cr-scene {
      position: relative;
      display: flex;
      justify-content: center;
      padding: 20px;
    }

    /* Phone mockup */
    .cr-phone-frame {
      width: 260px;
      background: #fff;
      border-radius: 32px;
      border: 8px solid #111;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      position: relative;
    }

    .cr-phone-notch {
      width: 100px;
      height: 24px;
      background: #111;
      border-radius: 0 0 14px 14px;
      margin: 0 auto;
    }

    /* Step 1: Inbox */
    .cr-phone-inbox {
      padding: 12px;
    }

    .cr-inbox-header {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #0A0A0A;
      padding: 8px 4px 14px;
      border-bottom: 1px solid #f0f0f0;
      margin-bottom: 10px;
    }

    .cr-inbox-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 4px;
      border-bottom: 1px solid #f8f8f8;
    }

    .cr-inbox-dead {
      opacity: 0.5;
    }

    .cr-inbox-bad {
      opacity: 0.7;
    }

    .cr-inbox-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .cr-av-grey {
      background: #bbb;
    }

    .cr-inbox-body {
      flex: 1;
      min-width: 0;
    }

    .cr-inbox-name {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: #0A0A0A;
    }

    .cr-inbox-msg {
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      color: #999;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .cr-inbox-meta {
      text-align: right;
      flex-shrink: 0;
    }

    .cr-inbox-time {
      font-size: 9px;
      color: #bbb;
    }

    .cr-inbox-status {
      font-size: 8px;
      font-weight: 600;
      color: #bbb;
      margin-top: 2px;
    }

    .cr-status-bad {
      color: #e74c3c;
    }

    /* Step 2: Dashboard */
    .cr-phone-dash {
      padding: 12px;
    }

    .cr-dash-header {
      padding: 8px 4px 14px;
    }

    .cr-dash-greeting {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      color: #6B6B70;
    }

    .cr-dash-trip {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #0A0A0A;
    }

    .cr-dash-map {
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 14px;
    }

    .cr-dash-map svg {
      width: 100%;
      height: auto;
      display: block;
    }

    .cr-dash-stops {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .cr-dash-stop {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px;
      background: #F9F9FA;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 11px;
    }

    .cr-ds-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .cr-ds-name {
      flex: 1;
      font-weight: 500;
      color: #0A0A0A;
    }

    .cr-ds-tag {
      font-size: 9px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 4px;
    }

    .cr-ds-confirmed {
      background: #D1FAE5;
      color: #065F46;
    }

    .cr-ds-pending {
      background: #DBEAFE;
      color: #1E40AF;
    }

    /* Floating badges */
    .cr-float {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 500;
      color: #999;
      white-space: nowrap;
    }

    .cr-float-good {
      color: var(--accent, #E8366D);
    }

    .cr-float-1 {
      top: 15%;
      right: 0;
    }

    .cr-float-2 {
      bottom: 20%;
      left: 0;
    }

    /* Apply cards */
    .cr-apply-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .cr-apply-card {
      background: #fff;
      border: 1px solid #E5E5EA;
      border-radius: 20px;
      padding: 28px;
      font-family: 'Inter', sans-serif;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .cr-apply-featured {
      border-color: var(--accent, #E8366D);
      box-shadow: 0 4px 30px rgba(232, 54, 109, 0.1);
    }

    .cr-apply-tag {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #6B6B70;
      margin-bottom: 12px;
    }

    .cr-tag-pink {
      color: var(--accent, #E8366D);
    }

    .cr-apply-title {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #0A0A0A;
      margin-bottom: 8px;
    }

    .cr-apply-desc {
      font-size: 12px;
      color: #6B6B70;
      line-height: 1.6;
      margin-bottom: 18px;
    }

    .cr-apply-fields {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 18px;
    }

    .cr-apply-field {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border: 1px solid #E5E5EA;
      border-radius: 12px;
      font-size: 13px;
      color: #999;
    }

    .cr-field-at {
      font-weight: 600;
      color: #0A0A0A;
    }

    .cr-apply-steps-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 18px;
    }

    .cr-apply-step {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: #0A0A0A;
    }

    .cr-step-num-sm {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--accent, #E8366D);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cr-apply-btn {
      width: 100%;
      padding: 14px;
      border-radius: 12px;
      border: 1px solid #0A0A0A;
      background: #fff;
      color: #0A0A0A;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }

    .cr-apply-btn:hover {
      background: #0A0A0A;
      color: #fff;
    }

    .cr-btn-pink {
      background: var(--accent, #E8366D);
      color: #fff;
      border-color: var(--accent, #E8366D);
    }

    .cr-btn-pink:hover {
      background: #c92d5b;
    }

    @media (max-width: 900px) {
      .creator-usp {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 80px;
      }

      .creator-usp-reverse {
        direction: ltr;
      }

      .creator-title {
        font-size: clamp(26px, 7vw, 42px);
      }

      .cr-apply-cards {
        grid-template-columns: 1fr;
      }

      .cr-phone-frame {
        width: 220px;
      }
    }

    /* ═══════════════════════════════════════
   STEP 1 — EDITORIAL FLOATING CARDS
   ═══════════════════════════════════════ */
    .cr-scene-v2 {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Shared card base */
    .cr-fcard {
      position: absolute;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
      font-family: 'Inter', sans-serif;
      overflow: hidden;
    }

    /* Card 1: Top-left — Instagram story expired with image */
    .cr-fcard-1 {
      top: 0;
      left: 0;
      width: 210px;
      z-index: 2;
    }

    .cr-fcard-img {
      width: 100%;
      height: 130px;
      object-fit: cover;
      display: block;
      filter: grayscale(0.5) brightness(0.85);
    }

    .cr-fcard-img-overlay {
      position: relative;
    }

    .cr-fcard-img-badge {
      position: absolute;
      bottom: 8px;
      left: 8px;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: 10px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .cr-fcard-body {
      padding: 12px 14px;
    }

    .cr-fcard-title {
      font-size: 13px;
      font-weight: 700;
      color: #0A0A0A;
      margin-bottom: 4px;
    }

    .cr-fcard-sub {
      font-size: 11px;
      color: #999;
      line-height: 1.4;
    }

    .cr-fcard-pill {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 8px;
      margin-top: 8px;
    }

    .cr-pill-orange {
      background: #fff7ed;
      color: #c2410c;
    }

    .cr-pill-red {
      background: #fef2f2;
      color: #dc2626;
    }

    .cr-pill-grey {
      background: #f5f5f5;
      color: #999;
    }

    /* Card 2: Top-right — rejection message */
    .cr-fcard-2 {
      top: 20px;
      right: 0;
      width: 230px;
      padding: 16px 18px;
      z-index: 3;
      border-left: 3px solid #dc2626;
      border-radius: 4px 16px 16px 4px;
    }

    .cr-fcard-quote {
      font-size: 13px;
      color: #555;
      line-height: 1.5;
      font-style: italic;
    }

    .cr-fcard-from {
      font-size: 11px;
      color: #bbb;
      margin-top: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .cr-fcard-from-dot {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 7px;
      font-weight: 700;
      color: #fff;
    }

    /* Card 3: Center — big stat */
    .cr-fcard-3 {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 150px;
      padding: 22px;
      text-align: center;
      z-index: 4;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

    .cr-fstat-num {
      font-family: 'Poppins', sans-serif;
      font-size: 40px;
      font-weight: 700;
      color: #dc2626;
      line-height: 1;
    }

    .cr-fstat-of {
      font-size: 16px;
      color: #ccc;
      font-weight: 500;
    }

    .cr-fstat-label {
      font-size: 11px;
      color: #999;
      margin-top: 4px;
      letter-spacing: 0.3px;
    }

    /* Card 4: Bottom-left — unfair deal */
    .cr-fcard-4 {
      bottom: 20px;
      left: 10px;
      width: 220px;
      padding: 14px 16px;
      z-index: 2;
    }

    .cr-fcard-deal-hdr {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }

    .cr-fcard-deal-av {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #059669;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .cr-fcard-deal-nm {
      font-size: 12px;
      font-weight: 600;
      color: #0A0A0A;
    }

    .cr-fcard-deal-text {
      font-size: 12px;
      color: #666;
      line-height: 1.5;
    }

    .cr-fcard-deal-terms {
      display: flex;
      gap: 6px;
      margin-top: 10px;
      flex-wrap: wrap;
    }

    .cr-fcard-term {
      font-size: 10px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 6px;
      background: #f5f5f5;
      color: #666;
    }

    .cr-fcard-term-bad {
      background: #fef2f2;
      color: #dc2626;
      text-decoration: line-through;
    }

    /* Card 5: Bottom-right — no replies */
    .cr-fcard-5 {
      bottom: 0;
      right: 0;
      width: 200px;
      padding: 14px 16px;
      z-index: 2;
    }

    .cr-fcard-noreply-title {
      font-size: 12px;
      font-weight: 700;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }

    .cr-fcard-noreply-row {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 5px 0;
      font-size: 12px;
      color: #0A0A0A;
    }

    .cr-fcard-noreply-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .cr-fcard-noreply-time {
      margin-left: auto;
      font-size: 10px;
      color: #bbb;
    }

    .cr-fcard-noreply-more {
      font-size: 11px;
      color: #dc2626;
      font-weight: 600;
      margin-top: 8px;
    }

    @media (max-width: 900px) {
      .cr-scene-v2 {
        min-height: auto;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
      }

      .cr-fcard {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
      }
    }

    /* Step 2 — central map with tight overlapping cards */
    .cr-os-wrap {
      position: relative;
      width: 100%;
      padding-bottom: 20px;
    }

    .cr-os-main {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #e0e0e0;
      background: #fff;
    }

    .cr-os-float {
      position: absolute;
      background: #fff;
      border-radius: 12px;
      padding: 10px 14px;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
      z-index: 3;
    }

    .cr-os-fl-tr {
      top: -8px;
      right: -8px;
    }

    .cr-os-fl-bl {
      bottom: -10px;
      left: -6px;
    }

    .cr-os-fl-br {
      bottom: -8px;
      right: 12px;
      text-align: center;
    }

    @media (max-width: 900px) {
      .cr-os-fl-tr {
        top: -6px;
        right: -4px;
      }

      .cr-os-fl-bl {
        bottom: -8px;
        left: -4px;
      }

      .cr-os-fl-br {
        bottom: -6px;
        right: 8px;
      }
    }

    /* ═══════════════════════════════════════
   SUPPLIER HERO SECTION
   ═══════════════════════════════════════ */
    .supplier-hero {
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .supplier-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
      opacity: 0.85;
      z-index: 1;
    }

    .supplier-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 120px 24px;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 50px;
      align-items: center;
      width: 100%;
    }

    .supplier-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--accent, #E8366D);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 16px;
    }

    .supplier-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .supplier-desc {
      font-family: 'Inter', sans-serif;
      font-size: 17px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 500px;
    }

    .supplier-stats {
      display: flex;
      gap: 32px;
      margin-bottom: 36px;
    }

    .supplier-stat {
      text-align: left;
    }

    .supplier-stat-num {
      font-family: 'Poppins', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: #fff;
    }

    .supplier-stat-label {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 2px;
    }

    .supplier-cta {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      padding: 14px 32px;
      border-radius: 12px;
      border: none;
      background: var(--accent, #E8366D);
      color: #fff;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .supplier-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(232, 54, 109, 0.4);
    }

    /* Dashboard card */
    .supplier-dashboard {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .supplier-room-img {
      width: 100%;
      max-width: 500px;
      border-radius: 20px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.4);
      object-fit: cover;
    }

    @media (max-width: 900px) {
      .supplier-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 60px 24px;
      }

      .supplier-hero {
        background-attachment: scroll;
      }

      .supplier-title {
        font-size: 2rem;
        line-height: 1.15;
      }

      .supplier-desc {
        font-size: 14px;
        line-height: 1.6;
      }

      .supplier-stats {
        gap: 20px;
      }

      .supplier-dashboard {
        display: none;
      }
    }

    /* ═══ FOOTER ═══ */
    .footer {
      background: #F9F9FA;
      color: #0A0A0A;
      border-top: 1px solid #E5E5EA;
      padding: 80px 24px 40px;
      font-family: 'Inter', sans-serif;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
      padding-bottom: 48px;
      border-bottom: 1px solid #E5E5EA;
    }

    .footer-logo {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }

    .footer-tagline {
      font-size: 13px;
      color: #6B6B70;
      line-height: 1.5;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col-title {
      font-size: 12px;
      font-weight: 600;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .footer-col a {
      font-size: 14px;
      color: #6B6B70;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: #0A0A0A;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      font-size: 12px;
      color: #999;
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .footer-social a {
      color: #999;
      transition: color 0.2s;
    }

    .footer-social a:hover {
      color: #0A0A0A;
    }

    @media (max-width: 900px) {
      .footer {
        padding: 60px 16px 32px;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
    }

    /* ═══ WAITLIST MODAL ═══ */
    .wl-modal-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      align-items: center;
      justify-content: center;
    }

    .wl-modal-backdrop.open {
      display: flex;
    }

    .wl-modal {
      background: #fff;
      border-radius: 20px;
      padding: 2.25rem 2rem;
      max-width: 420px;
      width: 92%;
      position: relative;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
      font-family: 'Inter', sans-serif;
    }

    .wl-modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #999;
      line-height: 1;
      padding: 0;
    }

    .wl-modal-close:hover {
      color: #0A0A0A;
    }

    .wl-modal h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: #0A0A0A;
      margin-bottom: 0.35rem;
      letter-spacing: -0.02em;
    }

    .wl-modal p {
      font-size: 0.875rem;
      color: #6B6B70;
      margin-bottom: 1.25rem;
      line-height: 1.5;
    }

    .wl-modal form {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .wl-modal input {
      width: 100%;
      padding: 0.7rem 0.9rem;
      border: 1.5px solid #E5E5EA;
      border-radius: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      color: #0A0A0A;
      outline: none;
      transition: border-color 0.2s;
      background: #F9F9FA;
    }

    .wl-modal input::placeholder {
      color: #aaa;
    }

    .wl-modal input:focus {
      border-color: #0A0A0A;
      background: #fff;
    }

    .wl-modal-btn {
      width: 100%;
      padding: 0.85rem;
      border-radius: 10px;
      border: none;
      background: #0A0A0A;
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.2s;
      margin-top: 0.3rem;
    }

    .wl-modal-btn:hover {
      opacity: 0.85;
    }

    .wl-modal-btn:disabled {
      opacity: 0.55;
      cursor: not-allowed;
    }

    .wl-modal-success {
      display: none;
      text-align: center;
      padding: 1.5rem 0;
    }

    .wl-modal-success.show {
      display: block;
    }

    .wl-modal-success h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #0A0A0A;
      margin-bottom: 0.4rem;
    }

    .wl-modal-success p {
      color: #6B6B70;
      font-size: 0.875rem;
    }
/* --- Mobile hero overrides --- */
    @keyframes marqueeScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .mobile-marquee { display: none; }
    .mobile-hero-description { display: none; }
    .mobile-only { display: none; }
    @media (max-width: 900px) { .mobile-only { display: inline; } }

    @media (max-width: 900px) {
      /* ── Section: dark background, no gaps ── */
      .master-showcase-section {
        padding: 0 !important;
        min-height: auto !important;
        background: #fff !important;
        margin-bottom: 0 !important;
      }

      .master-grid-container {
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
        padding: 0 !important;
        height: 100vh !important;
        height: 100svh !important;
        overflow: hidden !important;
      }

      /* ── Phone: 3D perspective matching desktop, full-screen dark bg ── */
      .master-visual-column {
        flex: 1 !important;
        position: relative !important;
        height: auto !important;
        width: 100% !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding-top: 60px !important;
        perspective: 900px !important;
        overflow: visible !important;
      }

      .phone-mockup-3d {
        width: 180px !important;
        height: 380px !important;
        border-radius: 36px !important;
        transform: rotateX(15deg) rotateY(15deg) rotateZ(-5deg) !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
        flex-shrink: 0 !important;
        z-index: 6 !important;
      }

      .phone-screen {
        border-radius: 28px !important;
      }

      .phone-glare { opacity: 0 !important; }
      .plan-overlay, .vote-overlay,
      #planOverlay, #voteOverlay {
        display: none !important;
      }

      /* ── Marquee: behind phone, visible, like hopp.bike ── */
      .mobile-marquee {
        display: block !important;
        position: absolute;
        top: 42%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        z-index: 1;
        overflow: hidden;
        white-space: nowrap;
        pointer-events: none;
      }

      .mobile-marquee-track {
        display: inline-flex;
        animation: marqueeScroll 60s linear infinite;
      }

      .mobile-marquee-text {
        font-family: 'Poppins', sans-serif;
        font-size: 7.5rem;
        font-weight: 700;
        color: var(--accent, #E8366D);
        letter-spacing: -0.04em;
        line-height: 1;
        padding: 0 40px;
        -webkit-text-stroke: 0;
      }

      /* ── Content: description + buttons at bottom ── */
      .master-content-column {
        position: relative !important;
        width: 100% !important;
        padding: 0 !important;
        z-index: 20 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        flex: 1 !important;
        min-height: 0 !important;
      }

      .hero-content-block,
      .usp-content-block,
      .mobile-dots,
      .mobile-step-label {
        display: none !important;
      }

      .mobile-hero-description {
        display: flex !important;
        flex-direction: column;
        padding: 0 32px 28px;
        background: transparent;
        flex: 1;
        justify-content: center;
        gap: 24px;
      }

      .mobile-hero-description .mhd-icon {
        display: none !important;
      }

      .mobile-hero-description .mhd-text {
        font-size: 0.95rem;
        line-height: 1.55;
        color: rgba(0,0,0,0.6);
        font-weight: 500;
        text-align: left;
        margin-bottom: 0;
      }

      .mobile-hero-description .mhd-buttons {
        display: flex;
        gap: 12px;
        margin-top: 0;
        padding-bottom: 0;
        justify-content: flex-start;
      }

      .mobile-hero-description .mhd-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        border: none;
      }

      .mobile-hero-description .mhd-btn-secondary {
        background: transparent;
        color: #0a0a0a;
        border: 1.5px solid rgba(0,0,0,0.15);
      }

      .mobile-hero-description .mhd-btn-primary {
        background: #0a0a0a;
        color: #fff;
      }

      /* ── Nav stays light on white bg ── */

      /* ── Creator section ── */
      .creator-section {
        padding-top: 56px !important;
        background: #f5f5f7 !important;
      }

      .creator-title {
        font-size: 2.2rem !important;
        line-height: 1.15 !important;
        max-width: 300px;
        margin: 0 auto;
      }

      .cr-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
      }

      .cr-stats-row {
        gap: 24px !important;
        flex-wrap: wrap;
      }

      /* ── Hamburger menu ── */
      .nav-right-auth { display: none !important; }

      .nav-hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
      }
      .nav-hamburger span,
      .nav-hamburger span::before,
      .nav-hamburger span::after {
        display: block;
        width: 20px;
        height: 2px;
        background: #0a0a0a;
        border-radius: 1px;
        position: relative;
        transition: all 0.3s ease;
      }
      .nav-hamburger span::before,
      .nav-hamburger span::after {
        content: '';
        position: absolute;
        left: 0;
        width: 20px;
      }
      .nav-hamburger span::before { top: -6px; }
      .nav-hamburger span::after { top: 6px; }

      .nav-hamburger.is-open span { background: transparent; }
      .nav-hamburger.is-open span::before { top: 0; transform: rotate(45deg); background: #0a0a0a; }
      .nav-hamburger.is-open span::after { top: 0; transform: rotate(-45deg); background: #0a0a0a; }

      .mobile-nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0; right: 0; bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 99;
        padding: 32px 24px;
        flex-direction: column;
        gap: 0;
      }
      .mobile-nav-menu.is-open { display: flex; }
      .mobile-nav-menu a {
        font-family: 'Poppins', sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: #0a0a0a;
        text-decoration: none;
        padding: 16px 0;
        border-bottom: 1px solid #f0f0f0;
      }
      .mobile-nav-menu .mnm-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
      }
      .mobile-nav-menu .mnm-btn {
        display: block;
        text-align: center;
        padding: 14px;
        border-radius: 50px;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        border: none;
      }
      .mobile-nav-menu .mnm-btn-secondary {
        background: transparent;
        color: #0a0a0a;
        border: 1.5px solid #e0e0e0;
      }
      .mobile-nav-menu .mnm-btn-primary {
        background: #0a0a0a;
        color: #fff;
      }
      .mobile-nav-menu .mnm-section-toggle {
        font-family: 'Poppins', sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: #0a0a0a;
        padding: 16px 0;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .mobile-nav-menu .mnm-chevron {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
        color: #8c8c96;
      }
      .mobile-nav-menu .mnm-section-toggle.is-open .mnm-chevron {
        transform: rotate(90deg);
      }
      .mobile-nav-menu .mnm-section-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 16px;
      }
      .mobile-nav-menu .mnm-section-content.is-open {
        max-height: 200px;
      }
      .mobile-nav-menu .mnm-role-link {
        font-family: 'Poppins', sans-serif;
        font-size: 1.1rem;
        font-weight: 500;
        color: #0a0a0a;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        cursor: pointer;
        display: block;
        background: none;
        border-top: none;
        border-left: none;
        border-right: none;
        width: 100%;
        text-align: left;
      }
      .mobile-nav-menu .mnm-role-link .mnm-role-sub {
        font-size: 12px;
        color: #8c8c96;
        font-weight: 400;
        margin-top: 2px;
      }
    }
