/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════════ */
    :root {
      --brand: #8327D2;
      --brand-dark: #6A1FB0;
      --brand-deep: #510F92;
      --brand-light: #9F45E8;
      --brand-pale: #F3EAFD;
      --brand-soft: #EAD8FA;
      --brand-mid: #C598F0;
      --surface: #FFFFFF;
      --canvas: #F9F7FD;
      --canvas-alt: #F2EEF9;
      --border: #E6DFF5;
      --border-soft: #EDE8F6;
      --ink-900: #0F0B1A;
      --ink-700: #2D2240;
      --ink-500: #5E4D78;
      --ink-400: #8474A0;
      --ink-300: #B0A2C8;
      --ink-200: #D7CEED;
      --ink-100: #EDE8F6;
      --success: #12B76A;
      --warning: #F79009;
      --danger: #F04438;
      --ff-heading: 'Sora', sans-serif;
      --ff-body: 'DM Sans', sans-serif;
      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 16px;
      --r-xl: 24px;
      --r-full: 999px;
      --shadow-sm: 0 2px 8px rgba(131, 39, 210, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 20px rgba(131, 39, 210, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 12px 48px rgba(131, 39, 210, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    /* ═══════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--ff-body);
      background: var(--canvas);
      color: var(--ink-700);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--canvas);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--ink-200);
      border-radius: 99px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--brand-mid);
    }

    /* ═══════════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════════════ */
    h1,
    h2,
    h3,
    h4 {
      font-family: var(--ff-heading);
      color: var(--ink-900);
      letter-spacing: -0.025em;
      line-height: 1.15;
    }

    h1 {
      font-size: clamp(2.4rem, 5.5vw, 4.2rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.75rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.75rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    h4 {
      font-size: 0.9375rem;
      font-weight: 600;
    }

    p {
      color: var(--ink-500);
      font-size: 1rem;
      line-height: 1.7;
    }

    .grad-text {
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
    }

    /* ═══════════════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════════════ */
    .container {
      /* max-width: 1200px;
                margin-inline: auto;
                padding-inline: clamp(1.25rem, 4vw, 5rem); */
      max-width: 1600px;
      margin-inline: auto;
      padding: 0 100px 0 100px;
    }

    @media (max-width: 560px) {
      .container {
        /* max-width: 1200px; */
        margin-inline: auto;
        /* padding-inline: clamp(1.25rem, 4vw, 5rem); */
        padding: 0 20px 0 20px;
      }
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      border-radius: var(--r-full);
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      font-family: var(--ff-heading);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--brand-dark);
    }

    .grid-bg {
      background-image:
        linear-gradient(rgba(131, 39, 210, 0.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(131, 39, 210, 0.038) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.9rem 2rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      outline: none;
      transition: all 0.22s ease;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 4px 20px rgba(131, 39, 210, 0.38);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(131, 39, 210, 0.48);
    }

    .btn-outline {
      background: transparent;
      color: var(--ink-700);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--brand-mid);
      color: var(--brand);
      background: var(--brand-pale);
    }

    /* ═══════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════ */
    @keyframes floatA {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-10px)
      }
    }

    @keyframes floatB {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(8px)
      }
    }

    @keyframes floatC {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-6px)
      }
    }

    @keyframes marquee {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    @keyframes spin-cw {
      from {
        transform: rotate(0deg)
      }

      to {
        transform: rotate(360deg)
      }
    }

    @keyframes spin-ccw {
      from {
        transform: rotate(0deg)
      }

      to {
        transform: rotate(-360deg)
      }
    }

    @keyframes pulseRing {
      0% {
        transform: scale(0.8);
        opacity: 0.6;
      }

      100% {
        transform: scale(1.5);
        opacity: 0;
      }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-d1 {
      transition-delay: 0.1s;
    }

    .reveal-d2 {
      transition-delay: 0.2s;
    }

    .reveal-d3 {
      transition-delay: 0.3s;
    }

    .reveal-d4 {
      transition-delay: 0.4s;
    }

    /* ═══════════════════════════════════════════════════
   MOCKUP FRAME
════════════════════════════════════════════════════ */
    .mockup-frame {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg), 0 0 0 1px rgba(131, 39, 210, 0.04);
    }

    .mockup-bar {
      background: var(--ink-900);
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mockup-bar-title {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.38);
      margin-left: 8px;
    }

    .dot-r {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #FF5F57;
    }

    .dot-y {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #FFBD2E;
    }

    .dot-g {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #28CA41;
    }

    .mockup-body {
      padding: 1.25rem;
      background: var(--canvas);
    }

    /* Float badge */
    .float-badge {
      position: absolute;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      padding: 0.7rem 1rem;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 10;
    }

    .float-badge .fb-icon {
      width: 28px;
      height: 28px;
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .float-badge .fb-val {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1;
    }

    .float-badge .fb-sub {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 500;
      color: var(--ink-400);
      margin-top: 2px;
    }

    /* ═══════════════════════════════════════════════════
   STAT PILL
════════════════════════════════════════════════════ */
    .stat-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border-radius: var(--r-full);
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      box-shadow: var(--shadow-sm);
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--ink-700);
    }

    /* ═══════════════════════════════════════════════════
   SECTION COMMON
════════════════════════════════════════════════════ */
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .section-header .chip {
      margin-bottom: 1rem;
    }

    .section-header h2 {
      max-width: 600px;
      margin-inline: auto;
      margin-bottom: 1rem;
    }

    .section-header p {
      max-width: 500px;
      margin-inline: auto;
      font-size: 1.0625rem;
      line-height: 1.75;
    }

    /* Feature bullet */
    .feat-bullet {
      display: flex;
      align-items: flex-start;
      gap: 0.875rem;
    }

    .feat-bullet-icon {
      width: 26px;
      height: 26px;
      border-radius: var(--r-sm);
      background: var(--brand-pale);
      color: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .feat-bullet-text h4 {
      font-size: 0.9375rem;
      margin-bottom: 0.2rem;
    }

    .feat-bullet-text p {
      font-size: 0.875rem;
    }

    /* Learn more link */
    .feat-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--ff-heading);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--brand);
      transition: gap 0.2s;
    }

    .feat-link:hover {
      gap: 10px;
      color: var(--brand-dark);
    }

    /* ═══════════════════════════════════════════════════
   ░░░  HERO SECTION  ░░░
════════════════════════════════════════════════════ */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 7rem 0 5rem;
      background: linear-gradient(160deg, #F9F7FD 0%, #EEE6FC 48%, #F9F7FD 100%);
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(131, 39, 210, 0.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(131, 39, 210, 0.038) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 90% 75% at 50% 0%, black 0%, transparent 75%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.11) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .hero-inner .chip {
      margin-bottom: 1.5rem;
    }

    .hero-inner h1 {
      max-width: 820px;
      margin-bottom: 1.25rem;
    }

    .hero-desc {
      font-size: 1.0625rem;
      line-height: 1.8;
      max-width: 580px;
      margin-bottom: 2rem;
    }

    .hero-btns {
      display: flex;
      gap: 0.875rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 1.75rem;
    }

    .hero-trust {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 3.5rem;
    }

    /* Hero mockup */
    .hero-mockup-wrap {
      position: relative;
      width: 100%;
      max-width: 900px;
    }

    .hero-mockup-wrap .mockup-frame {
      animation: floatA 7s ease-in-out infinite;
    }

    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .hero-stat {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      padding: 0.875rem 1rem;
    }

    .hero-stat.accent {
      background: var(--brand-pale);
      border-color: var(--brand-soft);
    }

    .hero-stat-label {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--ink-400);
      margin-bottom: 4px;
    }

    .hero-stat.accent .hero-stat-label {
      color: var(--brand);
    }

    .hero-stat-val {
      font-family: var(--ff-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1;
    }

    .hero-stat.accent .hero-stat-val {
      color: var(--ink-900);
    }

    .hero-stat-delta {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--success);
      margin-top: 3px;
    }

    .hero-stat.accent .hero-stat-delta {
      color: var(--brand);
    }

    .hero-bottom-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 0.75rem;
    }

    .hero-chart-box {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      padding: 1rem;
    }

    .hero-chart-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem;
    }

    .hero-chart-title {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--ink-700);
    }

    .hero-chart-badge {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: var(--r-full);
      background: rgba(18, 183, 106, 0.1);
      color: var(--success);
    }

    .hero-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 56px;
    }

    .hero-bar-col {
      flex: 1;
      border-radius: 3px 3px 0 0;
    }

    .hero-bar-col.lo {
      background: var(--brand-soft);
    }

    .hero-bar-col.hi {
      background: var(--brand);
    }

    .hero-days {
      display: flex;
      justify-content: space-between;
      margin-top: 5px;
    }

    .hero-days span {
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      color: var(--ink-300);
    }

    .hero-activity {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      padding: 1rem;
    }

    .hero-activity-title {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--ink-700);
      margin-bottom: 0.75rem;
    }

    .activity-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }

    .activity-row:last-child {
      margin-bottom: 0;
    }

    .activity-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      font-weight: 700;
      color: #fff;
    }

    .activity-info {
      flex: 1;
    }

    .activity-name {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--ink-700);
    }

    .activity-sub {
      font-size: 0.625rem;
      color: var(--ink-400);
    }

    .activity-time {
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      color: var(--ink-300);
    }

    /* ═══════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════════ */
    .marquee-section {
      background: var(--surface);
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
      padding: 1.5rem 0;
      overflow: hidden;
    }

    .marquee-label {
      text-align: center;
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-300);
      margin-bottom: 1rem;
    }

    .marquee-track-wrap {
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      gap: 3rem;
      animation: marquee 30s linear infinite;
      white-space: nowrap;
      min-width: max-content;
    }

    .marquee-track:hover {
      animation-play-state: paused;
    }

    .marquee-item {
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--ink-300);
      transition: color 0.2s;
      cursor: default;
    }

    .marquee-item:hover {
      color: var(--brand);
    }

    /* ═══════════════════════════════════════════════════
   ORBIT / MISSION
════════════════════════════════════════════════════ */
    .orbit-section {
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #F9F7FD 0%, #EEE6FC 50%, #F9F7FD 100%);
    }

    .orbit-section::before {
      content: '';
      position: absolute;
      top: -50px;
      left: -200px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .orbit-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    /* Orbit illustration */
    .orbit-visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .orbit-wrap {
      position: relative;
      width: 340px;
      height: 340px;
    }

    .orbit-ring-outer {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 2px dashed rgba(131, 39, 210, 0.2);
      animation: spin-cw 20s linear infinite;
    }

    .orbit-ring-inner {
      position: absolute;
      inset: 44px;
      border-radius: 50%;
      border: 1px dashed rgba(131, 39, 210, 0.14);
      animation: spin-ccw 15s linear infinite;
    }

    .orbit-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 112px;
      height: 112px;
      border-radius: 28px;
      background: linear-gradient(135deg, var(--brand), var(--brand-light));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 16px 48px rgba(131, 39, 210, 0.38);
      color: #fff;
    }

    .orbit-center span {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      margin-top: 6px;
    }

    /* Outer orbit icons */
    .orbit-icon {
      position: absolute;
      width: 44px;
      height: 44px;
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-sm);
    }

    .oi-top {
      top: -22px;
      left: 50%;
      transform: translateX(-50%);
    }

    .oi-bottom {
      bottom: -22px;
      left: 50%;
      transform: translateX(-50%);
    }

    .oi-left {
      left: -22px;
      top: 50%;
      transform: translateY(-50%);
    }

    .oi-right {
      right: -22px;
      top: 50%;
      transform: translateY(-50%);
    }

    /* Inner orbit icons */
    .orbit-icon-sm {
      position: absolute;
      width: 36px;
      height: 36px;
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ois-top {
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
    }

    .ois-bottom {
      bottom: -18px;
      left: 50%;
      transform: translateX(-50%);
    }

    /* Pillar cards grid */
    .pillar-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .pillar-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
    }

    .pillar-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .pillar-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .pillar-card h4 {
      font-size: 0.9375rem;
    }

    .pillar-card p {
      font-size: 0.8125rem;
      line-height: 1.6;
    }

    /* ═══════════════════════════════════════════════════
   FEATURE SHOWCASE (Sidebar + Stacked)
════════════════════════════════════════════════════ */
    .showcase-section {
      background: var(--surface);
      padding: 5rem 0 0;
    }

    .showcase-layout {
      display: flex;
      gap: 3.5rem;
    }

    /* Sidebar */
    .showcase-sidebar {
      width: 200px;
      flex-shrink: 0;
    }

    .sidebar-sticky {
      position: sticky;
      top: 7rem;
    }

    .sidebar-eyebrow {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--ink-300);
      padding: 0 1rem;
      margin-bottom: 0.75rem;
    }

    .sidebar-link {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--ink-400);
      cursor: pointer;
      border-left: 2.5px solid transparent;
      transition: all 0.2s;
      margin-bottom: 2px;
      text-decoration: none;
    }

    .sidebar-link:hover {
      color: var(--brand);
      background: var(--brand-pale);
    }

    .sidebar-link.active {
      color: var(--brand);
      background: var(--brand-pale);
      border-left-color: var(--brand);
    }

    .sidebar-link .sdot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ink-200);
      flex-shrink: 0;
      transition: background 0.2s;
    }

    .sidebar-link.active .sdot {
      background: var(--brand);
    }

    /* Feature Blocks */
    .showcase-blocks {
      flex: 1;
      min-width: 0;
    }

    .feat-block {
      padding: 5rem 0;
      border-bottom: 1px solid var(--border-soft);
      scroll-margin-top: 7rem;
    }

    .feat-block:last-child {
      border-bottom: none;
      padding-bottom: 7rem;
    }

    .feat-block-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .feat-block-inner.reverse {
      direction: rtl;
    }

    .feat-block-inner.reverse>* {
      direction: ltr;
    }

    .feat-content .chip {
      margin-bottom: 1.25rem;
    }

    .feat-content h3 {
      margin-bottom: 1rem;
    }

    .feat-content>p {
      font-size: 1.0625rem;
      line-height: 1.75;
      margin-bottom: 1.75rem;
    }

    .feat-bullets-list {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      margin-bottom: 1.75rem;
    }

    /* Screenshot panel */
    .feat-visual {
      position: relative;
    }

    /* ═══════════════════════════════════════════════════
   MINI UI ELEMENTS (used inside screenshots)
════════════════════════════════════════════════════ */
    .mini-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      padding: 2px 8px;
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 700;
    }

    .badge-green {
      background: rgba(18, 183, 106, 0.1);
      color: var(--success);
    }

    .badge-orange {
      background: rgba(247, 144, 9, 0.1);
      color: var(--warning);
    }

    .badge-purple {
      background: var(--brand-pale);
      color: var(--brand);
    }

    .badge-red {
      background: rgba(240, 68, 56, 0.1);
      color: var(--danger);
    }

    .mini-row {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--surface);
      border: 1px solid var(--border-soft);
      border-radius: var(--r-md);
      padding: 8px 10px;
    }

    .mini-row-text {
      flex: 1;
    }

    .mini-row-name {
      font-family: var(--ff-heading);
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--ink-700);
    }

    .mini-row-sub {
      font-size: 0.65rem;
      color: var(--ink-400);
    }

    .mini-stat-box {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-md);
      padding: 0.75rem 0.875rem;
    }

    .mini-stat-val {
      font-family: var(--ff-heading);
      font-size: 1.375rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1;
    }

    .mini-stat-label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 600;
      color: var(--ink-400);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 4px;
    }

    .progress-track {
      background: var(--border-soft);
      border-radius: var(--r-full);
      height: 6px;
      flex: 1;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      border-radius: var(--r-full);
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
    }

    /* ═══════════════════════════════════════════════════
   DARK STATS SECTION
════════════════════════════════════════════════════ */
    .dark-stats {
      background: var(--ink-900);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .dark-stats::before {
      content: '';
      position: absolute;
      top: -180px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.22) 0%, transparent 65%);
      pointer-events: none;
    }

    .dark-stats::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 30px 30px;
      pointer-events: none;
    }

    .dark-stats-inner {
      position: relative;
      z-index: 1;
    }

    .dark-stats-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .dark-stats-header .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(197, 152, 240, 0.25);
      background: rgba(131, 39, 210, 0.1);
      border-radius: var(--r-full);
      padding: 5px 16px;
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand-mid);
      margin-bottom: 1rem;
    }

    .dark-stats-header h2 {
      color: #fff;
      max-width: 560px;
      margin-inline: auto;
    }

    .dark-stats-header h2 em {
      font-style: normal;
      color: var(--brand-mid);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      padding: 1.75rem;
      text-align: center;
      transition: background 0.25s, border-color 0.25s;
    }

    .stat-card:hover {
      background: rgba(131, 39, 210, 0.18);
      border-color: rgba(197, 152, 240, 0.35);
    }

    .stat-num {
      font-family: var(--ff-heading);
      font-size: 2.5rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }

    .stat-num em {
      font-style: normal;
      color: var(--brand-mid);
    }

    .stat-label {
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 6px;
    }

    /* ═══════════════════════════════════════════════════
   MOBILE APP SECTION
════════════════════════════════════════════════════ */
    .mobile-section {
      padding: 7rem 0;
      background: var(--canvas);
    }

    .mobile-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .mobile-header .chip {
      margin-bottom: 1rem;
    }

    .mobile-header h2 {
      max-width: 520px;
      margin-inline: auto;
      margin-bottom: 1rem;
    }

    .mobile-header p {
      max-width: 460px;
      margin-inline: auto;
      font-size: 1.0625rem;
      line-height: 1.75;
    }

    .phones-row {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 1.25rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    .phone-card {
      width: 145px;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      flex-shrink: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .phone-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    .phone-card.featured {
      width: 170px;
      transform: translateY(-1.25rem);
      border: 2px solid var(--brand);
      box-shadow: 0 20px 60px rgba(131, 39, 210, 0.28);
    }

    .phone-card.featured:hover {
      transform: translateY(-2.25rem);
    }

    .phone-notch {
      height: 26px;
      background: var(--ink-900);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 4px;
    }

    .phone-notch-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #1a1025;
    }

    .phone-screen {
      padding: 0.875rem;
      min-height: 240px;
      background: var(--canvas);
    }

    .phone-screen-title {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--ink-900);
    }

    .phone-screen-sub {
      font-size: 0.6rem;
      color: var(--ink-400);
      font-family: var(--ff-heading);
    }

    .phone-mini-stat {
      background: var(--surface);
      border-radius: var(--r-sm);
      padding: 6px 8px;
      margin-top: 6px;
    }

    .phone-mini-val {
      font-family: var(--ff-heading);
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--ink-900);
    }

    .phone-mini-label {
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      color: var(--ink-400);
    }

    .phone-bars {
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 36px;
      margin-top: 8px;
    }

    .phone-bar {
      flex: 1;
      border-radius: 2px 2px 0 0;
    }

    .phone-bar.lo {
      background: var(--brand-pale);
    }

    .phone-bar.hi {
      background: var(--brand);
    }

    .phone-mini-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-top: 6px;
    }

    .phone-mini-item {
      display: flex;
      align-items: center;
      gap: 5px;
      background: var(--surface);
      border-radius: var(--r-sm);
      padding: 4px 6px;
    }

    .phone-mini-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .phone-mini-text {
      font-family: var(--ff-heading);
      font-size: 0.6rem;
      font-weight: 600;
      color: var(--ink-700);
    }

    .phone-bottom {
      height: 4px;
      background: var(--border-soft);
    }

    .phone-card.featured .phone-bottom {
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
      height: 5px;
    }

    .app-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .app-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.875rem 1.5rem;
      background: var(--ink-900);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--r-md);
      transition: background 0.2s, transform 0.2s;
      text-decoration: none;
    }

    .app-btn:hover {
      background: #1a1025;
      transform: translateY(-2px);
    }

    .app-btn-icon {
      color: #fff;
      flex-shrink: 0;
    }

    .app-btn-small {
      display: block;
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: rgba(255, 255, 255, 0.5);
    }

    .app-btn-large {
      display: block;
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
    }

    /* ═══════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════ */
    .faq-section {
      padding: 7rem 0;
      background: var(--canvas-alt);
    }

    .faq-inner {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 4.5rem;
      align-items: start;
    }

    .faq-left {
      position: sticky;
      top: 6.5rem;
    }

    .faq-left .chip {
      margin-bottom: 1rem;
    }

    .faq-left h2 {
      margin-bottom: 1rem;
      font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    }

    .faq-left>p {
      margin-bottom: 2rem;
    }

    .faq-contact-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      box-shadow: var(--shadow-sm);
    }

    .faq-contact-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--r-md);
      background: var(--brand-pale);
      color: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .faq-contact-title {
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--ink-900);
    }

    .faq-contact-link {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--brand);
      margin-top: 2px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .faq-item {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      overflow: hidden;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .faq-item.open {
      border-color: var(--brand-soft);
      box-shadow: var(--shadow-sm);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      user-select: none;
    }

    .faq-num {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 800;
      color: var(--brand);
      background: var(--brand-pale);
      width: 28px;
      height: 28px;
      border-radius: var(--r-sm);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .faq-text {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--ink-900);
      flex: 1;
      transition: color 0.2s;
    }

    .faq-item.open .faq-text {
      color: var(--brand-dark);
    }

    .faq-chevron {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--canvas) !important;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      color: var(--ink-400) !important;
      transition: background 0.2s, color 0.2s, transform 0.35s ease;
    }

    .faq-item.open .faq-chevron {
      background: var(--brand) !important;
      color: #fff !important;
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.open .faq-answer {
      max-height: 400px;
    }

    .faq-answer-inner {
      padding: 0 1.5rem 1.5rem 1.5rem;
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--ink-500);
    }

    .faq-answer-inner p {
      font-size: 0.9375rem;
      line-height: 1.7;
    }

    /* ═══════════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════════════ */
    .cta-section {
      background: var(--ink-900);
      padding: 7rem 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.26) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .cta-content .eyebrow-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(197, 152, 240, 0.25);
      background: rgba(131, 39, 210, 0.1);
      border-radius: var(--r-full);
      padding: 5px 16px;
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand-mid);
      margin-bottom: 1.5rem;
    }

    .cta-content h2 {
      color: #fff;
      max-width: 480px;
      margin-bottom: 1.25rem;
    }

    .cta-content p {
      color: rgba(255, 255, 255, 0.55);
      font-size: 1.0625rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .cta-btns {
      display: flex;
      gap: 0.875rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .btn-cta-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.9375rem 2rem;
      border-radius: var(--r-md);
      background: #fff;
      color: var(--brand-deep);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      transition: all 0.22s;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
      text-decoration: none;
    }

    .btn-cta-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
    }

    .btn-cta-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.9375rem 2rem;
      border-radius: var(--r-md);
      background: rgba(255, 255, 255, 0.07);
      color: rgba(255, 255, 255, 0.85);
      border: 1.5px solid rgba(255, 255, 255, 0.13);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      transition: all 0.22s;
      text-decoration: none;
    }

    .btn-cta-ghost:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .cta-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .cta-trust-item {
      display: flex;
      align-items: center;
      gap: 5px;
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.38);
    }

    /* CTA Device */
    .cta-device-wrap {
      position: relative;
    }

    .cta-device {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    }

    .cta-device-bar {
      background: rgba(255, 255, 255, 0.04);
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .cta-device-bar-title {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.3);
      margin-left: 8px;
    }

    .cta-device-body {
      padding: 1.5rem;
    }

    .cta-welcome {
      font-family: var(--ff-heading);
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: rgba(255, 255, 255, 0.38);
      margin-bottom: 4px;
    }

    .cta-name {
      font-family: var(--ff-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.25rem;
    }

    .cta-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .cta-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: var(--r-md);
      padding: 0.875rem;
      transition: background 0.2s;
    }

    .cta-card:hover {
      background: rgba(131, 39, 210, 0.18);
    }

    .cta-card-icon {
      width: 28px;
      height: 28px;
      border-radius: var(--r-sm);
      background: rgba(131, 39, 210, 0.25);
      color: var(--brand-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 6px;
    }

    .cta-card-val {
      font-family: var(--ff-heading);
      font-size: 1.25rem;
      font-weight: 800;
      color: #fff;
    }

    .cta-card-label {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 2px;
    }

    .cta-notif {
      position: absolute;
      top: -1.25rem;
      right: -1.25rem;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      padding: 0.75rem 1rem;
      box-shadow: var(--shadow-md);
      animation: floatB 5.5s ease-in-out infinite;
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 185px;
    }

    .cta-notif-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--success);
      flex-shrink: 0;
    }

    .cta-notif-text {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--ink-700);
    }

    .cta-notif-sub {
      font-size: 0.65rem;
      color: var(--ink-400);
      margin-top: 1px;
    }

    /* ═══════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-bottom-grid {
        grid-template-columns: 1fr;
      }

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

      .orbit-visual {
        display: none;
      }

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

      .showcase-layout {
        flex-direction: column;
      }

      .showcase-sidebar {
        display: none;
      }

      .feat-block-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        direction: ltr !important;
      }

      .feat-block-inner.reverse>* {
        direction: ltr;
      }

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

      .faq-left {
        position: static;
      }

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

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .phones-row {
        flex-wrap: wrap;
      }

      .phone-card.featured {
        transform: none;
      }

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

    @media (max-width: 560px) {
      .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .hero-btns {
        flex-direction: column;
        align-items: center;
      }

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

    /* ═══════════════════════════════════════════════════
       MOBILE RESPONSIVE — comprehensive additions
    ════════════════════════════════════════════════════ */

    /* ── 1024px and below ─────────────────────────────── */
    @media (max-width: 1024px) {

      /* Hero */
      .hero {
        padding: 5rem 0 3.5rem;
      }

      /* Orbit section text */
      .orbit-section {
        padding: 4rem 0;
      }

      /* Showcase section */
      .showcase-section {
        padding: 3.5rem 0 0;
      }

      .feat-block {
        padding: 3.5rem 0;
      }

      .feat-block:last-child {
        padding-bottom: 4rem;
      }

      /* Dark stats */
      .dark-stats {
        padding: 4rem 0;
      }

      /* Mobile section */
      .mobile-section {
        padding: 5rem 0;
      }

      /* FAQ */
      .faq-section {
        padding: 5rem 0;
      }

      .faq-left {
        margin-bottom: 2rem;
      }

      /* CTA */
      .cta-section {
        padding: 5rem 0;
      }

      .cta-device-wrap {
        display: none;
      }
    }

    /* ── 768px and below ─────────────────────────────── */
    @media (max-width: 768px) {

      /* Hero */
      .hero {
        padding: 4.5rem 0 3rem;
      }

      .hero-inner h1 {
        font-size: clamp(2rem, 7vw, 3rem);
      }

      .hero-desc {
        font-size: 1rem;
      }

      .hero-trust {
        gap: 0.75rem;
      }

      .hero-trust .stat-pill {
        font-size: 0.75rem;
        padding: 5px 10px;
      }

      /* Hero mockup — simplify on tablet */
      .hero-mockup-wrap {
        max-width: 100%;
      }

      .hero-bottom-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }

      /* Orbit / Pillars */
      .orbit-section {
        padding: 3.5rem 0;
      }

      .pillar-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
      }

      /* Feature blocks */
      .feat-block {
        padding: 3rem 0;
      }

      .feat-block-inner {
        gap: 2rem;
      }

      .feat-content h3 {
        font-size: 1.4rem;
      }

      .feat-content>p {
        font-size: 1rem;
      }

      /* Dark stats */
      .dark-stats {
        padding: 3.5rem 0;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }

      .stat-num {
        font-size: 2rem;
      }

      /* Mobile app section */
      .mobile-section {
        padding: 4rem 0;
      }

      .mobile-header {
        margin-bottom: 2.5rem;
      }

      .phones-row {
        gap: 0.875rem;
      }

      .phone-card {
        width: 120px;
      }

      .phone-card.featured {
        width: 140px;
        transform: none;
      }

      .phone-screen {
        min-height: 190px;
        padding: 0.625rem;
      }

      /* FAQ */
      .faq-section {
        padding: 4rem 0;
      }

      .faq-question {
        padding: 1rem 1.25rem;
      }

      .faq-answer-inner {
        padding: 0 1.25rem 1.25rem;
      }

      .faq-text {
        font-size: 0.875rem;
      }

      /* CTA */
      .cta-section {
        padding: 4rem 0;
      }

      .cta-content h2 {
        font-size: clamp(1.5rem, 4vw, 2.1rem);
      }

      .cta-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
      }

      .btn-cta-white,
      .btn-cta-ghost {
        width: 100%;
        justify-content: center;
      }

      .cta-trust {
        gap: 0.625rem;
      }
    }

    /* ── 640px and below ─────────────────────────────── */
    @media (max-width: 640px) {

      /* Hero */
      .hero {
        padding: 4rem 0 2.5rem;
      }

      .hero-inner h1 {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
      }

      .hero-desc {
        font-size: 0.9375rem;
        max-width: 100%;
      }

      .hero-btns {
        gap: 0.75rem;
      }

      .hero-btns .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
      }

      .hero-trust {
        gap: 0.5rem;
      }

      /* Hero dashboard mockup */
      .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
      }

      .hero-stat-val {
        font-size: 1.2rem;
      }

      .hero-activity {
        display: none;
      }

      .hero-bottom-grid {
        grid-template-columns: 1fr;
      }

      /* Marquee */
      .marquee-label {
        font-size: 0.625rem;
      }

      .marquee-item {
        font-size: 0.8rem;
      }

      /* Orbit */
      .orbit-section {
        padding: 3rem 0;
      }

      .orbit-inner {
        gap: 2rem;
      }

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

      .pillar-card {
        padding: 1.25rem;
      }

      /* Showcase / Feature blocks */
      .showcase-section {
        padding: 2.5rem 0 0;
      }

      .feat-block {
        padding: 2.5rem 0;
        scroll-margin-top: 5rem;
      }

      .feat-block:last-child {
        padding-bottom: 3rem;
      }

      .feat-block-inner {
        gap: 1.75rem;
      }

      .feat-content h3 {
        font-size: 1.25rem;
      }

      .feat-content>p {
        font-size: 0.9375rem;
      }

      .feat-bullets-list {
        gap: 0.75rem;
      }

      .feat-bullet-text h4 {
        font-size: 0.875rem;
      }

      .feat-bullet-text p {
        font-size: 0.8125rem;
      }

      /* Dark stats */
      .dark-stats {
        padding: 3rem 0;
      }

      .dark-stats-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
      }

      .stat-card {
        padding: 1.25rem 1rem;
      }

      .stat-num {
        font-size: 1.75rem;
      }

      .stat-label {
        font-size: 0.8rem;
      }

      /* Mobile app section */
      .mobile-section {
        padding: 3rem 0;
      }

      .mobile-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
      }

      .phones-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.625rem;
        justify-items: center;
      }

      .phone-card {
        width: 100%;
        max-width: 130px;
      }

      .phone-card.featured {
        width: 100%;
        max-width: 130px;
        transform: none;
        border-width: 2px;
      }

      .phone-screen {
        min-height: 160px;
      }

      .app-btns {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
      }

      .app-btn {
        width: 260px;
        justify-content: center;
      }

      /* Section headers */
      .section-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
      }

      .section-header p {
        font-size: 0.9375rem;
      }

      /* FAQ */
      .faq-section {
        padding: 3rem 0;
      }

      .faq-inner {
        gap: 2rem;
      }

      .faq-left h2 {
        font-size: clamp(1.375rem, 4.5vw, 1.75rem);
      }

      .faq-contact-card {
        padding: 1rem;
      }

      .faq-question {
        padding: 0.875rem 1rem;
        gap: 0.625rem;
      }

      .faq-num {
        width: 24px;
        height: 24px;
        font-size: 0.625rem;
      }

      .faq-text {
        font-size: 0.8125rem;
      }

      .faq-chevron {
        width: 26px;
        height: 26px;
      }

      .faq-answer-inner {
        padding: 0 1rem 1rem;
        font-size: 0.875rem;
      }

      .faq-answer-inner p {
        font-size: 0.875rem;
      }

      /* CTA */
      .cta-section {
        padding: 3.5rem 0;
      }

      .cta-inner {
        gap: 2.5rem;
      }

      .cta-content .eyebrow-cta {
        font-size: 0.625rem;
      }

      .cta-content h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
      }

      .cta-content p {
        font-size: 0.9375rem;
      }

      .cta-trust {
        flex-direction: column;
        gap: 0.5rem;
      }

      .cta-trust-item {
        font-size: 0.75rem;
      }
    }

    /* ── 480px and below ─────────────────────────────── */
    @media (max-width: 480px) {

      /* Hero */
      .hero {
        padding: 3.5rem 0 2rem;
      }

      .hero-inner .chip {
        font-size: 0.625rem;
        padding: 4px 10px;
      }

      .hero-inner h1 {
        font-size: clamp(1.75rem, 9vw, 2.25rem);
      }

      .hero-desc {
        font-size: 0.9rem;
      }

      .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
      }

      .hero-stat {
        padding: 0.625rem 0.75rem;
      }

      .hero-stat-val {
        font-size: 1.1rem;
      }

      .hero-stat-label {
        font-size: 0.6rem;
      }

      .hero-stat-delta {
        font-size: 0.6rem;
      }

      .hero-chart-box {
        padding: 0.75rem;
      }

      .hero-chart-title {
        font-size: 0.7rem;
      }

      .hero-bars {
        height: 44px;
      }

      /* Marquee section */
      .marquee-section {
        padding: 1rem 0;
      }

      /* Orbit / Mission */
      .orbit-section {
        padding: 2.5rem 0;
      }

      .orbit-inner h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
      }

      .orbit-inner>p {
        font-size: 0.9rem;
      }

      .pillar-card {
        padding: 1rem;
        gap: 0.625rem;
      }

      .pillar-card h4 {
        font-size: 0.875rem;
      }

      .pillar-card p {
        font-size: 0.8rem;
      }

      /* Feature blocks */
      .showcase-section {
        padding: 2rem 0 0;
      }

      .feat-block {
        padding: 2rem 0;
      }

      .feat-content h3 {
        font-size: 1.125rem;
      }

      .feat-content>p {
        font-size: 0.875rem;
      }

      .feat-bullet {
        gap: 0.625rem;
      }

      .feat-bullet-icon {
        width: 22px;
        height: 22px;
      }

      .feat-link {
        font-size: 0.8125rem;
      }

      /* Mock screens inside feature blocks */
      .mockup-frame {
        border-radius: 14px;
      }

      .mockup-bar {
        padding: 8px 10px;
      }

      .dot-r,
      .dot-y,
      .dot-g {
        width: 8px;
        height: 8px;
      }

      /* Dark stats */
      .dark-stats {
        padding: 2.5rem 0;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.625rem;
      }

      .stat-card {
        padding: 1rem 0.875rem;
        border-radius: 14px;
      }

      .stat-num {
        font-size: 1.5rem;
      }

      .stat-label {
        font-size: 0.75rem;
      }

      /* Mobile app */
      .mobile-section {
        padding: 2.5rem 0;
      }

      .phones-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
      }

      .phone-card,
      .phone-card.featured {
        max-width: 105px;
      }

      .phone-notch {
        height: 20px;
      }

      .phone-screen {
        min-height: 140px;
        padding: 0.5rem;
      }

      .phone-screen-title {
        font-size: 0.65rem;
      }

      .phone-mini-val {
        font-size: 0.875rem;
      }

      .app-btn {
        width: 100%;
        max-width: 280px;
      }

      /* FAQ */
      .faq-section {
        padding: 2.5rem 0;
      }

      .faq-text {
        font-size: 0.8rem;
      }

      .faq-num {
        display: none;
      }

      /* CTA */
      .cta-section {
        padding: 3rem 0;
      }

      .btn-cta-white,
      .btn-cta-ghost {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
      }

      /* Float badges — hide on very small screens */
      .float-badge {
        display: none !important;
      }

      .cta-notif {
        display: none;
      }
    }

    /* ── 380px and below (small phones) ──────────────── */
    @media (max-width: 380px) {
      .hero {
        padding: 3rem 0 1.75rem;
      }

      .hero-inner h1 {
        font-size: 1.75rem;
      }

      .hero-btns .btn {
        font-size: 0.875rem;
        padding: 0.8rem 1.25rem;
      }

      .hero-trust {
        display: none;
      }

      .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
      }

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

      .stat-num {
        font-size: 1.375rem;
      }

      .phones-row {
        grid-template-columns: repeat(3, 1fr);
      }

      .phone-card,
      .phone-card.featured {
        max-width: 90px;
      }

      .phone-screen {
        min-height: 120px;
      }

      .faq-question {
        padding: 0.75rem 0.875rem;
      }

      .faq-text {
        font-size: 0.775rem;
      }

      .cta-btns {
        gap: 0.625rem;
      }
    }