    :root {
      --bg-void: #050508;
      --bg-section: #0a0a0f;
      --bg-elevated: #0f0f16;
      --glass: rgba(255, 255, 255, 0.06);
      --glass-hover: rgba(255, 255, 255, 0.09);
      --glass-border: rgba(255, 255, 255, 0.12);
      --glass-border-hover: rgba(180, 151, 207, 0.45);
      --accent: #B497CF;
      --accent-dim: rgba(180, 151, 207, 0.35);
      --text-primary: #ffffff;
      --text-muted: rgba(255, 255, 255, 0.68);
      --text-soft: rgba(255, 255, 255, 0.42);
      --ink-heading: #ffffff;
      --ink-body: rgba(255, 255, 255, 0.68);
      --ink-muted: rgba(255, 255, 255, 0.52);
      --ink-soft: rgba(255, 255, 255, 0.38);
      --space-section: clamp(5rem, 10vw, 7rem);
      --space-section-x: clamp(1.5rem, 4vw, 3rem);
      --radius-card: 1.25rem;
      --radius-pill: 9999px;
      --motion-fast: 180ms;
      --motion-base: 220ms;
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.32);
      --shadow-glow: 0 0 0 1px rgba(180, 151, 207, 0.08);
      --text-display: clamp(2rem, 5vw, 3.25rem);
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-color: var(--bg-void);
      color: var(--text-muted);
    }

    html {
      background-color: var(--bg-void);
    }

    html[lang="my"] body {
      font-family: 'Noto Sans Myanmar', 'Plus Jakarta Sans', sans-serif;
    }

    .lang-switch {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .lang-btn {
      color: rgba(255, 255, 255, 0.5);
      line-height: 1;
    }

    .lang-btn--active {
      background: rgba(255, 255, 255, 0.92);
      color: #121110;
    }

    .lang-btn:not(.lang-btn--active):hover {
      color: #fff;
    }

    /* ── Hero zone ink (nav + home share this background) ── */
    .hero-ink {
      background: #ffffff;
    }

    .hero-ink-paper {
      position: absolute;
      inset: 0;
      background-color: #ffffff;
      background-image:
        repeating-linear-gradient(
          0deg,
          transparent,
          transparent 4px,
          rgba(0, 0, 0, 0.005) 4px,
          rgba(0, 0, 0, 0.005) 5px
        );
    }

    .hero-ink-plume {
      position: absolute;
      left: 0;
      top: var(--top, 40%);
      width: min(1500px, 145vw);
      height: var(--h, 360px);
      opacity: var(--o, 0.95);
      animation: hero-ink-ltr var(--dur, 42s) linear infinite;
      animation-delay: var(--delay, 0s);
      will-change: transform, opacity;
      transform: scale(var(--scale, 1));
      transform-origin: center center;
    }

    .hero-ink-plume--mega {
      width: min(1800px, 165vw);
      height: var(--h, 420px);
    }

    .hero-ink-plume svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .hero-ink-plume .ink-core {
      fill: #0c0a08;
    }

    .hero-ink-plume .ink-sepia {
      fill: #2a1f14;
    }

    .hero-ink-plume .ink-stroke {
      fill: none;
      stroke: #0c0a08;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero-ink-plume .ink-stroke-sepia {
      fill: none;
      stroke: #3d2e1e;
      stroke-linecap: round;
    }

    .hero-ink-plume .ink-mist {
      fill: #1a1510;
    }

    .hero-ink-bloom {
      position: absolute;
      left: 0;
      top: var(--top, 45%);
      width: var(--w, 420px);
      height: var(--h, 180px);
      border-radius: 50%;
      filter: blur(65px);
      opacity: var(--o, 0.6);
      background: radial-gradient(
        ellipse at center,
        rgba(15, 10, 6, 0.38) 0%,
        rgba(35, 25, 15, 0.15) 40%,
        transparent 75%
      );
      animation: hero-ink-ltr var(--dur, 45s) linear infinite;
      animation-delay: var(--delay, 0s);
      transform: scale(var(--scale, 1));
    }

    .hero-ink-bloom--dense {
      filter: blur(80px);
      background: radial-gradient(
        ellipse at center,
        rgba(8, 6, 4, 0.45) 0%,
        rgba(30, 22, 14, 0.2) 35%,
        rgba(50, 40, 30, 0.06) 60%,
        transparent 80%
      );
    }

    @keyframes hero-ink-ltr {
      0%   { transform: translateX(-115%) translateY(0) scale(var(--scale, 1)); opacity: 0; }
      4%   { opacity: var(--o, 0.95); }
      25%  { transform: translateX(-20vw) translateY(-6px) scale(var(--scale, 1)); }
      50%  { transform: translateX(35vw) translateY(8px) scale(var(--scale, 1)); }
      75%  { transform: translateX(80vw) translateY(-4px) scale(var(--scale, 1)); }
      96%  { opacity: var(--o, 0.95); }
      100% { transform: translateX(115vw) translateY(0) scale(var(--scale, 1)); opacity: 0; }
    }

    /* Nav — dark frosted glass capsule */
    .header-bar {
      background: rgba(0, 0, 0, 0.38);
      backdrop-filter: blur(22px) saturate(1.35);
      -webkit-backdrop-filter: blur(22px) saturate(1.35);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .header-bar.header-bar--scrolled {
      background: rgba(10, 10, 15, 0.82);
      border-color: rgba(255, 255, 255, 0.18);
      box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .header-bar .header-brand,
    .header-bar #menu-btn {
      color: #fff !important;
    }

    .header-bar nav a {
      color: rgba(255, 255, 255, 0.55) !important;
    }

    .header-bar nav a.text-neutral-900,
    .header-bar nav a.nav-link--active {
      color: #fff !important;
    }

    .header-bar nav a.text-neutral-500 {
      color: rgba(255, 255, 255, 0.55) !important;
    }

    .header-bar nav a:hover {
      color: var(--accent) !important;
    }

    .header-bar .header-cta {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.3);
    }

    .header-bar .header-cta:hover {
      background: rgba(180, 151, 207, 0.18);
      border-color: var(--accent);
      color: #fff;
    }

    .header-logo-icon {
      background: transparent;
      border: none;
      line-height: 0;
    }

    .header-logo-icon img,
    .header-logo-icon svg,
    .luxx-logo {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: transparent;
    }

    .header-cta {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.28);
      font-weight: 600;
      letter-spacing: 0.01em;
      transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    }

    .header-cta:hover {
      background: rgba(180, 151, 207, 0.18);
      border-color: var(--accent);
      color: #fff;
    }

    @media (max-width: 767px) {
      #site-header {
        top: 0.75rem;
        width: calc(100% - 1.25rem);
      }

      .header-bar {
        background: rgba(8, 8, 12, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow:
          0 4px 20px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.08);
        padding-left: 0.75rem;
        padding-right: 0.5rem;
      }

      .header-brand {
        font-size: 0.5625rem;
        line-height: 1.25;
        letter-spacing: 0.05em;
        max-width: 11.5rem;
        white-space: normal;
        color: #fff !important;
      }
    }

    #mobile-menu {
      background: rgba(10, 10, 15, 0.92);
      backdrop-filter: blur(24px) saturate(1.3);
      -webkit-backdrop-filter: blur(24px) saturate(1.3);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    }

    #mobile-menu .mobile-link {
      color: rgba(255, 255, 255, 0.65);
    }

    #mobile-menu .mobile-link:hover {
      color: var(--accent);
    }

    #home {
      position: relative;
      background: var(--bg-void);
      overflow: hidden;
      isolation: isolate;
    }

    .hero-hyperspeed {
      background: var(--bg-void);
      -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, rgba(0, 0, 0, 0.7) 82%, transparent 100%);
      mask-image: linear-gradient(to bottom, #000 0%, #000 62%, rgba(0, 0, 0, 0.7) 82%, transparent 100%);
    }

    .hero-hyperspeed-fade {
      background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(5, 5, 8, 0.25) 72%,
        rgba(5, 5, 8, 0.7) 88%,
        var(--bg-void) 100%
      );
    }

    .hero-section-bridge {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 14rem;
      z-index: 4;
      pointer-events: none;
      background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(5, 5, 8, 0.55) 45%,
        var(--bg-void) 100%
      );
    }

    .hero-section-bridge::after {
      display: none;
    }

    .header-bar.header-bar--hero {
      background: rgba(0, 0, 0, 0.32);
      border-color: rgba(255, 255, 255, 0.12);
    }

    .hero-desc {
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.875rem;
      line-height: 1.65;
      font-weight: 500;
      text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 4px 24px rgba(0, 0, 0, 0.75);
    }

    @media (min-width: 768px) {
      .hero-desc {
        font-size: 1rem;
      }
    }

    .hero-desc-wrap {
      max-width: 36rem;
      margin: 1.75rem auto 0;
      padding: 0.875rem 1.25rem;
      border-radius: 1rem;
      background: rgba(0, 0, 0, 0.42);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .hero-mobile-ambient {
      display: none;
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 90% 55% at 50% 38%, rgba(180, 151, 207, 0.14) 0%, transparent 58%),
        radial-gradient(ellipse 70% 45% at 18% 72%, rgba(3, 179, 195, 0.1) 0%, transparent 52%),
        radial-gradient(ellipse 60% 40% at 82% 68%, rgba(212, 86, 191, 0.08) 0%, transparent 50%),
        var(--bg-void);
    }

    @media (max-width: 768px), (pointer: coarse) {
      html.hero-hyperspeed-off .hero-mobile-ambient {
        display: block;
      }
    }

    .hero-headline-stack {
      --hero-line-1: clamp(2.25rem, 8vw, 4.25rem);
      --hero-line-2: clamp(1.65rem, 5.2vw, 2.85rem);
      width: 100%;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .hero-headline-stack {
        --hero-line-1: clamp(3rem, 6vw, 5rem);
        --hero-line-2: clamp(2rem, 3.8vw, 3.35rem);
      }
    }

    .hero-brand {
      color: #ffffff;
      font-size: var(--hero-line-1);
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.05;
      text-transform: none;
      margin: 0 auto 0.75rem;
      max-width: 100%;
      text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
    }

    .hero-subtitle {
      color: rgba(255, 255, 255, 0.88);
      font-size: var(--hero-line-2);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.12;
      margin: 0 auto 0.4rem;
      max-width: 100%;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }

    .hero-title {
      color: #ffffff;
      font-size: var(--hero-line-2);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.12;
      margin: 0 auto 0;
      max-width: 100%;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }

    .hero-content-fallback {
      transition: opacity 0.2s ease;
    }

    html.hero-content-ready .hero-content-fallback {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
    }

    #hero-content-root {
      width: 100%;
    }

    #page-wrap {
      position: relative;
      background-color: var(--bg-void);
    }

    .blended-bg,
    .digital-highway-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      background-color: var(--bg-void);
    }

    .blended-bg-wash,
    .highway-mesh {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-color: var(--bg-void);
      background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(180, 151, 207, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 60%, rgba(100, 80, 140, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 35% at 10% 80%, rgba(60, 50, 90, 0.04) 0%, transparent 45%);
    }

    .highway-line {
      position: absolute;
      left: 50%;
      width: 1px;
      height: 100%;
      transform: translateX(-50%);
      background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(180, 151, 207, 0.08) 20%,
        rgba(180, 151, 207, 0.18) 50%,
        rgba(180, 151, 207, 0.08) 80%,
        transparent 100%
      );
      opacity: 0.5;
      z-index: 1;
    }

    .highway-line--2 {
      left: auto;
      right: 15%;
      transform: none;
      opacity: 0.25;
    }

    .page-section {
      position: relative;
      z-index: 10;
      background-color: transparent;
      --ink-heading: #ffffff;
      --ink-body: rgba(255, 255, 255, 0.72);
      --ink-muted: rgba(255, 255, 255, 0.5);
      --ink-soft: rgba(255, 255, 255, 0.35);
      color: var(--ink-body);
    }

    .section-dark {
      background: transparent;
    }

    .section-inner {
      position: relative;
      z-index: 10;
      max-width: 72rem;
      margin: 0 auto;
      padding: var(--space-section) var(--space-section-x);
    }

    @media (min-width: 768px) {
      .section-inner {
        padding: var(--space-section) var(--space-section-x);
      }
    }

    .section-label {
      display: inline-block;
      font-size: 0.625rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.875rem;
    }

    .section-title {
      font-size: var(--text-display);
      font-weight: 600;
      letter-spacing: -0.04em;
      color: var(--text-primary);
      line-height: 1.1;
    }

    .section-desc {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-top: 0.875rem;
      line-height: 1.7;
      max-width: 42rem;
    }

    .glass-card {
      background: var(--glass);
      backdrop-filter: blur(16px) saturate(1.2);
      -webkit-backdrop-filter: blur(16px) saturate(1.2);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-glow);
      transition:
        background var(--motion-base) var(--ease-out),
        border-color var(--motion-base) var(--ease-out),
        box-shadow var(--motion-base) var(--ease-out),
        transform var(--motion-base) var(--ease-out);
    }

    .glass-card:hover {
      background: var(--glass-hover);
      border-color: var(--glass-border-hover);
      box-shadow: var(--shadow-card), var(--shadow-glow);
      transform: translateY(-2px);
    }

    .glass-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(180, 151, 207, 0.15);
      border: 1px solid rgba(180, 151, 207, 0.3);
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .page-section h1,
    .page-section h2,
    .page-section h3,
    .page-section h4,
    .page-section strong {
      color: var(--ink-heading);
    }

    .page-section .text-neutral-900,
    .page-section .text-neutral-950,
    .page-section .text-black {
      color: var(--ink-heading) !important;
    }

    .page-section .text-neutral-500 {
      color: var(--ink-body) !important;
    }

    .page-section .text-neutral-400 {
      color: var(--ink-muted) !important;
    }

    .page-section .text-neutral-200 {
      color: var(--ink-soft) !important;
    }

    .page-section h1,
    .page-section h2,
    .page-section h3,
    .page-section p,
    .page-section label,
    #site-footer div,
    #site-footer span {
      text-shadow: none;
    }

    #contact-us input,
    #contact-us textarea {
      border-color: rgba(255, 255, 255, 0.2);
      color: var(--text-primary);
    }

    #contact-us input:focus,
    #contact-us textarea:focus {
      border-color: var(--accent);
    }

    #contact-us label {
      color: var(--text-muted);
    }

    #contact-us input:focus + label,
    #contact-us textarea:focus + label {
      color: var(--accent);
    }

    .social-links {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.125rem;
      border-radius: 9999px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: var(--glass);
      color: var(--text-primary);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    }

    .social-link:hover {
      background: rgba(180, 151, 207, 0.15);
      border-color: var(--accent);
      transform: translateY(-1px);
    }

    /* Services */
    #services {
      position: relative;
    }

    #services .section-inner {
      position: relative;
      z-index: 2;
    }

    .services-section-header {
      margin-bottom: 2.5rem;
    }

    @media (min-width: 768px) {
      .services-section-header {
        margin-bottom: 3rem;
      }
    }

    /* Highway timeline */
    .highway-timeline {
      position: relative;
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .highway-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
      }

      .timeline-track {
        position: absolute;
        top: 1.75rem;
        left: 12.5%;
        right: 12.5%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent-dim), var(--accent), var(--accent-dim), transparent);
        z-index: 0;
      }
    }

    .timeline-step {
      position: relative;
      z-index: 1;
    }

    .timeline-num {
      font-size: 2.5rem;
      font-weight: 700;
      font-family: ui-monospace, monospace;
      color: rgba(180, 151, 207, 0.35);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .timeline-dot {
      display: none;
    }

    @media (min-width: 768px) {
      .timeline-dot {
        display: block;
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 9999px;
        background: var(--accent);
        box-shadow: 0 0 12px var(--accent);
        margin-bottom: 1.25rem;
      }
    }

    .timeline-step h3 {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
    }

    .timeline-step p {
      font-size: 0.75rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* Marquee */
    .marquee-wrap {
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    }

    .marquee-track {
      display: flex;
      gap: 3rem;
      width: max-content;
      animation: marquee-scroll 35s linear infinite;
    }

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

    @keyframes marquee-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .marquee-item {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.55;
      filter: grayscale(1) brightness(1.4);
      transition: opacity 0.25s ease;
    }

    .marquee-item:hover {
      opacity: 0.9;
    }

    .marquee-item img {
      height: 2rem;
      max-width: 8.75rem;
      object-fit: contain;
    }

    .marquee-item span {
      font-size: 1.125rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: rgba(255, 255, 255, 0.7);
      white-space: nowrap;
    }

    /* Stats */
    .stat-pills {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    @media (min-width: 640px) {
      .stat-pills {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .stat-pill {
      text-align: center;
      padding: 1.25rem 0.75rem;
      border-radius: 1rem;
      background: var(--glass);
      border: 1px solid var(--glass-border);
    }

    .stat-pill .stat-value {
      font-size: 1.75rem;
      font-weight: 600;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }

    .stat-pill .stat-label {
      font-size: 0.6875rem;
      color: var(--text-muted);
      margin-top: 0.35rem;
      font-weight: 500;
    }

    /* About split */
    .about-split {
      display: grid;
      gap: 2.5rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .about-split {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
      }
    }

    .about-visual {
      padding: 2.5rem 2rem;
      text-align: center;
      min-height: 16rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .about-visual-logo {
      width: 5rem;
      height: 5rem;
      opacity: 0.9;
    }

    .about-visual-tagline {
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .about-copy p {
      font-size: 0.875rem;
      line-height: 1.75;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }

    .about-copy p:last-child {
      margin-bottom: 0;
    }

    /* Glass contact form */
    .glass-form-panel {
      padding: 2rem 1.75rem;
      border-radius: 1.5rem;
      max-width: 36rem;
      margin: 0 auto;
    }

    .about-border-glow,
    .contact-border-glow {
      width: 100%;
    }

    .about-border-inner {
      padding: 1.75rem 1.25rem;
    }

    @media (min-width: 768px) {
      .about-border-inner {
        padding: 2rem 2rem;
      }
    }

    .contact-border-glow {
      max-width: 36rem;
      margin: 0 auto;
    }

    .contact-border-glow .glass-form-panel {
      max-width: none;
      margin: 0;
      padding: 2rem 1.75rem;
      border: none;
      background: transparent;
      border-radius: 0;
      box-shadow: none;
    }

    @media (min-width: 768px) {
      .glass-form-panel {
        padding: 2.5rem 2.5rem;
      }
    }

    .btn-primary {
      background: #fff;
      color: #0a0a0f;
      padding: 0.875rem 2rem;
      border-radius: var(--radius-pill);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      transition:
        background var(--motion-base) var(--ease-out),
        transform var(--motion-fast) var(--ease-out),
        box-shadow var(--motion-base) var(--ease-out);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .btn-primary:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(180, 151, 207, 0.35);
    }

    .btn-primary:disabled {
      opacity: 0.65;
      cursor: wait;
    }

    /* Portfolio — single-row horizontal scroll */
    .portfolio-slider-wrap {
      width: 100%;
      padding: 0 1.5rem;
    }

    @media (min-width: 768px) {
      .portfolio-slider-wrap {
        padding: 0 3rem;
      }
    }

    .portfolio-slider-controls {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .portfolio-scroll-btn {
      flex-shrink: 0;
      display: none;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 999px;
      border: 1px solid var(--glass-border);
      background: var(--glass);
      color: #fff;
      cursor: pointer;
      transition:
        background 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
    }

    .portfolio-scroll-btn:hover:not(:disabled) {
      background: var(--glass-hover);
      border-color: var(--glass-border-hover);
      transform: translateY(-1px);
    }

    .portfolio-scroll-btn:disabled {
      opacity: 0.28;
      cursor: not-allowed;
    }

    .portfolio-scroll-btn svg {
      width: 1rem;
      height: 1rem;
    }

    @media (min-width: 768px) {
      .portfolio-scroll-btn {
        display: inline-flex;
      }
    }

    .portfolio-slider-viewport {
      flex: 1;
      min-width: 0;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: rgba(180, 151, 207, 0.35) transparent;
      padding: 0 0 0.5rem;
    }

    .portfolio-slider-viewport::-webkit-scrollbar {
      height: 6px;
    }

    .portfolio-slider-viewport::-webkit-scrollbar-thumb {
      background: rgba(180, 151, 207, 0.35);
      border-radius: 999px;
    }

    .portfolio-slider-track {
      display: flex;
      flex-direction: row;
      align-items: stretch;
      gap: 0.875rem;
      width: max-content;
      padding: 0.25rem 0;
    }

    @media (min-width: 768px) {
      .portfolio-slider-track {
        gap: 1rem;
      }
    }

    .portfolio-slider-footer {
      display: flex;
      justify-content: center;
      margin-top: 1.25rem;
    }

    .portfolio-slider-footer.is-hidden {
      display: none;
    }

    .portfolio-view-all {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0;
      border: none;
      background: none;
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--accent);
      cursor: pointer;
      transition: color 0.25s ease, opacity 0.25s ease;
    }

    .portfolio-view-all:hover {
      color: #d4bde8;
    }

    .portfolio-view-all svg {
      width: 0.875rem;
      height: 0.875rem;
      transition: transform 0.25s ease;
    }

    .portfolio-view-all:hover svg {
      transform: translateX(3px);
    }

    .portfolio-card {
      display: block;
      flex: 0 0 min(78vw, 280px);
      text-decoration: none;
      color: inherit;
      border-radius: 14px;
      scroll-snap-align: start;
    }

    @media (min-width: 768px) {
      .portfolio-card {
        flex-basis: 300px;
      }
    }

    @media (min-width: 1024px) {
      .portfolio-card {
        flex-basis: 320px;
      }
    }

    .portfolio-card-media {
      position: relative;
      width: 100%;
      min-height: 10.5rem;
      aspect-ratio: 16 / 10;
      border-radius: 14px;
      overflow: hidden;
      background: var(--bg-elevated);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    }

    .portfolio-card:hover .portfolio-card-media {
      border-color: rgba(180, 151, 207, 0.4);
      box-shadow:
        0 10px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(180, 151, 207, 0.12);
      transform: translateY(-2px);
    }

    .portfolio-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .portfolio-card:hover .portfolio-card-media img {
      transform: scale(1.05);
    }

    .portfolio-card-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      min-height: inherit;
      font-size: 0.625rem;
      color: rgba(255, 255, 255, 0.35);
      font-family: ui-monospace, monospace;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 1rem;
      text-align: center;
    }

    .portfolio-card-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 0.3rem;
      padding: 1rem;
      background: linear-gradient(
        to top,
        rgba(5, 5, 8, 0.94) 0%,
        rgba(5, 5, 8, 0.5) 45%,
        transparent 100%
      );
      pointer-events: none;
    }

    .portfolio-card-tag {
      font-size: 0.5625rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(180, 151, 207, 0.95);
    }

    .portfolio-card-overlay h3 {
      font-size: 0.875rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.3;
      letter-spacing: -0.02em;
      margin: 0;
    }

    .portfolio-card-overlay p {
      font-size: 0.7rem;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.7);
      margin: 0;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      overflow: hidden;
    }

    .portfolio-card-cta {
      font-size: 0.625rem;
      font-weight: 600;
      color: var(--accent);
      margin-top: 0.2rem;
    }

    .portfolio-grid-status {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.875rem;
      padding: 2rem 1.5rem;
      width: 100%;
    }

    #contact-us .contact-submit-wrap {
      position: relative;
      z-index: 20;
    }

    #contact-status {
      min-height: 1.25rem;
    }

    #contact-status.is-error {
      color: #f87171;
    }

    #contact-status.is-success {
      color: #86efac;
    }

    #contact-submit:disabled {
      opacity: 0.65;
      cursor: wait;
    }

    #trusted-by .grayscale {
      opacity: 0.72;
      color: var(--text-primary);
    }

    .section-header-center {
      text-align: center;
      max-width: 36rem;
      margin: 0 auto 3rem;
    }

    .section-header-center .section-desc {
      margin-left: auto;
      margin-right: auto;
    }

    #site-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

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