:root {
  --bg: #030303;
  --panel: #101010;
  --panel-2: #151515;
  --text: #f5f5f5;
  --muted: #8f8f8f;
  --purple: #8800ff;
  --dark-purple: #43007e;
  --line: rgba(255, 255, 255, .08);
  --shadow: 0 0 35px rgba(136, 0, 255, .28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: radial-gradient(circle at 70% 20%, rgba(136, 0, 255, .18), transparent 28%), var(--bg);
  color: var(--text);
  font-family: Poppins, system-ui, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.page-glow { position: fixed; width: 340px; height: 340px; border-radius: 999px; filter: blur(80px); opacity: .15; pointer-events: none; z-index: -1; }
.page-glow-one { background: var(--purple); right: 12%; top: 12%; }
.page-glow-two { background: var(--dark-purple); left: 8%; bottom: 8%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1180px, calc(100% - 72px));
  height: 70px;
  margin: 0 auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18,18,18,.92);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  backdrop-filter: blur(16px);
}

.brand {
  font-family: Orbitron, sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: 1px;
  text-shadow: 0 0 14px rgba(136, 0, 255, .65);
}

.brand span { color: white; }

nav {
  display: flex;
  gap: 38px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  color: #dcdcdc;
}

nav a { transition: .25s; }

nav a:hover {
  color: var(--purple);
  text-shadow: 0 0 12px var(--purple);
}

.section {
  width: min(1120px, calc(100% - 96px));
  margin: 0 auto;
  scroll-margin-top: 140px;
}

.hero {
  min-height: clamp(620px, calc(100vh - 70px), 760px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 62px;
  padding: 46px 0 54px;
}

.eyebrow {
  font-family: Orbitron, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

h1 {
  font-family: Orbitron, sans-serif;
  color: var(--purple);
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(136, 0, 255, .45);
}

.intro {
  color: var(--muted);
  max-width: 575px;
  font-size: 13px;
  line-height: 1.75;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0 28px;
  max-width: 560px;
}

.stats article {
  position: relative;
  background: linear-gradient(180deg, #151515, #0d0d0d);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  isolation: isolate;
  transform: translateZ(0);
}

.stats strong {
  display: block;
  color: var(--purple);
  font-family: Orbitron, sans-serif;
  font-size: 28px;
}

.stats strong span { font-size: 20px; }

.stats small {
  color: var(--muted);
  font-size: 10px;
}

.actions { display: flex; gap: 14px; }

.btn {
  border: 1px solid var(--purple);
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s;
}

.primary {
  font-family: Orbitron, sans-serif;
  background: var(--purple);
  color: white;
  box-shadow: var(--shadow);
}

.ghost {
  font-family: Orbitron, sans-serif;
  background: transparent;
  color: white;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.12);
}

.actions > a:first-child:not(.hero-contact-btn) { display: none; }

.stats-card {
  font-family: Orbitron, sans-serif;
}

.hero-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
}

.hero-contact-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.social-placeholder {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(22, 22, 22, .95), rgba(10, 10, 10, .98));
  border: 1px solid rgba(255,255,255,.07);
  color: #d9d9d9;
  font-family: Orbitron, sans-serif;
  font-size: 11px;
  letter-spacing: .8px;
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.social-placeholder img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.social-placeholder .social-icon-x {
  width: 48%;
  height: 48%;
}

.social-placeholder:hover {
  transform: translateY(-4px);
  border-color: rgba(136, 0, 255, .4);
  box-shadow: 0 18px 34px rgba(136, 0, 255, .18);
}

.hero-side {
  justify-self: end;
  position: relative;
  width: min(100%, 390px);
  display: grid;
  gap: 18px;
  isolation: isolate;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 24px;
  border: 1px solid rgba(136, 0, 255, .22);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
  
.hero-orbit-one {
  inset: 22px -18px auto auto;
  width: 210px;
  height: 210px;
  opacity: .68;
  animation: panelDrift 8s ease-in-out infinite alternate;
}  

.hero-orbit-two {
  inset: auto auto -18px -22px;
  width: 168px;
  height: 168px;
  border-radius: 22px;
  background-size: 24px 24px;
  opacity: .42;
  animation: panelDriftReverse 9s ease-in-out infinite alternate;
}

.hero-flow-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(136, 0, 255, .32);
  border-radius: 24px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(136, 0, 255, .24), transparent 48%),
    linear-gradient(180deg, rgba(20,20,20,.96), rgba(8,8,8,.98));
  box-shadow: 0 24px 44px rgba(0,0,0,.34), 0 0 30px rgba(136, 0, 255, .13);
}

.hero-flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255,255,255,.08) 46%, transparent 58%);
  transform: translateX(-120%);
  animation: cardSweep 6.5s ease-in-out infinite;
}

.hero-flow-card span,
.hero-flow-card strong,
.hero-flow-card p {
  position: relative;
  z-index: 1;
}

.hero-flow-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 14px;
  background: rgba(136, 0, 255, .22);
  border: 1px solid rgba(136, 0, 255, .34);
  color: #ffffff;
  font-family: Orbitron, sans-serif;
  font-size: 12px;
}

.hero-flow-card strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: Orbitron, sans-serif;
  font-size: 22px;
  line-height: 1.15;
}

.hero-flow-card p {
  color: #cfc3dc;
  font-size: 13px;
  line-height: 1.65;
}

.hero-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-tool-card {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18,18,18,.96), rgba(9,9,9,.98));
  box-shadow: 0 16px 32px rgba(0,0,0,.24);
}

.hero-tool-card img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-tool-card span {
  color: #ffffff;
  font-family: Orbitron, sans-serif;
  font-size: 12px;
  line-height: 1.3;
}

.about {
  display: grid;
  grid-template-columns: 410px 1fr;
  align-items: center;
  gap: 78px;
  padding: 70px 0 44px;
}

.about-media { position: relative; }

.process-card {
  position: relative;
  width: 410px;
  max-width: 100%;
  padding: 26px;
  border: 1px solid rgba(136, 0, 255, .32);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(136, 0, 255, .16), transparent 42%),
    linear-gradient(180deg, rgba(18,18,18,.96), rgba(7,7,7,.98));
  box-shadow: 0 24px 52px rgba(0,0,0,.32), 0 0 34px rgba(136, 0, 255, .12);
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  pointer-events: none;
}

.process-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.process-card-top p {
  font-family: Orbitron, sans-serif;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.process-card-top span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(136, 0, 255, .16);
  border: 1px solid rgba(136, 0, 255, .24);
  color: #d8c7eb;
  font-family: Orbitron, sans-serif;
  font-size: 10px;
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: linear-gradient(180deg, rgba(136, 0, 255, .08), rgba(136, 0, 255, .55), rgba(136, 0, 255, .08));
}

.process-step {
  position: relative;
  min-height: 92px;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  column-gap: 16px;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17,17,17,.94), rgba(8,8,8,.98));
  box-shadow: 0 16px 30px rgba(0,0,0,.22);
}

.process-step span {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(136, 0, 255, .18);
  border: 1px solid rgba(136, 0, 255, .32);
  color: #ffffff;
  font-family: Orbitron, sans-serif;
  font-size: 12px;
  box-shadow: 0 14px 28px rgba(136, 0, 255, .1);
}

.process-step strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: Orbitron, sans-serif;
  font-size: 19px;
  line-height: 1.1;
}

.process-step p {
  grid-column: 2;
  color: #cfcfcf;
  font-size: 12px;
  line-height: 1.5;
}

.about-copy { max-width: 620px; }

.about-title {
  margin-bottom: 20px;
  font-family: Orbitron, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 24px rgba(255, 255, 255, .14), 0 0 28px rgba(136, 0, 255, .16);
}

.about-text {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.95;
  text-shadow: 0 0 12px rgba(255, 255, 255, .06);
}

.about-info-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.about-info-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20,20,20,.96), rgba(10,10,10,.98));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 18px 34px rgba(0,0,0,.28);
}

.pop-card {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 22px, 0) scale(.96);
  opacity: 0;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease, background .45s ease, opacity .45s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.pop-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(136, 0, 255, .14), transparent 45%, rgba(255, 255, 255, .03));
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.pop-card::before {
  content: "";
  position: absolute;
  inset: auto 16% -34px 16%;
  height: 58px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(136, 0, 255, .2), transparent 72%);
  filter: blur(14px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
  z-index: 0;
}

.pop-card > * {
  position: relative;
  z-index: 1;
}

.stats .pop-card strong,
.stats .pop-card small {
  position: relative;
  z-index: 2;
}

.pop-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.pop-card:hover {
  transform: translate3d(0, -4px, 0) scale(1.005);
  border-color: rgba(136, 0, 255, .34);
  box-shadow: 0 20px 36px rgba(0,0,0,.3), 0 0 0 1px rgba(136, 0, 255, .12);
}

.pop-card:hover::after {
  opacity: 1;
}

.pop-card:hover::before {
  opacity: .9;
  transform: translateY(0);
}

.hero-flow-card.pop-card::before {
  inset: 0;
  height: auto;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255,255,255,.08) 46%, transparent 58%);
  filter: none;
  opacity: 1;
  transform: translateX(-120%);
  transition: none;
  animation: cardSweep 6.5s ease-in-out infinite;
}

.hero-flow-card.pop-card:hover::before {
  opacity: 1;
  transform: translateX(-120%);
}

.stats .pop-card.is-visible {
  border-color: rgba(136, 0, 255, .2);
  box-shadow: 0 14px 30px rgba(0,0,0,.34), 0 0 18px rgba(136, 0, 255, .08);
}

.stats .pop-card::after,
.stats .pop-card::before {
  opacity: 0;
  content: none;
}

.stats .pop-card:hover {
  transform: translate3d(0, -2px, 0);
  background: linear-gradient(180deg, rgba(74, 16, 124, .38), rgba(18, 12, 24, .98));
  border-color: rgba(136, 0, 255, .42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 16px 26px rgba(0,0,0,.26), 0 0 0 1px rgba(136, 0, 255, .12);
}

.about-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(136, 0, 255, .18);
  border: 1px solid rgba(136, 0, 255, .36);
  box-shadow: 0 18px 32px rgba(136, 0, 255, .14);
}

.about-info-icon img.phonecall {
  width: 35px;
  height: 35px;
  margin-left: 11.5px;
  margin-top: 1px;
}

.about-info-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.about-info-card h3 {
  margin-bottom: 8px;
  font-family: Orbitron, sans-serif;
  font-size: 24px;
  color: #ffffff;
}

.about-info-card p {
  color: #d8d8d8;
  font-size: 14px;
}

.services { padding: 74px 0 52px; }
.projects { padding: 28px 0 52px; }

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-label {
  margin-bottom: 10px;
  font-family: Orbitron, sans-serif;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #caa2ff;
}

.section-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.8;
}

.cards-grid {
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.services-title {
  margin-bottom: 14px;
  font-family: Orbitron, sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  color: #ffffff;
  text-shadow: 0 0 24px rgba(136, 0, 255, .16);
}

.services-title span {
  color: var(--purple);
  text-shadow: 0 0 18px rgba(136, 0, 255, .45);
}

.service-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, rgba(18,18,18,.96), rgba(9,9,9,.98));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 22px 24px;
  text-align: center;
  box-shadow: 0 16px 30px rgba(0,0,0,.28);
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(136, 0, 255, .18), transparent 52%, rgba(255,255,255,.03));
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.service-card::after {
  content: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(136, 0, 255, .38);
  box-shadow: 0 20px 38px rgba(0,0,0,.34), 0 0 26px rgba(136, 0, 255, .12);
}

.service-card:hover::before { opacity: 1; }

.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: rgba(136, 0, 255, .18);
  border: 1px solid rgba(136, 0, 255, .34);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(136, 0, 255, .12);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.UIUX {
  margin-left: 3px;
}

.service-card:hover .icon {
  transform: translateY(-2px);
  background: rgba(136, 0, 255, .26);
  border-color: rgba(136, 0, 255, .5);
}

.service-card h3 {
  font-family: Orbitron, sans-serif;
  font-size: 17px;
  margin-bottom: 12px;
}

.service-card p {
  color:var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.chips {
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
}

.chips span {
  background: rgba(136, 0, 255, .18);
  border: 1px solid rgba(136, 0, 255, .34);
  border-radius:999px;
  padding: 6px 9px;
  color: #ffffff;
  font-family: Orbitron, sans-serif;
  font-size: 8px;
  line-height: 1;
}

.skills { padding: 72px 0 52px; }

.section-title,
.contact h2 {
  font-family: Orbitron, sans-serif;
  font-size:26px;
  margin-bottom:30px;
}

.contact h2 span { color:var(--purple); }

.services-title,
.projects-title,
.skills-title {
  margin-bottom: 14px;
  font-family: Orbitron, sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  color: #ffffff;
  text-shadow: 0 0 24px rgba(136, 0, 255, .16);
}

.projects-title span,
.skills-title span {
  color: var(--purple);
  text-shadow: 0 0 18px rgba(136, 0, 255, .45);
}

.project-carousel {
  position: relative;
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: 0 58px 4px;
}

.project-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(136, 0, 255, .24), transparent 34%),
    linear-gradient(180deg, rgba(22, 22, 22, .98), rgba(8, 8, 8, .98));
  box-shadow: 0 26px 60px rgba(0, 0, 0, .42), 0 0 0 1px rgba(136, 0, 255, .08);
}

.project-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, .06), transparent 28%, transparent 72%, rgba(136, 0, 255, .08));
  opacity: .55;
  pointer-events: none;
}

.project-stage::after {
  content: "";
  position: absolute;
  inset: auto 16% -46px 16%;
  height: 88px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(136, 0, 255, .28), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.project-slide {
  position: relative;
  z-index: 1;
  display: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
  align-items: center;
  gap: 30px;
  min-height: 590px;
  padding: 30px;
  animation: projectSlideIn .46s cubic-bezier(.22, 1, .36, 1) both;
}

.project-slide.active {
  display: grid;
}

.project-carousel.is-moving-prev .project-slide.active {
  animation-name: projectSlideInPrev;
}

.project-browser {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  background: #111;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .42), 0 0 0 1px rgba(136, 0, 255, .09);
}

.project-browser-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(180deg, rgba(28, 28, 30, .98), rgba(15, 15, 17, .98));
  user-select: none;
}

.project-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(136, 0, 255, .86);
  box-shadow: 0 0 14px rgba(136, 0, 255, .38);
}

.project-browser-bar span:nth-child(2) {
  background: rgba(255, 255, 255, .38);
  box-shadow: none;
}

.project-browser-bar span:nth-child(3) {
  background: rgba(255, 255, 255, .18);
  box-shadow: none;
}

.project-browser-bar p {
  min-width: 0;
  max-width: 230px;
  margin-left: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: #cfcfcf;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-browser-screen {
  position: relative;
  overflow: hidden;
  min-height: 332px;
  aspect-ratio: 16 / 9;
  background: #050505;
}

.project-browser-screen > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  object-position: top center;
  transform: translateZ(0);
  user-select: none;
  -webkit-user-drag: none;
  transition: filter .45s cubic-bezier(.22, 1, .36, 1);
}

.project-browser:hover .project-browser-screen > img {
  filter: brightness(1.05);
}

.project-sale-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 24px;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(8, 8, 10, .72);
  color: #f2f2f2;
  backdrop-filter: blur(10px);
  font-family: Poppins, system-ui, sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
  pointer-events: none;
}

.project-sale-badge p {
  margin-top: 2px;
}

.project-sale-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #9bffb1;
  box-shadow: 0 0 10px rgba(155, 255, 177, .48);
}

.project-browser-screen::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(3, 3, 3, .82));
  pointer-events: none;
}

.live-preview-btn {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: linear-gradient(135deg, #9b2fff, #6900c7);
  color: #ffffff;
  font-family: Orbitron, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2px;
  white-space: nowrap;
  box-shadow: 0 16px 36px rgba(136, 0, 255, .34), 0 0 0 1px rgba(136, 0, 255, .18);
  cursor: pointer;
  font: inherit;
  transform: translateX(-50%);
  transition: transform .28s ease, filter .28s ease, box-shadow .28s ease;
}

.live-preview-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.live-preview-btn:hover,
.live-preview-btn:focus-visible {
  transform: translate(-50%, -3px);
  filter: brightness(1.12);
  box-shadow: 0 20px 42px rgba(136, 0, 255, .46), 0 0 0 1px rgba(255, 255, 255, .14);
}

.live-preview-btn:focus-visible,
.project-nav:focus-visible,
.project-dot:focus-visible {
  outline: 2px solid rgba(187, 122, 255, .75);
  outline-offset: 4px;
}

.live-preview-btn-disabled {
  background: linear-gradient(135deg, rgba(136, 0, 255, .72), rgba(55, 55, 55, .92));
}

.project-info {
  min-width: 0;
}

.project-kicker {
  margin-bottom: 12px;
  color: #d6b2ff;
  font-size: 11px;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.project-info h3 {
  margin-bottom: 16px;
  font-family: Orbitron, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  color: #ffffff;
  text-shadow: 0 0 22px rgba(136, 0, 255, .22);
}

.project-title-profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.project-title-profile small {
  display: block;
  font-family: inherit;
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: inherit;
  line-height: 1;
  color: #ead8ff;
}

.project-description {
  color: #d3d3d3;
  font-size: 13px;
  line-height: 1.8;
}

.project-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.project-tools span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(136, 0, 255, .24);
  border-radius: 999px;
  background: rgba(136, 0, 255, .1);
  color: #f4e8ff;
  font-size: 11px;
  font-weight: 700;
}

.project-tools img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(136, 0, 255, .2));
}

.project-template-screen {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(136, 0, 255, .22), transparent 34%),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, .1), transparent 18%),
    linear-gradient(180deg, #151515, #070707);
}

.template-preview {
  width: min(360px, calc(100% - 48px));
  padding: 32px 26px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: rgba(10, 10, 10, .58);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .34);
}

.template-preview small {
  display: block;
  margin-bottom: 10px;
  color: var(--purple);
  font-family: Orbitron, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.template-preview strong {
  display: block;
  margin-bottom: 10px;
  font-family: Orbitron, sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.template-preview p {
  color: #bdbdbd;
  font-size: 12px;
  line-height: 1.7;
}

.project-nav {
  position: absolute;
  top: calc(50% - 14px);
  z-index: 3;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(136, 0, 255, .3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(28, 28, 28, .96), rgba(10, 10, 10, .98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, .32), 0 0 20px rgba(136, 0, 255, .14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.project-nav-left { left: 0; }
.project-nav-right { right: 0; }

.project-nav img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.project-nav:hover {
  transform: translateY(-50%) scale(1.08);
  border-color: rgba(136, 0, 255, .62);
  background: linear-gradient(180deg, rgba(136, 0, 255, .42), rgba(12, 12, 12, .98));
  box-shadow: 0 22px 40px rgba(0, 0, 0, .34), 0 0 26px rgba(136, 0, 255, .26);
}

.project-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.project-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  cursor: pointer;
  transition: width .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.project-dot.active {
  width: 34px;
  border-color: rgba(136, 0, 255, .7);
  background: var(--purple);
  box-shadow: 0 0 18px rgba(136, 0, 255, .48);
}

body.preview-open {
  overflow: hidden;
}

.preview-modal {
  position: fixed;
  inset: 18px;
  z-index: 80;
  display: grid;
  grid-template-rows: 58px 1fr;
  overflow: hidden;
  border: 1px solid rgba(136, 0, 255, .32);
  border-radius: 24px;
  background: #050505;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .72), 0 0 0 1px rgba(136, 0, 255, .12);
}

.preview-modal[hidden] {
  display: none;
}

.preview-modal::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .74);
  backdrop-filter: blur(12px);
}

.preview-modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(22, 22, 24, .98), rgba(10, 10, 12, .98));
}

.preview-modal-title {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.preview-modal-title span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 16px rgba(136, 0, 255, .58);
}

.preview-modal-title strong {
  min-width: 0;
  color: #ffffff;
  font-family: Orbitron, sans-serif;
  font-size: 13px;
  letter-spacing: .4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.preview-modal-close {
  appearance: none;
  -webkit-appearance: none;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(136, 0, 255, .28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(136, 0, 255, .12);
  cursor: pointer;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.preview-modal-close img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.preview-modal-close:hover,
.preview-modal-close:focus-visible {
  transform: scale(1.08);
  border-color: rgba(136, 0, 255, .62);
  background: rgba(136, 0, 255, .28);
}

.preview-modal-close:focus-visible {
  outline: 2px solid rgba(187, 122, 255, .75);
  outline-offset: 4px;
}

.preview-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #050505;
}

.skills-showcase {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(136, 0, 255, .22), transparent 42%),
    linear-gradient(180deg, rgba(21, 21, 21, .98), rgba(10, 10, 10, .98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
}

.skill-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.skill-icon {
  position: relative;
  width: 128px;
  min-height: 132px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(24, 24, 24, .94), rgba(10, 10, 10, .96));
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--text);
  cursor: pointer;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease, background .45s ease;
}

.skill-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(136, 0, 255, .18), transparent);
  opacity: 0;
  transition: opacity .45s ease;
}

.skill-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(136, 0, 255, .22));
}

.skill-icon span {
  position: relative;
  z-index: 1;
  font-family: Orbitron, sans-serif;
  font-size: 12px;
  letter-spacing: .7px;
}

.skill-icon:hover,
.skill-icon:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(136, 0, 255, .5);
  box-shadow: 0 18px 38px rgba(136, 0, 255, .2);
}

.skill-icon:focus-visible {
  outline: 2px solid rgba(136, 0, 255, .55);
  outline-offset: 4px;
}

.skill-icon.active {
  background: linear-gradient(180deg, rgba(136, 0, 255, .24), rgba(15, 15, 15, .98));
  border-color: rgba(136, 0, 255, .62);
  box-shadow: 0 0 0 1px rgba(136, 0, 255, .18), 0 20px 44px rgba(136, 0, 255, .28);
  transform: translateY(-6px) scale(1.02);
}

.skill-icon.active::before { opacity: 1; }

.skill-window {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 30px 30px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .07);
  background:
    linear-gradient(120deg, rgba(136, 0, 255, .16), transparent 35%),
    linear-gradient(180deg, rgba(19, 19, 19, .96), rgba(8, 8, 8, .98));
}

.skill-window::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(136, 0, 255, .12);
  filter: blur(28px);
  animation: floatGlow 12s ease-in-out infinite;
}

.skill-window-progress {
  height: 5px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.skill-window-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  background: linear-gradient(90deg, #ffffff, var(--purple));
}

.skill-window-progress span.is-animating {
  animation: skillProgress 10s linear forwards;
}

.skill-panel {
  position: relative;
  z-index: 1;
  animation: skillPanelIn .8s ease both;
}

.skill-kicker {
  margin-bottom: 12px;
  color: #d9b5ff;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.skill-panel h3 {
  margin-bottom: 14px;
  font-family: Orbitron, sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  color: #ffffff;
  text-shadow: 0 0 16px rgba(136, 0, 255, .3);
}

.skill-panel p:last-child {
  max-width: 640px;
  color: #d5d5d5;
  font-size: 14px;
  line-height: 1.85;
}

.contact {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: center;
  gap: 86px;
  padding: 70px 0 90px;
}

.contact-copy,
.contact-form {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(136, 0, 255, .16), transparent 34%),
    linear-gradient(180deg, rgba(19, 19, 19, .98), rgba(8, 8, 8, .98));
  box-shadow: 0 24px 54px rgba(0,0,0,.34);
}

.contact p {
  color:var(--muted);
  font-size:13px;
  line-height:1.9;
  margin-bottom:22px;
  max-width: 520px;
}

.contact-line {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  background: linear-gradient(135deg, rgba(136, 0, 255, .26), rgba(36, 5, 63, .92));
  border: 1px solid rgba(255,255,255,.08);
  padding: 18px 20px;
  border-radius: 18px;
  margin: 14px 0;
  font-weight: 700;
  font-size: 12px;
  color: #ffffff;
  transform: none;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
  will-change: auto;
  backface-visibility: visible;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.contact-line-label {
  position: relative;
  z-index: 2;
  display: block;
  font-family: Orbitron, sans-serif;
  font-size: 12px;
  letter-spacing: .9px;
  color: #ffffff;
  text-shadow: none;
  filter: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.contact-line strong {
  position: relative;
  z-index: 2;
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  color: #ffffff;
  text-shadow: none;
  filter: none;
  font-family: Poppins, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
}

.contact-line-button strong {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-rendering: auto;
}

.contact-line-button {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-line-button.copied strong {
  color: #f3dcff;
}

.contact .pop-card {
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease, opacity .45s ease;
  transform: none;
  backface-visibility: visible;
  will-change: auto;
}

.contact .pop-card::before {
  content: none;
}

.contact .pop-card::after {
  inset: 0;
  background: linear-gradient(135deg, rgba(136, 0, 255, .06), transparent 58%);
  opacity: 0;
  transition: opacity .24s ease;
}

.contact .pop-card:hover {
  transform: translateY(-3px);
  border-color: rgba(136, 0, 255, .26);
  background: linear-gradient(135deg, rgba(136, 0, 255, .24), rgba(36, 5, 63, .92));
  box-shadow: 0 18px 32px rgba(0,0,0,.24), 0 0 0 1px rgba(136, 0, 255, .08);
}

.contact .pop-card:hover::after {
  opacity: .6;
}

.about-info-card.pop-card {
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease, opacity .45s ease;
}

.about-info-card.pop-card::before {
  filter: blur(12px);
  transition: opacity .24s ease, transform .24s ease;
}

.about-info-card.pop-card::after {
  transition: opacity .24s ease;
}

.about-info-card.pop-card:hover {
  transform: translate3d(0, -3px, 0);
}

.contact-form { display:grid; gap:14px; }
.contact-form h2 { margin-bottom: 6px; }

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 96px));
  margin: 0 auto;
  padding: 0 0 40px;
  color: var(--muted);
}

.footer-k {
  font-family: Orbitron, sans-serif;
  font-size: 24px;
  color: #8800ff;
}

.footer-d {
  font-family: Orbitron, sans-serif;
  font-size: 24px;
  color: #ffffff;
}

.footer-r {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: #8800ff;
}

.footer-c {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: #ffffff;
}

input,
textarea {
  width:100%;
  border:1px solid rgba(136, 0, 255, .35);
  background:#160622;
  color:white;
  border-radius:16px;
  padding:14px 16px;
  outline:none;
  font-family:inherit;
}

textarea {
  min-height:120px;
  resize:vertical;
}

input::placeholder,
textarea::placeholder {
  color:#c9a7e8;
}

.contact-form button { width:100%; }

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .76;
}

.reveal {
  opacity:0;
  transform: translateY(28px);
  transition: .75s ease;
}

.reveal.visible {
  opacity:1;
  transform: translateY(0);
}

.delay-one { transition-delay: .14s; }
.delay-two { transition-delay: .28s; }
.delay-three { transition-delay: .42s; }

@keyframes panelDrift {
  from { transform: rotate(8deg) translate3d(0, 0, 0); }
  to { transform: rotate(8deg) translate3d(-8px, 10px, 0); }
}

@keyframes panelDriftReverse {
  from { transform: rotate(-10deg) translate3d(0, 0, 0); }
  to { transform: rotate(-10deg) translate3d(10px, -8px, 0); }
}

@keyframes cardSweep {
  0%, 68% { transform: translateX(-120%); opacity: 0; }
  76% { opacity: .7; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes projectShine {
  0% {
    transform: rotate(18deg) translateX(0);
    opacity: 0;
  }
  12% {
    opacity: .95;
  }
  100% {
    transform: rotate(18deg) translateX(360%);
    opacity: 0;
  }
}

@keyframes projectSlideIn {
  from { opacity: 0; transform: translate3d(22px, 0, 0) scale(.985); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes projectSlideInPrev {
  from { opacity: 0; transform: translate3d(-22px, 0, 0) scale(.985); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes skillPanelIn {
  from { opacity: 0; transform: translateY(16px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes skillProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes floatGlow {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(22px, 20px, 0); }
}

@media (max-width: 1180px) {
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-carousel { padding: 0 52px 4px; }
  .hero { grid-template-columns: minmax(0, 1fr) 350px; gap: 48px; }
  .hero-side { width: min(100%, 350px); }
  .hero-flow-card { min-height: 162px; padding: 22px; }
  .about { grid-template-columns: 360px 1fr; gap: 52px; }
  .process-card { width: 360px; padding: 22px; }
  .process-step { grid-template-columns: 56px 1fr; }
  .contact { gap: 42px; }
}

@media (max-width: 900px) {
  .topbar,
  .section { width: calc(100% - 36px); }

  nav { gap: 12px; font-size: 8px; }

  .hero,
  .about,
  .contact { grid-template-columns: 1fr; }

  .cards-grid {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-carousel { padding: 0 0 4px; }
  .project-slide {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px;
  }
  .project-browser-screen { min-height: 300px; }
  .project-info { padding: 0 4px 4px; }
  .project-nav {
    top: 42%;
    width: 44px;
    height: 44px;
  }
  .project-nav-left { left: 10px; }
  .project-nav-right { right: 10px; }

  .actions { justify-content: flex-start; }
  .hero-socials { justify-content: flex-start; }
  .hero-side { justify-self: start; width: min(100%, 520px); margin-top: 4px; }
  .about { gap: 32px; }
  .about-media { max-width: 520px; width: 100%; margin: 0; }
  .about-copy { max-width: none; }
  .process-card { width: 100%; }

  .contact-copy,
  .contact-form { padding: 28px 22px; }

  .skills-showcase { padding: 24px 18px; }
  .skill-icons { gap: 12px; }
  .skill-icon { width: calc(50% - 6px); min-height: 118px; }
  .skill-window { min-height: 280px; padding: 24px 20px 26px; }
}

@media (max-width: 560px) {
  .hero { gap: 30px; }
  .hero-flow-card { min-height: auto; padding: 20px; }
  .hero-flow-card strong { font-size: 19px; }
  .hero-tool-grid { gap: 10px; }
  .hero-tool-card { min-height: 84px; padding: 14px; }
  .hero-tool-card span { font-size: 10px; }
  .hero-socials { gap: 10px; }
  .social-placeholder { width: 52px; height: 52px; border-radius: 16px; font-size: 10px; }
  .about-title { font-size: 42px; }
  .about-text { font-size: 14px; line-height: 1.85; }
  .process-card { padding: 18px; border-radius: 24px; }
  .process-card-top p { font-size: 20px; }
  .process-step { grid-template-columns: 52px 1fr; min-height: 82px; padding: 15px; }
  .process-step strong { font-size: 17px; }
  .process-step p { font-size: 11px; }
  .cards-grid { grid-template-columns: 1fr; }
  .about-info-card { grid-template-columns: 58px 1fr; gap: 14px; padding: 20px 18px; }
  .about-info-card h3 { font-size: 18px; }
  .about-info-card p { font-size: 13px; }

  .contact-line {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
  }

  .contact-line strong { font-size: 13px; }
  .project-slide {
    padding: 16px;
    gap: 18px;
  }
  .project-stage { border-radius: 22px; }
  .project-browser { border-radius: 18px; }
  .project-browser-bar {
    height: 40px;
    padding: 0 12px;
  }
  .project-browser-bar p {
    max-width: 160px;
    padding: 6px 10px;
    font-size: 9px;
  }
  .project-browser-screen {
    min-height: 210px;
    aspect-ratio: 16 / 9;
  }
  .project-sale-badge {
    top: 10px;
    right: 10px;
    min-height: 22px;
    max-width: calc(100% - 20px);
    padding: 5px 8px;
    font-size: 8px;
    border-radius: 7px;
  }
  .live-preview-btn {
    bottom: 14px;
    min-height: 40px;
    padding: 10px 15px;
    font-size: 10px;
  }
  .project-tools { gap: 8px; }
  .project-tools span {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 10px;
  }
  .preview-modal {
    inset: 10px;
    grid-template-rows: 54px 1fr;
    border-radius: 18px;
  }
  .preview-modal-topbar {
    padding: 0 12px 0 16px;
  }
  .preview-modal-title strong {
    font-size: 11px;
  }
  .preview-modal-close {
    width: 36px;
    height: 36px;
  }
  .template-preview {
    width: calc(100% - 28px);
    padding: 26px 18px;
  }
  .template-preview strong { font-size: 22px; }
  .skill-icon { width: 100%; }
  .skill-panel p:last-child { font-size: 13px; }
}

img,
video,
canvas,
iframe {
  max-width: 100%;
}

button,
input,
textarea {
  min-width: 0;
}

.hero-copy,
.about-copy,
.project-info,
.contact-copy,
.contact-form,
.skills-showcase {
  min-width: 0;
}

.intro,
.about-text,
.process-step p,
.section-subtitle,
.project-description,
.skill-panel p:last-child,
.contact p {
  overflow-wrap: break-word;
}

.project-browser-screen {
  min-height: 0;
}

@media (max-width: 900px) {
  .topbar {
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 0 0 22px 22px;
  }

  .topbar nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }

  .topbar nav::-webkit-scrollbar {
    display: none;
  }

  .section {
    scroll-margin-top: 118px;
  }

  .hero,
  .contact {
    min-height: auto;
    align-items: start;
  }

  .footer-content {
    width: calc(100% - 36px);
  }

  .brand {
    display: none;
  }

}

@media (max-width: 720px) {
  .topbar,
  .section,
  .footer-content {
    width: calc(100% - 28px);
  }

  .topbar nav {
    gap: 14px;
    font-size: 9px;
  }

  .stats {
    grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
    gap: 12px;
  }

  .stats article {
    padding: 16px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-line strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .project-nav {
    width: 40px;
    height: 40px;
  }

  .footer-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .brand {
    display: none;
  }
}

@media (max-width: 480px) {
  .topbar {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    padding: 12px 14px;
  }

  .brand {
    display: none;
  }

  .section {
    width: calc(100% - 24px);
    scroll-margin-top: 128px;
  }

  h1 {
    font-size: 32px;
    overflow-wrap: break-word;
  }

  .hero {
    gap: 28px;
    padding: 32px 0 56px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .hero-contact-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-socials {
    justify-content: center;
  }

  .hero-side {
    width: 100%;
    padding-top: 0;
  }

  .hero-orbit {
    display: none;
  }

  .hero-tool-grid {
    grid-template-columns: 1fr;
  }

  .about {
    padding-top: 48px;
  }

  .process-list::before {
    left: 28px;
  }

  .process-step {
    grid-template-columns: 50px 1fr;
    padding: 14px;
  }

  .process-step span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .about-title {
    font-size: 36px;
  }

  .about-info-card {
    grid-template-columns: 50px 1fr;
    padding: 18px 16px;
  }

  .about-info-icon {
    width: 48px;
    height: 48px;
  }

  .about-info-icon img.phonecall {
    margin-left: 0;
  }

  .project-slide {
    padding: 14px;
  }

  .project-nav {
    top: clamp(132px, 36vw, 174px);
  }

  .project-browser-bar p {
    max-width: 130px;
  }

  .project-sale-badge {
    top: 8px;
    right: 8px;
  }

  .live-preview-btn {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 9px;
  }

  .project-info h3 {
    font-size: 28px;
  }

  .project-tools span {
    max-width: 100%;
  }

  .skill-window {
    min-height: auto;
  }

  .contact-copy,
  .contact-form {
    padding: 24px 18px;
    border-radius: 22px;
  }

  input,
  textarea {
    border-radius: 12px;
    padding: 13px 14px;
  }

  .footer-content {
    width: calc(100% - 24px);
    padding-bottom: 30px;
  }
}

@media (max-width: 360px) {
  .topbar nav {
    gap: 12px;
  }

  .project-browser-bar p {
    max-width: 104px;
  }

  .hero-tool-card img {
    width: 22px;
    height: 22px;
  }

  .social-placeholder {
    width: 48px;
    height: 48px;
  }
}
