    :root {
      --bg-primary: #080b14;
      --bg-secondary: #111726;
      --bg-glass: rgba(17, 23, 38, 0.62);
      --bg-soft: rgba(255, 255, 255, 0.04);
      --text-main: #f4f7ff;
      --text-muted: #a8b3cf;
      --line: rgba(255, 255, 255, 0.14);
      --gold: #dbba72;
      --cyan: #57d6ff;
      --cta: linear-gradient(135deg, #57d6ff 0%, #7f8cff 45%, #dbba72 100%);
      --shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
      --radius-lg: 24px;
      --radius-md: 16px;
      
      --radius-sm: 12px;
      --container: min(1160px, calc(100% - 2.4rem));
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 92px;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      color: var(--text-main);
      font-family: "Sora", sans-serif;
      background:
        radial-gradient(1000px 600px at 15% -10%, rgba(87, 214, 255, 0.22), transparent 60%),
        radial-gradient(700px 450px at 95% 12%, rgba(219, 186, 114, 0.18), transparent 60%),
        linear-gradient(160deg, var(--bg-primary), #090f1d 60%, #0f1b2f);
      line-height: 1.65;
      overflow-x: hidden;
      max-width: 100% !important;
    }

    .background-grid,
    .background-orb {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
    }

    .background-grid {
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 40%, transparent 90%);
    }

    .background-orb::before,
    .background-orb::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(30px);
      opacity: 0.7;
      animation: floatOrb 9s ease-in-out infinite;
    }

    .background-orb::before {
      width: 300px;
      height: 300px;
      left: -60px;
      top: 12%;
      background: radial-gradient(circle at 30% 30%, rgba(87, 214, 255, 0.75), transparent 70%);
    }

    .background-orb::after {
      width: 360px;
      height: 360px;
      right: -80px;
      bottom: 10%;
      background: radial-gradient(circle at 40% 35%, rgba(219, 186, 114, 0.62), transparent 70%);
      animation-delay: 2s;
    }

    @keyframes floatOrb {
      0%,
      100% {
        transform: translateY(0) scale(1);
      }
      50% {
        transform: translateY(-18px) scale(1.05);
      }
    }

    .shell {
      width: var(--container);
      margin-inline: auto;
    }

    .header-wrap {
      position: sticky;
      top: 0;
      z-index: 1000;
      padding-top: 0.7rem;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.8rem 1.2rem;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: rgba(9, 14, 28, 0.7);
      backdrop-filter: blur(16px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
      position: relative;
      overflow: hidden;
    }

    .navbar::after {
      content: "";
      position: absolute;
      inset: auto -30% -42px;
      height: 90px;
      background: radial-gradient(circle, rgba(87, 214, 255, 0.4) 0%, transparent 65%);
      pointer-events: none;
    }

    .brand {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.7rem;
      letter-spacing: 0.02em;
      color: var(--text-main);
      text-decoration: none;
      z-index: 2;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      list-style: none;
      margin: 0;
      padding: 0;
      z-index: 2;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-muted);
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0.55rem 0.85rem;
      border-radius: 10px;
      transition: color 0.25s ease, background-color 0.25s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.08);
    }

    .nav-cta {
      text-decoration: none;
      color: #0a1220;
      background: var(--cta);
      border-radius: 999px;
      padding: 0.6rem 1.05rem;
      font-size: 0.88rem;
      font-weight: 700;
      z-index: 2;
      box-shadow: 0 10px 20px rgba(87, 214, 255, 0.2);
      transition: transform 0.2s ease;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
    }

    .menu-button {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.02);
      cursor: pointer;
      padding: 0;
      place-items: center;
    }

    .menu-button span {
      width: 20px;
      height: 2px;
      background: #fff;
      border-radius: 8px;
      display: block;
      margin: 2.5px 0;
      transition: 0.25s ease;
    }

    main {
      padding: 1.6rem 0 0;
    }

    section {
      margin: 0 auto 1.2rem;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--bg-glass);
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow);
      position: relative;
      overflow: clip;
    }

    .section-inner {
      padding: clamp(1.4rem, 2.3vw, 2.4rem);
    }

    .section-label {
      margin: 0 0 0.8rem;
      color: var(--gold);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.74rem;
      font-weight: 700;
    }

    .section-title {
      margin: 0;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2rem, 4.5vw, 3rem);
      line-height: 1.1;
      letter-spacing: 0.01em;
      text-wrap: balance;
    }

    .section-copy {
      margin: 1rem 0 0;
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 68ch;
    }

    .hero {
      min-height: min(86vh, 860px);
      display: grid;
      align-items: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      right: -140px;
      top: -120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(87, 214, 255, 0.25), transparent 65%);
      animation: rotateGlow 14s linear infinite;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      left: -120px;
      bottom: -130px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(219, 186, 114, 0.2), transparent 70%);
      animation: rotateGlow 18s linear infinite reverse;
    }

    @keyframes rotateGlow {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1.3rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(2.2rem, 5.6vw, 4.7rem);
      line-height: 0.95;
      text-wrap: balance;
    }

    .gradient-text {
      background: linear-gradient(130deg, #ffffff 0%, #8ce8ff 48%, #f6db9f 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .typed-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 999px;
      padding: 0.46rem 0.8rem;
      color: #dbe4ff;
      font-size: 0.84rem;
      width: fit-content;
      margin-bottom: 1rem;
      background: rgba(255, 255, 255, 0.03);
    }

    .typed-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #57d6ff;
      box-shadow: 0 0 0 8px rgba(87, 214, 255, 0.22);
      animation: pulseDot 2.2s infinite;
    }

    @keyframes pulseDot {
      0%,
      100% {
        box-shadow: 0 0 0 2px rgba(87, 214, 255, 0.24);
      }
      50% {
        box-shadow: 0 0 0 9px rgba(87, 214, 255, 0.09);
      }
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.4rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.72rem 1.15rem;
      border-radius: 999px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      will-change: transform;
    }

    .btn.primary {
      color: #0f1b2f;
      background: var(--cta);
      box-shadow: 0 10px 24px rgba(87, 214, 255, 0.24);
    }

    .btn.ghost {
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
      border-color: rgba(255, 255, 255, 0.34);
    }

    .hero-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 1rem;
      background: rgba(255, 255, 255, 0.03);
      display: grid;
      gap: 0.8rem;
    }

    .hero-profile {
      width: min(100%, 210px);
      margin: 0 auto 0.45rem;
      padding: 0.55rem;
      border-radius: 50%;
      background: linear-gradient(145deg, rgba(87, 214, 255, 0.45), rgba(219, 186, 114, 0.45));
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 14px 34px rgba(87, 214, 255, 0.2);
    }

    .hero-profile img {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      display: block;
      object-fit: cover;
      object-position: center 24%;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .hero-metric {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 0.6rem;
    }

    .hero-metric strong {
      font-size: 1.25rem;
      color: #f7fbff;
    }

    .hero-metric span {
      color: var(--text-muted);
      font-size: 0.86rem;
    }

    .about-grid,
    .contact-grid,
    .footer-grid {
      display: grid;
      gap: 1rem;
    }

    .about-grid {
      grid-template-columns: 1.25fr 0.75fr;
      margin-top: 1.2rem;
    }

    .about-points {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0.62rem;
    }

    .about-points li {
      padding: 0.78rem 0.86rem;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: var(--radius-sm);
      background: var(--bg-soft);
      color: #d9e4fd;
      font-size: 0.92rem;
    }

    .contact-mini {
      display: grid;
      gap: 0.56rem;
      align-content: start;
    }

    .contact-mini a {
      text-decoration: none;
      color: #eef4ff;
      padding: 0.75rem 0.84rem;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.13);
      background: rgba(255, 255, 255, 0.04);
      transition: border-color 0.25s ease, transform 0.25s ease;
    }

    .contact-mini a:hover {
      transform: translateX(2px);
      border-color: rgba(87, 214, 255, 0.54);
    }

    
    .media-grid,
    .services-grid {
      display: grid;
      gap: 1.2rem;
      margin-top: 1.2rem;
    }

    .skill-fill {
      height: 100%;
      width: var(--fill, 70%);
      border-radius: inherit;
      background: linear-gradient(95deg, #57d6ff, #8ca6ff, #dbba72);
      transform-origin: left center;
      transform: scaleX(0);
    }

    .project {
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.03);
      padding: 1rem;
      min-height: 185px;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .project::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      right: -110px;
      top: -120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(87, 214, 255, 0.2), transparent 65%);
      pointer-events: none;
    }

    .project:hover {
      transform: translateY(-5px);
      border-color: rgba(87, 214, 255, 0.55);
    }

    .project h3 {
      margin: 0;
      font-size: 1.08rem;
    }

    .project p {
      margin: 0.6rem 0 0;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .media-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-card {
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.03);
      padding: 0.65rem;
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.25s ease, transform 0.25s ease;
    }

    .video-card:hover {
      box-shadow: 0 0 0 1px rgba(87, 214, 255, 0.55), 0 12px 40px rgba(87, 214, 255, 0.18);
      transform: translateY(-4px);
    }

    video {
      width: 100%;
      border-radius: 12px;
      display: block;
      object-fit: cover;
    }

    video {
      aspect-ratio: 9 / 16;
      height: clamp(420px, 58vw, 760px);
      background: #03060f;
    }

    .media-note {
      margin-top: 0.4rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .services-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-bottom: 0.5rem;
    }

    .service-card {
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.03);
      padding: 1.3rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .service-card::before {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      right: -100px;
      top: -100px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(87, 214, 255, 0.15), transparent 70%);
      pointer-events: none;
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(87, 214, 255, 0.5);
      box-shadow: 0 0 0 1px rgba(87, 214, 255, 0.3), 0 12px 40px rgba(87, 214, 255, 0.12);
    }

    .service-card h3 {
      margin: 0;
      font-size: 1.1rem;
      color: #f4f7ff;
      position: relative;
      z-index: 1;
    }

    .service-highlight {
      margin-top: 0.6rem;
      color: var(--cyan);
      font-size: 0.95rem;
      font-weight: 600;
      position: relative;
      z-index: 1;
    }

    .service-card p {
      margin-top: 0.8rem;
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    .service-card ul {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.9rem;
      position: relative;
      z-index: 1;
    }

    .service-card ul li {
      margin-bottom: 0.4rem;
    }

    .contact-grid {
      grid-template-columns: 1.1fr 0.9fr;
      margin-top: 1.2rem;
    }

    .contact-card {
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.03);
      padding: 1rem;
    }

    .contact-card h3 {
      margin: 0;
      font-size: 1.1rem;
    }

    .contact-card p {
      margin: 0.5rem 0 0;
      color: var(--text-muted);
      font-size: 0.92rem;
    }

    .contact-actions {
      display: grid;
      gap: 0.7rem;
    }

    .contact-actions a {
      text-decoration: none;
      text-align: center;
    }

    footer {
      border: 1px solid var(--line);
      border-radius: 20px 20px 0 0;
      padding: 1.5rem 0 1.4rem;
      background: linear-gradient(180deg, rgba(15, 23, 37, 0.85), rgba(8, 11, 20, 0.96));
      position: relative;
      overflow: hidden;
      margin-top: 0.5rem;
    }

    footer::before {
      content: "";
      position: absolute;
      inset: -120px auto auto -100px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(87, 214, 255, 0.24), transparent 68%);
      animation: floatOrb 8s ease-in-out infinite;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr 1fr;
      position: relative;
      z-index: 1;
    }

    .footer-title {
      margin: 0 0 0.56rem;
      font-size: 0.88rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #f5ddab;
    }

    .footer-links,
    .social-links {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.35rem;
    }

    .footer-links a,
    .social-links a {
      text-decoration: none;
      color: #d2def9;
      font-size: 0.9rem;
      transition: color 0.2s ease;
    }

    .footer-links a:hover,
    .social-links a:hover {
      color: #ffffff;
    }

    .copyright {
      margin: 1.1rem 0 0;
      color: #9ea9c5;
      font-size: 0.82rem;
      border-top: 1px solid rgba(255, 255, 255, 0.09);
      padding-top: 0.85rem;
    }

    .to-top {
      position: fixed;
      right: 1.2rem;
      bottom: 1.2rem;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(12, 19, 33, 0.72);
      color: #ecf3ff;
      font-size: 1.08rem;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
      display: grid;
      place-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
      z-index: 1100;
    }

    .to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .to-top:hover {
      transform: translateY(-2px);
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .about-grid,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-card {
        max-width: 520px;
      }

      .hero-profile {
        width: min(100%, 190px);
      }
    }

    @media (max-width: 880px) {
      .navbar {
        overflow: visible;
      }

      .menu-button {
        display: flex;
        z-index: 3;
        flex-direction: column;
        gap: 1px;
        justify-content: center;
      }

      .nav-links {
        position: absolute;
        inset: 64px 0 auto;
        margin: 0.4rem 0.4rem 0;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: rgba(9, 14, 28, 0.98);
        backdrop-filter: blur(14px);
        flex-direction: column;
        align-items: stretch;
        padding: 0.4rem;
        gap: 0.2rem;
        z-index: 6;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
      }

      .nav-links.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      .nav-links a {
        display: block;
        width: 100%;
      }

      .nav-cta {
        display: none;
      }
    }

    @media (max-width: 720px) {
      .shell {
        width: min(100% - 1rem, 1160px);
      }

      .section-inner {
        padding: 1.2rem;
      }

      
      .media-grid,
      .services-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
      }

      .hero-actions {
        flex-direction: column;
      }

      video {
        height: clamp(380px, 90vw, 680px);
      }

      .btn {
        width: 100%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }