:root{
    --bg: #070c13;
    --bg-raised: #0d1620;
    --ink: #f4f8fc;
    --ink-dim: #93a7ba;
    --ink-faint: #56697c;
    --line: #1c2836;
    --accent: #4f9dff;
    --accent-ink: #051323;
    --accent-soft: rgba(79,157,255,0.14);
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max: 1180px;
    --edge: clamp(20px, 5vw, 64px);
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }

  body{
    margin:0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

  a{ color: inherit; }

  #loadingScreen{
    position:fixed;
    inset:0;
    z-index: 9999;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:
      radial-gradient(circle at 50% 38%, #1c3454 0%, #0d1a2b 55%, #060b12 100%);
    transition: opacity .5s ease, visibility .5s ease;
  }
  #loadingScreen.is-hidden{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
  }
  body.is-loading{ overflow:hidden; }
  body.search-no-scroll{ overflow:hidden; }

  .speeder-loader{
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-50px;
    animation: speederShake 0.4s linear infinite;
  }
  .speeder-loader > span{
    height:5px;
    width:35px;
    background:#eaf3ff;
    position:absolute;
    top:-19px;
    left:60px;
    border-radius: 2px 10px 1px 0;
    box-shadow: 0 0 10px rgba(79,157,255,0.7);
  }
  .speeder-base span{
    position:absolute;
    width:0; height:0;
    border-top:6px solid transparent;
    border-right:100px solid #eaf3ff;
    border-bottom:6px solid transparent;
    filter: drop-shadow(0 0 8px rgba(79,157,255,0.6));
  }
  .speeder-base span::before{
    content:"";
    height:22px; width:22px;
    border-radius:50%;
    background:#eaf3ff;
    position:absolute;
    right:-110px; top:-16px;
  }
  .speeder-base span::after{
    content:"";
    position:absolute;
    width:0; height:0;
    border-top:0 solid transparent;
    border-right:55px solid #eaf3ff;
    border-bottom:16px solid transparent;
    top:-16px; right:-98px;
  }
  .speeder-face{
    position:absolute;
    height:12px; width:20px;
    background:#4f9dff;
    border-radius:20px 20px 0 0;
    transform: rotate(-40deg);
    right:-125px; top:-15px;
  }
  .speeder-face::after{
    content:"";
    height:12px; width:12px;
    background:#4f9dff;
    right:4px; top:7px;
    position:absolute;
    transform: rotate(40deg);
    transform-origin:50% 50%;
    border-radius:0 0 0 2px;
  }
  .speeder-loader > span > span:nth-child(1),
  .speeder-loader > span > span:nth-child(2),
  .speeder-loader > span > span:nth-child(3),
  .speeder-loader > span > span:nth-child(4){
    width:30px; height:1px;
    background:#9cc4ff;
    position:absolute;
    animation: speederFazer1 0.2s linear infinite;
  }
  .speeder-loader > span > span:nth-child(2){ top:3px; animation-name: speederFazer2; animation-duration:.4s; }
  .speeder-loader > span > span:nth-child(3){ top:1px; animation-name: speederFazer3; animation-duration:.4s; animation-delay:-1s; }
  .speeder-loader > span > span:nth-child(4){ top:4px; animation-name: speederFazer4; animation-duration:1s; animation-delay:-1s; }

  @keyframes speederFazer1{ 0%{ left:0; } 100%{ left:-80px; opacity:0; } }
  @keyframes speederFazer2{ 0%{ left:0; } 100%{ left:-100px; opacity:0; } }
  @keyframes speederFazer3{ 0%{ left:0; } 100%{ left:-50px; opacity:0; } }
  @keyframes speederFazer4{ 0%{ left:0; } 100%{ left:-150px; opacity:0; } }

  @keyframes speederShake{
    0%{ transform: translate(2px,1px) rotate(0deg); }
    10%{ transform: translate(-1px,-3px) rotate(-1deg); }
    20%{ transform: translate(-2px,0px) rotate(1deg); }
    30%{ transform: translate(1px,2px) rotate(0deg); }
    40%{ transform: translate(1px,-1px) rotate(1deg); }
    50%{ transform: translate(-1px,3px) rotate(-1deg); }
    60%{ transform: translate(-1px,1px) rotate(0deg); }
    70%{ transform: translate(3px,1px) rotate(-1deg); }
    80%{ transform: translate(-2px,-1px) rotate(1deg); }
    90%{ transform: translate(2px,1px) rotate(0deg); }
    100%{ transform: translate(1px,-2px) rotate(-1deg); }
  }

  .speeder-fazers{ position:absolute; inset:0; }
  .speeder-fazers span{
    position:absolute;
    height:2px; width:20%;
    background: linear-gradient(90deg, transparent, #cfe6ff);
  }
  .speeder-fazers span:nth-child(1){ top:20%; animation: speederLf 0.6s linear infinite; animation-delay:-5s; }
  .speeder-fazers span:nth-child(2){ top:40%; animation: speederLf2 0.8s linear infinite; animation-delay:-1s; }
  .speeder-fazers span:nth-child(3){ top:60%; animation: speederLf3 0.6s linear infinite; }
  .speeder-fazers span:nth-child(4){ top:80%; animation: speederLf4 0.5s linear infinite; animation-delay:-3s; }

  @keyframes speederLf{ 0%{ left:200%; } 100%{ left:-200%; opacity:0; } }
  @keyframes speederLf2{ 0%{ left:200%; } 100%{ left:-200%; opacity:0; } }
  @keyframes speederLf3{ 0%{ left:200%; } 100%{ left:-100%; opacity:0; } }
  @keyframes speederLf4{ 0%{ left:200%; } 100%{ left:-100%; opacity:0; } }
  img{ max-width:100%; display:block; }

  ::selection{ background: var(--accent); color: var(--accent-ink); }

  .visually-hidden{
    position:absolute;
    width:1px; height:1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    white-space:nowrap;
  }

  :focus-visible{
    outline: 2px solid var(--accent);
    outline-offset: 3px;
  }

  .wrap{
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--edge);
    padding-right: var(--edge);
  }

  .site-nav{
    position: fixed;
    top:0; left:0; right:0;
    z-index: 50;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 22px var(--edge);
    transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
    border-bottom: 1px solid transparent;
  }
  .site-nav.is-scrolled{
    background: rgba(7,12,19,0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav-mark{
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap: 6px;
  }
  .verified-badge{
    width: 16px;
    height: 16px;
    flex-shrink:0;
  }
  .nav-links{
    display:flex;
    gap: 30px;
    list-style:none;
    margin:0; padding:0;
  }
  .nav-links a{
    text-decoration:none;
    font-size: 0.92rem;
    color: var(--ink-dim);
    position:relative;
    padding-bottom: 3px;
  }
  .nav-links a::after{
    content:"";
    position:absolute;
    left:0; bottom:0;
    width:100%; height:1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
  }
  .nav-links a:hover{ color: var(--ink); }
  .nav-links a:hover::after{ transform: scaleX(1); }

  .nav-right{ display:flex; align-items:center; gap:22px; }

  .music-toggle{
    all:unset;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink-faint);
    transition: color .2s ease, border-color .2s ease, background .2s ease;
  }
  .music-toggle svg{ width:16px; height:16px; }
  .music-toggle .music-icon-off{ display:block; }
  .music-toggle .music-icon-on{ display:none; }
  .music-toggle:hover{ border-color: var(--accent); color: var(--ink); }
  .music-toggle.is-playing{
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-soft);
  }
  .music-toggle.is-playing .music-icon-off{ display:none; }
  .music-toggle.is-playing .music-icon-on{ display:block; }

  .search-toggle{
    all:unset;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink-faint);
    transition: color .2s ease, border-color .2s ease;
  }
  .search-toggle svg{ width:16px; height:16px; }
  .search-toggle:hover{ border-color: var(--accent); color: var(--ink); }

  .search-overlay{
    position:fixed;
    inset:0;
    z-index: 500;
    background: rgba(5,9,14,0.72);
    backdrop-filter: blur(6px);
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding: 12vh 20px 20px;
    opacity:0;
    visibility:hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .search-overlay.is-open{
    opacity:1;
    visibility:visible;
  }
  .search-panel{
    width:100%;
    max-width: 560px;
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.55);
    overflow:hidden;
    transform: translateY(-14px);
    transition: transform .25s ease;
  }
  .search-overlay.is-open .search-panel{ transform: translateY(0); }
  .search-head{
    display:flex;
    align-items:center;
    gap:12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-faint);
  }
  .search-head svg{ width:18px; height:18px; flex-shrink:0; }
  .search-head input{
    flex:1;
    background:none;
    border:none;
    outline:none;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 0.96rem;
  }
  .search-head input::placeholder{ color: var(--ink-faint); }
  .search-head button{
    all:unset;
    cursor:pointer;
    display:flex;
    color: var(--ink-faint);
    transition: color .2s ease;
  }
  .search-head button:hover{ color: var(--ink); }
  .search-head button svg{ width:14px; height:14px; }

  .search-body{
    max-height: 60vh;
    overflow-y:auto;
    padding: 8px 0;
  }
  .search-hint{
    padding: 26px 20px;
    color: var(--ink-faint);
    font-size: 0.86rem;
    text-align:center;
    margin:0;
  }

  .search-loading{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 14px;
    padding: 28px 20px 34px;
  }
  .search-loading-text{
    margin:0;
    color: var(--ink-faint);
    font-size: 0.84rem;
  }
  .walker-loader{
    position:relative;
    width: 160px;
    height: 130px;
    transform: scale(0.62);
  }
  .walker-loader svg{ position:absolute; top:0; left:0; }
  .walker-head{ translate: 27px -30px; z-index:3; animation: walkerBob 1s infinite ease-in; }
  .walker-bod{ position:relative; translate: 0px 30px; z-index:3; animation: walkerBob 1s infinite ease-in-out; }
  .legr{ translate: 75px 135px; z-index:0; animation: walkerRstep 1s infinite ease-in; animation-delay:.45s; }
  .legl{ translate: 30px 155px; z-index:3; animation: walkerLstep 1s infinite ease-in; }

  @keyframes walkerBob{
    0%{ transform: translateY(0) rotate(3deg); }
    5%{ transform: translateY(0) rotate(3deg); }
    25%{ transform: translateY(5px) rotate(0deg); }
    50%{ transform: translateY(0) rotate(-3deg); }
    70%{ transform: translateY(5px) rotate(0deg); }
    100%{ transform: translateY(0) rotate(3deg); }
  }
  @keyframes walkerLstep{
    0%{ transform: translateY(0) rotate(-5deg); }
    33%{ transform: translateY(-15px) translate(32px) rotate(35deg); }
    66%{ transform: translateY(0) translate(25px) rotate(-25deg); }
    100%{ transform: translateY(0) rotate(-5deg); }
  }
  @keyframes walkerRstep{
    0%{ transform: translateY(0) translate(0px) rotate(-5deg); }
    33%{ transform: translateY(-10px) translate(30px) rotate(35deg); }
    66%{ transform: translateY(0) translate(20px) rotate(-25deg); }
    100%{ transform: translateY(0) translate(0px) rotate(-5deg); }
  }

  .search-results{
    list-style:none;
    margin:0;
    padding: 4px 0;
  }
  .search-results li{ margin:0; }
  .search-results a{
    display:block;
    padding: 13px 20px;
    text-decoration:none;
    border-bottom: 1px solid var(--line);
    transition: background .15s ease;
  }
  .search-results a:hover{ background: var(--accent-soft); }
  .search-results .r-title{
    display:block;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight:600;
    margin-bottom: 3px;
  }
  .search-results .r-desc{
    display:block;
    color: var(--ink-faint);
    font-size: 0.82rem;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
  .search-empty{
    padding: 26px 20px;
    text-align:center;
    color: var(--ink-faint);
    font-size: 0.86rem;
  }

  .lang-toggle{
    display:flex;
    border:1px solid var(--line);
    border-radius:999px;
    padding:3px;
    gap:2px;
  }
  .lang-toggle button{
    all:unset;
    cursor:pointer;
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight:600;
    letter-spacing: 0.04em;
    padding: 5px 11px;
    border-radius: 999px;
    color: var(--ink-faint);
    transition: background .25s ease, color .25s ease;
  }
  .lang-toggle button.active{
    background: var(--accent);
    color: var(--accent-ink);
  }

  .nav-toggle{
    display:none;
  }

  .hero-pin{
    position:relative;
    height: 220vh;
  }
  .hero-sticky{
    position: sticky;
    top:0;
    height: 100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    background: linear-gradient(160deg, #101820 0%, #0a0f16 60%, #070c13 100%);
  }
  #sequence{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
  }
  .hero-scrim{
    position:absolute;
    inset:0;
    background:
      radial-gradient(ellipse 65% 55% at 50% 52%, rgba(7,11,16,0.58), rgba(7,11,16,0.18) 60%),
      linear-gradient(180deg, rgba(10,14,19,0.4) 0%, rgba(10,14,19,0.08) 22%, rgba(9,12,16,0.15) 72%, rgba(9,12,16,0.7) 100%);
  }
  .hero-copy{
    position:relative;
    z-index:2;
    width:100%;
    padding: 0 var(--edge);
  }
  .hero-name{
    font-family: var(--serif);
    font-weight:500;
    font-size: clamp(2.6rem, 8vw, 5.6rem);
    line-height: 0.98;
    margin: 0 0 18px;
    max-width: 14ch;
  }
  .particle-name{
    position:relative;
    width:100%;
    max-width: 640px;
    height: clamp(84px, 15vw, 168px);
    margin: 0 0 6px -6px;
    overflow:hidden;
  }
  .particle-name canvas{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    display:block;
  }
  .hero-role{
    font-size: clamp(0.98rem, 1.6vw, 1.2rem);
    color: var(--ink-dim);
    max-width: 42ch;
    margin: 0 0 30px;
  }
  .hero-meta{
    display:flex;
    align-items:center;
    gap:12px;
    font-size: 0.82rem;
    color: var(--ink-faint);
  }
  .hero-meta .dot{
    width:6px; height:6px;
    border-radius:50%;
    background: var(--accent);
    display:inline-block;
    flex-shrink:0;
  }

  .status-chip{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap: 8px;
    margin-top: 14px;
    padding: 7px 14px 7px 10px;
    border-radius:999px;
    border: 1px solid var(--line);
    background: var(--accent-soft);
    width:fit-content;
    max-width:100%;
  }
  .status-dot{
    width:7px; height:7px;
    border-radius:50%;
    background:#3ddc84;
    flex-shrink:0;
    box-shadow: 0 0 0 0 rgba(61,220,132,0.6);
    animation: statusPulse 2s ease-out infinite;
  }
  @keyframes statusPulse{
    0%{ box-shadow: 0 0 0 0 rgba(61,220,132,0.55); }
    70%{ box-shadow: 0 0 0 7px rgba(61,220,132,0); }
    100%{ box-shadow: 0 0 0 0 rgba(61,220,132,0); }
  }
  .status-main{
    font-size: 0.8rem;
    font-weight:700;
    color: var(--ink);
  }
  .status-sep{
    color: var(--ink-faint);
    font-size: 0.75rem;
  }
  .status-sub{
    font-size: 0.75rem;
    color: var(--ink-faint);
  }

  .hero-card-wrap{
    margin: 6px 0 30px;
    transform: scale(0.62);
    transform-origin: left top;
  }
  .glass-card-parent{
    width: 300px;
    height: 320px;
    perspective: 1200px;
  }
  .glass-card{
    height:100%;
    position:relative;
    border-radius:40px;
    background: linear-gradient(135deg, #0a0e16 0%, #163662 100%);
    transition: all .6s ease-in-out;
    transform-style: preserve-3d;
    box-shadow:
      rgba(0,0,10,0) 40px 50px 25px -40px,
      rgba(0,10,30,0.5) 0px 25px 35px -5px;
  }
  .glass-card .glass{
    transform-style: preserve-3d;
    position:absolute;
    inset:10px;
    border-radius:45px;
    border-top-left-radius:100%;
    background: linear-gradient(0deg, rgba(120,170,255,0.18) 0%, rgba(230,240,255,0.85) 100%);
    transform: translate3d(0,0,30px);
    border-right: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    transition: all .6s ease-in-out;
  }
  .glass-card .content{
    padding: 78px 46px 0 24px;
    position:relative;
    z-index:5;
    transform: translate3d(0,0,31px);
  }
  .glass-card .content .title{
    display:block;
    color:#0f2a52;
    font-weight:900;
    font-size:20px;
    font-family: var(--serif);
  }
  .glass-card .content .text{
    display:block;
    color: rgba(15,42,82,0.8);
    font-size:13px;
    margin-top:12px;
    line-height:1.5;
  }
  .glass-card .bottom{
    padding: 12px 15px;
    transform-style: preserve-3d;
    position:absolute;
    bottom:22px; left:22px; right:22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    transform: translate3d(0,0,31px);
    z-index:10;
  }
  .glass-card .view-more{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    transition: all .3s ease-in-out;
  }
  .glass-card .view-more:hover{ transform: translate3d(0,0,15px); }
  .glass-card .view-more-button{
    all:unset;
    cursor:pointer;
    color:#1d4fa8;
    font-weight:bold;
    font-size:12px;
    white-space:nowrap;
  }
  .glass-card .social-buttons-container{
    display:flex;
    gap:10px;
    transform-style: preserve-3d;
  }
  .glass-card .social-button{
    width:30px;
    aspect-ratio:1;
    padding:6px;
    background: rgba(255,255,255,0.92);
    border-radius:50%;
    border:none;
    display:grid;
    place-content:center;
    cursor:pointer;
    text-decoration:none;
    box-shadow: rgba(0,10,30,0.4) 0px 8px 6px -5px;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out, background .2s ease;
  }
  .glass-card .social-button svg{ width:15px; fill:#0f2a52; }
  .glass-card .social-button:hover{ background:#0f2a52; transform: translateY(-5px); }
  .glass-card .social-button:hover svg{ fill:#fff; }
  .glass-card .logo{
    position:absolute;
    left:0; top:0;
    transform-style: preserve-3d;
    z-index:6;
  }
  .glass-card .logo .circle{
    display:block;
    position:absolute;
    aspect-ratio:1;
    border-radius:50%;
    top:0; left:0;
    box-shadow: rgba(0,10,30,0.25) 10px 10px 20px 0px;
    background: rgba(79,157,255,0.28);
    transition: all .6s ease-in-out;
  }
  .glass-card .logo .circle1{ width:150px; transform: translate3d(0,0,25px); top:10px; left:10px; }
  .glass-card .logo .circle2{ width:122px; transform: translate3d(0,0,45px); top:12px; left:12px; transition-delay:.3s; }
  .glass-card .logo .circle3{ width:94px; transform: translate3d(0,0,65px); top:15px; left:15px; transition-delay:.6s; }
  .glass-card .logo .circle4{ width:66px; transform: translate3d(0,0,85px); top:20px; left:20px; transition-delay:.9s; }
  .glass-card .logo .circle5{
    width:38px;
    transform: translate3d(0,0,105px);
    top:25px; left:25px;
    display:grid;
    place-content:center;
    transition-delay:1.2s;
  }
  .glass-card .logo .circle5 svg{ width:17px; fill:#fff; }

  .glass-card-parent:hover .glass-card{
    transform: rotate3d(1,-1,0,22deg) translateY(-5px);
    box-shadow: rgba(0,10,30,0.5) 30px 50px 35px -40px, rgba(0,10,30,0.35) 0px 25px 40px 0px;
  }
  .glass-card-parent:hover .glass-card .social-buttons-container .social-button{
    transform: translate3d(0,0,60px);
    box-shadow: rgba(0,10,30,0.3) 5px 20px 10px 0px;
  }
  .glass-card-parent:hover .glass-card .logo .circle2{ transform: translate3d(0,0,65px); }
  .glass-card-parent:hover .glass-card .logo .circle3{ transform: translate3d(0,0,85px); }
  .glass-card-parent:hover .glass-card .logo .circle4{ transform: translate3d(0,0,105px); }
  .glass-card-parent:hover .glass-card .logo .circle5{ transform: translate3d(0,0,125px); }

  .logostrip{
    position:relative;
    z-index:3;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
    display:flex;
    flex-direction:column;
    gap: 12px;
  }
  .hero-logo-row{
    position:relative;
    width:100%;
    height: 46px;
    overflow:hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  }
  .hero-logo-track{
    display:flex;
    align-items:center;
    height:100%;
    width:max-content;
    will-change:transform;
  }
  .hero-logo-item{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:8px;
    height: 38px;
    padding: 0 14px;
    margin-right: 10px;
    border-radius: 10px;
    background: rgba(8,14,20,0.5);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--ink-dim);
    text-decoration:none;
    white-space:nowrap;
    font-size: 0.78rem;
    backdrop-filter: blur(6px);
    transition: border-color .2s ease, color .2s ease;
  }
  .hero-logo-item:hover{
    border-color: var(--accent);
    color: var(--ink);
  }
  .hero-logo-item img{
    width:18px; height:18px;
    object-fit:contain;
    display:block;
    pointer-events:none;
  }

  section{
    position:relative;
    z-index: 3;
    background: var(--bg);
    padding: 108px 0;
  }
  .section-head{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
    margin-bottom: 52px;
  }
  .section-head h2{
    font-family: var(--serif);
    font-weight:500;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    margin:0;
  }
  .section-index{
    font-size: 0.82rem;
    color: var(--ink-faint);
    font-variant-numeric: tabular-nums;
  }

  #about{
    position:relative;
    overflow:hidden;
  }
  .about-bg{
    position:absolute;
    inset:0;
    z-index:0;
    background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(79,157,255,0.22), transparent 68%);
    opacity: 0.85;
  }
  .about-bg canvas{
    display:block;
    width:100%;
    height:100%;
  }
  .about-scrim{
    position:absolute;
    inset:0;
    z-index:1;
    background: linear-gradient(180deg, rgba(7,12,19,0.5) 0%, rgba(7,12,19,0.72) 55%, var(--bg) 100%);
    pointer-events:none;
  }
  #about > .wrap{
    position:relative;
    z-index:2;
  }
  .about-grid{
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
  }
  .about-lead{
    font-family: var(--serif);
    font-weight:400;
    font-style: italic;
    font-size: clamp(1.3rem, 2.6vw, 1.85rem);
    line-height:1.42;
    color: var(--ink);
    margin: 0 0 26px;
  }
  .about-body{
    color: var(--ink-dim);
    font-size: 1rem;
    max-width: 56ch;
  }
  .fact-list{
    border-top: 1px solid var(--line);
  }
  .fact-row{
    display:grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
  }
  .fact-row .label{ color: var(--ink-faint); }
  .fact-row .value{ color: var(--ink); }

  .skills-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
  .skills-col h3{
    font-family: var(--serif);
    font-weight:500;
    font-style:italic;
    font-size: 1.15rem;
    margin: 0 0 20px;
    color: var(--ink-dim);
  }
  .skill-row{
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }
  .skills-col .skill-row:last-child{ border-bottom: 1px solid var(--line); }
  .skill-row .name{
    font-size: 1.02rem;
    margin: 0 0 4px;
  }
  .skill-row .note{
    font-size: 0.88rem;
    color: var(--ink-faint);
    margin:0;
  }

  .work-row{
    display:grid;
    grid-template-columns: 56px 1fr auto;
    align-items:center;
    gap: 20px;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    text-decoration:none;
    color: inherit;
    position:relative;
  }
  .work-list .work-row:last-child{ border-bottom: 1px solid var(--line); }
  .work-num{
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-faint);
    font-size: 1rem;
  }
  .work-main h3{
    font-size: 1.18rem;
    font-weight:600;
    margin: 0 0 6px;
    transition: color .25s ease;
  }
  .work-row:hover .work-main h3{ color: var(--accent); }
  .work-main p{
    margin:0;
    color: var(--ink-dim);
    font-size: 0.92rem;
    max-width: 52ch;
  }
  .work-tags{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    justify-content:flex-end;
    max-width: 220px;
  }
  .work-tags span{
    font-size: 0.74rem;
    color: var(--ink-faint);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 10px;
    white-space:nowrap;
  }
  .work-note{
    color: var(--ink-faint);
    font-size: 0.88rem;
    margin-top: 30px;
  }

  .hobby-list{
    border-top: 1px solid var(--line);
  }
  .hobby-row{
    display:flex;
    align-items:flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left .25s ease;
  }
  .hobby-row:hover{ padding-left: 6px; }
  .hobby-icon{
    flex-shrink:0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--ink-faint);
    transition: color .25s ease, border-color .25s ease;
  }
  .hobby-row:hover .hobby-icon{
    color: var(--accent);
    border-color: var(--accent);
  }
  .hobby-icon svg{ width:19px; height:19px; }
  .hobby-name{
    font-size: 1.02rem;
    font-weight:600;
    color: var(--ink);
    margin: 4px 0 5px;
  }
  .hobby-desc{
    font-size: 0.9rem;
    color: var(--ink-dim);
    max-width: 54ch;
    margin:0;
  }

  .faq-list{
    border-top: 1px solid var(--line);
  }
  .faq-item{
    border-bottom: 1px solid var(--line);
  }
  .faq-question{
    all:unset;
    box-sizing:border-box;
    display:flex;
    align-items:center;
    gap: 16px;
    width:100%;
    padding: 20px 0;
    cursor:pointer;
  }
  .faq-num{
    font-family: var(--serif);
    font-style:italic;
    color: var(--ink-faint);
    font-size: 0.92rem;
    flex-shrink:0;
  }
  .faq-q-text{
    flex:1;
    font-size: 1rem;
    font-weight:600;
    color: var(--ink);
    transition: color .2s ease;
  }
  .faq-question:hover .faq-q-text{ color: var(--accent); }
  .faq-chevron{
    width:16px; height:16px;
    flex-shrink:0;
    color: var(--ink-faint);
    transition: transform .3s ease, color .2s ease;
  }
  .faq-item.open .faq-chevron{
    transform: rotate(180deg);
    color: var(--accent);
  }
  .faq-answer{
    display:grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
  }
  .faq-item.open .faq-answer{
    grid-template-rows: 1fr;
  }
  .faq-answer-inner{
    overflow:hidden;
  }
  .faq-answer-inner p{
    margin:0;
    padding: 0 0 22px 40px;
    color: var(--ink-dim);
    font-size: 0.92rem;
    line-height:1.6;
    max-width: 58ch;
  }

  .quote-break{
    position:relative;
    z-index:3;
    background: var(--bg);
    padding: 88px 0;
    border-bottom: 1px solid var(--line);
  }
  .quote-mark{
    display:block;
    font-family: var(--serif);
    font-size: 3.4rem;
    color: var(--accent);
    line-height:1;
    margin-bottom: 6px;
    opacity: 0.85;
  }
  .quote-text{
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.35rem, 3.4vw, 2.15rem);
    line-height: 1.5;
    color: var(--ink);
    max-width: 36ch;
    margin: 0;
  }

  .orbit-showcase{
    position:relative;
    height: clamp(200px, 28vw, 300px);
    margin-bottom: 44px;
    overflow:hidden;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, rgba(79,157,255,0.08), rgba(255,255,255,0.02));
  }
  .orbit-stage{
    position:absolute;
    width:1400px;
    height:1400px;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%) scale(var(--orbit-scale, 0.22));
    transform-origin:center;
  }
  .orbit-wrapper{
    position:absolute;
    inset:0;
    transform: rotate(-8deg);
    transform-origin:center;
  }
  .orbit-path{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    pointer-events:none;
  }
  .orbit-path ellipse{
    fill:none;
    stroke: rgba(255,255,255,0.14);
    stroke-width: 2.5;
  }
  .orbit-item{
    position:absolute;
    width:100px;
    height:100px;
    left:50%;
    top:50%;
    margin:-50px;
    will-change:transform;
  }
  .orbit-image{
    display:block;
    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:50%;
    border: 3px solid rgba(255,255,255,0.85);
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
    user-select:none;
    pointer-events:none;
    -webkit-user-drag:none;
  }

  .location-grid{
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items:center;
  }
  .location-body{
    color: var(--ink-dim);
    font-size: 1rem;
    max-width: 56ch;
    margin: 0 0 34px;
  }
  .location-facts{
    border-top: 1px solid var(--line);
  }
  .location-map{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap: 14px;
  }
  .location-map svg{
    width: min(260px, 70%);
    height:auto;
  }
  .location-pulse{
    transform-origin: 120px 92px;
    animation: locationPulse 2.6s ease-in-out infinite;
  }
  @keyframes locationPulse{
    0%, 100%{ opacity:1; }
    50%{ opacity:0.45; }
  }

  .work-props{
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap:wrap;
  }
  .wave-hand-wrap{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 10px;
  }
  .wave-caption{
    font-size: 0.8rem;
    color: var(--ink-faint);
  }
  .wave-hand{
    --skin-color: #e4c560;
    --tap-speed: 0.6s;
    --tap-stagger: 0.1s;
    position:relative;
    width: 64px;
    height: 48px;
  }
  .wave-palm{
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    top:0; left:0;
    background-color: var(--skin-color);
    border-radius: 8px 32px;
  }
  .wave-thumb{
    position:absolute;
    width:120%;
    height:30px;
    background-color: var(--skin-color);
    bottom:-18%;
    right:1%;
    transform-origin: calc(100% - 16px) 16px;
    transform: rotate(-20deg);
    border-radius: 24px 16px 16px 8px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    border-left: 2px solid rgba(0,0,0,0.1);
  }
  .wave-finger{
    position:absolute;
    width:80%;
    height:28px;
    background-color: var(--skin-color);
    bottom:32%;
    right:64%;
    transform-origin: 100% 16px;
    transform: rotate(10deg);
    animation-duration: calc(var(--tap-speed) * 2);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
  .wave-finger::before{
    content:"";
    position:absolute;
    width:140%;
    height:24px;
    background-color: var(--skin-color);
    bottom:8%;
    right:65%;
    transform-origin: calc(100% - 16px) 16px;
    transform: rotate(-60deg);
    border-radius:16px;
  }
  .wave-finger:nth-child(3){ animation-delay:0; filter:brightness(70%); animation-name: waveTap1; }
  .wave-finger:nth-child(4){ animation-delay: var(--tap-stagger); filter:brightness(80%); animation-name: waveTap2; }
  .wave-finger:nth-child(5){ animation-delay: calc(var(--tap-stagger) * 2); filter:brightness(90%); animation-name: waveTap3; }
  .wave-finger:nth-child(6){ animation-delay: calc(var(--tap-stagger) * 3); filter:brightness(100%); animation-name: waveTap4; }

  @keyframes waveTap1{ 0%,50%,100%{ transform: rotate(10deg) scale(0.4); } 40%{ transform: rotate(50deg) scale(0.4); } }
  @keyframes waveTap2{ 0%,50%,100%{ transform: rotate(10deg) scale(0.6); } 40%{ transform: rotate(50deg) scale(0.6); } }
  @keyframes waveTap3{ 0%,50%,100%{ transform: rotate(10deg) scale(0.8); } 40%{ transform: rotate(50deg) scale(0.8); } }
  @keyframes waveTap4{ 0%,50%,100%{ transform: rotate(10deg) scale(1); } 40%{ transform: rotate(50deg) scale(1); } }

  .mini-watch-wrap{
    width: 116px;
    height: 130px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .mini-watch{
    position:relative;
    transform: scale(0.32);
    flex-shrink:0;
  }
  .mini-watch::after,
  .mini-watch::before{
    content:"";
    width:10rem; height:200px;
    background: radial-gradient(circle at 200px, rgb(0,0,0), rgb(48,48,48));
    box-shadow: inset 0 -10px 18px #ffffffb9, 10px 0 30px #00000071;
    position:absolute; left:50%;
    transform: translate(-50%,0%);
  }
  .mini-watch::before{
    box-shadow: inset 0 10px 18px #ffffffb9, 10px 0 30px #00000071;
    transform: translate(-50%,-100%);
  }
  .mini-watch .frame{
    background:#0d0d0d;
    border-radius:92px;
    box-shadow: inset 0 0 24px 1px #0d0d0d, inset 0 0 0 12px #606c78, 0 20px 30px #00000071;
    height:380px; width:20rem;
    margin:0 20px;
    padding:28px 26px;
    position:relative;
    display:flex; justify-content:center; align-items:center;
  }
  .mini-watch .frame::before{
    content:"";
    position:absolute;
    width:18.625rem; height:356px;
    left:12px; top:12px;
    border:1px solid #0d0d0d;
    border-radius:80px;
    box-shadow: 0 0 12px rgba(255,255,255,0.5), inset 0 0 12px 2px rgba(255,255,255,0.75);
  }
  .mini-watch .watch-text{
    position:relative;
    z-index:5;
    color:#dddf8f;
    font-size:10rem;
    font-family: serif;
    font-weight:bolder;
    line-height:0.8;
    text-align:center;
    user-select:none;
    text-shadow: 0 0 40px #d7d886c7;
  }
  .mini-watch .watch-text div{ width:100%; }
  .mini-watch .sideBtn{
    background:#606c78;
    border-left:1px solid #000;
    border-radius: 8px 6px 6px 8px / 20px 6px 6px 20px;
    box-shadow: inset 8px 0 8px 0 #1c1f23, inset -2px 0 6px #272c31, -4px 0 8px #0d0d0d40;
    height:72px; width:18px;
    position:absolute; right:6px; top:108px; z-index:9;
  }
  .mini-watch .powerBtn{
    background:#272c31;
    border-radius: 2px 4px 4px 2px / 2px 8px 8px 2px;
    box-shadow: inset 0 0 2px 1px #101315;
    height:72px; width:4px;
    position:absolute; right:18px; top:212px;
  }
  .mini-watch .dots{
    position:absolute; bottom:0; left:50%;
    transform: translate(-50%,140%);
    padding:3px; z-index:20;
  }
  .mini-watch .dot{
    width:17px; aspect-ratio:1;
    display:block; margin-bottom:50px;
    background:#000; border-radius:100px;
    box-shadow: inset 2px 0 5px #ffffff48;
  }

  #location{
    position:relative;
    overflow:hidden;
  }
  .location-bg{
    position:absolute;
    inset:0;
    z-index:0;
    background: radial-gradient(ellipse 60% 55% at 50% 40%, rgba(79,157,255,0.18), transparent 68%);
  }
  .location-bg canvas{
    display:block;
    width:100%;
    height:100%;
  }
  .location-scrim{
    position:absolute;
    inset:0;
    z-index:1;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(7,12,19,0.55) 14%, rgba(7,12,19,0.55) 86%, var(--bg) 100%);
    pointer-events:none;
  }
  #location > .wrap{
    position:relative;
    z-index:2;
  }

  .macbook-showcase{
    display:flex;
    justify-content:center;
    margin: 48px 0 8px;
  }
  .macbook-mini{
    position: relative;
    width: 228px;
    height: 260px;
    transform: scale(0.72);
  }
  .mb-topBord{
    position: absolute;
    z-index: 0;
    top: 34px;
    left: 0;
    width: 128px;
    height: 116px;
    border-radius: 6px;
    transform-origin: center;
    background: linear-gradient(-135deg, #c8c9c9 52%, #8c8c8c 56%);
    transform: scale(0) skewY(-30deg);
  }
  .mb-topBord::before{
    content: "";
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 6px;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: #000;
  }
  .mb-topBord::after{
    content: "";
    position: absolute;
    z-index: 1;
    bottom: -7px;
    left: 8px;
    width: 168px;
    height: 12px;
    transform-origin: left bottom;
    transform: rotate(-42deg) skew(-4deg);
    background: linear-gradient(-135deg, #c8c9c9 52%, #8c8c8c 56%);
  }
  .mb-display{
    position: absolute;
    z-index: 10;
    top: 17px;
    left: 12px;
    width: calc(100% - 12px);
    height: calc(100% - 18px);
    background: linear-gradient(45deg, #3ba9ff, #c82aff);
  }
  .mb-display::before{
    content: "";
    position: absolute;
    z-index: 5;
    top: -9px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 18px);
    border-radius: 6px;
    background: linear-gradient(60deg, rgba(255,255,255,0) 60%, rgba(255,255,255,0.3) 60%);
  }
  .mb-load{
    position: relative;
    width: 100%;
    height: 100%;
    background: #222;
    opacity: 1;
  }
  .mb-load::before{
    content: "";
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    margin: auto;
    width: 80px;
    height: 6px;
    border-radius: 3px;
    box-sizing: border-box;
    border: solid 1px #fff;
  }
  .mb-load::after{
    content: "";
    position: absolute;
    top:0; left:18px; bottom:0;
    margin: auto;
    width: 0;
    height: 6px;
    border-radius: 3px;
    background: #fff;
  }
  .mb-underBord{
    position: relative;
    left: 42px;
    bottom: -145px;
    width: 150px;
    height: 90px;
    border-radius: 6px;
    transform-origin: center;
    background: linear-gradient(-45deg, #c8c9c9 61%, #8c8c8c 66%);
    opacity: 0;
    transform: scale(0) rotate(-30deg) skew(30deg);
  }
  .mb-underBord::before{
    content: "";
    position: absolute;
    z-index: 3;
    top: -8px; left: 8px;
    width: 100%; height: 100%;
    border-radius: 6px;
    background: #dcdede;
  }
  .mb-underBord::after{
    content: "";
    position: absolute;
    z-index: 2;
    top: -8px; left: 12px;
    width: 170px; height: 15px;
    transform-origin: top left;
    background: linear-gradient(-45deg, #c8c9c9 61%, #8c8c8c 66%);
    transform: rotate(31deg) skew(-16deg);
  }
  .mb-keybord{
    position: relative;
    top: 0; left: 16px;
    z-index: 3;
    border-radius: 3px;
    width: calc(100% - 16px);
    height: 45px;
    background: #c8c9c9;
  }
  .mb-keybord::before{
    content: "";
    position: absolute;
    bottom: -30px; left:0; right:0;
    margin: 0 auto;
    width: 40px; height: 25px;
    border-radius: 3px;
    background: #c8c9c9;
  }
  .mb-keybord-inner{
    position: relative;
    top: 2px; left: 2px;
    display: flex;
    flex-direction: column;
    width: calc(100% - 3px);
    height: calc(100% - 4px);
  }
  .mb-touchbar{
    width: 100%; height: 6px;
    border-radius: 3px;
    background: #000;
  }
  .mb-keyBox{
    display: grid;
    grid-template-rows: 3fr 1fr;
    grid-template-columns: repeat(13, 1fr);
    width: 100%; height: 24px;
    margin: 1px 0 0 0;
    padding: 0 0 0 1px;
    box-sizing: border-box;
    list-style: none;
  }
  .mb-key{
    position: relative;
    width: 8px; height: 7px;
    margin: 1px;
    background: #000;
    opacity: 0;
    transform: translate(60px, -60px);
  }
  .mb-keyBox .mb-key::before,
  .mb-keyBox .mb-key::after{
    content: "";
    position: absolute;
    left:0; width:100%; height:100%;
    background: #000;
  }
  .mb-key::before{ top: 8px; }
  .mb-key::after{ top: 16px; }
  .mb-keyBox .key12::before{ width: 10px; }
  .mb-keyBox .key13::before{ height: 10px; }
  .key01{ grid-column: 1/2; } .key02{ grid-column: 2/3; } .key03{ grid-column: 3/4; }
  .key04{ grid-column: 4/5; } .key05{ grid-column: 5/6; } .key06{ grid-column: 6/7; }
  .key07{ grid-column: 7/8; } .key08{ grid-column: 8/9; } .key09{ grid-column: 9/10; }
  .key10{ grid-column: 10/11; } .key11{ grid-column: 11/12; } .key12{ grid-column: 12/13; }
  .key13{ grid-column: 13/14; }
  .mb-keyBox-under{
    margin:0; padding: 0 0 0 1px;
    box-sizing: border-box;
    list-style:none;
    display:flex;
  }
  .mb-keyBox-under .mb-key{
    transform: translate(80px, -80px);
    opacity: 0;
  }
  .key19{ width: 28px; }

  .macbook-mini.in-view .mb-topBord{
    animation: mbTopbord 0.4s 0.3s ease-out forwards;
  }
  .macbook-mini.in-view .mb-underBord{
    animation: mbModal 0.5s 0.9s ease-out forwards;
  }
  .macbook-mini.in-view .mb-load{
    animation: mbFade 0.4s 3.2s ease forwards;
  }
  .macbook-mini.in-view .mb-load::after{
    animation: mbLoad 2s 1.4s ease-out forwards;
  }
  .macbook-mini.in-view .mb-keyBox .mb-key{
    animation: mbKey 0.2s 1.3s ease-out forwards;
  }
  .macbook-mini.in-view .mb-keyBox .mb-key::before{
    animation: mbKey1 0.2s 1.4s ease-out forwards;
  }
  .macbook-mini.in-view .mb-keyBox .mb-key::after{
    animation: mbKey2 0.2s 1.5s ease-out forwards;
  }
  .macbook-mini.in-view .mb-keyBox-under .mb-key{
    animation: mbKey3 0.3s 1.5s linear forwards;
  }

  @keyframes mbTopbord{
    0%{ transform: scale(0) skewY(-30deg); }
    30%{ transform: scale(1.1) skewY(-30deg); }
    45%{ transform: scale(0.9) skewY(-30deg); }
    60%{ transform: scale(1.05) skewY(-30deg); }
    75%{ transform: scale(0.95) skewY(-30deg); }
    90%{ transform: scale(1.02) skewY(-30deg); }
    100%{ transform: scale(1) skewY(-30deg); }
  }
  @keyframes mbFade{ 0%{ opacity:1; } 100%{ opacity:0; } }
  @keyframes mbLoad{
    0%{ width:0; } 20%{ width:40px; } 30%{ width:40px; }
    60%{ width:60px; } 90%{ width:60px; } 100%{ width:80px; }
  }
  @keyframes mbModal{
    0%{ transform: scale(0) rotate(-30deg) skew(30deg); opacity:0; }
    30%{ transform: scale(1.1) rotate(-30deg) skew(30deg); opacity:1; }
    45%{ transform: scale(0.9) rotate(-30deg) skew(30deg); opacity:1; }
    60%{ transform: scale(1.05) rotate(-30deg) skew(30deg); opacity:1; }
    75%{ transform: scale(0.95) rotate(-30deg) skew(30deg); opacity:1; }
    90%{ transform: scale(1.02) rotate(-30deg) skew(30deg); opacity:1; }
    100%{ transform: scale(1) rotate(-30deg) skew(30deg); opacity:1; }
  }
  @keyframes mbKey{ 0%{ transform: translate(60px,-60px); opacity:0; } 100%{ transform: translate(0,0); opacity:1; } }
  @keyframes mbKey1{ 0%{ transform: translate(20px,-20px); opacity:0; } 100%{ transform: translate(0,0); opacity:1; } }
  @keyframes mbKey2{ 0%{ transform: translate(40px,-40px); opacity:0; } 100%{ transform: translate(0,0); opacity:1; } }
  @keyframes mbKey3{ 0%{ transform: translate(80px,-80px); opacity:0; } 100%{ transform: translate(0,0); opacity:1; } }

  .contact-solar-wrap{
    position:absolute;
    right: -40px;
    top: 50%;
    width: 300px;
    height: 300px;
    transform: translateY(-50%) scale(0.42);
    transform-origin: right center;
    pointer-events:none;
    z-index:1;
    opacity: 0.85;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .contact-solar {
    margin: 0;
    height: 50px;
    width: 50px;
    background: orange;
    border-radius: 25px;
    position: relative;
    animation: solarGlow 1.5s linear infinite;
  }
  .contact-solar i {
    border-radius: 250px;
    display: block;
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-sizing: border-box;
    transform-origin: 50% 50%;
  }
  .contact-solar i:before {
    content: "";
    border-radius: 25px;
    background: black;
    display: block;
    position: absolute;
    top: -5px;
    right: 45%;
  }
  .contact-solar i.mercury { width: 80px; height: 80px; margin-left: -40px; left: 50%; top: 50%; margin-top: -40px; animation: solarOrbit 0.5s linear infinite; }
  .contact-solar i.mercury:before { background: #6f5f5f; height: 7px; width: 7px; }
  .contact-solar i.venus { width: 110px; height: 110px; margin-left: -55px; left: 50%; top: 50%; margin-top: -55px; animation: solarOrbit 1s linear infinite; }
  .contact-solar i.venus:before { background: #e7a71f; height: 10px; width: 10px; }
  .contact-solar i.earth { width: 140px; height: 140px; margin-left: -70px; left: 50%; top: 50%; margin-top: -70px; animation: solarOrbit 1.5s linear infinite; }
  .contact-solar i.earth:before { background: #63bee2; height: 10px; width: 10px; }
  .contact-solar i.mars { width: 170px; height: 170px; margin-left: -85px; left: 50%; top: 50%; margin-top: -85px; animation: solarOrbit 2s linear infinite; }
  .contact-solar i.mars:before { background: red; height: 10px; width: 10px; }
  .contact-solar i.belt { box-sizing: border-box; border-width: 25px; width: 240px; height: 240px; margin-left: -120px; border-color: rgba(36, 35, 35, 0.21); left: 50%; top: 50%; margin-top: -120px; }
  .contact-solar i.jupiter { width: 260px; height: 260px; margin-left: -130px; left: 50%; top: 50%; margin-top: -130px; animation: solarOrbit 2.5s linear infinite; }
  .contact-solar i.jupiter:before { background: #cf9b2b; top: -15px; height: 30px; width: 30px; }
  .contact-solar i.saturn { width: 320px; height: 320px; margin-left: -160px; left: 50%; top: 50%; margin-top: -160px; animation: solarOrbit 3s linear infinite; }
  .contact-solar i.saturn:before { background: #cf7a2b; top: -10px; height: 20px; width: 20px; }
  .contact-solar i.saturn:after { content: ""; position: absolute; display: block; background: #fff; width: 30px; height: 1px; right: 43.5%; transform: rotate(20deg); }
  .contact-solar i.uranus { width: 360px; height: 360px; margin-left: -180px; left: 50%; top: 50%; margin-top: -180px; animation: solarOrbit 3.5s linear infinite; }
  .contact-solar i.uranus:before { background: #10c593; top: -8px; height: 15px; width: 15px; }
  .contact-solar i.neptune { width: 400px; height: 400px; margin-left: -200px; left: 50%; top: 50%; margin-top: -200px; animation: solarOrbit 4s linear infinite; }
  .contact-solar i.neptune:before { background: #1470e4; top: -8px; height: 15px; width: 15px; }

  @keyframes solarOrbit {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(-180deg); }
    100% { transform: rotate(-360deg); }
  }
  @keyframes solarGlow {
    0% { box-shadow: none; }
    50% { background: #ffeb00; box-shadow: 0 0 20px orange; }
    100% { box-shadow: none; }
  }

  .contact{
    background: var(--bg-raised);
    position:relative;
    overflow:hidden;
  }
  .contact-inner{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
  }
  .contact-kicker{
    color: var(--ink-faint);
    font-size: 0.94rem;
    margin: 0 0 14px;
  }
  .contact-headline{
    font-family: var(--serif);
    font-weight:500;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height:1.06;
    margin: 0 0 40px;
    max-width: 16ch;
  }

  .cta-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap: 12px;
    padding: 17px 30px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 1rem;
    font-weight:600;
    text-decoration:none;
    overflow:hidden;
    transition: color .35s ease, transform .15s ease;
    isolation:isolate;
  }
  .cta-btn::before{
    content:"";
    position:absolute;
    inset:0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .42s cubic-bezier(.65,0,.35,1);
    z-index:-1;
  }
  .cta-btn:hover::before,
  .cta-btn:focus-visible::before{
    transform: scaleX(1);
  }
  .cta-btn:hover,
  .cta-btn:focus-visible{
    color: var(--accent-ink);
  }
  .cta-btn svg{ width:18px; height:18px; flex-shrink:0; }

  .contact-number{
    margin-top: 22px;
    font-size: 0.88rem;
    color: var(--ink-faint);
  }
  .contact-number button{
    all:unset;
    cursor:pointer;
    color: var(--ink-dim);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--ink-faint);
  }
  .contact-number button:hover{ color: var(--accent); text-decoration-color: var(--accent); }

  .social-row{
    display:flex;
    gap: 22px;
    margin-top: 26px;
    flex-wrap:wrap;
    perspective: 1000px;
  }
  .social-link{
    position:relative;
    width: 56px;
    height: 56px;
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--ink-faint);
    text-decoration:none;
    transform-style: preserve-3d;
    transition: transform .4s cubic-bezier(.175,.885,.32,1.275), color .3s ease;
  }
  .social-link svg{
    width: 24px;
    height: 24px;
    position:relative;
    z-index:3;
    fill: currentColor;
    transition: transform .3s ease, filter .3s ease;
  }
  .social-ring{
    position:absolute;
    inset:0;
    border-radius:50%;
    border: 1.5px solid currentColor;
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: socialRotate 3s linear infinite;
    opacity: 0.55;
  }
  .social-pulse{
    position:absolute;
    inset:0;
    border-radius:50%;
    box-shadow: 0 0 14px currentColor;
    opacity:0;
    transition: opacity .3s ease;
  }
  .social-link:hover,
  .social-link:focus-visible{
    color: var(--accent);
    transform: translateY(-8px) rotateX(18deg);
  }
  .social-link:hover svg{
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px var(--accent));
  }
  .social-link:hover .social-pulse{
    opacity: 0.5;
    animation: socialPulse 2s ease-out infinite;
  }
  .social-label{
    position:absolute;
    top: calc(100% + 8px);
    left:50%;
    transform: translateX(-50%);
    font-size: 0.68rem;
    color: var(--ink-faint);
    white-space:nowrap;
    opacity:0;
    transition: opacity .25s ease;
    pointer-events:none;
  }
  .social-link:hover .social-label{ opacity:1; }

  @keyframes socialRotate{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }
  @keyframes socialPulse{
    0%{ transform: scale(0.85); opacity:0.5; }
    50%{ transform: scale(1.12); opacity:0.2; }
    100%{ transform: scale(1.35); opacity:0; }
  }

  footer{
    padding: 34px 0 120px;
    background: var(--bg-raised);
    border-top: 1px solid var(--line);
  }
  .footer-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size: 0.82rem;
    color: var(--ink-faint);
  }
  .footer-row a{
    text-decoration:none;
    color: var(--ink-faint);
  }
  .footer-row a:hover{ color: var(--accent); }

  .dock-outer{
    position: fixed;
    z-index: 60;
    left:0; right:0; bottom: 14px;
    height: 84px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    pointer-events:none;
  }
  .dock-panel{
    pointer-events:auto;
    display:flex;
    align-items:flex-end;
    gap: 14px;
    height: 68px;
    padding: 0 10px 9px;
    border-radius: 18px;
    background: rgba(13,22,32,0.72);
    border: 1px solid var(--line);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(2,6,12,0.5);
    transition: height .25s cubic-bezier(.2,.8,.2,1);
  }
  .dock-item{
    position:relative;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--ink-faint);
    text-decoration:none;
    transform-origin: bottom center;
    transition:
      width .16s cubic-bezier(.2,.8,.2,1),
      height .16s cubic-bezier(.2,.8,.2,1),
      transform .16s cubic-bezier(.2,.8,.2,1),
      background .2s ease, border-color .2s ease, color .2s ease;
  }
  .dock-item svg{ width: 48%; height:48%; }
  .dock-item:hover,
  .dock-item.active{
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
  }
  .dock-label{
    position:absolute;
    left:50%;
    bottom: calc(100% + 14px);
    transform: translateX(-50%) translateY(5px);
    padding: 6px 11px;
    white-space:nowrap;
    border-radius: 8px;
    background: var(--bg-raised);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.76rem;
    line-height:1;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .dock-item:hover .dock-label,
  .dock-item:focus-visible .dock-label{
    opacity:1;
    visibility:visible;
    transform: translateX(-50%) translateY(0);
  }
  .dock-label::after{
    content:"";
    position:absolute;
    left:50%; bottom:-4px;
    width:7px; height:7px;
    background: var(--bg-raised);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transform: translateX(-50%) rotate(45deg);
  }

  @media (max-width: 860px){
    .about-grid, .skills-grid, .location-grid{
      grid-template-columns: 1fr;
      gap: 44px;
    }
    .location-map{ order:-1; }
    .location-map svg{ width:160px; }
    .work-row{
      grid-template-columns: 34px 1fr;
    }
    .work-tags{ display:none; }
  }

  @media (max-width: 640px){
    .hero-card-wrap{ transform: scale(0.5); margin: 0 0 18px -18px; }
    .mini-watch-wrap{ width: 92px; height: 104px; }
    .mini-watch{ transform: scale(0.26); }
    .work-props{ gap: 20px; }
    .contact-solar-wrap{ width: 180px; height: 180px; right: -50px; transform: translateY(-50%) scale(0.32); opacity: 0.7; }
    .nav-links{
      position:fixed;
      top:64px; left:0; right:0;
      flex-direction:column;
      gap:0;
      background: rgba(7,12,19,0.98);
      backdrop-filter: blur(10px);
      border-bottom:1px solid var(--line);
      padding: 6px var(--edge) 18px;
      transform: translateY(-8px);
      opacity:0;
      pointer-events:none;
      transition: opacity .25s ease, transform .25s ease;
    }
    .nav-links.is-open{
      opacity:1;
      transform: translateY(0);
      pointer-events:auto;
    }
    .nav-links a{
      display:block;
      padding: 13px 0;
      border-bottom: 1px solid var(--line);
      font-size: 1rem;
    }
    .nav-links a::after{ display:none; }
    .nav-toggle{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width: 34px; height:34px;
      background:none;
      border:1px solid var(--line);
      border-radius:8px;
      color: var(--ink);
      cursor:pointer;
    }
    .hero-pin{ height: 180vh; }
    section{ padding: 76px 0; }
    .logostrip{ padding: 18px 0; gap: 8px; }
    .hero-logo-row{ height: 40px; }
    .hero-logo-item{ height: 33px; padding: 0 11px; font-size: 0.72rem; }
    .hero-logo-item img{ width:15px; height:15px; }
    .dock-outer{ bottom: 10px; height: 76px; }
    .dock-panel{ gap: 8px; height: 60px; padding: 0 6px 7px; border-radius: 16px; }
    .dock-item{ width: 44px; height: 44px; border-radius: 10px; }
    .dock-label{ font-size: 0.7rem; }
    footer{ padding-bottom: 104px; }
  }

  @media (hover: hover) and (pointer: fine){
    .dock-outer{ display:none; }
  }

  @media (hover: none), (pointer: coarse){
    .nav-links, .nav-toggle{ display:none !important; }
  }
