*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --bg: #0a0a0a;
      --bg-alt: #111111;
      --bg-modal: #0d0d0d;
      --white: #f0f0f0;
      --acid: #d4ff00;
      --acid-dim: #a3cc00;
      --gray: #666;
      --gray-dark: #2a2a2a;
      --font-display: 'Unbounded', sans-serif;
      --font-body: 'Inter', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--white);
      font-family: var(--font-body);
      line-height: 1.5;
      overflow-x: hidden;
      cursor: crosshair;
    }

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

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.2rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--bg);
      border-bottom: 1px solid var(--gray-dark);
    }
    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--white);
    }
    .nav-logo .slash {
      color: var(--acid);
    }
    .nav-logo .cv {
      color: var(--acid);
    }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--white);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }
    .nav-links a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(212,255,0,0.15), transparent);
      transition: left 0.6s;
      pointer-events: none;
      z-index: 1;
    }
    .nav-links a:hover::before {
      left: 100%;
    }
    .nav-links a:hover {
      animation: glitchSlice 0.3s ease-in-out;
      color: var(--acid);
    }
    .nav-status {
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--acid);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .nav-status .dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--acid);
      animation: blink 2s infinite;
    }
    @keyframes blink { 0%,100%{opacity:1;}50%{opacity:0.2;} }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }
    .hero-left {
      padding: 10rem 3rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
    }
    .hero-right {
      position: relative;
      overflow: hidden;
      background: var(--bg);
      border-left: 1px solid var(--gray-dark);
      min-height: 850px;
    }
    .word-wall {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .word-row {
      display: flex;
      width: 200%;
      white-space: nowrap;
      position: absolute;
      animation: wordScroll 30s linear infinite;
    }
    .word-row.reverse {
      animation-direction: reverse;
      animation-duration: 35s;
    }
    .word-row.slow {
      animation-duration: 40s;
    }
    .word-row.fast {
      animation-duration: 25s;
    }
    @keyframes wordScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .hero-right::after {
      content: '';
      position: absolute;
      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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: 0.06;
      pointer-events: none;
      z-index: 4;
    }
    .wall-word {
      font-family: var(--font-display);
      font-weight: 900;
      text-transform: uppercase;
      padding: 0 1.5rem;
      display: inline-block;
      line-height: 1;
      transition: all 0.3s;
    }
    .ww-outline {
      font-size: 5rem;
      color: transparent;
      -webkit-text-stroke: 2px var(--acid);
      letter-spacing: -0.04em;
    }
    .ww-solid {
      font-size: 4rem;
      color: var(--white);
      letter-spacing: -0.03em;
    }
    .ww-lemon {
      font-size: 4.5rem;
      color: var(--acid);
      letter-spacing: -0.03em;
    }
    .ww-gray {
      font-size: 3.5rem;
      color: var(--gray-dark);
      letter-spacing: -0.02em;
    }
    .ww-rotate {
      transform: rotate(-2deg);
    }
    .ww-rotate-2 {
      transform: rotate(1.5deg);
    }
    .hero-photo-wrap {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 5;
      width: 80%;
      max-width: 750px;
      height: 850px;
      overflow: hidden;
      border: 1px solid var(--gray-dark);
      background: var(--bg-alt);
    }
    .hero-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(0.3) contrast(1.1);
      transition: all 0.5s;
    }
    .hero-photo-wrap:hover img {
      filter: grayscale(0) contrast(1);
      transform: scale(1.05);
    }
    .hero-photo-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.5) 100%);
      pointer-events: none;
    }
    .badge-25 {
      position: absolute;
      top: auto;
      bottom: 7%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      text-align: center;
    }
    .badge-25-main {
      font-family: var(--font-display);
      font-size: 7rem;
      font-weight: 900;
      color: var(--bg);
      background: var(--acid);
      padding: 0.5rem 2rem;
      line-height: 1;
      letter-spacing: -0.05em;
      box-shadow: 10px 10px 0 var(--bg-alt);
      position: relative;
      animation: badgePulse 3s ease-in-out infinite;
    }
    @keyframes badgePulse {
      0%, 100% { box-shadow: 10px 10px 0 var(--bg-alt), 0 0 0 rgba(212,255,0,0); }
      50% { box-shadow: 10px 10px 0 var(--bg-alt), 0 0 50px rgba(212,255,0,0.4); }
    }
    .badge-25-sub {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      color: var(--acid);
      text-transform: uppercase;
      letter-spacing: 0.3em;
      margin-top: 0.8rem;
      display: block;
    }
    .kinetic-wall:hover .kinetic-row {
      animation-play-state: paused;
    }
    .kinetic-wall:hover .kinetic-word {
      filter: brightness(1.3);
    }
    .kinetic-corner {
      position: absolute;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      z-index: 3;
    }
    .corner-tl { top: 2rem; left: 2rem; }
    .corner-tr { top: 2rem; right: 2rem; }
    .corner-bl { bottom: 2rem; left: 2rem; }
    .corner-br { bottom: 2rem; right: 2rem; }
    .corner-br span { color: var(--acid); }
    /* HERO TOP BAR */
    .hero-topbar {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    .hero-topbar-item {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 0.6rem 1.2rem;
      border: 1px solid var(--gray-dark);
    }
    .hero-topbar-item .acid { color: var(--acid); }

    .hero-subtitle-line {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--acid);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 1.5rem;
    }

    .hero-main-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.25vw, 3.6rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.012em;
      word-spacing: 0.025em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      word-break: normal;
      overflow-wrap: normal;
      hyphens: none;
      text-wrap: balance;
    }

    /* Long localized hero titles need breathing room, especially DE/HR diacritics. */
    body.nenadcv-lang-de .hero-main-title {
      font-size: clamp(1.9rem, 3.95vw, 3.35rem);
      line-height: 1.1;
      letter-spacing: -0.008em;
    }
    body.nenadcv-lang-hr .hero-main-title {
      line-height: 1.09;
    }
    .hero-main-title .accent {
      color: var(--acid);
    }

    .hero-description {
      font-family: var(--font-body);
      font-size: 1.1rem;
      line-height: 1.6;
      color: #ccc;
      max-width: 700px;
      margin-bottom: 2.5rem;
    }
    .hero-description .accent {
      color: var(--acid);
      font-weight: 600;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    .hero-btn {
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 1rem 2rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }
    .hero-btn-primary {
      background: var(--acid);
      color: var(--bg);
    }
    .hero-btn-primary:hover {
      background: #e8ff4d;
      transform: translateY(-2px);
    }
    .hero-btn-secondary {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--gray-dark);
    }
    .hero-btn-secondary:hover {
      border-color: var(--white);
      transform: translateY(-2px);
    }

    .hero-footer-info {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--gray);
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .hero-footer-info span::before {
      content: '+ ';
      color: var(--acid);
    }

    .cursor-lemon {
      position: fixed;
      width: 250px; height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,255,0,0.08) 0%, transparent 70%);
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.05s ease;
      mix-blend-mode: screen;
    }
    @keyframes glitch1 {
      0%, 95%, 100% { transform: none; opacity: 1; }
      96% { transform: translateX(-1px) skewX(-0.5deg); }
      97% { transform: translateX(1px) skewX(0.5deg); opacity: 0.9; }
      98% { transform: translateX(-1px); }
      99% { transform: translateX(0.5px) skewX(-0.3deg); }
    }
    @keyframes glitch2 {
      0%, 93%, 100% { clip-path: none; transform: none; }
      94% { clip-path: inset(20% 0 60% 0); transform: translateX(3px); }
      95% { clip-path: inset(50% 0 20% 0); transform: translateX(-3px); }
      96% { clip-path: inset(10% 0 70% 0); transform: translateX(2px); }
    }
    .glitch-text {
      position: relative;
    }
    .glitch-text::before,
    .glitch-text::after {
      content: attr(data-text);
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      opacity: 0;
    }
    .glitch-text:hover::before {
      animation: glitch2 2s infinite;
      color: var(--acid);
      opacity: 0.6;
    }
    .glitch-text:hover::after {
      animation: glitch2 2s infinite reverse;
      color: var(--purple, #a855f7);
      opacity: 0.4;
    }
    /* MARQUEE */
    .marquee {
      border-top: 1px solid var(--gray-dark);
      border-bottom: 1px solid var(--gray-dark);
      overflow: hidden;
      padding: 1rem 0;
    }
    .marquee-track {
      display: flex;
      animation: marquee 25s linear infinite;
      width: max-content;
    }
    .marquee-item {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      font-weight: 900;
      text-transform: uppercase;
      white-space: nowrap;
      padding: 0 2rem;
      color: var(--white);
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .marquee-item .star {
      color: var(--acid);
      font-size: 0.6em;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* SECTION COMMON */
    .section-pad { padding: 8rem 3rem; }
    .section-label {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--acid);
      text-transform: uppercase;
      letter-spacing: 0.3em;
      margin-bottom: 1rem;
    }
    .section-num {
      font-family: var(--font-display);
      font-size: clamp(6rem, 15vw, 15rem);
      font-weight: 900;
      color: var(--gray-dark);
      line-height: 0.8;
      letter-spacing: -0.05em;
      position: absolute;
      top: 4rem;
      right: 3rem;
      pointer-events: none;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6vw, 6rem);
      font-weight: 900;
      line-height: 0.95;
      letter-spacing: -0.02em;
      margin-bottom: 3rem;
    }
    .section-title em { font-style: normal; color: var(--acid); font-weight: 800; }

    .glitch-title {
      position: relative;
      overflow: hidden;
    }
    .glitch-title::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(212,255,0,0.1), transparent);
      transition: left 0.6s;
      pointer-events: none;
      z-index: 1;
    }
    .glitch-title:hover::before {
      left: 100%;
    }
    .glitch-title:hover {
      animation: glitchSlice 0.4s ease-in-out;
    }
    @keyframes glitchSlice {
      0%, 100% { clip-path: none; transform: none; }
      20% { clip-path: inset(20% 0 60% 0); transform: translateX(-3px); }
      40% { clip-path: inset(60% 0 20% 0); transform: translateX(3px); }
      60% { clip-path: inset(40% 0 40% 0); transform: translateX(-2px); }
      80% { clip-path: inset(10% 0 70% 0); transform: translateX(2px); }
    }

    /* WORK — CATEGORIES & GRID */
    .work-section {
      position: relative;
      border-top: 1px solid var(--gray-dark);
    }
    .work-header {
      padding: 4rem 3rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 2rem;
    }
    .work-filters {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      padding: 0 3rem;
      margin-bottom: 2rem;
    }
    .filter-btn {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      font-weight: 600;
      padding: 0.5rem 1.2rem;
      border: 1px solid var(--gray-dark);
      border-radius: 0;
      background: transparent;
      color: var(--gray);
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      transition: all 0.3s;
    }
    .filter-btn:hover { border-color: var(--gray); color: var(--white); }
    .filter-btn.active {
      background: var(--acid);
      color: var(--bg);
      border-color: var(--acid);
    }
    .work-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 1px;
      background: var(--gray-dark);
      border: 1px solid var(--gray-dark);
      margin: 2rem 3rem;
    }
    .work-card {
      background: var(--bg);
      position: relative;
      transition: all 0.4s;
      cursor: pointer;
      border: 1px solid transparent;
    }
    .work-card.hidden { display: none; }
    .work-card:hover {
      background: var(--bg-alt);
    }
    .work-card-img {
      width: 100%;
      height: 280px;
      overflow: hidden;
      border-bottom: 1px solid var(--gray-dark);
    }
    .work-card-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: all 0.5s;
      filter: grayscale(0.3) contrast(1.1);
    }
    .work-card:hover .work-card-img img {
      transform: scale(1.05);
      filter: grayscale(0) contrast(1);
    }
    .work-card-info { padding: 1.5rem; }
    .work-card-num {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      color: var(--acid);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 0.8rem;
    }
    .work-card-title {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
      position: relative;
      overflow: hidden;
    }
    .work-card-title:hover {
      animation: glitchSlice 0.3s ease-in-out;
    }
    .work-card-cat {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
    }
    .work-card-desc {
      font-size: 0.8rem;
      color: var(--gray);
      line-height: 1.7;
    }
    .work-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1rem;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      color: var(--acid);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      transition: gap 0.3s;
    }
    .work-card-link:hover { gap: 1rem; }

    /* MODAL */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0,0,0,0.95);
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .modal-overlay.active { display: flex; }
    .modal {
      background: var(--bg-modal);
      border: 1px solid var(--gray-dark);
      border-radius: 4px;
      max-width: 1200px;
      width: 100%;
      max-height: 95vh;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .modal-close {
      position: fixed;
      top: 1.5rem;
      right: 1.5rem;
      z-index: 3000;
      width: 48px; height: 48px;
      background: var(--acid);
      border: 1px solid var(--acid);
      color: var(--bg);
      font-family: var(--font-mono);
      font-size: 1.4rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      border-radius: 0;
    }
    .modal-close:hover {
      background: var(--white);
      border-color: var(--white);
      color: var(--bg);
    }
    .modal-content {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 0;
      height: 100%;
      overflow: hidden;
    }
    .modal-gallery {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      padding: 1rem;
      overflow-y: auto;
      max-height: 95vh;
    }
    .modal-gallery img {
      width: 100%;
      height: auto;
      object-fit: contain;
      background: var(--bg-alt);
      border: 1px solid var(--gray-dark);
    }
    .modal-body {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .modal-category {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      color: var(--acid);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .modal-category::before {
      content: '';
      width: 30px; height: 1px;
      background: var(--acid);
    }
    .modal-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 2rem;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
    }
    .modal-title:hover {
      animation: glitchSlice 0.4s ease-in-out;
    }
    .modal-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--gray-dark);
    }
    .modal-info-item {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .modal-info-label {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }
    .modal-info-value {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--white);
    }
    .modal-desc {
      font-size: 1rem;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 2rem;
    }
    .modal-desc strong {
      color: var(--white);
      font-weight: 600;
    }
    .modal-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.5rem;
      background: var(--acid);
      color: var(--bg);
      font-family: var(--font-mono);
      font-size: 0.75rem;
      font-weight: 700;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border-radius: 0;
      transition: all 0.3s;
    }
    .modal-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(212,255,0,0.3);
    }

    /* SKILLS */
    .skills-section {
      border-top: 1px solid var(--gray-dark);
      padding: 8rem 3rem;
      background: var(--bg);
    }
    .skills-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .skills-header {
      margin-bottom: 4rem;
    }
    .skills-list {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }
    .skill-item {
      position: relative;
    }
    .skill-info {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 0.8rem;
    }
    .skill-name {
      font-family: var(--font-body);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--gray);
      position: relative;
      overflow: hidden;
    }
    .skill-name:hover {
      animation: glitchSlice 0.3s ease-in-out;
    }
    .skill-percent {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 900;
      color: var(--acid);
      line-height: 1;
    }
    .skill-bar {
      width: 100%;
      height: 4px;
      background: var(--gray-dark);
      position: relative;
      overflow: hidden;
    }
    .skill-fill {
      height: 100%;
      width: 0;
      background: var(--acid);
      transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .skill-item.animated .skill-fill {
      width: var(--target-width);
    }
    .skill-item.animated .skill-percent {
      animation: countUp 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes countUp {
      from { opacity: 0.3; }
      to { opacity: 1; }
    }

    /* ABOUT */
    .about-section {
      border-top: 1px solid var(--gray-dark);
      position: relative;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 450px 1fr;
      gap: 4rem;
      align-items: start;
    }
    .about-photo-wrap {
      position: relative;
      aspect-ratio: auto;
      min-height: 500px;
      overflow: hidden;
      border: 1px solid var(--gray-dark);
      background: var(--bg-alt);
    }
    .about-photo-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: grayscale(1) contrast(1.2);
    }
    .about-photo-wrap::after {
      content: 'NENAD D.';
      position: absolute;
      bottom: 1.5rem; left: 1.5rem;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--acid);
      text-transform: uppercase;
      letter-spacing: 0.2em;
    }
    .about-text p {
      font-size: 1.1rem;
      color: var(--gray);
      line-height: 1.9;
      margin-bottom: 1.8rem;
    }
    .about-text p strong {
      color: var(--white);
      font-weight: 700;
      font-size: 1.15rem;
    }
    .about-text p em.acid {
      font-style: normal;
      color: var(--acid);
    }
    .about-values {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid var(--gray-dark);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .about-value {
      font-family: var(--font-mono);
      font-size: 0.95rem;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding-left: 1rem;
      border-left: 1px solid var(--acid);
    }

    /* TOOLS */
    .tools-section {
      border-top: 1px solid var(--gray-dark);
      background: var(--bg-alt);
    }
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--gray-dark);
      border: 1px solid var(--gray-dark);
    }
    .tool-box {
      background: var(--bg);
      padding: 2rem;
      transition: all 0.3s;
    }
    .tool-box:hover { background: var(--bg-alt); }
    .tool-box-label {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--acid);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--gray-dark);
    }
    .tool-box-items {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .tool-box-item {
      font-size: 1rem;
      color: var(--gray);
      transition: color 0.3s;
    }
    .tool-box:hover .tool-box-item { color: var(--white); }

    /* NOW */
    .now-section {
      border-top: 1px solid var(--gray-dark);
      padding: 4rem 3rem;
      display: flex;
      align-items: flex-start;
      gap: 3rem;
    }
    .now-indicator {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      min-width: 150px;
    }
    .now-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--acid);
      animation: blink 2s infinite;
    }
    .now-label {
      font-family: var(--font-mono);
      font-size: 0.85rem;
      color: var(--acid);
      text-transform: uppercase;
      letter-spacing: 0.2em;
    }
    .now-content { flex: 1; }
    .now-content h3 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
      position: relative;
      overflow: hidden;
    }
    .now-content h3:hover {
      animation: glitchSlice 0.3s ease-in-out;
    }
    .now-content p {
      font-size: 1.05rem;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 1rem;
    }
    .now-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
    .now-tag {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--acid);
      padding: 0.4rem 1rem;
      border: 1px solid rgba(212,255,0,0.3);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* AI LAB */
    .ai-section {
      border-top: 1px solid var(--gray-dark);
      position: relative;
      overflow: hidden;
    }
    .ai-section::before {
      content: 'AI × HUMAN';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) rotate(-5deg);
      font-family: var(--font-display);
      font-size: 15vw;
      font-weight: 900;
      color: var(--gray-dark);
      opacity: 0.3;
      pointer-events: none;
      white-space: nowrap;
    }
    .ai-content { position: relative; z-index: 2; }
    .ai-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1px;
      background: var(--gray-dark);
      border: 1px solid var(--gray-dark);
      margin-top: 3rem;
    }
    .ai-card {
      background: var(--bg);
      padding: 2rem;
      position: relative;
      transition: all 0.3s;
    }
    .ai-card:hover { background: var(--bg-alt); }
    .ai-card-num {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 900;
      color: var(--gray-dark);
      margin-bottom: 1rem;
    }
    .ai-card-title {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      position: relative;
      overflow: hidden;
    }
    .ai-card-title:hover {
      animation: glitchSlice 0.3s ease-in-out;
    }
    .ai-card-desc {
      font-size: 0.8rem;
      color: var(--gray);
      line-height: 1.7;
    }

    /* CONTACT */
    .contact-section {
      border-top: 1px solid var(--gray-dark);
      padding: 8rem 3rem;
      text-align: center;
      position: relative;
    }
    .contact-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 8rem);
      font-weight: 900;
      line-height: 0.9;
      letter-spacing: -0.03em;
      margin-bottom: 2rem;
    }
    .contact-title em { font-style: normal; color: var(--acid); font-weight: 800; }
    .contact-email {
      font-family: var(--font-mono);
      font-size: clamp(0.9rem, 1.5vw, 1.2rem);
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s;
      display: inline-block;
      margin-bottom: 3rem;
    }
    .contact-email::before { content: '→ '; color: var(--acid); }
    .contact-email:hover { color: var(--acid); }
    .contact-details {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }
    .contact-detail {
      font-family: var(--font-mono);
      font-size: 0.9rem;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 0.5rem 1.2rem;
      border: 1px solid var(--acid);
      background: rgba(212,255,0,0.03);
    }
    .contact-detail a { color: inherit; text-decoration: none; transition: all 0.3s; }
    .contact-detail a:hover { color: var(--acid); background: rgba(212,255,0,0.08); }
    .social-links {
      display: flex;
      gap: 1rem;
      justify-content: center;
    }
    .social-link {
      width: 55px; height: 55px;
      border: 1px solid var(--acid);
      background: rgba(212,255,0,0.03);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--acid);
      text-decoration: none;
      font-family: var(--font-mono);
      font-size: 0.8rem;
      font-weight: 700;
      transition: all 0.3s;
      border-radius: 0;
    }
    .social-link:hover {
      background: rgba(212,255,0,0.1);
      transform: translateY(-3px);
      box-shadow: 0 0 20px rgba(212,255,0,0.15);
    }
/* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .about-grid { grid-template-columns: 300px 1fr; gap: 3rem; }
      .about-photo-wrap { min-height: 400px; }
      .tools-grid { grid-template-columns: 1fr 1fr; }
      .ai-grid { grid-template-columns: 1fr; }
      .work-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin: 2rem 2rem; }
      .modal-info-grid { grid-template-columns: 1fr; }
      .modal-content { grid-template-columns: 1fr; }
      .modal-gallery { max-height: 50vh; }
    }
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-logo { font-size: 1rem; }
      .nav-links a { font-size: 0.8rem; }
      .nav-links { display: none; }
      .section-pad { padding: 5rem 1.5rem; }
      .work-grid { grid-template-columns: 1fr; margin: 2rem 1.5rem; }
      .work-filters { padding: 0 1.5rem; }
      .work-card-img { height: 220px; }
      .tools-grid { grid-template-columns: 1fr; }
      .now-section { flex-direction: column; gap: 1.5rem; }
      .about-grid { grid-template-columns: 1fr; }
      .about-photo-wrap { min-height: 350px; max-width: 100%; }
      .about-values { grid-template-columns: 1fr; }
      .hero-left { padding: 8rem 1.5rem 3rem; }
      .hero-topbar { flex-direction: column; gap: 0.5rem; }
      .hero-topbar-item { font-size: 0.65rem; padding: 0.5rem 0.8rem; }
      .hero-main-title {
        font-size: clamp(1.7rem, 7.2vw, 2.7rem);
        line-height: 1.1;
        letter-spacing: -0.008em;
        word-spacing: 0.02em;
      }
      body.nenadcv-lang-de .hero-main-title {
        font-size: clamp(1.6rem, 6.7vw, 2.5rem);
        line-height: 1.11;
      }
      .hero-buttons { flex-direction: column; }
      .hero-btn { width: 100%; text-align: center; }
      .hero-footer-info { flex-direction: column; gap: 0.5rem; }
      .work-header { padding: 3rem 1.5rem 2rem; }
      .modal-body { padding: 1.5rem; }
      .modal-close { top: 0.8rem; right: 0.8rem; width: 42px; height: 42px; font-size: 1.2rem; }
      .contact-details { flex-direction: column; gap: 0.8rem; }
      .contact-detail { font-size: 0.75rem; }
      .social-link { width: 48px; height: 48px; font-size: 0.7rem; }
    }

/* DEUSPIX WordPress CV integration */
:root { --text-muted:#666; }
body.nenadcv-page { margin:0; }
.admin-bar nav { top:32px; }
.corner-tag {
  position:absolute;
  font-family:var(--font-mono);
  font-size:.6rem;
  color:var(--gray);
  text-transform:uppercase;
  letter-spacing:.2em;
  z-index:8;
}
.hero-btn { appearance:none; -webkit-appearance:none; }
.cv-contact-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin:0 0 2.2rem; }

.cv-form-overlay {
  position:fixed;
  inset:0;
  z-index:5000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:2rem;
  background:rgba(0,0,0,.94);
  backdrop-filter:blur(12px);
}
.cv-form-overlay.is-open { display:flex; }
.cv-form-dialog {
  position:relative;
  width:min(980px,100%);
  max-height:92vh;
  overflow:auto;
  background:#0a0a0a;
  border:1px solid var(--gray-dark);
  box-shadow:18px 18px 0 rgba(212,255,0,.08);
}
.cv-form-dialog::before {
  content:'';
  position:absolute;
  left:0; top:0; bottom:0;
  width:4px;
  background:var(--acid);
}
.cv-form-close {
  position:absolute;
  top:1rem;
  right:1rem;
  z-index:3;
  width:46px;
  height:46px;
  border:1px solid var(--acid);
  background:var(--acid);
  color:#0a0a0a;
  font-family:var(--font-mono);
  font-size:1.1rem;
  font-weight:800;
  cursor:pointer;
}
.cv-form-close:hover { background:var(--white); border-color:var(--white); }
.cv-form-head { padding:3rem 3rem 1.5rem; border-bottom:1px solid var(--gray-dark); }
.cv-form-code {
  display:block;
  margin-bottom:1rem;
  color:var(--acid);
  font:600 .7rem/1.2 var(--font-mono);
  letter-spacing:.2em;
}
.cv-form-head h2 {
  margin:0 0 1rem;
  font:900 clamp(2.4rem,6vw,5.5rem)/.92 var(--font-display);
  letter-spacing:-.05em;
  text-transform:uppercase;
}
.cv-form-head h2 em { color:var(--acid); font-style:normal; }
.cv-form-head p { max-width:720px; color:#888; line-height:1.7; }
.cv-form { padding:2rem 3rem 3rem; }
.cv-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.cv-form label { display:block; margin-bottom:1rem; }
.cv-form label > span {
  display:block;
  margin-bottom:.55rem;
  color:#929292;
  font:600 .66rem/1.2 var(--font-mono);
  text-transform:uppercase;
  letter-spacing:.14em;
}
.cv-form input,
.cv-form textarea,
.cv-form select {
  width:100%;
  border:1px solid var(--gray-dark);
  border-radius:0;
  outline:none;
  background:#111;
  color:var(--white);
  padding:1rem 1.05rem;
  font:500 .95rem/1.4 var(--font-body);
  transition:border-color .2s, background .2s, box-shadow .2s;
}
.cv-form textarea { resize:vertical; min-height:150px; }
.cv-form input:focus,
.cv-form textarea:focus,
.cv-form select:focus {
  border-color:var(--acid);
  background:#0d0d0d;
  box-shadow:0 0 0 2px rgba(212,255,0,.08);
}
.cv-form-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  margin-top:.5rem;
  padding-top:1.5rem;
  border-top:1px solid var(--gray-dark);
}
.cv-form-bottom p { max-width:460px; color:#666; font:.68rem/1.6 var(--font-mono); text-transform:uppercase; letter-spacing:.04em; }
.cv-submit {
  flex:0 0 auto;
  padding:1rem 1.5rem;
  border:1px solid var(--acid);
  border-radius:0;
  background:var(--acid);
  color:#080808;
  font:800 .78rem/1 var(--font-display);
  letter-spacing:.05em;
  text-transform:uppercase;
  cursor:pointer;
  transition:transform .2s, background .2s;
}
.cv-submit:hover { transform:translateY(-2px); background:#e8ff4d; }
.cv-hp { position:absolute!important; left:-99999px!important; width:1px!important; height:1px!important; overflow:hidden!important; }
.cv-form-toast {
  position:fixed;
  z-index:6000;
  right:1.5rem;
  top:5.5rem;
  max-width:480px;
  padding:1rem 3.2rem 1rem 1rem;
  border:1px solid var(--acid);
  background:#0d0d0d;
  color:var(--white);
  font:600 .75rem/1.55 var(--font-mono);
  text-transform:uppercase;
  letter-spacing:.05em;
  box-shadow:8px 8px 0 rgba(212,255,0,.08);
}
.cv-form-toast.is-error { border-color:#ff5555; }
.cv-form-toast button { position:absolute; top:.5rem; right:.6rem; border:0; background:transparent; color:var(--acid); font-size:1.3rem; cursor:pointer; }
body.cv-form-locked { overflow:hidden!important; }

@media (max-width:782px) {
  .admin-bar nav { top:46px; }
}
@media (max-width:768px) {
  .cv-form-overlay { padding:.75rem; align-items:flex-start; overflow:auto; }
  .cv-form-dialog { max-height:none; margin:1rem 0; box-shadow:8px 8px 0 rgba(212,255,0,.08); }
  .cv-form-head { padding:2.2rem 1.35rem 1.25rem; }
  .cv-form-head h2 { padding-right:3rem; }
  .cv-form { padding:1.35rem; }
  .cv-form-grid { grid-template-columns:1fr; gap:0; }
  .cv-form-bottom { align-items:stretch; flex-direction:column; }
  .cv-submit { width:100%; }
  .cv-form-toast { left:1rem; right:1rem; top:5rem; max-width:none; }
}
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { scroll-behavior:auto!important; animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
}


/* Legal/privacy form acknowledgement */
.cv-privacy-check{display:flex;align-items:flex-start;gap:.65rem;margin:1rem 0 1.2rem;font-family:var(--font-mono);font-size:.64rem;line-height:1.65;color:#777;cursor:pointer}.cv-privacy-check input{appearance:none;width:17px;height:17px;min-width:17px;border:1px solid #555;background:#000;margin-top:.1rem;position:relative}.cv-privacy-check input:checked{background:var(--acid);border-color:var(--acid)}.cv-privacy-check input:checked:after{content:'✓';position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:#000;font-size:12px;font-weight:900}.cv-privacy-check{max-width:900px}

/* HR / EN / DE switcher for personal CV. CV remains personal and footer-free. */
.nenadcv-page .nav-logo{text-decoration:none;flex:0 0 auto}
.cv-lang-switch{display:flex;align-items:center;border:1px solid var(--gray-dark);background:#000;margin-left:auto;margin-right:1rem;flex-shrink:0}
.cv-lang-switch a{min-width:32px;padding:.44rem .5rem;text-align:center;text-decoration:none;color:var(--gray);font-family:var(--font-mono);font-size:.65rem;font-weight:700;letter-spacing:.08em;border-right:1px solid var(--gray-dark);transition:.2s ease}.cv-lang-switch a:last-child{border-right:0}.cv-lang-switch a:hover{color:var(--acid)}.cv-lang-switch a.active{background:var(--acid);color:#000}
.nenadcv-page nav{gap:1.2rem}.nenadcv-page .nav-links{margin-left:auto}.nenadcv-page .nav-status{flex:0 0 auto}
@media(max-width:1180px){.nenadcv-page .nav-links{gap:1.2rem}.nenadcv-page .nav-status{display:none}}
@media(max-width:768px){.cv-lang-switch{margin-left:auto;margin-right:0}.cv-lang-switch a{min-width:29px;padding:.4rem .38rem;font-size:.6rem}}


/* --------------------------------------------------------------------------
 * Visible TEST ME section - practical hiring task
 * -------------------------------------------------------------------------- */
.cv-test-section{
  position:relative;
  overflow:hidden;
  border-top:1px solid var(--gray-dark);
  border-bottom:1px solid var(--gray-dark);
  background:#0a0a0a;
}
.cv-test-wrap{max-width:1280px;margin:0 auto;padding:0 3rem;}
.cv-test-heading{max-width:980px;margin-bottom:3rem;}
.cv-test-heading .section-title{margin-bottom:1.2rem;}
.cv-test-heading .section-title em{color:var(--acid);font-style:normal;}
.cv-test-lead{max-width:760px;color:#8b8b8b;font-size:1rem;line-height:1.75;}
.cv-test-shell{
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
  border:1px solid var(--acid);
  background:#0d0d0d;
  box-shadow:18px 18px 0 rgba(212,255,0,.055);
}
.cv-test-copy{
  position:relative;
  padding:3rem 2.8rem 3.1rem;
  border-right:1px solid var(--gray-dark);
  background:linear-gradient(145deg,#0d0d0d 0%,#0a0a0a 100%);
}
.cv-test-copy::before{content:'';position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--acid);}
.cv-test-badge{
  display:inline-block;
  margin-bottom:1.35rem;
  padding:.42rem .72rem;
  background:var(--acid);
  color:#080808;
  font:800 .68rem/1 var(--font-mono);
  letter-spacing:.16em;
  text-transform:uppercase;
}
.cv-test-copy h3{
  margin:0 0 1.35rem;
  font:900 clamp(2rem,4vw,3.6rem)/.98 var(--font-display);
  letter-spacing:-.045em;
  text-transform:uppercase;
}
.cv-test-copy h3 em{color:var(--acid);font-style:normal;}
.cv-test-copy>p{color:#949494;line-height:1.75;}
.cv-test-points{list-style:none;margin:1.65rem 0 1.5rem;padding:0;display:grid;gap:.85rem;}
.cv-test-points li{position:relative;padding-left:1.45rem;color:var(--white);font:.82rem/1.65 var(--font-mono);}
.cv-test-points li::before{content:'+';position:absolute;left:0;top:0;color:var(--acid);font-weight:900;}
.cv-test-copy .cv-test-note{margin-top:1.5rem;padding-top:1.25rem;border-top:1px solid var(--gray-dark);color:#666;font:.68rem/1.7 var(--font-mono);text-transform:uppercase;letter-spacing:.035em;}
.cv-test-form-side{padding:1.4rem;background:#101010;}
.cv-form-inline{height:100%;padding:1.6rem 1.55rem 1.45rem;background:#0b0b0b;border:1px solid #202020;}
.cv-form-inline .cv-form-bottom{margin-top:.7rem;}
.cv-form-inline .cv-submit{min-width:220px;}
.nenadcv-page nav a[href="#test-me"]{color:var(--acid);}
.nenadcv-page nav a[href="#test-me"]:hover{color:var(--white);}
@media(max-width:980px){
  .cv-test-wrap{padding:0 1.5rem;}
  .cv-test-shell{grid-template-columns:1fr;box-shadow:10px 10px 0 rgba(212,255,0,.045);}
  .cv-test-copy{border-right:0;border-bottom:1px solid var(--gray-dark);padding:2.3rem 1.6rem;}
  .cv-test-form-side{padding:1rem;}
}
@media(max-width:768px){
  .cv-test-wrap{padding:0 1.2rem;}
  .cv-test-heading{margin-bottom:2rem;}
  .cv-test-copy{padding:2rem 1.25rem;}
  .cv-test-copy h3{font-size:clamp(1.8rem,10vw,3rem);}
  .cv-form-inline{padding:1.15rem;}
  .cv-form-inline .cv-submit{min-width:0;width:100%;}
}



/* --------------------------------------------------------------------------
 * CV ABOUT STORY + EXPERIENCE TIMELINE v1.0.3
 * -------------------------------------------------------------------------- */
.nenadcv-page .about-story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  margin-top:4rem;
  border:1px solid var(--gray-dark);
  background:var(--gray-dark);
}
.nenadcv-page .cv-location-card,
.nenadcv-page .cv-video-card{
  min-width:0;
  background:var(--bg);
  display:grid;
  grid-template-columns:minmax(220px,.9fr) minmax(0,1.1fr);
  min-height:360px;
}
.nenadcv-page .cv-location-map{
  overflow:hidden;
  min-height:100%;
  background:#0c0c0c;
  border-right:1px solid var(--gray-dark);
}
.nenadcv-page .cv-location-map img{
  width:118%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  object-position:62% center;
  display:block;
  transform:translateX(2%);
  filter:grayscale(1) contrast(1.12);
}
.nenadcv-page .cv-video-frame{
  position:relative;
  min-height:100%;
  background:#000;
  border-right:1px solid var(--gray-dark);
}
.nenadcv-page .cv-video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.nenadcv-page .cv-story-copy{
  padding:2.4rem 2.1rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.nenadcv-page .cv-story-kicker{
  font-family:var(--font-mono);
  color:var(--acid);
  font-size:.7rem;
  letter-spacing:.18em;
  margin:0 0 1rem;
}
.nenadcv-page .cv-story-copy h3{
  font-family:var(--font-display);
  font-size:clamp(1.45rem,2vw,2.3rem);
  line-height:1.13;
  text-transform:uppercase;
  margin:0 0 1rem;
}
.nenadcv-page .cv-story-copy h3 em{color:var(--acid);font-style:normal}
.nenadcv-page .cv-story-copy>p:not(.cv-story-kicker){
  color:var(--gray);
  line-height:1.75;
  margin:0;
}
.nenadcv-page .cv-story-tags,
.nenadcv-page .cv-timeline-tags{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top:1.4rem;
}
.nenadcv-page .cv-story-tags span,
.nenadcv-page .cv-timeline-tags span{
  font-family:var(--font-mono);
  font-size:.62rem;
  letter-spacing:.08em;
  color:var(--acid);
  border:1px solid var(--gray-dark);
  padding:.35rem .55rem;
}
.nenadcv-page .cv-story-link{
  display:inline-block;
  width:max-content;
  max-width:100%;
  margin-top:1.5rem;
  color:var(--acid);
  font-family:var(--font-display);
  font-size:.72rem;
  font-weight:700;
  text-decoration:none;
  letter-spacing:.04em;
  border-bottom:1px solid var(--acid);
  padding-bottom:.25rem;
}
.nenadcv-page .experience-section{
  border-top:1px solid var(--gray-dark);
  background:var(--bg-alt);
}
.nenadcv-page .experience-intro{
  max-width:780px;
  color:var(--gray);
  font-size:1.05rem;
  line-height:1.8;
  margin-top:1.5rem;
}
.nenadcv-page .cv-timeline{
  position:relative;
  margin-top:4rem;
}
.nenadcv-page .cv-timeline-item{
  display:grid;
  grid-template-columns:130px 34px minmax(0,1fr);
  column-gap:1.5rem;
  position:relative;
  padding-bottom:1.5rem;
}
.nenadcv-page .cv-timeline-date{
  font-family:var(--font-mono);
  font-size:.72rem;
  letter-spacing:.1em;
  color:var(--gray);
  text-align:right;
  padding-top:1.7rem;
}
.nenadcv-page .cv-timeline-item.is-current .cv-timeline-date{color:var(--acid);font-weight:700}
.nenadcv-page .cv-timeline-marker{
  position:relative;
  display:flex;
  justify-content:center;
}
.nenadcv-page .cv-timeline-marker::before{
  content:'';
  position:absolute;
  width:1px;
  background:var(--gray-dark);
  top:0;
  bottom:-1.5rem;
}
.nenadcv-page .cv-timeline-item:last-child .cv-timeline-marker::before{bottom:50%}
.nenadcv-page .cv-timeline-marker span{
  width:11px;
  height:11px;
  border:2px solid var(--acid);
  background:var(--bg-alt);
  margin-top:1.7rem;
  z-index:1;
  transform:rotate(45deg);
}
.nenadcv-page .cv-timeline-item.is-current .cv-timeline-marker span{
  background:var(--acid);
  box-shadow:0 0 0 8px rgba(212,255,0,.08);
}
.nenadcv-page .cv-timeline-card{
  border:1px solid var(--gray-dark);
  background:var(--bg);
  padding:1.6rem 1.8rem;
  transition:border-color .25s ease,transform .25s ease;
}
.nenadcv-page .cv-timeline-card:hover{border-color:var(--acid);transform:translateY(-2px)}
.nenadcv-page .cv-timeline-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1.5rem;
  margin-bottom:1rem;
}
.nenadcv-page .cv-timeline-company{
  font-family:var(--font-mono);
  color:var(--acid);
  font-size:.68rem;
  letter-spacing:.16em;
  margin:0 0 .45rem;
}
.nenadcv-page .cv-timeline-card h3{
  font-family:var(--font-display);
  text-transform:uppercase;
  font-size:clamp(1.05rem,1.4vw,1.5rem);
  line-height:1.25;
  margin:0;
}
.nenadcv-page .cv-timeline-card>p{
  color:var(--gray);
  line-height:1.75;
  margin:0;
  max-width:1000px;
}
.nenadcv-page .cv-current-badge{
  flex:0 0 auto;
  background:var(--acid);
  color:#000;
  font-family:var(--font-mono);
  font-size:.62rem;
  font-weight:800;
  letter-spacing:.12em;
  padding:.4rem .55rem;
}
@media(max-width:1180px){
  .nenadcv-page .about-story-grid{grid-template-columns:1fr}
  .nenadcv-page .cv-location-card,.nenadcv-page .cv-video-card{grid-template-columns:minmax(240px,.8fr) 1.2fr}
}
@media(max-width:768px){
  .nenadcv-page .about-story-grid{margin-top:2.5rem}
  .nenadcv-page .cv-location-card,.nenadcv-page .cv-video-card{grid-template-columns:1fr;min-height:0}
  .nenadcv-page .cv-location-map,.nenadcv-page .cv-video-frame{border-right:0;border-bottom:1px solid var(--gray-dark);min-height:260px}
  .nenadcv-page .cv-location-map img{min-height:260px}
  .nenadcv-page .cv-video-frame{aspect-ratio:16/9}
  .nenadcv-page .cv-story-copy{padding:1.6rem 1.25rem}
  .nenadcv-page .cv-timeline-item{grid-template-columns:18px 1fr;column-gap:1rem;padding-bottom:1rem}
  .nenadcv-page .cv-timeline-date{grid-column:2;text-align:left;padding:0 0 .55rem;font-size:.66rem}
  .nenadcv-page .cv-timeline-marker{grid-column:1;grid-row:1 / span 2}
  .nenadcv-page .cv-timeline-marker span{margin-top:.2rem}
  .nenadcv-page .cv-timeline-card{grid-column:2;padding:1.35rem 1.15rem}
  .nenadcv-page .cv-timeline-top{gap:.75rem}
}

/* --------------------------------------------------------------------------
 * CV LAYOUT GRID v1.0.3
 * One consistent editorial content width across every CV content section.
 * Hero and marquee remain intentionally full-bleed; their left content edge
 * aligns with the same grid on wide screens.
 * -------------------------------------------------------------------------- */
.nenadcv-page{
  --cv-content-max:1600px;
  --cv-desktop-gutter:3rem;
}

/* Full-bleed section backgrounds, one shared inner content width. */
.nenadcv-page .work-section.section-pad,
.nenadcv-page .cv-test-section.section-pad,
.nenadcv-page .about-section.section-pad,
.nenadcv-page .experience-section.section-pad,
.nenadcv-page .ai-section.section-pad{
  padding:8rem 0;
}

.nenadcv-page .work-header,
.nenadcv-page .work-filters,
.nenadcv-page .work-grid,
.nenadcv-page .cv-test-wrap,
.nenadcv-page .about-grid,
.nenadcv-page .about-story-grid,
.nenadcv-page .experience-wrap,
.nenadcv-page .skills-container,
.nenadcv-page .ai-content{
  width:calc(100% - 6rem);
  max-width:var(--cv-content-max);
  margin-left:auto;
  margin-right:auto;
}

/* Remove old nested horizontal padding/margins that created different widths. */
.nenadcv-page .work-header{padding:0 0 2rem;}
.nenadcv-page .work-filters{padding:0;margin-bottom:2rem;}
.nenadcv-page .work-grid{margin-top:2rem;margin-bottom:0;}
.nenadcv-page .cv-test-wrap{padding:0;}

/* Skills uses exactly the same shell as Work/Test/About/AI. */
.nenadcv-page .skills-section{padding:8rem 0;}
.nenadcv-page .skills-container{max-width:var(--cv-content-max);}

/* NOW has no inner wrapper in the template, so the section itself becomes the shell. */
.nenadcv-page .now-section{
  width:calc(100% - 6rem);
  max-width:var(--cv-content-max);
  margin-left:auto;
  margin-right:auto;
  padding:4rem 0;
}

/* Contact is centered, but its usable content area now follows the same grid. */
.nenadcv-page .contact-section{
  padding-left:max(var(--cv-desktop-gutter), calc((100vw - var(--cv-content-max)) / 2));
  padding-right:max(var(--cv-desktop-gutter), calc((100vw - var(--cv-content-max)) / 2));
}

/* Align the oversized ABOUT section number to the shared right edge. */
.nenadcv-page .section-num{
  right:max(var(--cv-desktop-gutter), calc((100vw - var(--cv-content-max)) / 2));
}

/* Hero remains split/full-bleed, while its text starts on the same left grid edge. */
@media (min-width:1601px){
  .nenadcv-page .hero-left{
    padding-left:calc((100vw - var(--cv-content-max)) / 2);
  }
}

@media (max-width:1024px){
  .nenadcv-page .work-header,
  .nenadcv-page .work-filters,
  .nenadcv-page .work-grid,
  .nenadcv-page .cv-test-wrap,
  .nenadcv-page .about-grid,
  .nenadcv-page .about-story-grid,
  .nenadcv-page .experience-wrap,
  .nenadcv-page .skills-container,
  .nenadcv-page .ai-content,
  .nenadcv-page .now-section{
    width:calc(100% - 4rem);
  }
}

@media (max-width:768px){
  .nenadcv-page .work-section.section-pad,
  .nenadcv-page .cv-test-section.section-pad,
  .nenadcv-page .about-section.section-pad,
  .nenadcv-page .experience-section.section-pad,
  .nenadcv-page .ai-section.section-pad,
  .nenadcv-page .skills-section{
    padding:5rem 0;
  }
  .nenadcv-page .work-header,
  .nenadcv-page .work-filters,
  .nenadcv-page .work-grid,
  .nenadcv-page .cv-test-wrap,
  .nenadcv-page .about-grid,
  .nenadcv-page .about-story-grid,
  .nenadcv-page .experience-wrap,
  .nenadcv-page .skills-container,
  .nenadcv-page .ai-content,
  .nenadcv-page .now-section{
    width:calc(100% - 2.4rem);
  }
  .nenadcv-page .contact-section{
    padding-left:1.2rem;
    padding-right:1.2rem;
  }
  .nenadcv-page .section-num{right:1.2rem;}
}
