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

      :root {
        /* Palette */
        --bg: #fafaf8;
        --bg2: #f4f3ef;
        --bg3: #eceae4;
        --white: #ffffff;
        --ink: #1a1a18;
        --ink2: #2e2e2b;
        --ink3: #4b4b47;
        --ink4: #7a7a74;
        --ink5: #a8a8a2;
        --border: #e0ddd6;
        --border2: #cccac2;

        --blue: #1d52cc;
        --blue2: #1642a8;
        --blue-bg: #eef2fc;
        --blue-mid: #dce6f9;

        --green: #0d7a52;
        --green2: #0a6344;
        --green-bg: #e8f5ef;
        --green-mid: #c6e8d9;

        --amber: #b45309;
        --amber-bg: #fef3e2;
        --amber-mid: #fde3b6;

        --red: #c0392b;
        --red-bg: #fdf0ee;
        --red-mid: #f9d0cb;

        --purple: #6d28d9;
        --purple-bg: #f0edfb;

        --orange: #c2410c;
        --orange-bg: #fff3ed;

        /* Typography */
        --ff-head: "DM Serif Display", Georgia, serif;
        --ff-body: "DM Sans", -apple-system, sans-serif;

        /* Radii */
        --r-sm: 6px;
        --r-md: 10px;
        --r-lg: 14px;
        --r-xl: 20px;
        --r-2xl: 28px;

        /* Shadows */
        --sh-xs: 0 1px 2px rgba(0, 0, 0, 0.06);
        --sh-sm: 0 1px 4px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.05);
        --sh-md: 0 4px 16px rgba(0, 0, 0, 0.09), 0 1px 4px rgba(0, 0, 0, 0.05);
        --sh-lg: 0 8px 32px rgba(0, 0, 0, 0.11), 0 2px 8px rgba(0, 0, 0, 0.05);
      }

      html {
        scroll-behavior: smooth;
        scroll-padding-top: 72px;
      }

      body {
        font-family: var(--ff-body);
        background: var(--bg);
        color: var(--ink);
        line-height: 1.65;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
        font-size: 16px;
      }

      /* ── LOADER ── */
      #loader {
        position: fixed;
        inset: 0;
        background: var(--white);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        transition:
          opacity 0.5s,
          visibility 0.5s;
      }
      #loader.hide {
        opacity: 0;
        visibility: hidden;
      }
      .loader-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        animation: fadeUp 0.6s ease both;
      }
      .loader-img {
        height: 34px;
      }
      .loader-name {
        font-family: var(--ff-head);
        font-size: 1.4rem;
        color: var(--ink);
        letter-spacing: -0.01em;
      }
      .loader-bar-wrap {
        width: 160px;
        height: 2px;
        background: var(--border);
        border-radius: 2px;
        overflow: hidden;
        animation: fadeUp 0.6s 0.2s ease both;
        opacity: 0;
      }
      .loader-bar {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, var(--blue), #4d8ef5);
        border-radius: 2px;
        animation: loadBar 1.8s 0.3s ease forwards;
      }
      .loader-status {
        font-size: 0.72rem;
        color: var(--ink5);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        animation: fadeUp 0.6s 0.4s ease both;
        opacity: 0;
      }
      @keyframes loadBar {
        0% {
          width: 0;
        }
        60% {
          width: 70%;
        }
        100% {
          width: 100%;
        }
      }
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }

      /* ── TOPBAR ── */
      .topbar {
        background: var(--blue);
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.78rem;
        padding: 10px 0;
        text-align: center;
        letter-spacing: 0.01em;
      }
      .topbar strong {
        color: #fff;
      }
      .topbar a {
        color: #bfd7ff;
        text-decoration: none;
        font-weight: 600;
      }
      .topbar a:hover {
        color: #fff;
      }

      /* ── NAVBAR ── */
      .navbar {
        position: sticky;
        top: 0;
        z-index: 500;
        background: rgba(250, 250, 248, 0.96);
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: var(--sh-xs);
        transition:
          box-shadow 0.25s ease,
          background 0.25s ease;
      }
      .nav-inner {
        display: flex;
        align-items: center;
        height: 66px;
        gap: 16px;
        max-width: 1120px;
        margin: 0 auto;
        padding: 0 clamp(16px, 4vw, 32px);
      }
      .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        flex-shrink: 0;
      }
      .nav-logo img {
        height: 32px;
      }
      .nav-logo-name {
        font-family: var(--ff-head);
        font-size: clamp(1.15rem, 1.8vw, 1.45rem);
        font-weight: 700;
        color: var(--ink);
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }
      .user-chip {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        margin-left: auto;
        color: var(--ink3);
        font-size: 0.78rem;
        font-weight: 700;
      }
      .avatar {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--ink);
        color: #fff;
        font-size: 0.9rem;
        font-weight: 800;
        text-decoration: none;
        transition:
          transform 0.2s ease,
          background 0.2s ease;
      }
      .avatar:hover {
        background: var(--blue);
        transform: rotate(-8deg);
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-left: auto;
      }
      .nav-links a {
        color: var(--ink3);
        font-size: 0.84rem;
        font-weight: 600;
        text-decoration: none;
        padding: 9px 12px;
        border-radius: var(--r-md);
        transition:
          color 0.2s ease,
          background 0.2s ease;
      }
      .nav-links a:hover {
        color: var(--blue);
        background: var(--blue-bg);
      }
      .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .nav-signin {
        color: var(--ink2);
        font-size: 0.82rem;
        font-weight: 700;
        text-decoration: none;
      }
      .nav-join {
        background: var(--blue);
        border-radius: var(--r-md);
        color: #fff;
        font-size: 0.8rem;
        font-weight: 700;
        padding: 10px 14px;
        text-decoration: none;
        box-shadow: 0 6px 14px rgba(29, 82, 204, 0.18);
        transition:
          transform 0.2s ease,
          background 0.2s ease;
      }
      .nav-join:hover {
        background: var(--blue2);
        transform: translateY(-1px);
      }
      .ham {
        display: none;
        width: 42px;
        height: 42px;
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        background: var(--white);
        color: var(--ink);
        cursor: pointer;
        font-size: 1rem;
      }
      /* ── CONTAINER ── */
      .container {
        max-width: 1120px;
        margin: 0 auto;
        padding: 0 clamp(16px, 4vw, 32px);
      }

      /* ── SECTION COMMONS ── */
      section {
        padding: clamp(64px, 9vw, 100px) 0;
      }
      .sec-label {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .sec-label::before {
        content: "";
        width: 24px;
        height: 1.5px;
        background: var(--blue-mid);
        border-radius: 2px;
      }
      .center .sec-label {
        justify-content: center;
      }
      .center .sec-label::before {
        display: none;
      }
      .sec-title {
        font-family: var(--ff-head);
        font-size: clamp(2rem, 3.5vw, 2.9rem);
        color: var(--ink);
        margin-bottom: 16px;
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: -0.01em;
      }
      .sec-title em {
        font-style: italic;
        color: var(--blue);
      }
      .sec-sub {
        font-size: 0.97rem;
        color: var(--ink3);
        line-height: 1.8;
        max-width: 500px;
      }
      .center {
        text-align: center;
      }
      .center .sec-sub {
        margin: 0 auto;
      }
      /* Enhanced Dark Hero */
      .hero {
        background: linear-gradient(
          165deg,
          #0a0e17 0%,
          #111827 30%,
          #0d1520 100%
        );
        padding: clamp(90px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      /* Animated grid overlay */
      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: gridShift 20s linear infinite;
      }

      @keyframes gridShift {
        0% {
          transform: translate(0, 0);
        }
        100% {
          transform: translate(60px, 60px);
        }
      }

      /* Main ambient glow */
      .hero-glow {
        position: absolute;
        top: -150px;
        right: -100px;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(59, 130, 246, 0.12) 0%,
          rgba(59, 130, 246, 0.04) 40%,
          transparent 70%
        );
        pointer-events: none;
        animation: glowPulse 8s ease-in-out infinite;
      }

      /* Secondary accent glow */
      .hero-glow2 {
        position: absolute;
        bottom: -120px;
        left: -80px;
        width: 560px;
        height: 560px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(16, 185, 129, 0.08) 0%,
          rgba(16, 185, 129, 0.03) 40%,
          transparent 70%
        );
        pointer-events: none;
        animation: glowPulse 10s ease-in-out infinite reverse;
      }

      /* Floating particles */
      .hero-particles {
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0.4;
      }

      .particle {
        position: absolute;
        width: 2px;
        height: 2px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
      }

      .particle:nth-child(1) {
        top: 15%;
        left: 70%;
        animation-delay: 0s;
      }
      .particle:nth-child(2) {
        top: 25%;
        left: 80%;
        animation-delay: 1.5s;
        width: 3px;
        height: 3px;
      }
      .particle:nth-child(3) {
        top: 60%;
        left: 75%;
        animation-delay: 3s;
      }
      .particle:nth-child(4) {
        top: 40%;
        left: 85%;
        animation-delay: 4.5s;
        width: 1.5px;
        height: 1.5px;
      }
      .particle:nth-child(5) {
        top: 75%;
        left: 65%;
        animation-delay: 2s;
      }
      .particle:nth-child(6) {
        top: 10%;
        left: 60%;
        animation-delay: 5s;
        width: 2.5px;
        height: 2.5px;
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0) translateX(0);
          opacity: 0.3;
        }
        25% {
          transform: translateY(-20px) translateX(10px);
          opacity: 0.6;
        }
        50% {
          transform: translateY(-10px) translateX(-5px);
          opacity: 0.3;
        }
        75% {
          transform: translateY(-25px) translateX(5px);
          opacity: 0.5;
        }
      }

      @keyframes glowPulse {
        0%,
        100% {
          opacity: 0.7;
        }
        50% {
          opacity: 1;
        }
      }

      .hero-inner {
        position: relative;
        z-index: 1;
        max-width: 680px;
      }

      /* Enhanced eyebrow badge */
      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: #93c5fd;
        padding: 10px 18px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        margin-bottom: 28px;
        transition: all 0.3s ease;
      }

      .hero-eyebrow:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
      }

      /* Enhanced live dot */
      .live-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #22c55e;
        box-shadow:
          0 0 10px rgba(34, 197, 94, 0.6),
          0 0 20px rgba(34, 197, 94, 0.3);
        animation: livePulse 2s ease-in-out infinite;
        flex-shrink: 0;
      }

      @keyframes livePulse {
        0%,
        100% {
          transform: scale(1);
          box-shadow:
            0 0 10px rgba(34, 197, 94, 0.6),
            0 0 20px rgba(34, 197, 94, 0.3);
        }
        50% {
          transform: scale(1.3);
          box-shadow:
            0 0 20px rgba(34, 197, 94, 0.8),
            0 0 40px rgba(34, 197, 94, 0.5);
        }
      }

      /* Typography updates */
      .hero-title {
        font-family: var(--ff-head);
        font-size: clamp(3.2rem, 7vw, 5.5rem);
        line-height: 0.95;
        color: #f1f5f9;
        margin-bottom: 28px;
        font-weight: 400;
        letter-spacing: -0.03em;
      }

      .hero-title em {
        font-style: italic;
        background: linear-gradient(
          135deg,
          #60a5fa 0%,
          #3b82f6 50%,
          #818cf8 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .hero-desc {
        font-size: 1.15rem;
        color: #94a3b8;
        line-height: 1.8;
        margin-bottom: 36px;
        max-width: 560px;
        font-weight: 400;
      }

      /* Enhanced CTA buttons */
      .hero-ctas {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 4px;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 28px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: -0.01em;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        cursor: pointer;
        border: none;
        position: relative;
        overflow: hidden;
      }

      .btn-primary {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: #fff;
        box-shadow:
          0 4px 20px rgba(37, 99, 235, 0.3),
          0 0 0 1px rgba(59, 130, 246, 0.2) inset;
      }

      .btn-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        transition: left 0.5s ease;
      }

      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow:
          0 8px 30px rgba(37, 99, 235, 0.4),
          0 0 0 1px rgba(96, 165, 250, 0.3) inset;
      }

      .btn-primary:hover::before {
        left: 100%;
      }

      .btn-outline {
        background: rgba(255, 255, 255, 0.03);
        color: #e2e8f0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
      }

      .btn-outline:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      }

      .btn i {
        font-size: 1.1em;
        transition: transform 0.3s ease;
      }

      .btn:hover i {
        transform: scale(1.1);
      }

      /* Enhanced scroll hint */
      .scroll-hint {
        margin-top: 60px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.68rem;
        color: #64748b;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        opacity: 0.7;
        transition: opacity 0.3s ease;
      }

      .scroll-hint:hover {
        opacity: 1;
      }

      .scroll-hint-line {
        flex: 0 0 40px;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2)
        );
        animation: scrollLine 2s ease-in-out infinite;
      }

      @keyframes scrollLine {
        0%,
        100% {
          width: 40px;
        }
        50% {
          width: 60px;
        }
      }

      /* ── SURVEYS ── */
      /* Light, compact hero override */
      .hero {
        background: #fbfcff;
        border-bottom: 1px solid var(--border);
        padding: clamp(26px, 4vw, 44px) 0 clamp(20px, 3vw, 32px);
      }
      .hero::before {
        background-image:
          linear-gradient(rgba(29, 82, 204, 0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(29, 82, 204, 0.035) 1px, transparent 1px);
        background-size: 48px 48px;
        animation: none;
      }
      .hero-glow,
      .hero-glow2,
      .hero-particles {
        display: none;
      }
      .hero-inner {
        max-width: 680px;
      }
      .hero-eyebrow {
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        border-radius: 0;
        color: var(--blue);
        padding: 0;
        margin-bottom: 16px;
      }
      .hero-eyebrow:hover {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
      }
      .hero-title {
        color: var(--ink);
        font-size: clamp(2.65rem, 5.8vw, 4.8rem);
        line-height: 1;
        margin-bottom: 18px;
      }
      .hero-title em {
        background: none;
        -webkit-text-fill-color: currentColor;
        color: var(--blue);
      }
      .hero-desc {
        color: var(--ink3);
        font-size: 1.02rem;
        line-height: 1.7;
        margin-bottom: 22px;
      }
      .hero .btn {
        padding: 13px 20px;
        border-radius: var(--r-md);
      }
      .hero .btn-outline {
        background: var(--white);
        border-color: var(--border2);
        color: var(--ink2);
        backdrop-filter: none;
      }
      .hero .btn-outline:hover {
        background: var(--bg2);
        border-color: var(--blue-mid);
        box-shadow: none;
      }
      .scroll-hint {
        display: none;
      }
      .scroll-hint-line {
        background: var(--border2);
        animation: none;
      }

      .surveys-section {
        background: var(--bg2);
        border-bottom: 1px solid var(--border);
      }
      .surveys-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 24px;
      }
      .surveys-live {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.75rem;
        color: var(--ink4);
        padding: 6px 14px;
        border-radius: 30px;
        border: 1px solid var(--border2);
        background: var(--white);
      }
      .filter-row {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
        margin-bottom: 28px;
      }
      .filter-btn {
        padding: 7px 16px;
        border-radius: 30px;
        font-size: 0.78rem;
        font-weight: 600;
        border: 1.5px solid var(--border2);
        background: var(--white);
        color: var(--ink3);
        cursor: pointer;
        transition: all 0.2s;
        font-family: var(--ff-body);
      }
      .filter-btn:hover {
        border-color: var(--blue);
        color: var(--blue);
      }
      .filter-btn.active {
        background: var(--blue);
        color: #fff;
        border-color: var(--blue);
      }
      .surveys-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 310px), 1fr));
        gap: 14px;
      }

      .survey-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-xl);
        padding: 24px;
        transition: all 0.25s;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        box-shadow: var(--sh-xs);
      }
      .survey-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--blue), #4d8ef5);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
      }
      .survey-card:hover {
        border-color: var(--blue-mid);
        transform: translateY(-3px);
        box-shadow: var(--sh-md);
      }
      .survey-card:hover::after {
        transform: scaleX(1);
      }

      .sc-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 18px;
      }
      .sc-icon {
        width: 44px;
        height: 44px;
        border-radius: var(--r-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
      }
      .sc-badge {
        font-size: 0.63rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 20px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }
      .badge-hot {
        background: var(--red-bg);
        color: var(--red);
        border: 1px solid var(--red-mid);
      }
      .badge-new {
        background: var(--blue-bg);
        color: var(--blue);
        border: 1px solid var(--blue-mid);
      }
      .badge-feat {
        background: var(--green-bg);
        color: var(--green);
        border: 1px solid var(--green-mid);
      }
      .badge-pop {
        background: var(--amber-bg);
        color: var(--amber);
        border: 1px solid var(--amber-mid);
      }

      .sc-cat {
        font-size: 0.63rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.09em;
        color: var(--ink5);
        margin-bottom: 4px;
      }
      .sc-earn {
        font-family: var(--ff-head);
        font-size: 1.9rem;
        font-weight: 400;
        color: var(--ink);
        line-height: 1;
        margin-bottom: 4px;
        letter-spacing: -0.02em;
      }
      .sc-earn small {
        font-family: var(--ff-body);
        font-size: 0.72rem;
        color: var(--ink5);
        font-weight: 400;
      }
      .sc-title {
        font-family: var(--ff-head);
        font-size: 1rem;
        color: var(--ink);
        margin-bottom: 8px;
        font-weight: 400;
        letter-spacing: -0.01em;
      }
      .sc-desc {
        font-size: 0.82rem;
        color: var(--ink3);
        line-height: 1.75;
        margin-bottom: 14px;
      }
      .sc-meta {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        padding: 10px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        margin-bottom: 12px;
      }
      .sc-meta-item {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.72rem;
        color: var(--ink4);
      }
      .sc-meta-item i {
        color: var(--blue);
        font-size: 0.65rem;
      }
      .sc-spots {
        font-size: 0.72rem;
        color: var(--ink4);
        margin-top: 2px;
      }
      .sc-spots span {
        color: var(--red);
        font-weight: 600;
      }
      .btn-survey {
        width: 100%;
        padding: 10px;
        background: var(--blue);
        color: #fff;
        border: none;
        border-radius: var(--r-md);
        font-size: 0.84rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        font-family: var(--ff-body);
        margin-top: 12px;
      }
      .btn-survey:hover {
        background: var(--blue2);
      }
      .surveys-cta {
        text-align: center;
        margin-top: 40px;
      }
      .surveys-cta p {
        font-size: 0.85rem;
        color: var(--ink4);
        margin-bottom: 18px;
      }
      .surveys-cta p strong {
        color: var(--ink2);
      }

      /* Earnings Section */
      .earnings-section {
        padding: 80px 0;
      }

      .earnings-header {
        margin-bottom: 48px;
      }

      .sec-subtitle {
        font-size: 0.95rem;
        color: var(--ink4);
        margin-top: 12px;
        font-weight: 500;
      }

      .earnings-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
      }

      /* Shared Card Styles */
      .earnings-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-xl);
        overflow: hidden;
      }

      .card-label {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 20px 24px 0;
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--ink5);
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }

      .live-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--green);
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.5;
          transform: scale(1.2);
        }
      }

      /* Survey List */
      .survey-list {
        --survey-list-height: 320px;
        max-height: var(--survey-list-height);
        padding: 16px 20px 24px 24px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: var(--blue-mid) transparent;
        mask-image: linear-gradient(
          to bottom,
          transparent,
          #000 18px,
          #000 calc(100% - 26px),
          transparent
        );
        -webkit-mask-image: linear-gradient(
          to bottom,
          transparent,
          #000 18px,
          #000 calc(100% - 26px),
          transparent
        );
      }

      .survey-list::-webkit-scrollbar {
        width: 5px;
      }

      .survey-list::-webkit-scrollbar-thumb {
        background: var(--blue-mid);
        border-radius: 999px;
      }

      .survey-list:focus-visible {
        outline: 2px solid var(--blue);
        outline-offset: -2px;
      }

      .survey-row {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        transition: all 0.2s;
        flex: 0 0 auto;
      }

      .survey-row:hover {
        border-color: var(--border2);
        background: var(--bg2);
        box-shadow: var(--sh-sm);
        transform: translateX(4px);
      }

      .survey-icon {
        font-size: 1.3rem;
        flex-shrink: 0;
      }

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

      .survey-title {
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--ink);
      }

      .survey-meta {
        font-size: 0.74rem;
        color: var(--ink4);
        margin-top: 2px;
      }

      .survey-amount {
        font-family: var(--ff-head);
        font-size: 1.15rem;
        color: var(--green);
        font-weight: 400;
        white-space: nowrap;
      }

      /* Live Feed */
      .live-feed-box {
        padding: 16px 24px 24px;
        max-height: 420px;
        overflow: hidden;
        position: relative;
      }

      .live-feed-box::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(transparent, var(--white));
        pointer-events: none;
      }

      .feed-scroll {
        overflow-y: auto;
        max-height: 100%;
        padding-right: 4px;
      }

      .feed-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        border-radius: var(--r-md);
        margin-bottom: 4px;
        animation: feedIn 0.4s ease;
        background: var(--bg);
      }

      .feed-avatar {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.82rem;
        font-weight: 700;
        flex-shrink: 0;
        color: #fff;
      }

      .feed-av {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
        font-size: 0.82rem;
        font-weight: 700;
      }

      .feed-name {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--ink);
      }

      .feed-detail {
        font-size: 0.72rem;
        color: var(--ink4);
      }

      .feed-amount {
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--green);
        white-space: nowrap;
        margin-left: auto;
      }

      .feed-amt {
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--green);
        white-space: nowrap;
        margin-left: auto;
      }

      @keyframes feedIn {
        from {
          opacity: 0;
          transform: translateX(-10px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }

      /* Responsive */
      @media (max-width: 768px) {
        .earnings-grid {
          grid-template-columns: 1fr;
          gap: 24px;
        }

        .survey-list {
          --survey-list-height: 292px;
          padding: 14px 14px 20px 16px;
        }

        .live-feed-box {
          padding: 16px;
        }
      }

 /* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, #0a0f1a 0%, #141b2b 50%, #1a2335 100%);
  color: rgba(255, 255, 255, 0.6);
  padding: clamp(50px, 6vw, 70px) 0 24px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(99, 102, 241, 0.06) 0%,
    rgba(139, 92, 246, 0.04) 30%,
    transparent 60%
  );
  animation: footerGlow 20s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes footerGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 5%) scale(1.2); }
}

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

.ft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 700px;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ft-logo img {
  height: 30px;
  width: auto;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

.ft-logo:hover img {
  filter: brightness(1.3);
}

.ft-logo-name {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
}

.ft-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 600px;
}

.ft-desc strong {
  color: rgba(255, 255, 255, 0.7);
}

.ft-contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 6px;
}

.ft-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
}

.ft-contact:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.15);
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(4px);
}

.ft-contact a {
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ft-contact a:hover {
  color: #c7d2fe;
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ft-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

.ft-copy a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ft-copy a:hover {
  color: #93c5fd;
}

/* Responsive */
@media (max-width: 768px) {
  .ft-grid {
    max-width: 100%;
  }

  .ft-desc {
    max-width: 100%;
  }

  .ft-contact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px;
  }

  .ft-grid {
    gap: 24px;
    padding-bottom: 30px;
  }

  .ft-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .ft-logo img {
    height: 24px;
  }

  .ft-logo-name {
    font-size: 1rem;
  }

  .ft-contact {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}
      /* ── MOBILE NAV ── */
      .mob-nav {
        display: none;
        position: fixed;
        inset: 0;
        top: 72px;
        background: var(--white);
        z-index: 400;
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        overflow-y: auto;
        border-top: 1px solid var(--border);
        box-shadow: var(--sh-lg);
      }
      .mob-nav.open {
        display: flex;
      }
      .mob-nav a {
        padding: 12px 16px;
        border-radius: var(--r-md);
        color: var(--ink2);
        font-weight: 500;
        text-decoration: none;
        font-size: 0.94rem;
        transition: all 0.15s;
      }
      .mob-nav a:hover {
        background: var(--bg2);
      }
      .mob-hr {
        height: 1px;
        background: var(--border);
        margin: 8px 0;
      }
      .mob-cta {
        background: var(--blue) !important;
        color: #fff !important;
        text-align: center;
        border-radius: var(--r-lg) !important;
        padding: 14px !important;
        font-weight: 700 !important;
      }

      /* ── MODAL ── */
      #surveyModal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        backdrop-filter: blur(4px);
      }
      .modal-inner {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-2xl);
        width: 100%;
        max-width: 430px;
        overflow: hidden;
        transform: scale(0.96) translateY(10px);
        transition: transform 0.3s;
        box-shadow: var(--sh-lg);
      }
      .modal-head {
        background: var(--bg);
        padding: 28px 28px 24px;
        border-bottom: 1px solid var(--border);
        position: relative;
      }
      .modal-logo {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        background: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--ff-head);
        font-size: 1.1rem;
        color: #fff;
        margin-bottom: 14px;
      }
      .modal-title {
        font-family: var(--ff-head);
        font-size: 1.35rem;
        color: var(--ink);
        margin-bottom: 5px;
        font-weight: 400;
      }
      .modal-sub {
        font-size: 0.82rem;
        color: var(--ink4);
      }
      .modal-close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--bg2);
        border: 1px solid var(--border);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ink4);
        font-size: 0.78rem;
        transition: all 0.2s;
      }
      .modal-close:hover {
        background: var(--bg3);
        color: var(--ink);
      }
      .modal-body {
        padding: 26px;
      }
      .modal-row {
        display: flex;
        gap: 12px;
        padding: 12px 14px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        margin-bottom: 9px;
      }
      .modal-row-icon {
        width: 34px;
        height: 34px;
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        flex-shrink: 0;
      }
      .modal-row-title {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--ink);
      }
      .modal-row-sub {
        font-size: 0.74rem;
        color: var(--ink4);
      }
      .modal-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 13px;
        background: var(--blue);
        color: #fff;
        border: none;
        border-radius: var(--r-lg);
        font-size: 0.92rem;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        font-family: var(--ff-body);
        transition: all 0.2s;
      }
      .modal-cta:hover {
        background: var(--blue2);
      }
      .modal-foot {
        text-align: center;
        font-size: 0.72rem;
        color: var(--ink5);
        margin-top: 13px;
      }

      /* ── ANIMATIONS ── */
      .fade-up {
        opacity: 0;
        transform: translateY(18px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: none;
      }
      .d1 {
        transition-delay: 0.1s;
      }
      .d2 {
        transition-delay: 0.2s;
      }
      .d3 {
        transition-delay: 0.3s;
      }
      .d4 {
        transition-delay: 0.4s;
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 1024px) {
        .proof-grid {
          grid-template-columns: 1fr;
        }
        .feed-layout {
          grid-template-columns: 1fr;
        }
        .pay-layout {
          grid-template-columns: 1fr;
        }
        .ft-grid {
          grid-template-columns: 1fr 1fr;
        }
        .hiw-steps {
          grid-template-columns: 1fr 1fr;
        }
        .stat-cell:nth-child(2) {
          border-right: none;
        }
        .stat-cell:nth-child(3) {
          border-right: 1px solid var(--border);
        }
        .stat-cell:nth-child(3),
        .stat-cell:nth-child(4) {
          border-top: 1px solid var(--border);
        }
      }
      @media (max-width: 768px) {
        .nav-inner {
          height: 64px;
        }
        .nav-links,
        .nav-actions {
          display: none;
        }
        .ham {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          margin-left: auto;
        }
        .hiw-steps {
          grid-template-columns: 1fr;
          background: none;
          border: none;
          gap: 10px;
        }
        .hiw-step {
          border: 1px solid var(--border);
          border-radius: var(--r-xl);
        }
        .cats-grid {
          grid-template-columns: 1fr 1fr;
        }
        .ft-grid {
          grid-template-columns: 1fr;
        }
        .ft-bottom {
          flex-direction: column;
          text-align: center;
        }
      }
      @media (max-width: 480px) {
        .surveys-grid {
          grid-template-columns: 1fr;
        }
        .hero-ctas {
          flex-direction: column;
        }
        .cta-btns {
          flex-direction: column;
          align-items: center;
        }
        .proof-metrics {
          grid-template-columns: 1fr;
        }
      }