/* IPK Site v12 - Left-aligned, hero clipped, edge-to-edge */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html, body {
      font-family: 'Sora', sans-serif;
      background: linear-gradient(63.29deg, #000000 0.08%, #3F3F3F 99.92%);
      color: #F5F5F5;
      min-height: 100vh;
    }

    .page {
      width: 1440px;
      max-width: 100%;
      min-height: 1024px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    /* Nav: edge to edge, 28px padding inside */
    .nav {
      position: absolute;
      left: 0; right: 0; top: 20px;
      height: 70px;
      background: #000;
      border-radius: 5px;
      box-shadow: -10px 10px 20px rgba(0,0,0,0.4);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 28px;
    }
    .nav-left { display: flex; align-items: center; gap: 14px; text-decoration: none; }
    .nav-logo { height: 30px; width: 77px; object-fit: contain; }
    .nav-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }
    .nav-tagline { font-weight: 700; font-size: 20px; color: rgba(255,255,255,0.6); white-space: nowrap; }
    .nav-cta { font-weight: 700; font-size: 14px; color: #415DFF; text-decoration: none; white-space: nowrap; }
    .nav-cta:hover { opacity: 0.8; }

    /* Ghost arrow: aligned to left content edge */
    .ghost-arrow {
      position: absolute; left: 0; top: 0;
      width: 150px; height: 300px;
      pointer-events: none; opacity: 0.08;
    }

    /* Hero image: right side, clipped at page edge */
    .hero-img {
      position: absolute;
      right: 0; top: -20px;
      width: 700px; height: auto;
      mix-blend-mode: screen;
      pointer-events: none;
    }

    /* Hero text: starts at left edge */
    .hero-text {
      position: absolute; left: 28px; top: 220px; width: 540px;
    }
    .hero-arrow {
      position: absolute; left: 0; top: 0; width: 10px; height: 20px;
    }
    .hero-copy { padding-left: 22px; font-weight: 200; }
    .hero-sub { font-size: 22px; line-height: 28px; color: rgba(255,255,255,0.6); white-space: pre; }
    .hero-h1 { font-size: 32px; line-height: 1.2; color: #fff; white-space: pre; }
    .hero-h1 .lime { color: #A0EA00; }
    .cursor {
      display: inline-block; width: 2px; height: 0.82em;
      background: rgba(255,255,255,0.3); margin-left: 3px;
      vertical-align: middle; animation: blink 1.2s step-end infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

    /* Description: full width minus small padding */
    .description {
      position: absolute; left: 28px; top: 510px;
      width: calc(100% - 56px);
      font-weight: 300; font-size: 18px; line-height: 24px;
      color: #fff; text-align: center;
    }

    /* Stat divider lines: evenly across full width */
    .stat-line { position: absolute; top: 608px; width: 2px; height: 150px; background: #000; }
    .stat-line-1 { left: 0; }
    .stat-line-2 { left: 33.33%; }
    .stat-line-3 { left: 66.66%; }
    .stat-line-4 { right: 0; }

    /* Stat blocks: 3 equal columns */
    .stat-block { position: absolute; top: 618px; width: 33.33%; text-align: center; }
    .stat-block-1 { left: 0; }
    .stat-block-2 { left: 33.33%; }
    .stat-block-3 { left: 66.66%; }

    .stat-num { font-weight: 700; font-size: 48px; line-height: 60px; color: #F5F5F5; }
    .stat-num sup { font-size: 25.8px; vertical-align: super; }
    .stat-label { font-weight: 700; font-size: 20px; line-height: 28px; color: #A0EA00; }
    .stat-label .brace { color: #A0EA00; } .stat-label .txt { color: #F5F5F5; }
    .stat-desc { font-weight: 300; font-size: 16px; line-height: 24px; color: rgba(245,245,245,0.6); text-align: center; }

    /* CTA: centered */
    .cta-wrap {
      position: absolute; left: 50%; top: 868px;
      transform: translateX(-50%);
      width: 200px; height: 40px;
    }
    .cta-btn {
      display: flex; align-items: center; justify-content: center;
      width: 200px; height: 40px; background: #415DFF; border-radius: 5px;
      font-weight: 700; font-size: 14px; color: #fff; text-decoration: none;
    }
    .cta-btn:hover { opacity: 0.85; }

    /* Footer: centered */
    .footer {
      position: absolute; left: 50%; top: 958px;
      transform: translateX(-50%);
      white-space: nowrap;
      font-weight: 200; font-size: 12px; line-height: 28px;
      color: #fff; text-align: center;
    }
    .footer a { color: inherit; text-decoration: none; }
    .footer a:hover { text-decoration: underline; }


/* ============================================================
   MOBILE RESPONSIVE — screens 768px and below
   Desktop rules above are completely untouched.
   ============================================================ */
@media (max-width: 768px) {

  .page {
    position: static;
    width: 100%;
    min-height: unset;
    overflow: visible;
    display: flex;
    flex-direction: column;
    padding-bottom: 48px;
  }

  /* 1 — Nav stays at the very top */
  .nav {
    position: static;
    width: 100%;
    height: 60px;
    border-radius: 0;
    padding: 0 18px;
    flex-shrink: 0;
    order: 1;
  }
  .nav-tagline { font-size: 13px; }

  /* 2 — Hero image sits directly below nav */
  .hero-img {
    position: static;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    mix-blend-mode: screen;
    pointer-events: none;
    order: 2;
  }

  .ghost-arrow { display: none; }

  /* 3 — Hero text */
  .hero-text {
    position: static;
    width: 100%;
    padding: 20px 18px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    order: 3;
    margin-bottom: 16px;
  }
  .hero-arrow { position: static; flex-shrink: 0; margin-top: 5px; }
  .hero-copy { padding-left: 0; flex: 1; }
  .hero-sub { white-space: normal; font-size: clamp(14px, 4vw, 20px); line-height: 1.45; }
  .hero-h1 { white-space: normal; font-size: clamp(19px, 5.5vw, 30px); line-height: 1.25; }

  /* 4 — Description */
  .description {
    position: static;
    width: 100%;
    padding: 8px 18px 0;
    font-size: clamp(13px, 3.8vw, 17px);
    line-height: 1.55;
    text-align: left;
    order: 4;
  }
  .description span[style*="padding-left"] { padding-left: 0 !important; }

  .stat-line { display: none; }

  /* 5, 6, 7 — Stat blocks stacked */
  .stat-block,
  .stat-block-1,
  .stat-block-2,
  .stat-block-3 {
    position: static;
    width: 100%;
    left: auto;
    top: auto;
    padding: 28px 18px 0;
    text-align: center;
  }
  .stat-block-1 { order: 5; }
  .stat-block-2 { order: 6; }
  .stat-block-3 { order: 7; }

  .stat-num { font-size: clamp(36px, 13vw, 60px); line-height: 1.1; }
  .stat-num sup { font-size: clamp(18px, 6vw, 30px); }
  .stat-label { font-size: clamp(14px, 4.5vw, 20px); line-height: 1.4; margin-top: 4px; }
  .stat-desc { font-size: clamp(12px, 3.5vw, 15px); line-height: 1.5; margin-top: 6px; }

  /* 8 — CTA */
  .cta-wrap {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 36px 18px 0;
    order: 8;
  }
  .cta-btn { width: 200px; height: 44px; font-size: 15px; }

  /* 9 — Footer */
  .footer {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    white-space: normal;
    margin-top: 32px;
    padding: 0 18px;
    font-size: 12px;
    text-align: center;
    order: 9;
  }
}

/* Extra-small phones (400px and below, e.g. iPhone SE) */
@media (max-width: 400px) {
  .stat-num { font-size: clamp(28px, 15vw, 44px); }
  .nav-tagline, .nav-divider { display: none; }
}