:root {
  --bg: #0d0f10;
  --surface: #151718;
  --text: #e8e8e8;
  --muted: #a7a7a7;
  --accent: #19e5d6;
  --accent-2: #0fcfbe;
  --ring: 0 0 16px rgba(30, 234, 217, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(800px 400px at 85% 20%, rgba(30,234,217,.08), transparent 60%) ,
              radial-gradient(600px 300px at 10% 70%, rgba(30,234,217,.06), transparent 60%),
              var(--bg);
}

#typing {
  color: var(--accent);
}

#typing::after {
  content: "|";
  margin-left: 4px;
  animation: blink 1s infinite;
  color: var(--accent);
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #2EC4B6, #00FFF0);
    box-shadow: 0 0 12px rgba(0,255,240,0.5);
    border-radius: 0 2px 2px 0;
    transition: width 0.15s linear;
    z-index: 9999;
}

/* tolong */
.container {
  width: min(1200px, 90vw);
  margin-inline: auto;
}
.section {
  padding: 110px 0;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 28px;
}
.accent { color: var(--accent); }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid var(--accent);
  color: var(--text);
  text-decoration: none;
  transition: .25s ease;
  box-shadow: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--ring); }
.btn-primary { background: var(--accent); color: #041414; border-color: var(--accent); }
.btn-ghost   { background: transparent; }
.btn.tiny { padding: 8px 14px; font-size: 14px; }
.btn i { margin-right: 8px; }

.btn.tiny { padding: 8px 14px; font-size: 14px; }
.btn-ghost { background: transparent; border:2px solid var(--accent); color: var(--text); }
.btn-ghost:hover { box-shadow: 0 0 12px rgba(0,255,240,.35); transform: translateY(-2px); }


/* bara */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  background: rgba(6, 7, 8, 0.75);
  border-bottom: 1px solid #0f1213;
  backdrop-filter: blur(8px);
  z-index: 1000;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 20px;
}
.logo span { color: var(--accent); }
.menu a {
  margin-left: 22px;
  color: var(--text);
  text-decoration: none;
  position: relative;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0; 
  bottom: -6px;
  height: 2px; 
  width: 0%;
  background: var(--accent);
  transition: width .25s ease;
}
.menu a:hover::after,
.menu a.active::after { width: 100%; }
.menu a i { margin-right: 6px; font-size: .95em; }
.nav-toggle { display: none; }

/* pahalwan */
.hero { padding-top: 140px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: start;
}

.hero-text .title,
.hero-text .desc,
.hero-text .btns,
.hero-text .socials { margin-left: 0; }

.hero-text .desc {
  margin-top: 14px;
  max-width: 680px;
}
.eyebrow { 
  color: var(--muted); 
  margin: 0 0 8px; 
}

.title { 
  font-size: clamp(36px, 6vw, 64px); 
  margin: 0 0 10px; 
}

.desc {
  color: #c8c8c8;
  max-width: 640px;
  line-height: 1.7;
}

.btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 22px;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-start;
  font-size: 20px;
}

.social {
  width: 48px;
  height: 48px;
  display: grid; 
  place-items: center;
  border-radius: 50%;
  background: #0e1112;
  border: 1.5px solid #0f1416;
  box-shadow: inset 0 0 0 1px #0c0f10;
  color: #d9e4e8;
  transition:
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease,
    background 0.3s ease,
    border-color 0.3s ease;
  text-decoration: none; 
  cursor: pointer;
}

.social:hover, .social:focus-visible {
  color: var(--accent, #00fff0);
  background: rgba(0,255,240,.08);
  border-color: rgba(0,255,240,.4);
  box-shadow: 0 0 12px rgba(0,255,240,.45), 0 0 24px rgba(0,255,240,.25);
  transform: translateY(-4px) scale(1.08);
}

.social:hover i {
  animation: pulseIcon 1.4s ease-in-out infinite alternate;
}

@keyframes pulseIcon {
  0% { text-shadow: 0 0 6px rgba(0,255,240,.5); }
  100% { text-shadow: 0 0 16px rgba(0,255,240,.7); }
}

.studio-pill{
  display:inline-flex; 
  align-items:center; 
  gap:10px;
  margin-top:14px;
  padding:10px 14px;
  border-radius:999px;
  font-size:15px; 
  font-weight:600;
  color:#0b1415; 
  background: linear-gradient(90deg, #2EC4B6, #00FFF0);
  box-shadow: 0 0 18px rgba(0,255,240,.35);
  text-decoration:none;
  border:1px solid rgba(255,255,255,.08);
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  animation: pillFloat 6s ease-in-out infinite;
}
.studio-pill i{ font-size:16px; }

.studio-pill:hover,
.studio-pill:focus-visible{
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 22px rgba(0,255,240,.5), 0 0 44px rgba(0,255,240,.25);
  filter: brightness(1.05);
  outline: none;
}

@keyframes pillFloat{
  0% { transform: translateY(0); }
  50%{ transform: translateY(-6px); }
  100%{ transform: translateY(0); }
}

@media (max-width:900px){
  .studio-pill{ display:flex; margin-inline:auto; }
}

.hero-art { display: grid; place-items: center; }

.avatar {
  width: min(360px, 70vw);
  aspect-ratio: 1/1;
  position: relative;
  animation: floatUpDown 3s ease-in-out infinite;
}

.avatar-mask {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden; 

  filter:
    drop-shadow(0 0 14px rgba(30, 234, 217, 0.60))
    drop-shadow(0 0 30px rgba(30, 234, 217, 0.34))
    drop-shadow(0 0 56px rgba(30, 234, 217, 0.22));

  box-shadow: inset 0 0 22px rgba(30, 234, 217, 0.38);
}

.avatar-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 18px rgba(30, 234, 217, 0.32);
  mix-blend-mode: screen;
  pointer-events: none;
}

.avatar-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  filter: contrast(1.03) saturate(1.06);
}

.avatar-mask,
.photo-mask {
  transition: transform 0.45s cubic-bezier(.2, .75, .2, 1),
              filter 0.45s ease,
              box-shadow 0.45s ease;
  transform-origin: center center;
  will-change: transform, filter, box-shadow;
}

.avatar:hover,
.avatar:focus-visible {
  animation-play-state: paused; 
}

.avatar:hover .avatar-mask,
.avatar:focus-visible .avatar-mask {
  transform: translateY(-6px) scale(1.04);
  filter:
    drop-shadow(0 6px 18px rgba(30, 234, 217, 0.55))
    drop-shadow(0 0 30px rgba(30, 234, 217, 0.34))
    drop-shadow(0 0 60px rgba(30, 234, 217, 0.22));
}

.photo:hover .photo-mask,
.photo:focus-visible .photo-mask {
  transform: translateY(-4px) scale(1.03);
  filter:
    drop-shadow(0 6px 14px rgba(30, 234, 217, 0.38))
    drop-shadow(0 0 24px rgba(30, 234, 217, 0.22));
}

.avatar-mask,
.photo-mask {
  transition-timing-function: cubic-bezier(.16, .84, .44, 1);
}

@media (prefers-reduced-motion: reduce) {
  .avatar-mask,
  .photo-mask {
    transition: none !important;
  }
}

@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); } 
  100% { transform: translateY(0); }
}

@keyframes softGlow {
  0% { opacity: 0.9; filter: blur(16px) brightness(1); }
  100% { opacity: 0.7; filter: blur(22px) brightness(1.1); }
}


/* tentang apo */
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #1d2123;
}
.glow { box-shadow: var(--ring); }
.about-photo img {
  display: block;
  width: 100%;
  border-radius: 12px;
}
.about-text h3 { margin: 0 0 8px; font-size: 26px; }
.about-text p { color: #c9c9c9; line-height: 1.75; }
.quote {
  margin: 16px 0 22px;
  color: var(--accent);
  font-style: italic;
}
.about-photo {
  transition: transform 0.45s cubic-bezier(.2,.75,.2,1), 
              box-shadow 0.45s ease, 
              filter 0.45s ease;
  transform-origin: center center;
  will-change: transform, box-shadow, filter;
  cursor: pointer;
}

.about-photo:hover,
.about-photo:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 0 24px rgba(30,234,217,.35),
    0 0 48px rgba(30,234,217,.25);
  filter: brightness(1.06) saturate(1.04);
}

.about-photo img {
  transition: transform 0.5s ease;
}

.about-photo:hover img,
.about-photo:focus-visible img {
  transform: scale(1.04);
}

.quote {
  margin: 16px 0 8px;
  color: var(--accent);
  font-style: italic;
  line-height: 1.6;
  min-height: 1.6em;                
  letter-spacing: .2px;
}
.q-cursor {
  margin-left: 4px;
  color: var(--accent);
  animation: blink 0.8s steps(1,end) infinite;
}
@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.quote-author{
  color: #9bded8;                   
  opacity: .9;
  font-size: .95rem;
  margin-bottom: 18px;
  display: inline-block;
}

/*

.quote-author::before{
  content: "- • ";
  opacity: .8;
} 
  
*/

.quote-author::before {
  content: "- ";
  color: var(--accent);
  opacity: .9;
}

@media (prefers-reduced-motion: reduce) {
  .about-photo,
  .about-photo img {
    transition: none !important;
  }
}

/* ijasah */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hover-glow { transition: .25s; }
.hover-glow:hover { box-shadow: var(--ring); border-color: var(--accent-2); transform: translateY(-4px); }
.card h3 { margin: 6px 0 8px; color: var(--accent); }
.card p  { color: #c9c9c9; }

/* plojec */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 1080px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.see-all-container {
  text-align: center;
  margin-top: 28px;
}
.see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 240, 0.05);
  border: 1px solid rgba(0, 255, 240, 0.25);
  color: #9ff;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}
.see-all-btn:hover {
  background: rgba(0, 255, 240, 0.1);
  color: var(--accent, #00fff0);
  box-shadow: 0 0 14px rgba(0, 255, 240, 0.25);
  transform: translateY(-2px);
}

.project.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px; 
  background: rgba(20, 24, 26, 0.88);
  border: 1px solid rgba(46, 196, 182, 0.15);
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    min-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.project.card:hover {
  min-height: 500px;
  box-shadow: 0 0 26px rgba(0, 255, 240, 0.18);
  transform: translateY(-6px);
}

.project.card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}

.project-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.project-body h4 {
  margin: 0 0 6px;
  color: var(--accent, #00fff0);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.project-body p {
  color: #cfe;
  opacity: 0.88;
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 14px;
  position: relative;

  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.project-body p::after {
  content: "… Read more";
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 10px;
  background: linear-gradient(
    90deg,
    rgba(20, 24, 26, 0) 0%,
    rgba(20, 24, 26, 1) 40%
  );
  color: #888;
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.project-body p::after:hover {
  color: #aaa;
  opacity: 1;
}

.project.card:hover .project-body p {
  -webkit-line-clamp: unset;
  line-clamp: none;
  overflow: visible;
}
.project.card:hover .project-body p::after {
  opacity: 0;
  pointer-events: none;
}

.project-body .btn {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 255, 240, 0.05);
  border: 1px solid rgba(0, 255, 240, 0.25);
  color: #9ff;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.project-body .btn:hover {
  background: rgba(0, 255, 240, 0.1);
  color: var(--accent, #00fff0);
  box-shadow: 0 0 12px rgba(0, 255, 240, 0.25);
  transform: translateY(-2px);
}

.desc-toggle {
  display: none;
}

@media (hover: none) and (pointer: coarse) {
  .desc-toggle {
    display: inline-block;
    align-self: flex-start;
    margin: 4px 0 8px;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 999px;
    color: #9ff;
    background: rgba(0, 255, 240, 0.05);
    border: 1px solid rgba(0, 255, 240, 0.25);
    cursor: pointer;
    transition: 0.25s ease;
  }
  .desc-toggle:hover {
    color: var(--accent, #00fff0);
    background: rgba(0, 255, 240, 0.1);
    box-shadow: 0 0 12px rgba(0, 255, 240, 0.2);
    transform: translateY(-1px);
  }
}

.project.card.is-open {
  min-height: 520px;
  box-shadow: 0 0 26px rgba(0, 255, 240, 0.18);
  transform: translateY(-6px);
}
.project.card.is-open .project-body .desc {
  -webkit-line-clamp: unset;
  line-clamp: none;
  overflow: visible;
}
.project.card.is-open .project-body .desc::after {
  opacity: 0;
  pointer-events: none;
}
.project-body p.js-trim::after { content: none !important; }


/* certivikat */
.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  justify-content: center;
  align-items: start;
}

.cert-card {
  background: #0f1213;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  border: 1px solid #1b1f22;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 10px rgba(0,255,240,0.3),
    0 0 20px rgba(0,255,240,0.15);
  border-color: rgba(0,255,240,0.3);
}

.cert-thumb {
  height: 160px;
  border-radius: 12px;
  background: radial-gradient(90% 70% at 50% 40%, #1b2022 0%, #0e1112 100%);
  border: 1px solid #1f2628;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cert-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  background: #0a0d0f;
  transition: transform .35s ease, filter .35s ease;
}

.cert-card:hover .cert-thumb img {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.cert-card p {
  margin: 8px 0 14px;
  color: #d9e6e6;
  font-size: 1rem;
}

.btn.tiny {
  padding: 7px 14px;
  font-size: 14px;
  border-radius: 8px;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--accent, #00fff0);
  color: var(--accent, #00fff0);
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.btn-ghost:hover {
  background: var(--accent, #00fff0);
  color: #0a0a0a;
  box-shadow: 0 0 14px rgba(0,255,240,0.45);
  transform: translateY(-2px);
}

#certs .cert-card {
  --float-amp: 10px;     
  --float-dur: 4.8s;     
  --delay: 0ms;         
  animation: cardFloat var(--float-dur) ease-in-out var(--delay) infinite;
  will-change: transform;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#certs .cert-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 30px rgba(46, 196, 182, 0.2);
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #certs .cert-card {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
  }
  .cert-thumb { height: 140px; }
}

/* contak */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;        
  align-items: start;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;                     
  margin: 0 auto;                        
  padding: 40px 20px;
}
.contact-info {
  text-align: left;
  font-size: 1rem;
  color: #d8d8d8;
  line-height: 1.8;
  padding-left: 40px;                  
}
.contact-form {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 560px;                  
  margin-inline: auto;
  margin-left: -140px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 2px solid var(--accent);
    background: #0f1213;
    color: var(--text);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.contact-form textarea{
  min-height: 140px;
  max-height: 260px;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(0,255,240,.7);
  box-shadow: 0 0 12px rgba(0,255,240,.25);
}

.contact-form .btn {
  width: 100%;
  background: var(--accent, #00fff0);
  color: #0a0a0a;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  margin-top: 12px;
  transition: background 0.25s, transform 0.25s;
}

.contact-form .btn:hover {
  background: #1ef2da;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 16px;
  }

  .contact-info {
    text-align: center;
    padding-left: 0;
  }

  .contact-form {
    margin: 0 auto;
    max-width: 520px;
  }

  .contact-form .btn {
    width: 100%;
  }
}

/*poter*/
.footer {
  border-top: 1px solid rgba(46,196,182,.15);
  padding: 14px 0 22px; 
  color: #cfe;
  text-align: center;
  background: rgba(10,14,16,.6);
  backdrop-filter: blur(6px);
}

.footer.compact {
  padding: 10px 0 16px;
}

@media (max-height: 760px), (max-width: 480px) {
  .footer {
    padding: 10px 0 16px;
  }
}

.studio-badge {
  margin: 6px 0 10px;
  text-align: center;
  opacity: .9;
}

.studio-badge a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--accent, #00FFF0);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,255,240,.25);
  background: rgba(0,255,240,.06);
  transition: .25s;
}

.studio-badge a:hover {
  box-shadow: 0 0 12px rgba(0,255,240,.35);
  transform: translateY(-2px);
}

.footer-quote {
  font-style: italic;
  font-size: 14px;
  line-height: 1.35;
  color: #9ff;
  margin: 6px 0 8px;
  opacity: .95;
  animation: floatQuote 6s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes floatQuote {
  0%   { transform: translateY(0); opacity: .92; }
  25%  { transform: translateY(-1px); opacity: .94; }
  50%  { transform: translateY(-2px); opacity: .96; }
  75%  { transform: translateY(-1px); opacity: .94; }
  100% { transform: translateY(0); opacity: .92; }
}

.footer-links, .footer-nav {
  margin: 10px 0 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-links a, .footer-nav a {
  color: #9ff;
  font-size: 14px;
  opacity: .85;
  text-decoration: none;
  transition: .3s ease;
}

.footer-links a:hover, .footer-nav a:hover {
  opacity: 1;
  color: var(--accent, #00FFF0);
  transform: translateY(-1px);
}

.footer-nav i,
.footer-links i {
  opacity: .9;
}

.footer .container p {
  font-size: 13px;
  color: #9aa0a3;
  margin: 6px 0 0;
}


@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .cards, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .cards, .grid-3 { grid-template-columns: 1fr; }
  .menu { display: none; }
  .nav-toggle { 
    display: inline-block; 
    background: transparent; 
    color: var(--text); 
    border: 0; 
    font-size: 22px; 
  }

  .menu.open {
    position: absolute;
    top: 64px; 
    right: 0; 
    left: 0;
    background: rgba(8,10,11,.96);
    padding: 14px 20px;
    display: grid; 
    gap: 10px;
    border-bottom: 1px solid #14181a;
  }
  .menu.open a { padding: 8px 6px; }
}

@media (max-width: 900px) {
  .hero-grid { align-items: center; }
  .btns, .socials { justify-content: center; }
  .hero-text { text-align: center; }
  .socials { justify-content: center;}
}

#toast{
  position: fixed;
   right: 20px; 
   bottom: 20px; 
   z-index: 10000;
  display: grid; 
  gap: 10px;
}

.toast{
  background: #101415; 
  border:1px solid rgba(0,255,240,.35);
  color: #dff; 
  padding: 10px 12px; 
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,255,240,.25);
  transform: translateY(10px); 
  opacity: 0;
  animation: toastIn .25s ease forwards;
}
@keyframes toastIn { to{ transform: translateY(0); opacity:1; } }

button[disabled],
button[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

#backTop{
  position:fixed; 
  right:18px; 
  bottom: calc(env(safe-area-inset-bottom) + 18px);
  z-index: 70;
  width:46px; 
  height:46px;
  border-radius:50%; 
  border:1px solid #173436; 
  background:#0e1315; 
  color:#9ff;
  display:grid; 
  place-items:center; 
  cursor:pointer; 
  opacity:0; 
  pointer-events:none; 
  transition:.25s}

#backTop svg{width:28px; height:28px; transform:rotate(-90deg)}
#backTop path{fill:none; stroke:#2ec4b6; stroke-width:3; stroke-dasharray:100 100; stroke-linecap:round}
#backTop.show{opacity:1; pointer-events:auto}