:root {
      --bg: #080808;
      --bg2: #0f0f0f;
      --bg3: #141414;
      --surface: #1a1a1a;
      --border: #222;
      --accent: #e8ff47;
      --accent2: #47b4ff;
      --text: #f0f0f0;
      --text-dim: #888;
      --text-muted: #444;
      --font-display: 'Syne', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-mono);
      font-size: 14px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

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

    /* ── GRID BACKGROUND ── */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
      opacity: 0.3;
      pointer-events: none;
      z-index: 0;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 64px;
      background: rgba(8,8,8,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .nav-logo img {
      height: 32px;
      width: auto;
      filter: invert(1);
    }

    .nav-domain {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 0.05em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 400;
      color: var(--text-dim);
      text-decoration: none;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--accent);
      transition: width 0.2s;
    }

    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { width: 100%; }

    .nav-github {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border: 1px solid var(--border);
      border-radius: 4px;
      font-size: 12px;
      color: var(--text-dim) !important;
      text-decoration: none;
      transition: all 0.2s;
    }

    .nav-github:hover {
      border-color: var(--accent) !important;
      color: var(--accent) !important;
    }

    .nav-github::after { display: none !important; }

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

    /* ── HERO ── */
    #home {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 48px 80px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 11vw, 110px);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 32px;
      overflow-wrap: normal;
      word-break: keep-all;
      max-width: 100%;
    }

    .hero-title span {
      color: var(--accent);
    }

    .hero-subtitle {
      max-width: 560px;
      font-size: 13px;
      color: var(--text-dim);
      line-height: 1.8;
      margin-bottom: 48px;
    }

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

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      background: var(--accent);
      color: #000;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    }

    .btn-primary:hover {
      background: #fff;
      transform: translateY(-2px);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      background: transparent;
      color: var(--text-dim);
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-decoration: none;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: all 0.2s;
    }

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

    .hero-scroll {
      position: absolute;
      bottom: 48px;
      left: 48px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    /* ── ABOUT ── */
    #about {
      padding: 120px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 32px; height: 1px;
      background: var(--accent);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 60px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.9fr;
      gap: 64px;
      align-items: start;
    }

    .about-text p {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.9;
      margin-bottom: 20px;
    }

    .about-text p strong {
      color: var(--text);
      font-weight: 500;
    }

    .about-pfp-wrap {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .pfp-card {
      border: 1px solid var(--border);
      background: var(--bg3);
      padding: 40px 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
    }

    .pfp-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 2px solid var(--accent);
      object-fit: cover;
      filter: grayscale(20%);
      transition: filter 0.3s, transform 0.3s;
    }

    .pfp-img:hover {
      filter: grayscale(0%);
      transform: scale(1.04);
    }

    .pfp-name {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
    }

    .pfp-role {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .pfp-location {
      font-size: 11px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .about-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 8px;
      color: var(--accent);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 0.05em;
      font-weight: 500;
      transition: gap 0.2s;
    }

    .about-link:hover { gap: 14px; }

    /* ── COMPANY ── */
    #company {
      padding: 120px 48px;
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .company-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .company-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 80px;
      align-items: center;
    }

    .company-logo-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px;
      border: 1px solid var(--border);
      background: #000;
      min-width: 280px;
    }

    .company-logo-wrap img {
      width: 200px;
      height: auto;
    }

    .company-desc {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.9;
      margin-bottom: 40px;
    }

    .company-desc strong { color: var(--text); }

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

    .service-item {
      background: var(--bg3);
      padding: 24px 20px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      transition: background 0.2s;
    }

    .service-item:hover { background: var(--surface); }

    .service-icon {
      font-size: 18px;
      color: var(--accent);
      margin-top: 2px;
      flex-shrink: 0;
    }

    .service-name {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
    }

    .service-desc {
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ── SKILLS ── */
    #skills {
      padding: 120px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .skill-card {
      background: var(--bg2);
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
      cursor: default;
    }

    .skill-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 2px;
      height: 0;
      background: var(--accent);
      transition: height 0.3s;
    }

    .skill-card:hover { background: var(--bg3); }
    .skill-card:hover::before { height: 100%; }

    .skill-icon {
      font-size: 32px;
      margin-bottom: 20px;
      display: block;
      transition: transform 0.3s;
    }

    .skill-card:hover .skill-icon { transform: scale(1.1); }

    .skill-name {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .skill-level {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .skill-desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .skill-bar-wrap {
      margin-top: 20px;
      height: 2px;
      background: var(--border);
      position: relative;
    }

    .skill-bar {
      position: absolute;
      top: 0; left: 0;
      height: 100%;
      background: var(--accent);
      transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .skill-badge {
      position: absolute;
      top: 24px; right: 24px;
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      border: 1px solid var(--border);
      padding: 4px 8px;
    }

    /* ── CONTACT ── */
    #contact {
      padding: 120px 48px;
      background: var(--bg2);
      border-top: 1px solid var(--border);
    }

    .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .contact-desc {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.9;
      margin-bottom: 40px;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 24px 28px;
      border-bottom: 1px solid var(--border);
      text-decoration: none;
      transition: background 0.2s;
    }

    .contact-item:last-child { border-bottom: none; }
    .contact-item:hover { background: var(--surface); }

    .contact-item-icon {
      font-size: 18px;
      color: var(--accent);
      width: 24px;
      text-align: center;
      flex-shrink: 0;
    }

    .contact-item-content { flex: 1; }

    .contact-item-label {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .contact-item-value {
      font-size: 14px;
      color: var(--text);
    }

    .contact-item-arrow {
      font-size: 12px;
      color: var(--text-muted);
      transition: transform 0.2s;
    }

    .contact-item:hover .contact-item-arrow {
      transform: translateX(4px);
      color: var(--accent);
    }

    .contact-feature {
      border: 1px solid var(--border);
      padding: 40px;
      background: var(--bg3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 280px;
      text-align: center;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }

    .contact-feature:hover {
      border-color: var(--accent);
      background: var(--surface);
    }

    .contact-feature-icon {
      width: 56px;
      height: 56px;
      margin-bottom: 20px;
      color: var(--accent);
    }

    .contact-feature-img {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 2px solid var(--accent);
      margin-bottom: 20px;
      object-fit: cover;
    }

    .contact-feature-title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--text);
    }

    .contact-feature-sub {
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 32px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--bg);
      position: relative;
      z-index: 1;
    }

    .footer-copy {
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 0.1em;
    }

    .footer-copy span { color: var(--accent); }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      font-size: 11px;
      color: var(--text-muted);
      text-decoration: none;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--accent); }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      #home, #about, #skills, #contact { padding: 100px 24px 60px; }
      #company { padding: 80px 24px; }
      .about-grid, .company-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .company-logo-wrap { min-width: unset; }
      .services-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 16px; text-align: center; }
      .hero-scroll { display: none; }
    }

    /* ── CURSOR BLINK ── */
    .blink {
      animation: blink 1s step-end infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }
