@layer compositions {
  .needle-band {
    padding-block: var(--needle-space-3xl);
  }

  .needle-band--dark {
    background: var(--pine-ink);
    color: var(--pine-paper);
  }

  .needle-band--dark h2,
  .needle-band--dark h3 {
    color: var(--pine-white);
  }

  .needle-band--night {
    background: var(--pine-night);
    color: var(--pine-paper);
  }

  .needle-band--paper {
    background: var(--pine-paper);
  }

  .needle-band--white {
    background: var(--pine-white);
  }

  .needle-intro {
    max-width: 46rem;
    margin-inline: auto;
    text-align: center;
    display: grid;
    gap: var(--needle-space-sm);
    margin-bottom: var(--needle-space-2xl);
  }

  .needle-intro--left {
    margin-inline: 0;
    text-align: start;
  }

  .needle-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--needle-space-3xs);
    font-size: var(--needle-size-small);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pine-muted);
  }

  .needle-band--dark .needle-eyebrow,
  .needle-band--night .needle-eyebrow {
    color: var(--pine-acid-soft);
  }

  /* hero stage */
  .needle-stage {
    background: var(--pine-night);
    border-radius: var(--needle-radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .needle-stage__figure {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
  }

  .needle-stage__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .needle-stage__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 27, 45, 0.15) 0%, rgba(2, 27, 45, 0.85) 100%);
  }

  .needle-stage__copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--needle-space-lg);
    gap: var(--needle-space-sm);
    color: var(--pine-white);
  }

  .needle-stage__copy h1 {
    color: var(--pine-white);
  }

  .needle-stage__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--needle-space-xs);
  }

  .needle-stage__gallery {
    display: grid;
    gap: 2px;
  }

  .needle-stage__gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
  }

  @media (min-width: 960px) {
    .needle-stage {
      grid-template-columns: 7fr 3fr;
    }

    .needle-stage__figure {
      aspect-ratio: auto;
      height: 100%;
    }

    .needle-stage__copy {
      padding: var(--needle-space-2xl);
      max-width: 34rem;
    }
  }

  /* editorial mosaic */
  .needle-mosaic {
    display: grid;
    gap: var(--needle-space-md);
  }

  @media (min-width: 960px) {
    .needle-mosaic {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, minmax(220px, 1fr));
    }

    .needle-mosaic__item--a {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
    }

    .needle-mosaic__item--b {
      grid-column: 3 / 5;
      grid-row: 1 / 2;
    }

    .needle-mosaic__item--c {
      grid-column: 3 / 4;
      grid-row: 2 / 3;
    }

    .needle-mosaic__item--d {
      grid-column: 1 / 3;
      grid-row: 3 / 4;
    }

    .needle-mosaic__item--e {
      grid-column: 3 / 5;
      grid-row: 3 / 4;
    }
  }

  .needle-mosaic__item {
    position: relative;
    border-radius: var(--needle-radius-md);
    overflow: hidden;
    min-height: 220px;
  }

  .needle-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .needle-mosaic__item--note {
    background: var(--pine-acid);
    color: var(--pine-ink);
    display: flex;
    align-items: center;
    padding: var(--needle-space-lg);
    font-size: var(--needle-size-h3);
    font-weight: 700;
  }

  .needle-mosaic__label {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: var(--needle-space-md);
    color: var(--pine-white);
    background: linear-gradient(180deg, transparent, rgba(2, 27, 45, 0.88));
  }

  .needle-mosaic__label strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: var(--needle-space-3xs);
  }

  /* evening menu band */
  .needle-evening__menu {
    display: grid;
    gap: var(--needle-space-lg);
  }

  @media (min-width: 768px) {
    .needle-evening__menu {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .needle-evening__column {
    border-top: 2px solid var(--pine-acid);
    padding-top: var(--needle-space-md);
  }

  .needle-evening__column dl {
    display: grid;
    gap: var(--needle-space-sm);
    margin-top: var(--needle-space-md);
  }

  .needle-evening__column dt {
    font-weight: 700;
    color: var(--pine-white);
  }

  .needle-evening__column dd {
    color: var(--pine-line);
    font-size: var(--needle-size-small);
  }

  /* daylight split */
  .needle-daylight {
    display: grid;
    gap: var(--needle-space-lg);
  }

  @media (min-width: 960px) {
    .needle-daylight {
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
    }
  }

  .needle-daylight__panels {
    display: grid;
    gap: var(--needle-space-md);
  }

  .needle-daylight__panel {
    display: grid;
    grid-template-columns: 9rem 1fr;
    gap: var(--needle-space-md);
    background: var(--pine-white);
    border: 1px solid var(--pine-line);
    border-radius: var(--needle-radius-md);
    overflow: hidden;
  }

  .needle-daylight__panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .needle-daylight__panel-copy {
    padding: var(--needle-space-md) var(--needle-space-md) var(--needle-space-md) 0;
    display: grid;
    align-content: center;
    gap: var(--needle-space-3xs);
  }

  .needle-daylight__figure {
    border-radius: var(--needle-radius-md);
    overflow: hidden;
    min-height: 260px;
  }

  .needle-daylight__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* rooms */
  .needle-rooms__feature {
    display: grid;
    gap: 2px;
    border-radius: var(--needle-radius-lg);
    overflow: hidden;
    margin-bottom: var(--needle-space-lg);
  }

  @media (min-width: 900px) {
    .needle-rooms__feature {
      grid-template-columns: 3fr 2fr;
    }
  }

  .needle-rooms__feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 260px;
  }

  .needle-rooms__panel {
    background: var(--pine-acid);
    color: var(--pine-ink);
    padding: var(--needle-space-lg);
    display: grid;
    align-content: center;
    gap: var(--needle-space-sm);
  }

  .needle-rooms__grid {
    display: grid;
    gap: var(--needle-space-md);
  }

  @media (min-width: 768px) {
    .needle-rooms__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* casino info floor */
  .needle-floor__grid {
    display: grid;
    gap: var(--needle-space-md);
  }

  @media (min-width: 860px) {
    .needle-floor__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .needle-floor__note {
    margin-top: var(--needle-space-lg);
    display: flex;
    gap: var(--needle-space-sm);
    align-items: flex-start;
    padding: var(--needle-space-md);
    border: 1px solid var(--pine-line);
    border-radius: var(--needle-radius-md);
    background: var(--pine-white);
  }

  /* timeline / sequence */
  .needle-sequence {
    display: grid;
    gap: var(--needle-space-md);
    counter-reset: needle-step;
  }

  @media (min-width: 960px) {
    .needle-sequence {
      grid-auto-flow: column;
      grid-auto-columns: minmax(180px, 1fr);
      overflow-x: auto;
      padding-bottom: var(--needle-space-sm);
    }
  }

  .needle-sequence__step {
    counter-increment: needle-step;
    border-top: 2px solid var(--pine-acid);
    padding-top: var(--needle-space-sm);
    display: grid;
    gap: var(--needle-space-3xs);
  }

  .needle-sequence__time {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--pine-white);
  }

  /* faq answers */
  .needle-answers__grid {
    display: grid;
    gap: var(--needle-space-md);
  }

  @media (min-width: 860px) {
    .needle-answers__grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .needle-answers__group {
    margin-bottom: var(--needle-space-xl);
  }

  .needle-answers__group h2 {
    margin-bottom: var(--needle-space-md);
  }

  /* ========================================================
     EXACT DESIGN MOCKUP SECTION STYLES (MATCHING SCREENSHOTS)
     ======================================================== */

  /* Section 1: Hero Stage Layout */
  .pixel-hero-wrap {
    background: #021827;
    padding-block: var(--needle-space-xl);
  }
  .pixel-hero-grid {
    display: grid;
    gap: 20px;
    align-items: stretch;
  }
  @media (min-width: 960px) {
    .pixel-hero-grid {
      grid-template-columns: 1.8fr 1fr;
    }
  }
  .pixel-hero-main {
    position: relative;
    border: 2px solid #c9ff2f;
    border-radius: 24px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.5rem, 3.5vw, 3.5rem);
    background-size: cover;
    background-position: center;
  }
  .pixel-hero-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 24, 39, 0.2) 0%, rgba(2, 24, 39, 0.85) 75%, rgba(2, 24, 39, 0.95) 100%);
    pointer-events: none;
  }
  .pixel-hero-main__content {
    position: relative;
    z-index: 2;
    max-width: 36rem;
    display: grid;
    gap: 1.25rem;
  }
  .pixel-hero-main h1 {
    color: #ffffff;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    line-height: 1.1;
    font-weight: 800;
  }
  .pixel-hero-main p {
    color: #d6dee2;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .pixel-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0.5rem;
  }
  .pixel-btn-lime {
    background: #c9ff2f;
    color: #021b2d;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: transform 0.2s, background 0.2s;
  }
  .pixel-btn-lime:hover {
    transform: translateY(-2px);
    background: #d8ff57;
  }
  .pixel-btn-dark {
    background: rgba(2, 27, 45, 0.7);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    backdrop-filter: blur(4px);
    transition: transform 0.2s, border-color 0.2s, color 0.2s;
  }
  .pixel-btn-dark:hover {
    transform: translateY(-2px);
    border-color: #c9ff2f;
    color: #c9ff2f;
  }
  .pixel-hero-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .pixel-hero-side__card {
    flex: 1;
    position: relative;
    border: 2px solid #c9ff2f;
    border-radius: 24px;
    overflow: hidden;
    min-height: 230px;
  }
  .pixel-hero-side__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Section 2: Mosaic */
  .pixel-sec2 {
    background: #ffffff;
    padding-block: var(--needle-space-3xl);
  }
  .pixel-head-center {
    text-align: center;
    max-width: 48rem;
    margin-inline: auto;
    margin-bottom: var(--needle-space-2xl);
  }
  .pixel-head-center h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    color: #021b2d;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  .pixel-head-center p {
    color: #435b6c;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
  }
  .pixel-mosaic-grid {
    display: grid;
    gap: 20px;
  }
  @media (min-width: 768px) {
    .pixel-mosaic-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  .pixel-mosaic-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #021b2d;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .pixel-mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }
  .pixel-mosaic-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(2, 27, 45, 0.92) 95%);
    pointer-events: none;
  }
  .pixel-mosaic-overlay {
    position: relative;
    z-index: 2;
    padding: 22px 24px;
    color: #ffffff;
  }
  .pixel-mosaic-overlay strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .pixel-mosaic-overlay span {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #e2eaf0;
    display: block;
  }
  .pixel-lime-note {
    background: #c9ff2f;
    color: #021b2d;
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
  }
  .pixel-lime-note h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    font-weight: 800;
    line-height: 1.3;
    color: #021b2d;
  }

  /* Section 3: Dining */
  .pixel-dining {
    background: #021b2d;
    color: #ffffff;
    padding-block: var(--needle-space-3xl);
  }
  .pixel-dining-head h2 {
    color: #ffffff;
  }
  .pixel-dining-head p {
    color: #9cb3c4;
  }
  .pixel-dining-grid {
    display: grid;
    gap: 20px;
  }
  @media (min-width: 768px) {
    .pixel-dining-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .pixel-dining-card {
    background: #04213a;
    border: 1.5px solid #0f3d61;
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .pixel-dining-card h3 {
    color: #c9ff2f;
    font-size: 1.15rem;
    font-weight: 800;
  }
  .pixel-dining-card ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .pixel-dining-card li {
    color: #e2eaf0;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  /* Section 4: Daytime */
  .pixel-daytime {
    background: #ffffff;
    padding-block: var(--needle-space-3xl);
  }
  .pixel-daytime-grid {
    display: grid;
    gap: 20px;
    margin-top: var(--needle-space-xl);
  }
  @media (min-width: 960px) {
    .pixel-daytime-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  .pixel-daytime-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .pixel-daytime-horiz {
    background: #031e33;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: stretch;
    border: 1px solid rgba(201, 255, 47, 0.15);
  }
  .pixel-daytime-horiz__img {
    height: 100%;
    min-height: 140px;
  }
  .pixel-daytime-horiz__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .pixel-daytime-horiz__body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .pixel-daytime-arrow {
    position: absolute;
    top: 16px;
    right: 18px;
    color: #c9ff2f;
    font-size: 1.1rem;
    font-weight: 700;
  }
  .pixel-daytime-horiz__body h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .pixel-daytime-horiz__body p {
    color: #9cb3c4;
    font-size: 0.85rem;
    line-height: 1.45;
  }
  .pixel-daytime-vert {
    background: #031e33;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(201, 255, 47, 0.15);
  }
  .pixel-daytime-vert__img {
    height: 240px;
  }
  .pixel-daytime-vert__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .pixel-daytime-vert__body {
    padding: 24px;
    position: relative;
  }
  .pixel-daytime-vert__body h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .pixel-daytime-vert__body p {
    color: #9cb3c4;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  /* Section 5: Rooms */
  .pixel-rooms {
    background: #021b2d;
    color: #ffffff;
    padding-block: var(--needle-space-3xl);
  }
  .pixel-rooms-head h2 {
    color: #ffffff;
  }
  .pixel-rooms-head p {
    color: #9cb3c4;
  }
  .pixel-room-feature {
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    margin-bottom: 24px;
    border: 1.5px solid rgba(201, 255, 47, 0.4);
  }
  @media (min-width: 860px) {
    .pixel-room-feature {
      grid-template-columns: 1.35fr 1fr;
    }
  }
  .pixel-room-feature__img {
    min-height: 320px;
  }
  .pixel-room-feature__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .pixel-room-feature__panel {
    background: #c9ff2f;
    color: #021b2d;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .pixel-room-feature__panel h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #021b2d;
  }
  .pixel-room-feature__panel .sub {
    font-size: 1.05rem;
    font-weight: 700;
    color: #021b2d;
  }
  .pixel-room-feature__panel p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #123044;
  }
  .pixel-room-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #021b2d;
  }
  .pixel-rooms-grid {
    display: grid;
    gap: 20px;
  }
  @media (min-width: 860px) {
    .pixel-rooms-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .pixel-room-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .pixel-room-card__img {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
  }
  .pixel-room-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .pixel-room-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
  }
  .pixel-room-card .sub {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
  }
  .pixel-room-card p {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #9cb3c4;
  }
  .pixel-room-bullets-light {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-top: 4px;
    font-size: 0.8rem;
    color: #8da4b5;
  }

  /* Section 6: Casino */
  .pixel-casino {
    background: #ffffff;
    padding-block: var(--needle-space-3xl);
  }
  .pixel-casino-grid {
    display: grid;
    gap: 20px;
    margin-bottom: var(--needle-space-xl);
  }
  @media (min-width: 860px) {
    .pixel-casino-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .pixel-casino-card {
    background: #021e33;
    border: 2px solid #c9ff2f;
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #ffffff;
  }
  .pixel-casino-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .pixel-casino-card h3 {
    color: #c9ff2f;
    font-size: 1.15rem;
    font-weight: 800;
  }
  .pixel-casino-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid #c9ff2f;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c9ff2f;
    font-size: 0.85rem;
  }
  .pixel-casino-card ul {
    display: grid;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .pixel-casino-card li {
    font-size: 0.9rem;
    color: #d6dee2;
    display: flex;
    gap: 8px;
  }
  .pixel-casino-disclaimer {
    border-top: 1px solid var(--pine-line);
    padding-top: var(--needle-space-lg);
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .pixel-badge-18 {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #021b2d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #021b2d;
    flex-shrink: 0;
  }
  .pixel-casino-disclaimer p {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #556c7d;
  }

  /* Section 7: Timeline */
  .pixel-timeline-sec {
    background: #021b2d;
    color: #ffffff;
    padding-block: var(--needle-space-3xl);
  }
  .pixel-timeline-grid {
    display: grid;
    gap: 30px;
    margin-top: var(--needle-space-2xl);
  }
  @media (min-width: 960px) {
    .pixel-timeline-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .pixel-timeline-col {
    position: relative;
    padding-right: 20px;
  }
  @media (min-width: 960px) {
    .pixel-timeline-col:not(:last-child) {
      border-right: 1.5px solid rgba(201, 255, 47, 0.4);
    }
  }
  .pixel-timeline-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .pixel-timeline-head h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
  }
  .pixel-timeline-head span {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8fa5b5;
    font-weight: 700;
  }
  .pixel-timeline-steps {
    display: grid;
    gap: 20px;
  }
  .pixel-timeline-step {
    display: grid;
    grid-template-columns: 55px 16px 1fr;
    gap: 12px;
    align-items: baseline;
  }
  .pixel-timeline-time {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
  }
  .pixel-timeline-time--lime {
    color: #c9ff2f;
  }
  .pixel-timeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    align-self: center;
  }
  .pixel-timeline-dot--lime {
    background: #c9ff2f;
  }
  .pixel-timeline-text {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #d6dee2;
  }

  /* Section 8: FAQ */
  .pixel-faq-sec {
    background: #ffffff;
    padding-block: var(--needle-space-3xl);
  }
  .pixel-faq-grid {
    display: grid;
    gap: 14px;
    margin-top: var(--needle-space-xl);
  }
  @media (min-width: 860px) {
    .pixel-faq-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  .pixel-faq-card {
    background: #031e33;
    border-radius: 14px;
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(201, 255, 47, 0.18);
  }
  .pixel-faq-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .pixel-faq-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .pixel-faq-num {
    font-size: 0.82rem;
    font-weight: 800;
    color: #c9ff2f;
  }
  .pixel-faq-q {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
  }
  .pixel-faq-dash {
    color: #8da3b3;
    font-size: 1.1rem;
    font-weight: 700;
  }
  .pixel-faq-a {
    color: #9cb3c4;
    font-size: 0.85rem;
    line-height: 1.45;
    margin-left: 28px;
  }
}
