@font-face {
      font-family: "Satoshi-Bold";
      src: url("https://anima-uploads.s3.amazonaws.com/projects/62fe21e7f2f27787f05ba142/fonts/satoshi-variable.ttf") format("truetype");
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Satoshi-Black";
      src: url("https://anima-uploads.s3.amazonaws.com/projects/643cb44a04966504b3e272b3/fonts/satoshi-black.woff") format("woff");
      font-weight: 900;
      font-style: normal;
      font-display: swap;
    }

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

    html {
      scroll-behavior: smooth;
    }

    :root {
      --black: #0F0F0F;
      --ink: #1A1A1A;
      --grey-1: #444;
      --grey-2: #888;
      --grey-3: #C4C4C4;
      --grey-4: #E9E9E9;
      --grey-5: #F6F6F6;
      --white: #FFFFFF;
      --blue: #2563EB;
      --blue-lt: #EFF4FF;
      --max: 1100px;
      --nav-h: 66px;
      --ease-out: cubic-bezier(0.23, 1, 0.32, 1);

      /* Fontshare options for testing:
         Main fonts: 'Clash Display', 'Cabinet Grotesk', 'Satoshi', 'General Sans', 'Space Grotesk', 'Nohemi', 'Switzer'
         Accent fonts: 'Melodrama', 'Boska', 'Zodiak', 'Erode', 'Sentient', 'Nohemi', 'Pinyon Script', 'Sacramento', 'Cormorant Garamond'
      */
      --font-hero-main: 'Switzer', sans-serif;
      --font-hero-accent: 'Cormorant Garamond', serif;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--white);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      line-height: 1;
    }

    /* ─── NAV ─────────────────────────────────── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: var(--nav-h);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--grey-4);
    }

    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
    }

    /* TEXT-ONLY LOGO */
    .logo-wrap {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo-icon {
      display: none;
    }

    .logo-text {
      font-family: 'Satoshi-Regular', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      font-weight: 800;
      font-size: 24px;
      color: #1a1a1a;
      letter-spacing: -0.3px;
      text-transform: lowercase;
      line-height: 1;
    }

    .logo-text span {
      color: var(--ink);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 400;
      color: var(--grey-1);
      text-decoration: none;
      padding: 7px 14px;
      border-radius: 6px;
      transition: background 0.15s, color 0.15s;
    }

    .nav-links a:hover {
      background: var(--grey-5);
      color: var(--ink);
    }

    .nav-links .btn-nav {
      background: var(--blue);
      color: var(--white);
      font-weight: 500;
      border-radius: 7px;
      transition: background 0.15s;
    }

    .nav-links .btn-nav:hover {
      background: #1d4ed8;
    }

    /* ─── HERO ─────────────────────────────────── */
    /* ─── HERO ─────────────────────────────────── */
    .hero {
      position: relative;
      padding-top: calc(var(--nav-h) + 88px);
      padding-bottom: 30px;
      padding-left: 40px;
      padding-right: 40px;
      text-align: center;
      overflow: hidden;
      background: linear-gradient(180deg, #F9FBFF 0%, var(--white) 100%);
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(rgba(15, 15, 15, 0.04) 1px, transparent 1px),
        radial-gradient(circle 80% at 50% 50%, transparent 40%, var(--white) 100%);
      background-size: 24px 24px, auto;
      pointer-events: none;
      z-index: 1;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 900px;
      background: repeating-radial-gradient(circle,
          transparent,
          transparent 47px,
          rgba(15, 15, 15, 0.02) 48px,
          rgba(15, 15, 15, 0.02) 49px);
      pointer-events: none;
      z-index: 1;
      animation: driftRings 24s ease-in-out infinite;
    }

    @keyframes driftRings {
      0% {
        transform: translate(-50%, -50%) scale(1);
      }

      25% {
        transform: translate(-49.5%, -50.5%) scale(1.03);
      }

      50% {
        transform: translate(-50.5%, -49.5%) scale(1.05);
      }

      75% {
        transform: translate(-49.7%, -49.7%) scale(1.02);
      }

      100% {
        transform: translate(-50%, -50%) scale(1);
      }
    }

    .hero-inner {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* Floating attention hook cards */
    .float-badge {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(15, 15, 15, 0.08);
      border-radius: 12px;
      padding: 10px 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 10;
      pointer-events: auto;
      cursor: default;
      user-select: none;
      opacity: 0.4;
      transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
    }

    .float-badge:hover {
      opacity: 1 !important;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    .float-badge.left-top {
      left: -280px;
      top: 12%;
      animation: badgeFadeUp 0.7s var(--ease-out) 0.5s both, float1 6s ease-in-out infinite 0.7s;
    }

    .float-badge.left-bottom {
      left: -230px;
      top: 52%;
      animation: badgeFadeUp 0.7s var(--ease-out) 0.7s both, float3 7s ease-in-out infinite 0.9s;
    }

    .float-badge.right-top {
      right: -250px;
      top: 8%;
      animation: badgeFadeUp 0.7s var(--ease-out) 0.55s both, float4 6.5s ease-in-out infinite 0.75s;
    }

    .float-badge.right-bottom {
      right: -290px;
      top: 48%;
      animation: badgeFadeUp 0.7s var(--ease-out) 0.65s both, float2 7.5s ease-in-out infinite 0.85s;
    }

    .float-badge-icon {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
    }

    .float-badge.left-top .float-badge-icon {
      background: #ECFDF5;
      color: #059669;
    }

    .float-badge.left-bottom .float-badge-icon {
      background: #FFFBEB;
      color: #D97706;
    }

    .float-badge.right-top .float-badge-icon {
      background: #EFF6FF;
      color: #2563EB;
    }

    .float-badge.right-bottom .float-badge-icon {
      background: #F5F3FF;
      color: #7C3AED;
    }

    .float-badge-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
    }

    .float-badge-text strong {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--ink);
    }

    .float-badge-text span {
      font-size: 0.65rem;
      color: var(--grey-2);
    }

    @keyframes float1 {

      0%,
      100% {
        transform: translateY(0) rotate(-1.5deg);
      }

      50% {
        transform: translateY(-8px) rotate(1.5deg);
      }
    }

    @keyframes float2 {

      0%,
      100% {
        transform: translateY(0) rotate(1.5deg);
      }

      50% {
        transform: translateY(-10px) rotate(-1.5deg);
      }
    }

    @keyframes float3 {

      0%,
      100% {
        transform: translateY(0) rotate(-1.2deg);
      }

      50% {
        transform: translateY(-7px) rotate(1.2deg);
      }
    }

    @keyframes float4 {

      0%,
      100% {
        transform: translateY(0) rotate(1.2deg);
      }

      50% {
        transform: translateY(-9px) rotate(-1.2deg);
      }
    }

    @keyframes badgeFadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 0.4;
        transform: translateY(0);
      }
    }

    /* Power Flow Lines */
    .power-lines {
      position: absolute;
      left: -340px;
      right: -340px;
      top: 0;
      bottom: 0;
      width: calc(100% + 680px);
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .power-line-base {
      fill: none;
      stroke: rgba(15, 15, 15, 0.03);
      stroke-width: 1.2;
    }

    .power-line-pulse {
      fill: none;
      stroke: url(#powerGlow);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-dasharray: 50 350;
      animation: flowPulse 6s linear infinite;
    }

    .power-line-pulse.delay-1 {
      animation-delay: -1.5s;
      animation-duration: 5.5s;
    }

    .power-line-pulse.delay-2 {
      animation-delay: -3s;
      animation-duration: 7s;
    }

    .power-line-pulse.delay-3 {
      animation-delay: -4.5s;
      animation-duration: 5s;
    }

    @keyframes flowPulse {
      from {
        stroke-dashoffset: 400;
      }

      to {
        stroke-dashoffset: 0;
      }
    }

    @media (max-width: 1080px) {
      .float-badge {
        display: none !important;
      }

      .power-lines {
        display: none !important;
      }
    }

    /* Spotlight glow layer */
    .hero-glow {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      background: radial-gradient(circle 260px at var(--mouse-x, -999px) var(--mouse-y, -999px),
          rgba(37, 99, 235, 0.06),
          transparent 80%);
      opacity: 0;
      transition: opacity 0.4s var(--ease-out);
    }

    .hero-glow.active {
      opacity: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--blue-lt);
      color: var(--blue);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      padding: 5px 12px;
      border-radius: 20px;
      margin-bottom: 28px;
      border: 1px solid rgba(37, 99, 235, 0.15);
      transition: transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
      cursor: pointer;
      user-select: none;
      animation: fadeUp 0.6s var(--ease-out) 0s both;
    }

    .hero-badge:hover {
      transform: translateY(-1.5px);
      border-color: rgba(37, 99, 235, 0.35);
      background: rgba(37, 99, 235, 0.08);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
    }

    .hero-badge:active {
      transform: translateY(0) scale(0.97);
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blue);
      flex-shrink: 0;
      transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
    }

    .hero-badge:hover .badge-dot {
      transform: scale(1.3);
      box-shadow: 0 0 6px rgba(37, 99, 235, 0.6);
    }

    .feat-badge {
      display: inline-flex;
      align-items: center;
      padding: 2px 6px;
      font-size: 0.58rem;
      font-weight: 700;
      border-radius: 6px;
      margin-left: 10px;
      vertical-align: middle;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      line-height: 1;
    }
    
    .badge-live {
      background: rgba(16, 185, 129, 0.08);
      color: #10b981;
      border: 1px solid rgba(16, 185, 129, 0.18);
    }
    
    .badge-waitlist {
      background: rgba(245, 158, 11, 0.08);
      color: #f59e0b;
      border: 1px solid rgba(245, 158, 11, 0.18);
    }

    h1 {
      font-family: var(--font-hero-main);
      font-size: clamp(2.2rem, 4.4vw, 3.4rem);
      /* Slightly larger for impact */
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.035em;
      color: var(--ink);
      margin-bottom: 22px;
    }

    .reveal-line {
      display: block;
      overflow: hidden;
      padding-bottom: 6px;
      margin-bottom: -6px;
    }

    .reveal-line-inner {
      font-family: var(--font-hero-main);
      display: inline-block;
      transform: translateY(100%);
      opacity: 0;
      animation: revealUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    h1 .reveal-line:nth-child(1) .reveal-line-inner {
      animation-delay: 0.1s;
    }

    h1 .reveal-line:nth-child(2) .reveal-line-inner {
      animation-delay: 0.22s;
    }

    h1 em {
      font-family: inherit;
      font-style: normal;
      font-weight: inherit;
      color: var(--blue);
      font-size: inherit;
      letter-spacing: inherit;
      position: relative;
      display: inline-block;
      z-index: 1;
    }



    @keyframes revealUp {
      from {
        transform: translateY(100%);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(16px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes shimmer {
      to {
        background-position: 200% center;
      }
    }

    .hero-sub {
      font-family: "Plus Jakarta Sans", "Satoshi", -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: clamp(1rem, 1.1vw, 1.125rem);
      font-weight: 450;
      color: var(--grey-2);
      line-height: 1.65;
      max-width: 540px;
      margin: 0 auto 32px;
      opacity: 0;
      animation: fadeUp 0.6s var(--ease-out) 0.35s both;
    }

    .hero-btns {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 0.6s var(--ease-out) 0.3s both;
    }

    .btn-primary {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      background: var(--blue);
      color: var(--white);
      padding: 12px 26px;
      border-radius: 7px;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.16s var(--ease-out), background 0.16s var(--ease-out), box-shadow 0.16s var(--ease-out);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle 50px at var(--x, 0px) var(--y, 0px), rgba(255, 255, 255, 0.25), transparent 80%);
      opacity: 0;
      transition: opacity 0.2s var(--ease-out);
      pointer-events: none;
    }

    .btn-primary:hover {
      background: #1d4ed8;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    }

    .btn-primary:hover::before {
      opacity: 1;
    }

    .btn-primary:active {
      transform: scale(0.96);
    }

    .btn-ghost {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 400;
      text-decoration: none;
      background: var(--white);
      color: var(--grey-1);
      padding: 12px 26px;
      border-radius: 7px;
      border: 1px solid var(--grey-4);
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.16s var(--ease-out), border-color 0.16s var(--ease-out), color 0.16s var(--ease-out), background 0.16s var(--ease-out);
    }

    .btn-ghost::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle 60px at var(--x, 0px) var(--y, 0px), rgba(37, 99, 235, 0.08), transparent 80%);
      opacity: 0;
      transition: opacity 0.2s var(--ease-out);
      pointer-events: none;
    }

    .btn-ghost:hover {
      border-color: var(--grey-3);
      color: var(--ink);
      background: var(--grey-5);
    }

    .btn-ghost:hover::before {
      opacity: 1;
    }

    .btn-ghost:active {
      transform: scale(0.96);
    }

    /* proof strip */
    .hero-proof {
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid var(--grey-4);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 36px;
      flex-wrap: wrap;
      animation: fadeUp 0.6s var(--ease-out) 0.45s both;
    }

    .proof-stat {
      padding: 8px 16px;
      border-radius: 8px;
      transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out);
      cursor: default;
      user-select: none;
    }

    .proof-stat:hover {
      transform: translateY(-2px);
      background: var(--grey-5);
    }

    .proof-stat strong {
      display: block;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.5px;
    }

    .proof-stat span {
      font-size: 0.8rem;
      color: var(--grey-2);
      margin-top: 2px;
      display: block;
    }

    .proof-divider {
      width: 1px;
      height: 28px;
      background: var(--grey-4);
    }

    /* Trust indicator avatars */
    .trust-indicator {
      margin-top: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      animation: fadeUp 0.6s var(--ease-out) 0.55s both;
    }

    .profile-avatars {
      display: flex;
      align-items: center;
    }

    .avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid var(--white);
      margin-left: -8px;
      object-fit: cover;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .avatar:first-child {
      margin-left: 0;
    }

    .trust-indicator .count {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--blue);
      background: var(--blue-lt);
      border: 2px solid var(--white);
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: -8px;
      flex-shrink: 0;
    }

    .trust-indicator .text {
      font-size: 0.8rem;
      color: var(--grey-2);
      font-weight: 500;
    }

    /* ─── LOGOS ─────────────────────────────────── */
    .logos-band {
      border-top: 1px solid var(--grey-4);
      border-bottom: 1px solid var(--grey-4);
      background: var(--grey-5);
      padding: 32px 0;
      overflow: hidden;
    }

    .logos-label {
      text-align: center;
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--grey-3);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .ticker-wrap {
      overflow: hidden;
      position: relative;
    }

    .ticker-wrap::before,
    .ticker-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 1;
      pointer-events: none;
    }

    .ticker-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--grey-5), transparent);
    }

    .ticker-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--grey-5), transparent);
    }

    .ticker {
      display: flex;
      width: max-content;
      animation: ticker 85s linear infinite;
    }

    .ticker-group {
      display: flex;
      align-items: center;
      gap: 52px;
      padding-right: 52px;
    }

    .ticker:hover {
      animation-play-state: paused;
    }

    .ticker img {
      height: 22px;
      width: auto;
      opacity: 0.35;
      filter: grayscale(1);
      flex-shrink: 0;
      transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), filter 0.25s var(--ease-out);
    }

    .ticker img:hover {
      opacity: 0.85;
      filter: grayscale(0);
      transform: scale(1.08);
    }

    @keyframes ticker {
      0% {
        transform: translate3d(0, 0, 0);
      }

      100% {
        transform: translate3d(-50%, 0, 0);
      }
    }

    /* ─── PLATFORM SECTION (keep exact feel) ─────────────────── */
    .platform {
      background: linear-gradient(180deg, #1e4a9f 0%, #0d2a7c 40%, #0b2558 70%, #0a1e4d 100%);
      color: var(--white);
      padding: 110px 40px;
      position: relative;
    }

    .platform-inner {
      max-width: var(--max);
      margin: 0 auto;
    }

    h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      letter-spacing: -0.6px;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 12px;
    }

    .platform h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      letter-spacing: -0.6px;
      line-height: 1.15;
      color: var(--white) !important;
      margin-bottom: 12px;
    }

    .platform .section-tag {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.6) !important;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .platform .section-sub {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.8) !important;
      line-height: 1.7;
      max-width: 420px;
      font-weight: 400;
    }

    /* PERSONA TABS — static_beta premium style */
    .persona-tabs {
      display: inline-flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      padding: 4px;
      gap: 2px;
      margin: 36px 0 48px;
    }

    .ptab {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.7);
      padding: 8px 20px;
      border-radius: 6px;
      border: none;
      background: transparent;
      cursor: pointer;
      transition: all 0.25s var(--ease-out);
    }

    .ptab.active {
      background: var(--white);
      color: var(--blue);
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .ptab:hover:not(.active) {
      color: var(--white);
      background: rgba(255, 255, 255, 0.08);
    }

    .platform-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      min-height: 480px; /* Stabilizes section height during tab switching */
    }

    .platform-features {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .pf-item {
      display: flex;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      transition: padding-left 0.2s var(--ease-out);
      cursor: default;
    }

    .pf-item:first-child {
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .pf-item:hover {
      padding-left: 6px;
    }

    .pf-icon {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pf-icon svg {
      width: 18px;
      height: 18px;
    }

    .pf-text h4 {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 4px;
    }

    .pf-text p {
      font-size: 0.83rem;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.6;
    }

    /* dashboard preview panel */
    .dashboard-panel {
      background: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), 0 20px 40px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    }

    .dashboard-panel:hover {
      transform: translateY(-4px) scale(1.01);
      box-shadow: 0 45px 110px rgba(0, 0, 0, 0.5), 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .db-topbar {
      background: var(--grey-5);
      border-bottom: 1px solid var(--grey-4);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .db-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
    }

    .db-title {
      font-size: 0.72rem;
      color: var(--grey-2);
      margin-left: 4px;
    }

    .db-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      color: var(--ink);
    }

    .db-section-label {
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--grey-3);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .db-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid var(--grey-4);
      background: var(--white);
      transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
    }

    .db-card:hover {
      border-color: var(--blue);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(37, 99, 235, 0.06);
    }

    .db-av {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .db-lines {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .db-line {
      height: 7px;
      border-radius: 4px;
      background: var(--grey-4);
    }

    .db-line.short {
      width: 60%;
    }

    .db-chip {
      font-size: 0.65rem;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 4px;
      white-space: nowrap;
    }

    .db-chip.match {
      background: var(--blue-lt);
      color: var(--blue);
    }

    .db-chip.green {
      background: #ECFDF5;
      color: #059669;
    }

    .db-chip.amber {
      background: #FFFBEB;
      color: #D97706;
    }

    /* ─── FEATURES SECTION ─────────────────────── */
    .features {
      border-top: 1px solid var(--grey-4);
      padding: 92px 40px;
      background: var(--grey-5);
    }

    .features-inner {
      max-width: var(--max);
      margin: 0 auto;
    }

    .features-head {
      margin-bottom: 52px;
    }

    .feat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    /* First row: 2 wide cards */
    .feat-grid .wide {
      grid-column: span 2;
    }

    .feat-card {
      background: var(--white);
      border: 1px solid var(--grey-4);
      border-radius: 10px;
      padding: 28px 24px;
      transition: box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    }

    .feat-card:hover {
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
      border-color: var(--grey-3);
      transform: translateY(-4px);
    }

    .feat-ic {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: var(--blue-lt);
      color: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .feat-ic svg {
      width: 20px;
      height: 20px;
    }

    .feat-card h3 {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .feat-card p {
      font-size: 0.83rem;
      color: var(--grey-2);
      line-height: 1.65;
    }


    /* ─── TESTIMONIALS ─────────────────────────── */
    .testi {
      border-top: 1px solid var(--grey-4);
      padding: 92px 40px;
    }

    .testi-inner {
      max-width: var(--max);
      margin: 0 auto;
      position: relative;
    }

    .testi-head {
      margin-bottom: 48px;
    }

    .testi-slider-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
      margin: 40px 0 0;
    }

    .testi-slider-container {
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      /* Firefox */
      width: 100%;
      padding: 20px 0;
    }

    .testi-slider-container::-webkit-scrollbar {
      display: none;
      /* Chrome/Safari */
    }

    .testi-grid {
      display: flex;
      flex-wrap: nowrap;
      gap: 24px;
      padding: 0 10px;
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid rgba(15, 15, 15, 0.08);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--ink);
      transition: all 0.2s;
    }

    .slider-btn:hover {
      background: var(--grey-5);
      border-color: rgba(15, 15, 15, 0.15);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .prev-btn {
      left: -22px;
    }

    .next-btn {
      right: -22px;
    }

    .t-card {
      flex: 0 0 350px;
      width: 350px;
      padding: 28px 24px;
      border: 1px solid var(--grey-4);
      border-radius: 10px;
      background: var(--white);
      transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
    }

    .t-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
      border-color: var(--grey-3);
    }

    .t-stars {
      color: #F59E0B;
      font-size: 0.75rem;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }

    .t-quote {
      font-size: 0.88rem;
      color: var(--grey-1);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .t-person {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .t-photo {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      object-fit: cover;
    }

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

    .t-role {
      font-size: 0.75rem;
      color: var(--grey-3);
      margin-top: 1px;
    }

    /* ─── FAQ ──────────────────────────────────── */
    .faq {
      border-top: 1px solid var(--grey-4);
      background: var(--grey-5);
    }

    .faq-inner {
      max-width: 660px;
      margin: 0 auto;
      padding: 92px 40px;
    }

    .faq-head {
      margin-bottom: 44px;
    }

    .faq-item {
      border-bottom: 1px solid var(--grey-4);
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 0.92rem;
      font-weight: 400;
      color: var(--ink);
      text-align: left;
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color 0.15s;
    }

    .faq-q:hover {
      color: var(--blue);
    }

    .faq-ico {
      font-size: 1.2rem;
      color: var(--grey-3);
      flex-shrink: 0;
      font-weight: 300;
      transition: transform 0.25s var(--ease-out), color 0.25s var(--ease-out);
    }

    .faq-item.open .faq-ico {
      transform: rotate(45deg);
      color: var(--ink);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      font-size: 0.87rem;
      color: var(--grey-2);
      line-height: 1.75;
      transition: max-height 0.3s var(--ease-out), padding-bottom 0.3s var(--ease-out);
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding-bottom: 20px;
    }

    /* ─── CTA BANNER — clean minimalist style ── */
    .cta {
      border-top: 1px solid var(--grey-4);
      padding: 110px 40px;
      background: var(--white);
      text-align: center;
    }

    .cta .section-tag {
      color: var(--grey-2);
      margin-bottom: 14px;
      display: block;
    }

    .cta h2 {
      color: var(--ink);
      margin-bottom: 16px;
    }

    .cta .section-sub {
      color: var(--grey-2);
      margin: 0 auto 36px;
      max-width: 460px;
      line-height: 1.6;
    }

    .email-row {
      display: flex;
      gap: 8px;
      max-width: 420px;
      margin: 0 auto;
      flex-wrap: wrap;
      justify-content: center;
    }

    .email-row input {
      flex: 1;
      min-width: 200px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      padding: 12px 16px;
      border-radius: 7px;
      border: 1px solid var(--grey-4);
      background: var(--white);
      color: var(--ink);
      outline: none;
      transition: border-color 0.15s, box-shadow 0.15s;
    }

    .email-row input::placeholder {
      color: var(--grey-3);
    }

    .email-row input:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    }

    .email-row button {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 12px 24px;
      border-radius: 7px;
      background: var(--blue);
      color: var(--white);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: background-color 0.2s var(--ease-out), transform 0.15s var(--ease-out), box-shadow 0.2s var(--ease-out);
    }

    .email-row button::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.25s var(--ease-out);
      z-index: 1;
      background: radial-gradient(circle 50px at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.25), transparent 80%);
    }

    .email-row button:hover::before {
      opacity: 1;
    }

    .email-row button:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    }

    .email-row button:active {
      transform: scale(0.96) !important;
    }

    .email-row button span {
      position: relative;
      z-index: 2;
    }

    .form-note {
      font-size: 0.78rem;
      margin-top: 12px;
      min-height: 18px;
      color: transparent;
    }

    .form-note.ok {
      color: #059669;
    }

    .form-note.err {
      color: #dc2626;
    }

    /* ─── FOOTER ───────────────────────────────── */
    footer {
      border-top: 1px solid var(--grey-4);
      padding: 56px 40px 40px;
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 44px;
    }

    .f-brand p {
      font-size: 0.84rem;
      color: var(--grey-2);
      line-height: 1.65;
      margin-top: 10px;
      max-width: 230px;
    }

    .f-col h4 {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 14px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .f-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .f-col a {
      font-size: 0.84rem;
      color: var(--grey-2);
      text-decoration: none;
      transition: color 0.15s;
    }

    .f-col a:hover {
      color: var(--ink);
    }

    .footer-bottom {
      border-top: 1px solid var(--grey-4);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
      color: var(--grey-3);
      flex-wrap: wrap;
      gap: 8px;
    }

    .footer-bottom a {
      color: var(--grey-3);
      text-decoration: none;
      transition: color 0.15s;
    }

    .footer-bottom a:hover {
      color: var(--ink);
    }

    @media (max-width: 900px) {
      .platform-body {
        grid-template-columns: 1fr;
        min-height: auto; /* Reset fixed height on mobile */
      }

      .dashboard-panel {
        display: none;
      }

      .feat-grid {
        grid-template-columns: 1fr 1fr;
      }

      .feat-grid .wide {
        grid-column: span 2;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 600px) {
      .nav-inner {
        padding: 0 20px;
      }

      .nav-links li:not(:last-child) {
        display: none;
      }

      .hero,
      .platform,
      .features,
      .testi,
      .cta,
      .faq-inner,
      footer {
        padding-left: 20px;
        padding-right: 20px;
      }

      h1 {
        letter-spacing: -1px;
      }

      .feat-grid {
        grid-template-columns: 1fr;
      }

      .t-card {
        flex: 0 0 290px;
        width: 290px;
      }

      .prev-btn {
        left: -10px;
      }

      .next-btn {
        right: -10px;
      }

      .feat-grid .wide {
        grid-column: span 1;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }

      .cta-inner {
        padding: 48px 24px;
      }

      .hero-proof {
        gap: 20px;
      }

      .proof-divider {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .ticker {
        animation: none;
      }
    }

    /* ─── GLOBAL REVEAL ANIMATIONS ────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
      will-change: opacity, transform;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── EARLY ACCESS MODAL STYLING ───────────────── */
    .ea-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.45);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .ea-modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .ea-modal-card {
      background: var(--white);
      border-radius: 16px;
      padding: 40px;
      max-width: 520px;
      width: 90%;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.05);
      position: relative;
      transform: scale(0.92) translateY(10px);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .ea-modal-overlay.active .ea-modal-card {
      transform: scale(1) translateY(0);
    }

    .ea-modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--grey-5);
      border: none;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 1.25rem;
      color: var(--grey-2);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s;
    }

    .ea-modal-close:hover {
      background: var(--grey-4);
      color: var(--ink);
    }

    .ea-modal-header {
      text-align: center;
      margin-bottom: 28px;
    }

    .ea-modal-icon {
      font-size: 2rem;
      margin-bottom: 12px;
      display: inline-block;
      animation: spinTwinkle 2.5s ease-in-out infinite alternate;
    }

    @keyframes spinTwinkle {
      0% { transform: scale(0.9) rotate(-10deg); filter: drop-shadow(0 0 2px rgba(245, 158, 11, 0)); }
      100% { transform: scale(1.1) rotate(10deg); filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6)); }
    }

    .ea-modal-header h2 {
      font-family: var(--font-hero-main);
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .ea-modal-header p {
      font-size: 0.9rem;
      color: var(--grey-2);
      line-height: 1.5;
    }

    .ea-role-selector {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 24px;
    }

    .ea-role-option {
      cursor: pointer;
    }

    .ea-role-box {
      border: 1px solid var(--grey-4);
      border-radius: 10px;
      padding: 16px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: all 0.25s var(--ease-out);
      background: var(--white);
    }

    .ea-role-option input:checked + .ea-role-box {
      border-color: var(--blue);
      background: var(--blue-lt);
      box-shadow: 0 0 0 1px var(--blue);
    }

    .role-icon {
      font-size: 1.5rem;
      margin-bottom: 8px;
    }

    .ea-role-box strong {
      font-size: 0.85rem;
      color: var(--ink);
      margin-bottom: 4px;
      display: block;
    }

    .ea-role-box span {
      font-size: 0.72rem;
      color: var(--grey-2);
      line-height: 1.3;
    }

    .ea-input-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ea-input-group input {
      padding: 12px 16px;
      border: 1px solid var(--grey-4);
      border-radius: 8px;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s;
    }

    .ea-input-group input:focus {
      border-color: var(--blue);
    }

    .ea-success-state {
      text-align: center;
      padding: 20px 0;
    }

    .success-check {
      font-size: 3rem;
      margin-bottom: 16px;
    }

    .ea-success-state h3 {
      font-size: 1.4rem;
      margin-bottom: 8px;
      color: var(--ink);
    }

    .ea-success-state p {
      font-size: 0.92rem;
      color: var(--grey-2);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .ea-perks-list {
      margin-bottom: 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .ea-perk-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      text-align: left;
    }
    
    .perk-bullet {
      font-size: 1.25rem;
      background: var(--blue-lt);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .perk-content strong {
      display: block;
      font-size: 0.95rem;
      color: var(--ink);
      margin-bottom: 4px;
    }
    
    .perk-content span {
      font-size: 0.85rem;
      color: var(--grey-2);
      line-height: 1.4;
    }
    
    .ea-modal-actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }