    :root {
      --bg: #080c10;
      --surface: #0e1420;
      --surface2: #131b2a;
      --accent: #00e5ff;
      --accent2: #7c3aed;
      --accent3: #10b981;
      --text: #e2eaf5;
      --muted: #6b7fa3;
      --border: rgba(0,229,255,0.12);
      --glow: 0 0 40px rgba(0,229,255,0.15);
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Space Mono', monospace;
      overflow-x: hidden;
      cursor: none;
    }

    /* CURSOR */
    .cursor {
      position: fixed;
      width: 12px; height: 12px;
      background: var(--accent);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s, width 0.2s, height 0.2s, opacity 0.2s;
      mix-blend-mode: screen;
    }
    .cursor-ring {
      position: fixed;
      width: 40px; height: 40px;
      border: 1px solid rgba(0,229,255,0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
    }

    /* NOISE OVERLAY */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.4;
    }

    /* GRID BG */
    .grid-bg {
      position: fixed; inset: 0;
      background-image:
        linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 500;
      padding: 20px 60px;
      display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(20px);
      background: rgba(8,12,16,0.8);
    }

    .logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      letter-spacing: 0.1em;
      color: var(--accent);
      text-decoration: none;
      position: relative;
    }
    .logo::after {
      content: '■';
      font-size: 0.5rem;
      color: var(--accent2);
      vertical-align: super;
      margin-left: 3px;
    }

    .logo--image::after {
      content: none;
      display: none;
    }

    .logo__img {
      display: block;
      height: 36px;
      width: auto;
      max-width: min(200px, 46vw);
      object-fit: contain;
      object-position: left center;
    }

    .nav-links {
      display: flex; gap: 40px; list-style: none;
    }
    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--accent); }
    .nav-links a.active { color: var(--accent); }

    .nav-cta {
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
      padding: 10px 24px;
      font-family: 'Space Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      cursor: none;
      transition: background 0.2s, color 0.2s;
      text-transform: uppercase;
    }
    .nav-cta:hover { background: var(--accent); color: var(--bg); }
    a.nav-cta { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }

    .nav-aside {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    /* Контакты: иконки брендов (официальные цвета) */
    .contact-channels {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 10px;
    }
    .contact-channels:empty { display: none; }

    .contact-channels--nav { gap: 6px; }
    .contact-channels--footer { gap: 8px; justify-content: flex-end; }
    .contact-channels--section { gap: 12px; justify-content: flex-end; }

    .contact-channels__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      text-decoration: none;
      color: #fff;
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }
    .contact-channels__btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
      filter: brightness(1.06);
    }
    .contact-channels__btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .contact-channels--nav .contact-channels__btn {
      width: 34px;
      height: 34px;
      border-radius: 9px;
    }
    .contact-channels--nav .contact-channels__svg {
      width: 17px;
      height: 17px;
    }

    .contact-channels--section .contact-channels__btn {
      width: 44px;
      height: 44px;
    }
    .contact-channels--section .contact-channels__svg {
      width: 22px;
      height: 22px;
    }

    .contact-channels--footer .contact-channels__btn {
      width: 36px;
      height: 36px;
    }
    .contact-channels--footer .contact-channels__svg {
      width: 18px;
      height: 18px;
    }

    .contact-channels__btn--telegram { background: #229ed9; }
    .contact-channels__btn--email { background: #ea4335; }
    .contact-channels__btn--whatsapp { background: #25d366; }
    .contact-channels__btn--phone { background: #2563eb; }
    .contact-channels__btn--instagram {
      background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .contact-info__label {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }
    .contact-info__channels { margin: 8px 0 14px; }
    .contact-info__text {
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: flex-end;
    }
    .contact-info__text a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      transition: color 0.2s;
    }
    .contact-info__text a:hover { color: var(--accent); }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      justify-content: flex-end;
      padding: 0 60px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
    }
    .orb1 { width: 600px; height: 600px; background: rgba(0,229,255,0.08); top: -100px; right: -100px; animation: drift 8s ease-in-out infinite; }
    .orb2 { width: 400px; height: 400px; background: rgba(124,58,237,0.1); bottom: 100px; left: 200px; animation: drift 10s ease-in-out infinite reverse; }
    .orb3 { width: 300px; height: 300px; background: rgba(16,185,129,0.06); top: 30%; left: 60%; animation: drift 12s ease-in-out infinite; }

    @keyframes drift {
      0%, 100% { transform: translate(0,0); }
      33% { transform: translate(30px, -20px); }
      66% { transform: translate(-20px, 30px); }
    }

    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      display: flex; align-items: center; gap: 12px;
    }
    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 32px; height: 1px;
      background: var(--accent);
    }

    .hero h1 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(3rem, 8vw, 7.5rem);
      line-height: 0.92;
      letter-spacing: -0.03em;
      max-width: 900px;
      animation: fadeUp 1s ease forwards;
    }

    .hero h1 .line { display: block; overflow: hidden; }
    .hero h1 .word { display: inline-block; animation: slideUp 0.8s cubic-bezier(0.16,1,0.3,1) both; }
    .hero h1 .w2 { animation-delay: 0.1s; }
    .hero h1 .w3 { animation-delay: 0.2s; }
    .hero h1 .accent-word { color: transparent; -webkit-text-stroke: 1px var(--accent); }

    @keyframes slideUp {
      from { transform: translateY(110%); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .hero-sub {
      margin-top: 40px;
      max-width: 480px;
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.85rem;
      animation: fadeUp 1s 0.4s ease both;
    }

    .hero-actions {
      margin-top: 48px;
      display: flex; gap: 20px; align-items: center;
      animation: fadeUp 1s 0.6s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .btn-primary {
      background: var(--accent);
      color: var(--bg);
      border: none;
      padding: 16px 40px;
      font-family: 'Space Mono', monospace;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: none;
      text-decoration: none;
      display: inline-block;
      transition: box-shadow 0.3s, transform 0.2s;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }
    .btn-primary:hover {
      box-shadow: 0 0 30px rgba(0,229,255,0.4);
      transform: translateY(-2px);
    }

    .btn-ghost {
      color: var(--text);
      text-decoration: none;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }
    .btn-ghost:hover { color: var(--accent); }
    .btn-ghost::after { content: '→'; }

    /* <button class="btn-ghost"> — сброс стилей браузера (модалка на главной) */
    button.btn-ghost {
      background: transparent;
      border: none;
      padding: 0;
      margin: 0;
      font: inherit;
      color: var(--text);
      cursor: none;
      appearance: none;
      -webkit-appearance: none;
    }
    button.btn-ghost:hover { color: var(--accent); }

    .hero-stats {
      position: absolute; right: 60px; bottom: 80px;
      display: flex; flex-direction: column; gap: 32px;
      animation: fadeUp 1s 0.8s ease both;
    }
    .stat-item { text-align: right; }
    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
    }
    .stat-label { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px; }

    /* TICKER */
    .ticker-wrap {
      position: relative;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      overflow: hidden;
      background: var(--surface);
    }
    .ticker {
      display: flex; gap: 80px;
      width: max-content;
      animation: ticker 30s linear infinite;
    }
    .ticker-item {
      white-space: nowrap;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      display: flex; align-items: center; gap: 20px;
    }
    .ticker-item span { color: var(--accent); }
    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* SECTIONS */
    section { position: relative; z-index: 1; }

    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-label::before { content: '//'; color: var(--accent2); }

    /* SERVICES */
    .services {
      padding: 120px 60px;
    }

    .services-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 80px;
    }

    .services-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      line-height: 1.05;
      max-width: 500px;
    }

    .services-desc {
      max-width: 320px;
      color: var(--muted);
      font-size: 0.8rem;
      line-height: 1.8;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .service-card {
      background: var(--surface);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
      cursor: none;
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,229,255,0.05), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .service-card:hover { background: var(--surface2); }
    .service-card:hover::before { opacity: 1; }

    .service-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    }
    .service-card:hover::after { transform: scaleX(1); }

    .service-num {
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      color: var(--accent);
      letter-spacing: 0.2em;
      margin-bottom: 32px;
    }

    .service-icon {
      width: 48px; height: 48px;
      margin-bottom: 24px;
      color: var(--accent);
    }

    .service-name {
      font-family: 'Syne', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .service-desc {
      font-size: 0.75rem;
      color: var(--muted);
      line-height: 1.8;
    }

    .service-tags {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-top: 28px;
    }
    .tag {
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid var(--border);
      padding: 4px 10px;
      color: var(--muted);
      transition: border-color 0.2s, color 0.2s;
    }
    .service-card:hover .tag { border-color: rgba(0,229,255,0.3); color: var(--accent); }

    /* APPROACH */
    .approach {
      padding: 120px 60px;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .approach-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .approach-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 32px;
    }

    .approach-text {
      color: var(--muted);
      font-size: 0.8rem;
      line-height: 1.9;
      margin-bottom: 24px;
    }

    .steps {
      display: flex; flex-direction: column; gap: 0;
    }

    .step {
      display: flex; gap: 28px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      align-items: flex-start;
      position: relative;
      cursor: none;
      transition: padding-left 0.3s;
    }
    .step:hover { padding-left: 8px; }
    .step:last-child { border-bottom: none; }

    .step-num {
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      color: var(--accent);
      letter-spacing: 0.2em;
      min-width: 32px;
      padding-top: 3px;
    }

    .step-content h4 {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .step-content p {
      font-size: 0.75rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* MARQUEE NUMBERS */
    .big-number {
      font-family: 'Syne', sans-serif;
      font-size: clamp(6rem, 15vw, 14rem);
      font-weight: 800;
      color: transparent;
      -webkit-text-stroke: 1px rgba(0,229,255,0.1);
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      user-select: none;
    }

    /* TECH STACK */
    .stack {
      padding: 120px 60px;
    }
    .stack-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 60px;
      text-align: center;
    }

    .tech-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .tech-chip {
      border: 1px solid var(--border);
      padding: 10px 20px;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      transition: all 0.2s;
      cursor: none;
    }
    .tech-chip:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(0,229,255,0.05);
      box-shadow: 0 0 20px rgba(0,229,255,0.1);
    }

    /* CTA */
    .cta-section {
      padding: 120px 60px;
      background: var(--surface);
      border-top: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .cta-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 60px;
      align-items: center;
    }

    .cta-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.5rem, 5vw, 5rem);
      font-weight: 800;
      line-height: 1;
    }

    .cta-title em {
      font-style: normal;
      color: transparent;
      -webkit-text-stroke: 2px var(--accent);
    }

    .cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }

    .contact-info { text-align: right; margin-top: 20px; }

    /* FOOTER */
    footer {
      padding: 40px 60px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-left {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: min(100%, 540px);
    }

    .footer-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 14px;
    }

    .footer-copy {
      font-size: 0.65rem;
      color: var(--muted);
      letter-spacing: 0.1em;
    }

    .footer-org {
      font-size: 0.58rem;
      line-height: 1.55;
      color: var(--muted);
      letter-spacing: 0.04em;
    }
    .footer-org__name {
      margin: 0 0 8px;
      color: var(--text);
      font-weight: 600;
      font-size: 0.6rem;
      letter-spacing: 0.05em;
      line-height: 1.45;
    }
    .footer-org__line {
      margin: 0 0 4px;
    }
    .footer-org__line:last-child { margin-bottom: 0; }

    .footer-links {
      display: flex; gap: 32px; list-style: none;
    }
    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--accent); }

    /* LEGAL / STATIC PAGES */
    .legal-page {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 0 auto;
      padding: 120px 60px 80px;
    }
    .legal-page__title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.75rem, 4vw, 2.25rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 12px;
    }
    .legal-page__meta {
      font-size: 0.65rem;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 40px;
    }
    .legal-page h2 {
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin: 32px 0 12px;
      color: var(--accent);
    }
    .legal-page p,
    .legal-page ul {
      font-size: 0.82rem;
      line-height: 1.7;
      color: var(--muted);
      margin-bottom: 14px;
    }
    .legal-page ul {
      padding-left: 1.2em;
      list-style: disc;
    }
    .legal-page li { margin-bottom: 8px; }
    .legal-page a {
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 229, 255, 0.35);
    }
    .legal-page a:hover {
      border-bottom-color: var(--accent);
    }
    .legal-page strong { color: var(--text); font-weight: 600; }

    /* SCROLL REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* SCAN LINE */
    .scan-line {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0.15;
      z-index: 999;
      animation: scan 6s linear infinite;
    }
    @keyframes scan {
      from { top: 0; }
      to { top: 100vh; }
    }

    button.nav-cta {
      font-family: 'Space Mono', monospace;
      cursor: none;
    }

    .contact-flash {
      position: fixed;
      top: 88px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4000;
      padding: 12px 24px;
      background: var(--surface2);
      border: 1px solid var(--accent);
      color: var(--accent);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: var(--glow);
    }

    .contact-modal {
      position: fixed;
      inset: 0;
      z-index: 6000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .contact-modal[hidden] { display: none !important; }
    .contact-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 12, 16, 0.85);
      backdrop-filter: blur(8px);
    }
    .contact-modal__panel {
      position: relative;
      width: 100%;
      max-width: 440px;
      padding: 32px 28px 28px;
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--glow);
    }
    .contact-modal__close {
      position: absolute;
      top: 12px;
      right: 14px;
      border: none;
      background: none;
      color: var(--muted);
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      padding: 4px;
    }
    .contact-modal__close:hover { color: var(--accent); }
    .contact-modal__title {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 8px;
      padding-right: 28px;
    }
    .contact-modal__sub {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .contact-modal__field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .contact-modal__field input,
    .contact-modal__field textarea {
      background: var(--surface2);
      border: 1px solid var(--border);
      color: var(--text);
      padding: 12px 14px;
      font-family: 'Space Mono', monospace;
      font-size: 0.8rem;
      text-transform: none;
      letter-spacing: normal;
    }
    .contact-modal__field input:focus,
    .contact-modal__field textarea:focus {
      outline: none;
      border-color: var(--accent);
    }
    .contact-modal__err {
      display: block;
      color: #f87171;
      font-size: 0.7rem;
      text-transform: none;
      letter-spacing: normal;
      margin-top: -8px;
      margin-bottom: 8px;
    }
    .contact-modal__submit {
      width: 100%;
      margin-top: 8px;
      padding: 16px;
      border: none;
      background: var(--accent);
      color: var(--bg);
      font-family: 'Space Mono', monospace;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }
    .contact-modal__submit:hover {
      box-shadow: 0 0 24px rgba(0,229,255,0.35);
    }

    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .hero { padding: 0 24px 60px; }
      .hero-stats { display: none; }
      .services, .approach, .stack, .cta-section { padding: 80px 24px; }
      .services-grid { grid-template-columns: 1fr; }
      .services-header { flex-direction: column; gap: 24px; align-items: flex-start; }
      .approach-inner { grid-template-columns: 1fr; gap: 48px; }
      .cta-inner { grid-template-columns: 1fr; }
      .cta-actions { align-items: flex-start; }
      .contact-info { text-align: left; }
      .contact-info__text { align-items: flex-start; }
      .contact-channels--section { justify-content: flex-start; }
      .nav-aside { gap: 8px; }
      footer { flex-direction: column; gap: 20px; text-align: center; }
      .footer-left { align-items: center; max-width: 100%; }
      .footer-right { align-items: center; }
      .contact-channels--footer { justify-content: center; }
      .legal-page { padding: 100px 24px 60px; }
    }
