:root {
      --void: #02080f;
      --deep: #050f1c;
      --panel: #081524;
      --surface: #0c1d30;
      --navy: #071028;
      --red: #0ea5e9;
      --red2: #0284c7;
      --red3: #38bdf8;
      --rim: rgba(14,165,233,0.16);
      --rim2: rgba(14,165,233,0.07);
      --white: #eef3f8;
      --dim: rgba(238,243,248,0.45);
      --faint: rgba(238,243,248,0.18);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      background: var(--void);
      color: var(--white);
      font-family: 'Outfit', sans-serif;
      font-weight: 300;
      line-height: 1.75;
      overflow-x: hidden;
      letter-spacing: .01em;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    ::selection {
      background: var(--red);
      color: #fff;
    }

    p {
      text-align: justify;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }
    ::-webkit-scrollbar-track {
      background: var(--void);
    }
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--red), var(--red2));
      border-radius: 3px;
      box-shadow: 0 0 10px rgba(14,165,233,0.5);
    }
    * {
      scrollbar-width: thin;
      scrollbar-color: var(--red) var(--void);
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.025) 2px, rgba(0,0,0,0.025) 4px);
    }

    #noise {
      position: fixed;
      inset: 0;
      z-index: 0;
      opacity: .022;
      pointer-events: none;
    }

    #nav {
      position: fixed;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 900;
      display: flex;
      align-items: center;
      gap: 0;
      height: 52px;
      background: rgba(5,15,28,0.55);
      backdrop-filter: blur(28px) saturate(1.6) brightness(1.1);
      -webkit-backdrop-filter: blur(28px) saturate(1.6) brightness(1.1);
      border: 1px solid rgba(14,165,233,0.22);
      clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
      padding: 0 12px 0 18px;
      transition: background .4s, box-shadow .4s;
      white-space: nowrap;
    }
    #nav.scrolled {
      background: rgba(3,9,18,0.82);
      box-shadow: 0 8px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.05) inset;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-right: 4px;
    }
    .nav-logo-wrap {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 4px 14px 4px 6px;
      background: transparent;
      border: none;
      position: relative;
      text-decoration: none;
      cursor: pointer;
    }
    .nav-logo-wrap img {
      height: 24px;
      width: auto;
      display: block;
      object-fit: contain;
    }
    .nav-logo-wrap .nav-wordmark {
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: .75rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      background: linear-gradient(90deg, #fff 0%, #38bdf8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-sep {
      width: 1px;
      height: 22px;
      background: rgba(14,165,233,.22);
      margin: 0 16px;
    }

    .nav-center {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
    }
    .nav-center a {
      font-family: 'Outfit', sans-serif;
      font-size: .72rem;
      font-weight: 400;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--dim);
      padding: 7px 16px;
      transition: all .25s;
      position: relative;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      background: transparent;
    }
    .nav-center a:hover {
      color: var(--white);
      background: rgba(14,165,233,0.12);
      box-shadow: 0 0 20px rgba(14,165,233,0.1);
    }
    .nav-center a::before {
      content: '';
      position: absolute;
      top: 0;
      left: 8px;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(56,189,248,0.4), transparent);
      box-shadow: 0 0 6px rgba(56,189,248,0.3);
      opacity: 0;
      transition: opacity .25s;
    }
    .nav-center a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 8px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(56,189,248,0.4), transparent);
      box-shadow: 0 0 6px rgba(56,189,248,0.3);
      opacity: 0;
      transition: opacity .25s;
    }
    .nav-center a:hover::before,
    .nav-center a:hover::after {
      opacity: 1;
    }

    .nav-active {
      color: var(--white) !important;
      background: rgba(14,165,233,0.15) !important;
      box-shadow: 0 0 20px rgba(14,165,233,0.12);
    }
    .nav-active::before { opacity: 1 !important; }
    .nav-active::after { opacity: 1 !important; }

    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 10px;
      background: none;
      border: none;
    }
    .mobile-menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all .3s;
    }
    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px,5px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px,-5px);
    }

    .btn-nav {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 9px 20px;
      margin-left: 6px;
      background: linear-gradient(180deg, rgba(14,165,233,0.2) 0%, rgba(14,165,233,0.08) 100%);
      border: none;
      color: #fff;
      cursor: pointer;
      position: relative;
      overflow: visible;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: all .28s ease;
      box-shadow: 0 0 15px rgba(14,165,233,0.2);
    }
    .btn-nav::before {
      content: '';
      position: absolute;
      top: 0;
      left: 10px;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.4) 20%, rgba(56,189,248,0.9) 50%, rgba(56,189,248,0.4) 80%, transparent 100%);
      box-shadow: 0 0 8px rgba(56,189,248,0.6), 0 0 20px rgba(56,189,248,0.3);
      transition: all .3s ease;
    }
    .btn-nav::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 10px;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.4) 20%, rgba(56,189,248,0.9) 50%, rgba(56,189,248,0.4) 80%, transparent 100%);
      box-shadow: 0 0 8px rgba(56,189,248,0.6), 0 0 20px rgba(56,189,248,0.3);
      transition: all .3s ease;
    }
    .btn-nav:hover {
      background: linear-gradient(180deg, rgba(14,165,233,0.3) 0%, rgba(14,165,233,0.12) 100%);
      box-shadow: 0 0 30px rgba(14,165,233,0.4), 0 0 0 1px rgba(14,165,233,0.3) inset;
      transform: translateY(-1px);
      color: #fff;
    }
    .btn-nav:hover::before,
    .btn-nav:hover::after {
      box-shadow: 0 0 15px rgba(56,189,248,0.9), 0 0 30px rgba(56,189,248,0.5), 0 0 45px rgba(56,189,248,0.3);
    }
    .btn-nav:active {
      transform: translateY(1px);
    }

    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 40px 120px;
      position: relative;
      overflow: hidden;
    }
    #stars {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .pulse-ring {
      position: absolute;
      left: 50%;
      top: 50%;
      width: var(--s);
      height: var(--s);
      border-radius: 50%;
      border: 1px solid rgba(232,32,58,.08);
      transform: translate(-50%,-50%);
      animation: ringPulse var(--d) ease-out var(--delay) infinite;
    }
    @keyframes ringPulse {
      0% {
        transform: translate(-50%,-50%) scale(.6);
        opacity: .8;
        border-color: rgba(232,32,58,.14);
      }
      100% {
        transform: translate(-50%,-50%) scale(1.06);
        opacity: 0;
        border-color: rgba(232,32,58,0);
      }
    }

    .hero-ecg-wrap {
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      height: 64px;
      position: relative;
      margin-bottom: 2.4rem;
      mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    }
    #ecg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .bracket {
      position: absolute;
      width: 60px;
      height: 60px;
    }
    .bracket::before,
    .bracket::after {
      content: '';
      position: absolute;
      background: #FF0000;
      opacity: .45;
    }
    .bracket.tl { top: 28px; left: 28px; }
    .bracket.tl::before { top: 0; left: 0; width: 24px; height: 1px; }
    .bracket.tl::after { top: 0; left: 0; width: 1px; height: 24px; }
    .bracket.tr { top: 28px; right: 28px; }
    .bracket.tr::before { top: 0; right: 0; width: 24px; height: 1px; }
    .bracket.tr::after { top: 0; right: 0; width: 1px; height: 24px; }
    .bracket.bl { bottom: 28px; left: 28px; }
    .bracket.bl::before { bottom: 0; left: 0; width: 24px; height: 1px; }
    .bracket.bl::after { bottom: 0; left: 0; width: 1px; height: 24px; }
    .bracket.br { bottom: 28px; right: 28px; }
    .bracket.br::before { bottom: 0; right: 0; width: 24px; height: 1px; }
    .bracket.br::after { bottom: 0; right: 0; width: 1px; height: 24px; }

    .hero-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'JetBrains Mono', monospace;
      font-size: .62rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--red3);
      padding: 7px 18px;
      border-radius: 100px;
      border: 1px solid var(--rim);
      background: var(--rim2);
      margin-bottom: 2.4rem;
      opacity: 0;
      animation: fadeIn .6s .4s forwards;
    }
    .status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #FF0000;
      animation: blink 1.4s ease-in-out infinite;
    }
    @keyframes blink {
      0%,100% { opacity: 1; }
      50% { opacity: .2; }
    }

    .hero-h {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(4rem, 9.5vw, 9rem);
      font-weight: 300;
      line-height: .95;
      letter-spacing: -.03em;
      margin-bottom: 1.8rem;
      opacity: 0;
      animation: fadeIn .9s .65s forwards;
      text-shadow: 0 0 80px rgba(14,165,233,0.15);
    }
    .hero-h em {
      font-style: italic;
      color: var(--red3);
      font-weight: 400;
      text-shadow: 0 0 40px rgba(56,189,248,0.4);
    }
    .hero-sub {
      max-width: 500px;
      font-size: .97rem;
      font-weight: 300;
      color: var(--dim);
      line-height: 2;
      margin: 0 auto 3rem;
      opacity: 0;
      animation: fadeIn .9s .9s forwards;
      text-align: center;
      letter-spacing: .02em;
    }
    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeIn .9s 1.1s forwards;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: none; }
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 0 32px;
      height: 50px;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: visible;
      background: linear-gradient(180deg, rgba(14,165,233,0.15) 0%, rgba(14,165,233,0.05) 100%);
      color: #fff;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: all .3s ease;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: 10px;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.3) 20%, rgba(56,189,248,0.8) 50%, rgba(56,189,248,0.3) 80%, transparent 100%);
      box-shadow: 0 0 10px rgba(56,189,248,0.5), 0 0 20px rgba(56,189,248,0.3);
      transition: all .3s ease;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 10px;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.3) 20%, rgba(56,189,248,0.8) 50%, rgba(56,189,248,0.3) 80%, transparent 100%);
      box-shadow: 0 0 10px rgba(56,189,248,0.5), 0 0 20px rgba(56,189,248,0.3);
      transition: all .3s ease;
    }
    .btn-primary:hover {
      background: linear-gradient(180deg, rgba(14,165,233,0.25) 0%, rgba(14,165,233,0.1) 100%);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(14,165,233,0.3), inset 0 0 30px rgba(14,165,233,0.1);
    }
    .btn-primary:hover::before,
    .btn-primary:hover::after {
      box-shadow: 0 0 15px rgba(56,189,248,0.8), 0 0 35px rgba(56,189,248,0.5), 0 0 50px rgba(56,189,248,0.3);
    }
    .btn-primary:active {
      transform: translateY(1px);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 0 32px;
      height: 50px;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: visible;
      background: rgba(14,165,233,0.03);
      color: var(--white);
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: all .3s ease;
    }
    .btn-secondary::before {
      content: '';
      position: absolute;
      top: 0;
      left: 10px;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.15) 30%, rgba(56,189,248,0.4) 50%, rgba(56,189,248,0.15) 70%, transparent 100%);
      box-shadow: 0 0 6px rgba(56,189,248,0.3);
      transition: all .3s ease;
    }
    .btn-secondary::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 10px;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.15) 30%, rgba(56,189,248,0.4) 50%, rgba(56,189,248,0.15) 70%, transparent 100%);
      box-shadow: 0 0 6px rgba(56,189,248,0.3);
      transition: all .3s ease;
    }
    .btn-secondary:hover {
      background: rgba(14,165,233,0.08);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(14,165,233,0.2), inset 0 0 20px rgba(14,165,233,0.05);
    }
    .btn-secondary:hover::before,
    .btn-secondary:hover::after {
      box-shadow: 0 0 12px rgba(56,189,248,0.6), 0 0 25px rgba(56,189,248,0.3);
    }
    .btn-secondary:active {
      transform: translateY(1px);
    }

    .btn-arrow {
      display: inline-block;
      transition: transform .25s;
    }
    .btn-primary:hover .btn-arrow,
    .btn-secondary:hover .btn-arrow {
      transform: translateX(4px);
    }

    #scrollToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 48px;
      height: 48px;
      background: rgba(14,165,233,0.1);
      border: none;
      color: var(--white);
      cursor: pointer;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all .3s;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }
    #scrollToTop::before {
      content: '';
      position: absolute;
      top: 0;
      left: 8px;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(56,189,248,0.6), transparent);
      box-shadow: 0 0 8px rgba(56,189,248,0.5);
    }
    #scrollToTop::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 8px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(56,189,248,0.6), transparent);
      box-shadow: 0 0 8px rgba(56,189,248,0.5);
    }
    #scrollToTop.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    #scrollToTop:hover {
      background: rgba(14,165,233,0.2);
      box-shadow: 0 4px 20px rgba(14,165,233,0.4);
      transform: translateY(-3px);
    }
    #scrollToTop:hover::before,
    #scrollToTop:hover::after {
      box-shadow: 0 0 15px rgba(56,189,248,0.8);
    }
    #scrollToTop svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    section {
      padding: 120px 48px;
      position: relative;
      z-index: 1;
    }
    .section-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: .62rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--red3);
      margin-bottom: 1.4rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--red);
    }
    .section-h {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      font-weight: 300;
      line-height: 1.05;
      margin-bottom: 1.4rem;
      letter-spacing: -.02em;
    }
    .section-h em {
      font-style: italic;
      color: var(--red3);
    }
    .section-p {
      font-size: .95rem;
      font-weight: 300;
      color: var(--dim);
      line-height: 2;
      max-width: 560px;
      text-align: justify;
      letter-spacing: .015em;
    }

    #contact {
      background: var(--deep);
    }
    .contact-wrap {
      max-width: 1120px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }
    .contact-info .section-p {
      margin-bottom: 1.8rem;
    }

    .email-display {
      background: var(--panel);
      border: 1px solid var(--rim);
      border-radius: 20px;
      padding: 3rem 2.5rem;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .email-display:hover {
      box-shadow: 0 0 40px rgba(14,165,233,0.2), 0 0 80px rgba(14,165,233,0.08);
      border-color: rgba(56,189,248,0.4);
      transform: translateY(-4px);
    }
    .email-display::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(14,165,233,0.08) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .email-display:hover::before {
      opacity: 1;
    }

    .envelope-wrap {
      position: relative;
      width: 80px;
      height: 60px;
      margin: 0 auto 1.8rem;
      cursor: pointer;
    }
    .envelope-wrap svg {
      width: 80px;
      height: 60px;
    }
    .envelope-body {
      fill: none;
      stroke: var(--red3);
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: all 0.3s ease;
    }
    .envelope-flap {
      fill: none;
      stroke: var(--red3);
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: all 0.5s ease;
      transform-origin: 40px 30px;
    }
    .envelope-letter {
      fill: none;
      stroke: rgba(56,189,248,0.6);
      stroke-width: 1.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0;
      transform: translateY(8px);
      transition: all 0.5s ease 0.2s;
    }
    .envelope-sparkle {
      fill: var(--red3);
      opacity: 0;
      transition: all 0.3s ease;
    }
    .email-display:hover .envelope-flap {
      transform: rotateX(-180deg);
    }
    .email-display:hover .envelope-letter {
      opacity: 1;
      transform: translateY(-18px);
    }
    .email-display:hover .envelope-sparkle {
      opacity: 1;
      animation: sparkleFloat 1s ease-out forwards;
    }
    .email-display:hover .envelope-sparkle:nth-child(4) {
      animation-delay: 0.1s;
    }
    .email-display:hover .envelope-sparkle:nth-child(5) {
      animation-delay: 0.25s;
    }
    .email-display:hover .envelope-sparkle:nth-child(6) {
      animation-delay: 0.4s;
    }

    @keyframes sparkleFloat {
      0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
      }
      100% {
        opacity: 0;
        transform: translate(var(--sx), var(--sy)) scale(0);
      }
    }

    .email-link {
      font-family: 'JetBrains Mono', monospace;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--red3);
      word-break: break-all;
      transition: all 0.3s;
      position: relative;
      z-index: 1;
      display: inline-block;
      padding: 0.5rem 1rem;
      border-radius: 12px;
    }
    .email-link:hover {
      color: #fff;
      background: rgba(14,165,233,0.1);
      text-shadow: 0 0 20px rgba(56,189,248,0.6);
    }
    .email-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background: var(--red3);
      transition: width 0.3s ease;
      box-shadow: 0 0 8px rgba(56,189,248,0.5);
    }
    .email-link:hover::after {
      width: 60%;
    }

    .response-badge {
      margin-top: 1.8rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--rim2);
      padding: 0.5rem 1.4rem;
      border-radius: 100px;
      font-size: 0.82rem;
      color: var(--dim);
      border: 1px solid var(--rim);
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
    }
    .email-display:hover .response-badge {
      border-color: rgba(56,189,248,0.3);
      color: rgba(238,243,248,0.7);
    }
    .response-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 8px rgba(34,197,94,0.6);
      animation: blink 2s ease-in-out infinite;
    }

    .email-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .email-particle {
      position: absolute;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--red3);
      opacity: 0;
      transition: all 0.6s ease;
    }
    .email-display:hover .email-particle:nth-child(1) {
      opacity: 0.8;
      transform: translate(-30px, -40px);
    }
    .email-display:hover .email-particle:nth-child(2) {
      opacity: 0.6;
      transform: translate(35px, -35px);
      transition-delay: 0.05s;
    }
    .email-display:hover .email-particle:nth-child(3) {
      opacity: 0.7;
      transform: translate(-25px, 30px);
      transition-delay: 0.1s;
    }
    .email-display:hover .email-particle:nth-child(4) {
      opacity: 0.5;
      transform: translate(30px, 25px);
      transition-delay: 0.15s;
    }
    .email-display:hover .email-particle:nth-child(5) {
      opacity: 0.6;
      transform: translate(-40px, -10px);
      transition-delay: 0.08s;
    }
    .email-display:hover .email-particle:nth-child(6) {
      opacity: 0.7;
      transform: translate(40px, 10px);
      transition-delay: 0.12s;
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .8s ease, transform .8s ease;
    }
    .reveal.in {
      opacity: 1;
      transform: none;
    }

    footer {
      background: var(--void);
      border-top: 1px solid var(--rim);
      padding: 80px 48px 0;
      position: relative;
      overflow: hidden;
    }
    footer::before {
      content: '';
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 400px;
      background: radial-gradient(ellipse at center, rgba(14,165,233,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .footer-wrap {
      max-width: 1120px;
      margin: auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 64px;
      padding-bottom: 64px;
      border-bottom: 1px solid var(--rim);
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .footer-logo-wrap {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 8px 20px 8px 10px;
      border-radius: 14px;
      background: transparent;
      border: none;
      position: relative;
      overflow: hidden;
      width: fit-content;
      margin-bottom: 16px;
    }
    .footer-logo-wrap::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(56,189,248,0.4), transparent);
    }
    .footer-logo-wrap img {
      height: 30px;
      width: auto;
      object-fit: contain;
      display: block;
    }
    .footer-logo-wrap .footer-wordmark {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: .82rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      background: linear-gradient(90deg, #fff 0%, #38bdf8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .footer-tagline {
      font-size: .83rem;
      font-weight: 300;
      color: var(--dim);
      line-height: 1.75;
      max-width: 220px;
      margin-bottom: 28px;
    }
    .footer-social {
      display: flex;
      gap: 8px;
    }
    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      border: 1px solid var(--rim);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--dim);
      background: rgba(255,255,255,0.02);
      transition: all .25s;
    }
    .footer-social a:hover {
      border-color: var(--red);
      color: var(--red3);
      background: var(--rim2);
      box-shadow: 0 4px 16px rgba(14,165,233,0.2);
    }
    .footer-social svg {
      width: 15px;
      height: 15px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
    }
    .footer-col {
      display: flex;
      flex-direction: column;
    }
    .footer-col h4 {
      font-family: 'JetBrains Mono', monospace;
      font-size: .6rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--white);
      opacity: .5;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--rim);
    }
    .footer-col a {
      font-size: .85rem;
      font-weight: 300;
      color: var(--dim);
      margin-bottom: 10px;
      transition: color .2s, padding-left .2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-col a::before {
      content: '';
      display: inline-block;
      width: 0;
      height: 1px;
      background: var(--red);
      transition: width .25s;
      flex-shrink: 0;
    }
    .footer-col a:hover {
      color: var(--white);
      padding-left: 4px;
    }
    .footer-col a:hover::before {
      width: 12px;
    }

    .footer-col a.footer-active {
      color: var(--red3) !important;
      background: var(--rim2);
      padding: 6px 12px;
      border-radius: 6px;
      margin-left: -12px;
      border: 1px solid var(--rim);
    }
    .footer-col a.footer-active::before {
      width: 12px;
    }
    .footer-col a.footer-active:hover {
      color: var(--white) !important;
      border-color: var(--red);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 0;
      font-family: 'JetBrains Mono', monospace;
      font-size: .6rem;
      letter-spacing: .12em;
      color: #fff;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom-left {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .footer-bottom-divider {
      width: 1px;
      height: 12px;
      background: var(--rim);
    }
    .footer-status {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--dim);
    }
    .footer-status-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 6px rgba(34,197,94,0.7);
      animation: blink 2s ease-in-out infinite;
    }

    @media(max-width:1024px) {
      .footer-top { gap: 40px; }
    }
    @media(max-width:900px) {
      #nav {
        clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
        border-radius: 0;
      }
      .nav-center { display: none; }
      .nav-sep { display: none; }
      #nav { padding: 0 8px 0 12px; }
      #nav .btn-nav { display: none; }
      .mobile-menu-toggle { display: flex; }
      #nav.mobile-open {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 0;
        clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
      }
      #nav.mobile-open .nav-left {
        justify-content: space-between;
        margin-bottom: 12px;
      }
      #nav.mobile-open .nav-center {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      #nav.mobile-open .nav-center a {
        clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
        border-radius: 0;
        padding: 12px 20px;
      }
      #nav.mobile-open .nav-center a::before,
      #nav.mobile-open .nav-center a::after { display: block; }
      #nav.mobile-open .nav-sep {
        display: block;
        width: 100%;
        height: 1px;
        margin: 8px 0;
      }
      #nav.mobile-open .btn-nav {
        display: inline-flex;
        margin: 8px 0 0;
        width: 100%;
        justify-content: center;
        clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      }
      #nav.mobile-open .mobile-menu-toggle {
        position: absolute;
        top: 16px;
        right: 16px;
      }
      .contact-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
      section {
        padding: 80px 32px;
      }
      #hero {
        padding: 60px 24px 100px;
      }
      footer {
        padding: 60px 24px 0;
      }
      #scrollToTop {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
      }
    }
    @media(max-width:600px) {
      .hero-h {
        font-size: clamp(2.5rem, 8vw, 4rem);
      }
      .hero-sub { font-size: .9rem; }
      .hero-status {
        margin-top: 80px;
        font-size: .55rem;
        letter-spacing: .15em;
        padding: 6px 14px;
      }
      .section-h {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
      }
      .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      section {
        padding: 60px 20px;
      }
      #hero {
        padding: 40px 20px 80px;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
      .footer-bottom-left {
        flex-direction: column;
        gap: 8px;
      }
      .footer-bottom-divider { display: none; }
      .email-link {
        font-size: 1.2rem;
      }
      #scrollToTop {
        bottom: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
      }
      #scrollToTop svg {
        width: 16px;
        height: 16px;
      }
    }