.type-pablito {
    font-family: 'Sora', sans-serif;
    color: #0069b3;
    font-weight: 800;
  }
  .type-pbyte-light {
    font-family: 'Poppins', sans-serif;
    color: #41a0ff;
    font-weight: 700;
  }
  .type-pbyte-dark {
    font-family: 'Poppins', sans-serif;
    color: #0057ad;
    font-weight: 700;
  }
  .type-gpr {
    font-family: 'Poppins', sans-serif;
    color: #c32a0a;
    font-weight: 800;
  }
  .type-bitroute {
    font-family: 'Montserrat', sans-serif;
    color: #41a0ff;
    font-weight: 800;
    letter-spacing: -0.04em;
  }


  .hero {
    display: grid;
    grid-template-columns: 1.4fr 0.40fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    padding-bottom: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero-label {
    font-size: 2rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.65rem;
  }

  .headline-wrapper {
    min-height: clamp(4.5rem, 12vw, 7rem);
    display: flex;
    align-items: center;
  }

  #typed-headline {
    font-family: var(--font-display);
    font-size: clamp(5rem, 7.5vw, 7.5rem);
    letter-spacing: -0.035em;
    font-weight: 800;
  }

  .hero-lead {
    margin-top: 1.65rem;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--ink-soft);
    max-width: 38ch;
    line-height: 1.55;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
  }

  .btn-primary,
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .btn-primary {
    background: var(--ink);
    color: white;
  }

  .btn-primary:hover {
    background: var(--brand);
    transform: translateY(-1px);
  }

  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
  }

  .btn-ghost:hover {
    border-color: var(--brand-bright);
    color: var(--brand);
  }

  .hero-visual {
    position: relative;
    min-height: 320px;
  }

  .orbit {
    position: relative;
    height: 100%;
    min-height: 340px;
  }

  .orbit-card {
    position: absolute;
    border-radius: 1.5rem;
    padding: 1.15rem 1.35rem;
    color: white;
    box-shadow: 0 18px 40px rgba(11, 31, 51, 0.18);
    animation: floatCard 6s ease-in-out infinite;
  }

  .orbit-kicker {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
    margin-bottom: 0.25rem;
    font-weight: 700;
  }

  .orbit-card strong {
    font-size: 1.15rem;
    letter-spacing: -0.02em;
  }

  .orbit-pablito {
    top: 8%;
    left: 8%;
    z-index: 4;
    background: linear-gradient(145deg, #0069b3, #0b1f33);
    animation-delay: 0s;
  }

  .orbit-pbyte {
    top: 38%;
    right: 0;
    z-index: 3;
    background: linear-gradient(145deg, #0057ad, #41a0ff);
    font-family: 'Poppins', sans-serif;
    animation-delay: 0.4s;
  }

  .orbit-gpr {
    bottom: 19%;
    left: 0;
    z-index: 2;
    background: linear-gradient(145deg, #c32a0a, #8a1d06);
    font-family: 'Poppins', sans-serif;
    animation-delay: 0.8s;
  }

  .orbit-bitroute {
    bottom: 0;
    right: -12%;
    z-index: 1;
    background: linear-gradient(145deg, #41a0ff, #1e76cf);
    font-family: 'Montserrat', sans-serif;
    animation-delay: 1.2s;
  }

  @keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .brands-section {
    margin-bottom: 4.5rem;
  }

  .section-head {
    margin-bottom: 2rem;
    max-width: 40rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 0.65rem;
  }

  .section-lead {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .brands-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .brands-masonry > :first-child {
    grid-column: span 2;
  }

  .story-band {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #0b1f33 0%, #16304a 100%);
    color: white;
    margin-bottom: 1rem;
  }

  .story-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.85rem;
  }

  .story-copy p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.5rem;
    max-width: 42ch;
    line-height: 1.6;
  }

  .story-copy .btn-primary {
    background: white;
    color: var(--ink);
  }

  .story-copy .btn-primary:hover {
    background: var(--brand-bright);
    color: white;
  }

  .story-stats {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    align-content: center;
  }

  .story-stats li {
    padding: 1rem 1.1rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .story-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
  }

  .story-stats span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
  }

  @media (max-width: 900px) {
    .hero {
      grid-template-columns: 1fr;
    }

    .hero-visual {
      min-height: 280px;
      order: -1;
    }

    .orbit {
      min-height: 280px;
    }

    .brands-masonry {
      grid-template-columns: 1fr;
    }

    .brands-masonry > :first-child {
      grid-column: span 1;
    }

    .story-band {
      grid-template-columns: 1fr;
    }
  }


  .brand-card {
    border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 3vw, 2.35rem);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    min-height: 220px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
  }

  .brand-card::before {
    content: '';
    position: absolute;
    inset: auto -20% -40% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
  }

  .brand-card:hover {
    transform: translateY(-4px);
  }

  #pbyte {
    background: linear-gradient(145deg, #0057ad 0%, #1a7fe0 100%);
    box-shadow: 0 14px 36px rgba(0, 87, 173, 0.28);
  }

  #pbyte:hover {
    box-shadow: 0 22px 48px rgba(0, 87, 173, 0.4);
  }

  #gpr {
    background: linear-gradient(145deg, #c32a0a 0%, #8a1d06 100%);
    box-shadow: 0 14px 36px rgba(195, 42, 10, 0.28);
  }

  #gpr:hover {
    box-shadow: 0 22px 48px rgba(195, 42, 10, 0.4);
  }

  #bitroute {
    background: linear-gradient(145deg, #41a0ff 0%, #1e76cf 100%);
    box-shadow: 0 14px 36px rgba(30, 118, 207, 0.28);
  }

  #bitroute:hover {
    box-shadow: 0 22px 48px rgba(30, 118, 207, 0.4);
  }

  .font-pbyte h3 { font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: -0.03em; }
  .font-gpr h3 { font-family: 'Poppins', sans-serif; font-weight: 800; letter-spacing: -0.02em; }
  .font-bitroute h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; letter-spacing: -0.04em; }

  .card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
  }

  .arrow {
    opacity: 0.65;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .brand-card:hover .arrow {
    opacity: 1;
    transform: translate(3px, -3px);
  }

  h3 {
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    margin-bottom: 0.45rem;
    line-height: 1.1;
    position: relative;
    z-index: 1;
  }

  .brand-card p {
    font-size: 0.98rem;
    line-height: 1.55;
    opacity: 0.92;
    position: relative;
    z-index: 1;
  }


  .news-slider-section {
    margin: 0 0 4.5rem;
    width: 100%;
  }

  .slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
  }

  .slider-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
  }

  .slider-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .slider-nav {
    display: flex;
    gap: 0.4rem;
  }

  .slider-nav button {
    background: var(--island-soft);
    border: 1px solid var(--line);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--ink);
  }

  .slider-nav button:hover {
    background: var(--brand-bright);
    border-color: var(--brand-bright);
    color: white;
  }

  .all-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    transition: border-color 0.2s, color 0.2s;
  }

  .all-link:hover {
    border-color: var(--brand-bright);
    color: var(--brand);
  }

  .slider-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-lg);
  }

  .slider-track {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .slider-item {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .news-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(145deg, #f7fafc 0%, #eef4fa 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.2s;
  }

  .news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(11, 31, 51, 0.08);
    border-color: rgba(65, 160, 255, 0.35);
  }

  .news-date {
    font-size: 0.82rem;
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .news-card h3 {
    margin: 0.65rem 0 0.85rem;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--ink);
    line-height: 1.2;
  }

  .news-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.35rem;
    font-size: 1.05rem;
    max-width: 62ch;
  }

  .news-link {
    color: var(--ink);
    font-weight: 700;
    font-size: 0.92rem;
  }

  .news-card:hover .news-link {
    color: var(--brand);
  }

  .news-empty {
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--island-soft);
  }

  .news-empty p {
    color: var(--muted);
  }
