  :root {
      --bg: #0a0a0f;
      --bg2: #111118;
      --bg3: #16161f;
      --accent: #6c63ff;
      --accent2: #ff6b6b;
      --accent3: #00d4a8;
      --text: #f0eff8;
      --text2: #9996b8;
      --text3: #5e5b7a;
      --border: rgba(108, 99, 255, 0.18);
      --border2: rgba(255, 255, 255, 0.06);
      --card: #13131c;
      --card2: #1a1a27;
  }

  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
      overflow-x: hidden;
  }

  body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
  }

  .display {
      font-family: 'Syne', sans-serif;
  }

  /* NAV */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 4rem;
      background: rgba(10, 10, 15, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border2);
  }

  .nav-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--text);
      letter-spacing: -0.02em;
  }

  .nav-logo span {
      color: var(--accent);
  }

  .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
  }

  .nav-links a {
      color: var(--text2);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 400;
      transition: color 0.2s;
  }

  .nav-links a:hover {
      color: var(--text);
  }

  .lang-switcher {
      display: flex;
      gap: 0.5rem;
  }

  .lang-btn {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text2);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      padding: 0.3rem 0.75rem;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.2s;
  }

  .lang-btn.active,
  .lang-btn:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
  }

  /* HERO */
  .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 8rem 4rem 4rem;
      position: relative;
      overflow: hidden;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(108, 99, 255, 0.12) 0%, transparent 70%);
      pointer-events: none;
  }

  .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 20%;
      width: 500px;
      height: 300px;
      background: radial-gradient(ellipse, rgba(0, 212, 168, 0.06) 0%, transparent 70%);
      pointer-events: none;
  }

  .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(108, 99, 255, 0.1);
      border: 1px solid rgba(108, 99, 255, 0.3);
      color: #a89dff;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 100px;
      width: fit-content;
      margin-bottom: 2rem;
      animation: fadeUp 0.6s ease both;
  }

  .hero-tag::before {
      content: '●';
      font-size: 0.5rem;
      animation: pulse 2s infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 1
      }

      50% {
          opacity: 0.3
      }
  }

  .hero h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 800;
      line-height: 1.0;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.7s 0.1s ease both;
  }

  .hero h1 .line2 {
      color: var(--accent);
  }

  .hero h1 .line3 {
      -webkit-text-stroke: 1px rgba(240, 239, 248, 0.25);
      color: transparent;
  }

  .hero-sub {
      font-size: 1.1rem;
      color: var(--text2);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 3rem;
      animation: fadeUp 0.7s 0.2s ease both;
  }

  .hero-cta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.3s ease both;
  }

  .btn-primary {
      background: var(--accent);
      color: #fff;
      padding: 0.9rem 2rem;
      border-radius: 100px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
  }

  .btn-primary:hover {
      background: #5752e8;
      transform: translateY(-2px);
  }

  .btn-outline {
      background: transparent;
      color: var(--text);
      padding: 0.9rem 2rem;
      border-radius: 100px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: all 0.25s;
  }

  .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
  }

  .hero-stats {
      display: flex;
      gap: 3rem;
      margin-top: 4rem;
      animation: fadeUp 0.7s 0.4s ease both;
  }

  .stat {}

  .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1;
  }

  .stat-num span {
      color: var(--accent);
  }

  .stat-label {
      font-size: 0.8rem;
      color: var(--text3);
      margin-top: 0.25rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
  }

  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(20px)
      }

      to {
          opacity: 1;
          transform: translateY(0)
      }
  }

  /* SECTION BASE */
  section {
      padding: 6rem 4rem;
  }

  .section-tag {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
  }

  .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      line-height: 1.1;
  }

  .section-sub {
      color: var(--text2);
      max-width: 500px;
      line-height: 1.7;
      margin-bottom: 3.5rem;
  }

  /* ABOUT */
  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  .about-img-wrap {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border2);
      max-width: 340px;
      width: 100%;
      margin: 0 auto;
  }

  .about-photo {
      aspect-ratio: 4/5;
      background: var(--card2);
      background-image: url('./IMG_0038.JPG');
      /* ← подставь путь к фото */
      background-size: cover;
      background-position: center top;
  }

  .about-badge {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      background: rgba(10, 10, 15, 0.9);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0.75rem 1rem;
  }

  .about-badge-title {
      font-size: 0.75rem;
      color: var(--text3);
  }

  .about-badge-val {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      color: var(--accent3);
      font-size: 1.1rem;
  }

  .about-text h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
  }

  .about-text p {
      color: var(--text2);
      line-height: 1.75;
      margin-bottom: 1.25rem;
  }

  .about-flags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
  }

  .flag-tag {
      background: var(--card2);
      border: 1px solid var(--border2);
      border-radius: 8px;
      padding: 0.4rem 0.85rem;
      font-size: 0.8rem;
      color: var(--text2);
      display: flex;
      align-items: center;
      gap: 0.4rem;
  }

  /* SKILLS */
  .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
      gap: 1.5rem;
  }

  .skill-card {
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 20px;
      padding: 2rem;
      transition: border-color 0.25s, transform 0.25s;
      position: relative;
      overflow: hidden;
  }

  .skill-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent3));
      opacity: 0;
      transition: opacity 0.25s;
  }

  .skill-card:hover {
      border-color: var(--border);
      transform: translateY(-4px);
  }

  .skill-card:hover::before {
      opacity: 1;
  }

  .skill-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(108, 99, 255, 0.12);
      border: 1px solid rgba(108, 99, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1.25rem;
  }

  .skill-icon.green {
      background: rgba(0, 212, 168, 0.1);
      border-color: rgba(0, 212, 168, 0.2);
  }

  .skill-icon.red {
      background: rgba(255, 107, 107, 0.1);
      border-color: rgba(255, 107, 107, 0.2);
  }

  .skill-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
  }

  .skill-card p {
      color: var(--text2);
      font-size: 0.9rem;
      line-height: 1.65;
  }

  .skill-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 1rem;
  }

  .stag {
      background: rgba(108, 99, 255, 0.08);
      border: 1px solid rgba(108, 99, 255, 0.15);
      color: #a89dff;
      font-size: 0.72rem;
      border-radius: 6px;
      padding: 0.25rem 0.6rem;
  }

  .stag.g {
      background: rgba(0, 212, 168, 0.08);
      border-color: rgba(0, 212, 168, 0.15);
      color: var(--accent3);
  }

  .stag.r {
      background: rgba(255, 107, 107, 0.08);
      border-color: rgba(255, 107, 107, 0.15);
      color: #ff8f8f;
  }

  /* TARGETING / GEO */
  .geo-section {
      background: var(--bg2);
      border-top: 1px solid var(--border2);
      border-bottom: 1px solid var(--border2);
  }

  .geo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
  }

  .countries-wrap {}

  .countries-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-top: 1.5rem;
  }

  .country-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 12px;
      padding: 0.75rem 1rem;
      font-size: 0.875rem;
      color: var(--text2);
  }

  .country-flag {
      font-size: 1.2rem;
  }

  .target-specs {}

  .spec-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--border2);
  }

  .spec-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent);
      min-width: 40px;
      line-height: 1;
  }

  .spec-text h4 {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 0.25rem;
  }

  .spec-text p {
      font-size: 0.83rem;
      color: var(--text3);
      line-height: 1.5;
  }

  /* EXPERIENCE */
  .timeline {
      position: relative;
      padding-left: 2rem;
  }

  .timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  }

  .timeline-item {
      padding-left: 2rem;
      margin-bottom: 3rem;
      position: relative;
  }

  .timeline-dot {
      position: absolute;
      left: -2.5rem;
      top: 0.4rem;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
      border: 2px solid var(--bg);
      box-shadow: 0 0 12px var(--accent);
  }

  .timeline-item.faded .timeline-dot {
      background: var(--text3);
      box-shadow: none;
  }

  .timeline-period {
      font-size: 0.78rem;
      color: var(--text3);
      letter-spacing: 0.05em;
      margin-bottom: 0.4rem;
  }

  .timeline-company {
      font-family: 'Syne', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
  }

  .timeline-role {
      font-size: 0.9rem;
      color: var(--accent3);
      margin-bottom: 0.75rem;
  }

  .timeline-desc {
      color: var(--text2);
      font-size: 0.875rem;
      line-height: 1.7;
  }

  .timeline-skills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.75rem;
  }

  /* AI VISION */
  .ai-section {
      background: var(--bg3);
      border-top: 1px solid var(--border2);
  }

  .ai-inner {
      background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(0, 212, 168, 0.05) 100%);
      border: 1px solid rgba(108, 99, 255, 0.2);
      border-radius: 28px;
      padding: 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .ai-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 28px;
      background: repeating-linear-gradient(90deg, rgba(108, 99, 255, 0.03) 0px, rgba(108, 99, 255, 0.03) 1px, transparent 1px, transparent 60px),
          repeating-linear-gradient(0deg, rgba(108, 99, 255, 0.03) 0px, rgba(108, 99, 255, 0.03) 1px, transparent 1px, transparent 60px);
      pointer-events: none;
  }

  .ai-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(108, 99, 255, 0.15);
      border: 1px solid rgba(108, 99, 255, 0.3);
      color: #a89dff;
      font-size: 0.75rem;
      padding: 0.35rem 1rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
  }

  .ai-inner h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      margin-bottom: 1.25rem;
  }

  .ai-inner p {
      color: var(--text2);
      max-width: 620px;
      margin: 0 auto 2.5rem;
      line-height: 1.75;
  }

  .ai-features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
  }

  .ai-feat {
      background: rgba(10, 10, 15, 0.6);
      border: 1px solid var(--border2);
      border-radius: 12px;
      padding: 0.75rem 1.25rem;
      font-size: 0.85rem;
      color: var(--text2);
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .ai-feat::before {
      content: '→';
      color: var(--accent);
  }

  /* PORTFOLIO PREVIEW */
  .portfolio-section {}

  .portfolio-card {
      background: var(--card2);
      border: 1px solid var(--border2);
      border-radius: 20px;
      overflow: hidden;
  }

  .portfolio-header {
      padding: 1rem 1.5rem;
      background: var(--card);
      border-bottom: 1px solid var(--border2);
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
  }

  .dot.r {
      background: #ff5f57;
  }

  .dot.y {
      background: #febc2e;
  }

  .dot.g {
      background: #28c840;
  }

  .portfolio-header span {
      margin-left: 0.5rem;
      font-size: 0.8rem;
      color: var(--text3);
  }

  .portfolio-iframe-wrap {
      position: relative;
      width: 100%;
      height: 500px;
      overflow: hidden;
  }

  .portfolio-iframe-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      transform-origin: top left;
  }

  .portfolio-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(10, 10, 15, 0.85);
      backdrop-filter: blur(4px);
      flex-direction: column;
      gap: 1rem;
  }

  .portfolio-overlay p {
      color: var(--text2);
      font-size: 0.9rem;
  }

  .portfolio-overlay a {
      color: var(--accent);
      text-decoration: none;
  }

  .portfolio-overlay a:hover {
      text-decoration: underline;
  }

  .exp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
  }

  /* CONTACT */
  .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  .contact-info h2 {
      font-family: 'Syne', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.25rem;
  }

  .contact-info p {
      color: var(--text2);
      line-height: 1.75;
      margin-bottom: 2rem;
  }

  .contact-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  .contact-link {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 14px;
      padding: 1rem 1.25rem;
      text-decoration: none;
      color: var(--text);
      transition: border-color 0.2s, background 0.2s;
  }

  .contact-link:hover {
      border-color: var(--border);
      background: var(--card2);
  }

  .contact-icon {
      color: var(--accent);
      font-size: 1.1rem;
  }

  .contact-link-label {
      font-size: 0.75rem;
      color: var(--text3);
  }

  .contact-link-val {
      font-size: 0.95rem;
      font-weight: 500;
  }

  .avail-badge {
      background: rgba(0, 212, 168, 0.1);
      border: 1px solid rgba(0, 212, 168, 0.25);
      color: var(--accent3);
      border-radius: 100px;
      padding: 0.5rem 1.25rem;
      font-size: 0.8rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
  }

  .avail-badge::before {
      content: '●';
      font-size: 0.5rem;
      animation: pulse 2s infinite;
  }

  /* FOOTER */
  footer {
      text-align: center;
      padding: 2rem 4rem;
      border-top: 1px solid var(--border2);
      color: var(--text3);
      font-size: 0.8rem;
  }

  footer span {
      color: var(--accent);
  }

  /* TOOLS ROW */
  .tools-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1.5rem;
  }

  .tool-chip {
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 10px;
      padding: 0.5rem 1rem;
      font-size: 0.82rem;
      color: var(--text2);
      transition: all 0.2s;
  }

  .tool-chip:hover {
      border-color: var(--border);
      color: var(--text);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
      nav {
          padding: 1rem 1.5rem;
      }

      .nav-links {
          display: none;
      }

      section {
          padding: 4rem 1.5rem;
      }

      .hero {
          padding: 6rem 1.5rem 3rem;
      }

      .hero-stats {
          gap: 1.5rem;
          flex-wrap: wrap;
      }

      .about-grid,
      .geo-grid,
      .contact-grid {
          grid-template-columns: 1fr;
      }

      .about-grid {
          gap: 2rem;
      }

      .about-img-wrap {
          max-width: 280px;
      }

      .countries-list {
          grid-template-columns: 1fr 1fr;
      }

      .exp-grid {
          grid-template-columns: 1fr;
          gap: 0;
      }

      .ai-inner {
          padding: 2.5rem 1.5rem;
      }

      footer {
          padding: 1.5rem 1.5rem;
      }

      .geo-grid {
          gap: 2rem;
      }

      .contact-grid {
          gap: 2rem;
      }
  }

  @media (max-width: 480px) {
      section {
          padding: 3rem 1.2rem;
      }

      .hero {
          padding: 5.5rem 1.2rem 2.5rem;
      }

      .hero h1 {
          font-size: clamp(2.4rem, 11vw, 3.2rem);
      }

      .hero-sub {
          font-size: 1rem;
      }

      .hero-stats {
          gap: 1.2rem;
      }

      .stat-num {
          font-size: 1.8rem;
      }

      .countries-list {
          grid-template-columns: 1fr;
      }

      .skill-card {
          padding: 1.5rem;
      }

      .ai-inner {
          padding: 2rem 1.2rem;
          border-radius: 18px;
      }

      .ai-features {
          gap: 0.6rem;
      }

      .contact-info h2 {
          font-size: 1.8rem;
      }

      .section-title {
          font-size: clamp(1.6rem, 7vw, 2.5rem);
      }

      .about-img-wrap {
          max-width: 240px;
      }

      .portfolio-iframe-wrap {
          height: 360px;
      }

      .geo-grid {
          gap: 1.5rem;
      }
  }