    :root {
      --bg: #080808;
      --surface: #0E0E0E;
      --border: #1C1C1C;
      --muted: #7A7A7A;
      --body: #999999;
      --white: #F2F2F0;
      --lime: #CCFF00;
    }

    @font-face {
      font-family: 'DM Sans';
      src: local('DM Sans');
      font-display: swap;
    }

    @font-face {
      font-family: 'Bebas Neue';
      src: local('Bebas Neue');
      font-display: swap;
    }

    @font-face {
      font-family: 'Space Mono';
      src: local('Space Mono');
      font-display: swap;
    }

    @font-face {
      font-family: 'Clash Display';
      src: local('Clash Display');
      font-display: swap;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      font-size: 15px;
      line-height: 1.8;
      overflow-x: hidden;
    }

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

    button,
    input,
    select,
    textarea {
      font: inherit;
      color: inherit;
      border-radius: 0;
      outline: none;
    }

    .gpu {
      transform: translateZ(0);
      will-change: transform;
      backface-visibility: hidden;
    }

    .container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .section {
      padding: 160px 0;
      border-bottom: 1px solid var(--border);
    }

    .label {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .heading-2 {
      font-family: 'Clash Display', sans-serif;
      font-size: clamp(42px, 6vw, 86px);
      line-height: 0.95;
      letter-spacing: -0.02em;
      font-weight: 600;
    }

    .heading-3 {
      font-family: 'Clash Display', sans-serif;
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 500;
      line-height: 1.1;
    }

    #loader {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: var(--bg);
      display: grid;
      place-items: center;
    }

    .loader-inner {
      width: min(480px, calc(100vw - 48px));
      text-align: center;
    }

    .loader-mark {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 96px;
      color: #1A1A1A;
      letter-spacing: 0.05em;
      line-height: 1;
      margin-bottom: 16px;
    }

    #loader-pct {
      font-family: 'Space Mono', monospace;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 40px;
    }

    .loader-bar {
      width: 100%;
      height: 1px;
      background: var(--border);
    }

    #loader-fill {
      width: 0%;
      height: 1px;
      background: var(--lime);
      transition: width 0.08s linear;
    }

    #progress-wrap {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      z-index: 9998;
      background: transparent;
      pointer-events: none;
    }

    #progress {
      width: 0;
      height: 100%;
      background: var(--lime);
      transform-origin: left center;
    }

    .nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 1000;
      height: 72px;
      border-bottom: 1px solid transparent;
      transition: all 0.3s ease;
    }

    .nav.scrolled {
      border-bottom-color: var(--border);
      background: rgba(8, 8, 8, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .nav-row {
      height: 72px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 16px;
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      letter-spacing: 0.06em;
      justify-self: start;
      color: var(--white);
    }

    .center-mark {
      font-family: 'Space Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.2em;
      color: var(--muted);
      text-align: center;
      white-space: nowrap;
    }

    .nav-right {
      display: flex;
      justify-self: end;
      align-items: center;
      gap: 24px;
    }

    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .lang-link {
      position: relative;
      padding-left: 12px;
    }

    .lang-link.active {
      color: var(--white);
    }

    .lang-link.active::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 5px;
      height: 5px;
      transform: translateY(-50%);
      background: var(--lime);
    }

    .start-btn {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--white);
      background: var(--white);
      color: var(--bg);
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 10px 24px;
      z-index: 1;
    }

    .start-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.25s ease;
      background: var(--lime);
      z-index: -1;
    }

    .start-btn:hover::before {
      transform: scaleX(1);
    }

    .hamburger {
      width: 40px;
      height: 40px;
      border: 1px solid var(--border);
      background: transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--white);
    }

    .menu-overlay {
      position: fixed;
      inset: 0;
      z-index: 4000;
      background: var(--bg);
      clip-path: inset(0 0 100% 0);
      pointer-events: none;
      transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    }

    .menu-overlay.open {
      clip-path: inset(0 0 0 0);
      pointer-events: auto;
    }

    .menu-open .nav {
      pointer-events: none;
    }

    .menu-inner {
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 48px;
      padding: 96px 48px;
    }

    .menu-links {
      display: flex;
      flex-direction: column;
      gap: 8px;
      justify-content: center;
    }

    .menu-link {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(56px, 10vw, 128px);
      line-height: 0.9;
      letter-spacing: -0.02em;
      transform: translateY(32px);
      opacity: 0;
      transition: transform 0.44s ease, opacity 0.44s ease;
    }

    .menu-overlay.open .menu-link {
      transform: translateY(0);
      opacity: 1;
    }

    .menu-overlay.open .menu-link:nth-child(1) { transition-delay: 0.08s; }
    .menu-overlay.open .menu-link:nth-child(2) { transition-delay: 0.14s; }
    .menu-overlay.open .menu-link:nth-child(3) { transition-delay: 0.20s; }
    .menu-overlay.open .menu-link:nth-child(4) { transition-delay: 0.26s; }
    .menu-overlay.open .menu-link:nth-child(5) { transition-delay: 0.32s; }

    .menu-side {
      border-left: 1px solid var(--border);
      padding-left: 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
      color: var(--body);
    }

    .menu-lang {
      display: none;
      align-items: center;
      gap: 10px;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .menu-lang-link.active {
      color: var(--white);
    }

    .menu-close {
      position: absolute;
      right: 48px;
      top: 24px;
      width: 48px;
      height: 48px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--white);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      z-index: 4101;
      pointer-events: auto;
    }

    #hero {
      min-height: 100vh;
      padding-top: 72px;
      position: relative;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      isolation: isolate;
      background: #050505;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('./new-york.webp');
      background-size: cover;
      background-position: center 35%;
      filter: brightness(0.56) saturate(0.9) contrast(1.05) grayscale(0.03);
      transform: scale(1.01);
      z-index: 0;
      pointer-events: none;
    }

    #hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(3, 3, 3, 0.38) 0%, rgba(3, 3, 3, 0.58) 62%, rgba(3, 3, 3, 0.78) 100%);
      z-index: 1;
      pointer-events: none;
    }

    #hero > * {
      position: relative;
      z-index: 2;
    }

    .hero-grid {
      min-height: calc(100vh - 72px);
      display: grid;
      grid-template-columns: 58% 42%;
      gap: 48px;
      padding-bottom: 112px;
    }

    .hero-grid > div:first-child {
      margin-top: -44px;
    }

    .availability {
      margin-top: 48px;
      margin-bottom: 48px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.15em;
      color: #d2d2d2;
      text-transform: uppercase;
    }

    .pulse-dot {
      width: 6px;
      height: 6px;
      background: var(--lime);
      animation: pulse 2s ease infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(80px, 13vw, 180px);
      line-height: 0.88;
      letter-spacing: -0.04em;
      margin-bottom: 40px;
    }

    .hero-line {
      display: block;
      clip-path: inset(0 0 0 0);
    }

    .hero-line-accent {
      padding-top: 0.08em;
      margin-top: -0.08em;
      line-height: 1;
    }

    .hero-outline {
      color: transparent;
      -webkit-text-stroke: 1.5px var(--white);
    }

    .hero-sub {
      color: #e2e2e2;
      max-width: 420px;
      margin-bottom: 40px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
    }

    .btn {
      padding: 14px 32px;
      border: 1px solid var(--border);
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
      background: transparent;
      color: #888888;
    }

    .btn-outline:hover {
      border-color: var(--white);
      color: var(--white);
    }

    .btn-filled {
      background: var(--white);
      color: var(--bg);
      border-color: var(--white);
    }

    .btn-filled:hover {
      background: var(--lime);
      border-color: var(--lime);
      color: var(--bg);
    }

    .hero-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 32px;
    }

    .shape-wrap {
      width: clamp(220px, 32vw, 320px);
      aspect-ratio: 1 / 1;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      flex: 0 0 auto;
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
    }

    .shape-wrap::before {
      content: '';
      position: absolute;
      inset: 18%;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.06);
      pointer-events: none;
    }

    .shape-orbit {
      position: absolute;
      inset: 0;
      animation: spin 18s linear infinite;
      transform-origin: 50% 50%;
      will-change: transform;
      pointer-events: none;
    }

    .shape-orbit text {
      fill: rgba(242, 242, 240, 0.84);
      font-family: 'Space Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
    }

    .shape-core {
      position: absolute;
      width: 52%;
      height: 52%;
      border-radius: 50%;
      border: 1px solid rgba(178, 255, 170, 0.28);
      background: radial-gradient(circle at 38% 30%, rgba(28, 28, 28, 0.96), rgba(3, 3, 3, 0.99) 72%);
      display: grid;
      place-items: center;
      text-align: center;
      line-height: 1;
      overflow: hidden;
      box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.78), 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .shape-core::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        to bottom,
        rgba(142, 255, 127, 0.08) 0,
        rgba(142, 255, 127, 0.08) 1px,
        transparent 1px,
        transparent 3px
      );
      mix-blend-mode: screen;
      opacity: 0.36;
      animation: hackNoise 2.4s steps(10, end) infinite;
      pointer-events: none;
    }

    .shape-core::after {
      content: '';
      position: absolute;
      left: 8%;
      right: 8%;
      height: 2px;
      background: rgba(158, 255, 149, 0.7);
      box-shadow: 0 0 10px rgba(158, 255, 149, 0.75);
      animation: scanline 2.2s linear infinite;
      pointer-events: none;
    }

    .hack-display {
      width: 84%;
      height: 60%;
      border: 1px solid rgba(158, 255, 149, 0.24);
      background: rgba(0, 0, 0, 0.45);
      display: grid;
      place-items: center;
      overflow: hidden;
      padding: 0 8px;
    }

    .hack-ticker {
      font-family: 'Space Mono', monospace;
      font-size: clamp(6px, 1.35vw, 8px);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(163, 255, 149, 0.92);
      white-space: nowrap;
      text-shadow: 0 0 10px rgba(163, 255, 149, 0.45);
      animation: hackFlicker 0.28s steps(2, end) infinite;
    }

    .hack-cursor {
      display: inline-block;
      margin-left: 2px;
      animation: cursorBlink 0.9s steps(1, end) infinite;
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes scanline {
      0% { transform: translateY(-20px); opacity: 0.25; }
      50% { opacity: 0.72; }
      100% { transform: translateY(132px); opacity: 0.25; }
    }

    @keyframes hackNoise {
      0%, 100% { opacity: 0.25; transform: translateY(0); }
      50% { opacity: 0.4; transform: translateY(-1px); }
    }

    @keyframes cursorBlink {
      0%, 49% { opacity: 1; }
      50%, 100% { opacity: 0; }
    }

    @keyframes hackFlicker {
      0%, 100% { opacity: 0.95; }
      40% { opacity: 0.72; }
      70% { opacity: 1; }
    }

    .services-list {
      width: 100%;
      max-width: 300px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #d0d0d0;
    }

    .service-item {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
      padding-bottom: 8px;
      transition: transform 0.2s ease, color 0.2s ease;
    }

    .service-item:hover {
      transform: translateX(8px);
      color: var(--white);
    }

    .hero-bottom {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      border-top: 1px solid var(--border);
      padding: 20px 48px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 16px;
      align-items: center;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .scroll-indicator {
      justify-self: end;
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .scroll-arrow {
      animation: down 1.2s ease infinite;
    }

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

    .marquee-strip {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--surface);
      overflow: hidden;
    }

    .marquee-row {
      height: 44px;
      display: flex;
      align-items: center;
      white-space: nowrap;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--white);
    }

    .marquee-content {
      min-width: 200%;
      display: flex;
      justify-content: space-around;
      animation: marquee 28s linear infinite;
    }

    .marquee-row.reverse .marquee-content {
      animation-direction: reverse;
    }

    .marquee-row.outline {
      color: transparent;
      -webkit-text-stroke: 1px #4B4B4B;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    #work .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
    }

    .work-list {
      border-top: 1px solid var(--border);
    }

    .work-row {
      position: relative;
      border-bottom: 1px solid var(--border);
      max-height: 88px;
      overflow: hidden;
      transition: max-height 0.4s ease, color 0.25s ease;
      cursor: pointer;
    }

    .work-row:hover {
      max-height: 220px;
    }

    .work-row-main {
      min-height: 88px;
      display: grid;
      grid-template-columns: 90px 1fr 180px 100px;
      gap: 24px;
      align-items: center;
      color: #888888;
      padding-right: 360px;
      text-decoration: none;
      transition: color 0.25s ease;
    }

    .work-row:hover .work-row-main {
      color: var(--white);
    }

    .work-name {
      font-family: 'Clash Display', sans-serif;
      font-size: 32px;
      font-weight: 500;
    }

    .work-meta {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .work-thumb {
      display: block;
      position: absolute;
      right: 0;
      top: 16px;
      width: 320px;
      height: 188px;
      border: 1px solid var(--border);
      background: #141414;
      clip-path: inset(0 100% 0 0);
      transition: clip-path 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    }

    .work-row:hover .work-thumb {
      clip-path: inset(0 0 0 0);
    }

    .work-link-more {
      display: inline-block;
      margin-top: 40px;
      margin-left: auto;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--body);
      position: relative;
      padding-bottom: 8px;
    }

    .work-link-more::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 1px;
      background: var(--white);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.24s ease;
    }

    .work-link-more:hover::after {
      transform: scaleX(1);
    }

    .stats {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

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

    .stat {
      padding: 56px 32px;
      border-right: 1px solid var(--border);
    }

    .stat:last-child {
      border-right: none;
    }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 88px;
      line-height: 0.9;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .process-grid {
      display: grid;
      grid-template-columns: 40% 60%;
      gap: 48px;
    }

    .process-left {
      position: sticky;
      top: 120px;
      align-self: start;
    }

    .process-desc {
      max-width: 380px;
      margin-top: 24px;
      color: #888888;
    }

    .process-highlights {
      margin-top: 28px;
      max-width: 420px;
      display: grid;
      gap: 10px;
    }

    .process-highlight {
      border-bottom: 1px solid var(--border);
      padding-bottom: 10px;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #7A7A7A;
    }

    .process-highlight strong {
      color: var(--white);
      font-weight: 400;
    }

    .step {
      position: relative;
      border-bottom: 1px solid var(--border);
      padding: 64px 0;
    }

    .step-num-bg {
      position: absolute;
      right: 0;
      top: 24px;
      font-family: 'Space Mono', monospace;
      font-size: 160px;
      color: #222222;
      line-height: 1;
      user-select: none;
      pointer-events: none;
    }

    .step-title {
      position: relative;
      z-index: 1;
      margin-bottom: 16px;
      max-width: 560px;
    }

    .step-text {
      position: relative;
      z-index: 1;
      max-width: 480px;
      color: #888888;
    }

    .step-points {
      position: relative;
      z-index: 1;
      margin-top: 18px;
      list-style: none;
      display: grid;
      gap: 8px;
      max-width: 540px;
    }

    .step-points li {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #8A8A8A;
      line-height: 1.5;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 40% 60%;
      gap: 48px;
      align-items: start;
    }

    .about-copy p {
      color: #888888;
      max-width: 720px;
      margin-bottom: 18px;
    }

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

    .about-points {
      margin-top: 28px;
      list-style: none;
      display: grid;
      gap: 10px;
      max-width: 720px;
    }

    .about-points li {
      border-bottom: 1px solid var(--border);
      padding-bottom: 10px;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #8A8A8A;
      line-height: 1.5;
    }

    .about-badge {
      margin-top: 22px;
      display: inline-flex;
      border: 1px solid var(--border);
      padding: 10px 14px;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #A2A2A2;
      background: rgba(14, 14, 14, 0.6);
    }

    .why-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 32px;
      margin-bottom: 48px;
    }

    .why-lead {
      max-width: 520px;
      color: #888888;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .why-card {
      border: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%), var(--surface);
      padding: 34px 30px;
      min-height: 240px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: border-color 0.25s ease, transform 0.25s ease;
    }

    .why-card:hover {
      border-color: #3A3A3A;
      transform: translateY(-4px);
    }

    .why-kpi {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #8A8A8A;
    }

    .why-title {
      max-width: 560px;
    }

    .why-text {
      color: #888888;
      max-width: 560px;
    }

    #services .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 42px;
    }

    #services .services-subline {
      margin-top: 14px;
      max-width: 760px;
      color: #8A8A8A;
      font-size: 14px;
      line-height: 1.6;
    }

    #services .services-note {
      margin-top: 18px;
      color: #8A8A8A;
      font-size: 13px;
      line-height: 1.6;
    }

    #services .service-points {
      list-style: none;
      margin: 0 0 24px;
      padding: 0;
      display: grid;
      gap: 8px;
      color: #888888;
      font-size: 14px;
      line-height: 1.6;
      max-width: 420px;
    }

    #services .service-points li {
      margin: 0;
    }

    .service-card {
      border: 1px solid var(--border);
      background: var(--surface);
      padding: 46px 36px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      transform-style: preserve-3d;
      transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
      transform: translateY(0);
    }

    .service-card::before {
      content: '';
      position: absolute;
      width: 220px;
      height: 220px;
      right: -90px;
      top: -90px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(204, 255, 0, 0.2) 0%, rgba(204, 255, 0, 0) 72%);
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 0.45s ease, transform 0.45s ease;
      pointer-events: none;
      z-index: 0;
    }

    .service-card::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 42%;
      left: -55%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transform: skewX(-18deg);
      transition: left 0.55s ease;
      pointer-events: none;
      z-index: 0;
    }

    .service-card > * {
      position: relative;
      z-index: 1;
    }

    .service-head {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 14px;
      min-height: 64px;
    }

    .service-title {
      margin: 0;
      line-height: 1.05;
    }

    #services .service-title {
      font-size: clamp(20px, 2.1vw, 28px);
      line-height: 1.12;
    }

    .service-card:hover {
      border-color: var(--lime);
      transform: translateY(-11px) rotateX(2deg);
      box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(204, 255, 0, 0.18);
      background: linear-gradient(180deg, rgba(19, 19, 19, 0.96) 0%, rgba(14, 14, 14, 1) 100%);
    }

    .service-card:hover::before {
      opacity: 1;
      transform: scale(1.1);
    }

    .service-card:hover::after {
      left: 120%;
    }

    .service-desc {
      margin: 0 0 32px;
      font-size: 14px;
      color: #888888;
      max-width: 320px;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 16px;
      margin-top: auto;
    }

    .price-meta {
      font-family: 'Space Mono', monospace;
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 56px;
      line-height: 0.9;
      transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
    }

    #services .price {
      font-size: clamp(34px, 3.6vw, 44px);
      line-height: 0.95;
    }

    .get-started {
      display: inline-block;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--body);
      transition: color 0.25s ease, transform 0.25s ease, letter-spacing 0.25s ease;
      cursor: pointer;
    }

    .service-card:hover .get-started {
      color: var(--lime);
      transform: translateX(6px);
      letter-spacing: 0.15em;
    }

    .service-card:hover .price {
      color: var(--lime);
      transform: translateY(-2px);
      text-shadow: 0 0 20px rgba(204, 255, 0, 0.35);
    }

    .testimonials {
      overflow: visible;
    }

    .reviews-carousel {
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 18px 0;
      --review-gap: 24px;
      --reviews-loop-distance: 0px;
    }

    .reviews-track {
      display: flex;
      gap: var(--review-gap);
      width: max-content;
      will-change: transform;
      transform: translate3d(0, 0, 0);
      backface-visibility: hidden;
      animation: reviewsLoop var(--reviews-loop-duration, 38s) linear infinite;
    }

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

    .reviews-set {
      display: flex;
      gap: var(--review-gap);
      flex-shrink: 0;
    }

    .review-card {
      width: 420px;
      border: 1px solid var(--border);
      background: var(--surface);
      padding: 32px;
    }

    .review-stars {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      color: var(--lime);
      letter-spacing: 0.16em;
    }

    .review-quote {
      margin: 18px 0 24px;
      color: var(--body);
      font-style: italic;
      line-height: 1.75;
    }

    .review-author {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .review-actions {
      margin-top: 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .review-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      min-width: 220px;
      text-align: center;
    }

    #blog .blog-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 32px;
      margin-bottom: 48px;
    }

    .blog-lead {
      max-width: 520px;
      color: #888888;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .blog-card {
      border: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%), var(--surface);
      padding: 30px;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      transform-style: preserve-3d;
      transform: translateY(0);
      transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    }

    .blog-card::before {
      content: '';
      position: absolute;
      width: 220px;
      height: 220px;
      right: -90px;
      top: -90px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(204, 255, 0, 0.2) 0%, rgba(204, 255, 0, 0) 72%);
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 0.45s ease, transform 0.45s ease;
      pointer-events: none;
      z-index: 0;
    }

    .blog-card::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 42%;
      left: -55%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transform: skewX(-18deg);
      transition: left 0.55s ease;
      pointer-events: none;
      z-index: 0;
    }

    .blog-card > * {
      position: relative;
      z-index: 1;
    }

    .blog-card:hover {
      border-color: var(--lime);
      transform: translateY(-11px) rotateX(2deg);
      box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(204, 255, 0, 0.18);
      background: linear-gradient(180deg, rgba(19, 19, 19, 0.96) 0%, rgba(14, 14, 14, 1) 100%);
    }

    .blog-card:hover::before {
      opacity: 1;
      transform: scale(1.1);
    }

    .blog-card:hover::after {
      left: 120%;
    }

    .blog-card:hover .blog-link {
      color: var(--lime);
      transform: translateX(6px);
      letter-spacing: 0.15em;
    }

    .blog-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .blog-tag,
    .blog-date {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .blog-tag {
      color: var(--lime);
    }

    .blog-date {
      color: var(--muted);
    }

    .blog-title {
      margin-top: 18px;
      font-family: 'Clash Display', sans-serif;
      font-size: clamp(24px, 2.2vw, 34px);
      line-height: 1.08;
      font-weight: 500;
      letter-spacing: -0.01em;
    }

    .blog-excerpt {
      margin-top: 14px;
      color: #888888;
      max-width: 36ch;
      flex-grow: 1;
    }

    .blog-link {
      margin-top: 22px;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--body);
      transition: color 0.2s ease, transform 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
    }

    .blog-link:hover {
      color: var(--lime);
      transform: translateX(4px);
    }

    .blog-articles {
      margin-top: 52px;
      display: grid;
      gap: 18px;
    }

    .blog-entry {
      border: 1px solid var(--border);
      background: var(--surface);
      padding: 30px;
      scroll-margin-top: 96px;
    }

    .blog-entry-meta {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #8A8A8A;
      margin-bottom: 12px;
    }

    .blog-entry-title {
      font-family: 'Clash Display', sans-serif;
      font-size: clamp(28px, 3vw, 40px);
      line-height: 1.06;
      letter-spacing: -0.01em;
      font-weight: 500;
      margin-bottom: 16px;
      max-width: 940px;
    }

    .blog-entry p {
      color: #888888;
      max-width: 900px;
      margin-bottom: 14px;
    }

    .blog-entry p:last-child {
      margin-bottom: 0;
    }

    @keyframes reviewsLoop {
      from { transform: translate3d(0, 0, 0); }
      to { transform: translate3d(calc(-1 * var(--reviews-loop-distance)), 0, 0); }
    }

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

    #faq .faq-grid {
      display: grid;
      grid-template-columns: 38% 62%;
      gap: 48px;
    }

    .faq-left {
      position: sticky;
      top: 120px;
      align-self: start;
    }

    @media (max-width: 1280px), (hover: none) and (pointer: coarse) {
      .process-left,
      .faq-left,
      .faq-q {
        position: static !important;
        top: auto !important;
      }
    }

    .faq-ghost {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 15vw;
      line-height: 0.8;
      color: #1A1A1A;
      margin-bottom: 24px;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 24px 0;
    }

    .faq-q {
      width: 100%;
      border: none;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      gap: 24px;
      font-weight: 400;
      font-size: 16px;
      cursor: pointer;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
      font-size: 20px;
      color: var(--muted);
      transition: transform 0.3s ease;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-a-wrap {
      height: 0;
      overflow: hidden;
    }

    .faq-a {
      padding-top: 16px;
      font-size: 14px;
      color: #888888;
      line-height: 1.9;
      max-width: 680px;
    }

    #contact {
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .contact-title {
      text-align: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 11vw, 152px);
      line-height: 0.88;
      letter-spacing: -0.03em;
      margin-bottom: 48px;
    }

    .contact-title .outline {
      color: transparent;
      -webkit-text-stroke: 1.5px var(--white);
    }

    .contact-meta {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 64px;
      text-align: center;
    }

    .contact-meta .value {
      font-weight: 400;
      color: var(--white);
    }

    .contact-form {
      max-width: 640px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      gap: 24px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .field {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      line-height: 1.35;
      transition: border-color 0.2s ease;
    }

    select.field {
      -webkit-appearance: menulist;
      -moz-appearance: menulist;
      appearance: menulist;
      border: 1px solid #2A2A2A;
      border-radius: 4px;
      background: #ffffff;
      box-shadow: none;
      padding: 12px;
      line-height: 1.3;
      color: #111111;
    }

    select.field::-ms-expand {
      display: none;
    }

    select.field option {
      background-color: #ffffff !important;
      color: #111111 !important;
    }

    select.field option[value=""] {
      color: #555555;
    }

    select.field:invalid {
      color: #8A8A8A;
    }

    select.field:valid {
      color: #111111;
    }

    select.field:focus {
      border-color: var(--lime);
    }

    .platform-windows select.field {
      -webkit-appearance: menulist;
      -moz-appearance: menulist;
      appearance: menulist;
      background-image: none;
      background-color: #ffffff !important;
      color: #111111 !important;
      border: 1px solid #2A2A2A;
      border-radius: 4px;
      padding: 12px;
      line-height: 1.3;
    }

    .platform-windows select.field:invalid {
      color: #555555 !important;
    }

    .platform-windows select.field:valid {
      color: #111111 !important;
    }

    .platform-windows select.field option {
      background-color: #ffffff !important;
      color: #111111 !important;
    }

    .platform-apple .center-mark,
    .platform-apple .lang-switch,
    .platform-apple .footer-row,
    .platform-apple .contact-meta,
    .platform-apple .form-status {
      color: #8A8A8A;
    }

    .platform-apple .contact-form .field {
      border-bottom-color: #3A3A3A;
    }

    .platform-apple .contact-form .field::placeholder {
      color: #8D8D8D;
    }

    .platform-apple select.field {
      background: #2A2A2A;
      color: #E6E6E6;
      border: 1px solid #4A4A4A;
      border-radius: 4px;
    }

    .platform-apple select.field:invalid {
      color: #A3A3A3;
    }

    .platform-apple select.field:valid {
      color: #E6E6E6;
    }

    .platform-apple select.field option {
      background-color: #2A2A2A !important;
      color: #E6E6E6 !important;
    }

    .field:focus {
      border-bottom-color: var(--lime);
    }

    .field::placeholder {
      color: #333333;
      transition: color 0.2s;
    }

    .field:focus::placeholder {
      color: transparent;
    }

    textarea.field {
      min-height: 120px;
      resize: vertical;
    }

    .submit {
      width: 100%;
      height: 56px;
      border: 1px solid var(--white);
      background: var(--white);
      color: var(--bg);
      font-family: 'Space Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .submit:hover {
      background: var(--lime);
      border-color: var(--lime);
    }

    .form-status {
      color: var(--muted);
      text-align: center;
      min-height: 24px;
    }

    .bottom-marquee {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      height: 44px;
      display: flex;
      align-items: center;
      overflow: hidden;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--body);
    }

    .bottom-marquee .marquee-content {
      will-change: transform;
    }

    .footer {
      border-top: 1px solid var(--border);
      padding: 32px 48px;
    }

    .footer-row {
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 16px;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .footer-row a {
      color: inherit;
      border-bottom: 1px solid transparent;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .footer-row a:hover {
      color: var(--white);
      border-bottom-color: var(--white);
    }

    .footer-row div:nth-child(2) { text-align: center; }
    .footer-row div:nth-child(3) { text-align: right; }

    .cookie-banner {
      position: fixed;
      left: 20px;
      right: 20px;
      bottom: 20px;
      z-index: 4500;
      border: 1px solid var(--border);
      background: rgba(8, 8, 8, 0.97);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 14px 16px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
      opacity: 0;
      transform: translateY(12px);
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .cookie-banner.is-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .cookie-text {
      margin: 0;
      font-size: 13px;
      color: #b6b6b6;
      line-height: 1.6;
    }

    .cookie-text a {
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .cookie-actions {
      display: inline-flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .cookie-btn {
      border: 1px solid var(--border);
      background: transparent;
      color: var(--white);
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 10px 16px;
      cursor: pointer;
    }

    .cookie-btn-muted {
      color: #b6b6b6;
    }

    .cookie-btn-accept {
      border-color: var(--lime);
      color: var(--lime);
    }

    @media (max-width: 1100px) {
      .container {
        padding: 0 24px;
      }

      #hero::before {
        transform: none;
        background-image: url('./new-york.webp');
        background-position: 60% center;
        background-size: cover;
        filter: brightness(0.62) saturate(0.92) contrast(1.04) grayscale(0.03);
      }

      #hero::after {
        background: linear-gradient(180deg, rgba(3, 3, 3, 0.46) 0%, rgba(3, 3, 3, 0.64) 62%, rgba(3, 3, 3, 0.82) 100%);
      }

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

      .hero-grid > div:first-child {
        margin-top: -22px;
      }

      .hero-right {
        align-items: flex-start;
      }

      .shape-wrap {
        width: min(72vw, 300px);
      }

      .hero-bottom {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 24px;
      }

      .scroll-indicator {
        justify-self: start;
      }

      .work-row-main {
        grid-template-columns: 68px 1fr;
        gap: 16px;
        padding-right: 0;
      }

      .work-meta-col,
      .work-year {
        display: none;
      }

      .work-row {
        max-height: 88px;
        overflow: hidden;
        transition: max-height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
      }

      .work-row:hover {
        max-height: 88px;
      }

      .work-row.in-view {
        max-height: 356px;
      }

      .work-row-main {
        transition: color 0.48s ease;
      }

      .work-row:hover .work-row-main {
        color: #888888;
      }

      .work-row.in-view .work-row-main {
        color: var(--white);
      }

      .work-thumb {
        position: relative;
        top: 0;
        width: 100%;
        height: 176px;
        margin: 0 0 16px;
        opacity: 0;
        transform: translate3d(0, 14px, 0) scale(0.985);
        clip-path: inset(0 0 0 0);
        will-change: transform, opacity;
        transition:
          transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
          opacity 0.72s ease-out;
      }

      .work-row.in-view .work-thumb {
        height: 176px;
        opacity: 1;
        margin: 0 0 16px;
        transform: translate3d(0, 0, 0) scale(1);
      }

      .stats-grid,
      #services .cards,
      .blog-grid,
      .why-grid,
      .contact-meta,
      .footer-row,
      #faq .faq-grid,
      .process-grid,
      .about-grid,
      .menu-inner {
        grid-template-columns: 1fr;
      }

      .why-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
      }

      #blog .blog-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
      }

      .blog-card {
        min-height: 0;
        padding: 24px;
      }

      .blog-meta {
        flex-wrap: wrap;
        align-items: flex-start;
      }

      .blog-link {
        margin-top: 18px;
      }

      .why-card {
        min-height: 0;
      }

      .process-left,
      .faq-left {
        position: static;
        top: auto;
      }

      .stat,
      .service-card,
      .footer-row div {
        border-right: none;
      }

      .footer-row div:nth-child(2),
      .footer-row div:nth-child(3) {
        text-align: left;
      }

      .menu-side {
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 24px 0 0;
      }

      .menu-lang {
        display: inline-flex;
      }

      .nav-row {
        grid-template-columns: 1fr auto;
      }

      .nav-right {
        gap: 14px;
      }

      .center-mark,
      .start-btn {
        display: none;
      }

      .lang-switch {
        display: inline-flex;
        font-size: 10px;
        gap: 8px;
      }

      .menu-close {
        position: fixed;
        right: max(4px, env(safe-area-inset-right));
        top: max(10px, env(safe-area-inset-top));
      }

      .nav-right {
        display: flex;
      }

      .lang-switch {
        display: inline-flex !important;
      }

      .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        grid-template-columns: 1fr;
      }

      .cookie-actions {
        width: 100%;
        justify-content: stretch;
      }

      .cookie-btn {
        flex: 1;
      }
    }

    /* Keep desktop hover animation on split-screen/lower-width Mac windows */
    @media (max-width: 1100px) and (hover: hover) and (pointer: fine) {
      .work-row {
        transition: max-height 0.52s ease, color 0.25s ease;
      }

      .work-row:hover {
        max-height: 236px;
      }

      .work-row.in-view {
        max-height: 88px;
      }

      .work-row-main {
        padding-right: 320px;
        transition: color 0.25s ease;
      }

      .work-row:hover .work-row-main {
        color: var(--white);
      }

      .work-row.in-view .work-row-main {
        color: #888888;
      }

      .work-thumb {
        position: absolute;
        right: 0;
        top: 16px;
        width: 300px;
        height: 176px;
        margin: 0;
        opacity: 1;
        transform: none;
        clip-path: inset(0 100% 0 0);
        transition: clip-path 0.46s cubic-bezier(0.76, 0, 0.24, 1);
      }

      .work-row:hover .work-thumb {
        clip-path: inset(0 0 0 0);
      }

      .work-row.in-view .work-thumb {
        opacity: 1;
        transform: none;
        clip-path: inset(0 100% 0 0);
      }
    }

    @media (max-width: 560px) {
      .shape-wrap {
        width: min(84vw, 260px);
      }

      .shape-orbit text {
        font-size: 10px;
      }

      .hack-display {
        width: 88%;
      }

      .review-card {
        width: min(84vw, 320px);
      }
    }

    /* ── Image helpers ── */
    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    /* Project thumbnail image fills the hover card */
    .work-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    /* ── Accessibility: visually-hidden utility ── */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
