:root{
  --bg: #0d0d14;
  --panel: rgba(255,255,255,0.04);
  --panel2: rgba(255,255,255,0.06);
  --stroke: rgba(255,255,255,0.09);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.58);
  --muted2: rgba(255,255,255,0.38);

  --p1: #6366f1;
  --p2: #818cf8;
  --p3: #a5b4fc;

  --shadow: 0 16px 48px rgba(0,0,0,0.4);
  --radius: 18px;
  --radius2: 12px;
  --max: 1120px;
}

*{ box-sizing:border-box; margin:0; padding:0; min-width:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.55;
}
body::before{
  content:'';
  position:fixed;
  inset:0;
  background: radial-gradient(ellipse 100% 55% at 50% -5%, rgba(99,102,241,0.10) 0%, transparent 65%);
  pointer-events:none;
  z-index:-1;
}
img{ max-width:100%; height:auto; display:block; }

/* Nav */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(13,13,20,0.80);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 20px;
  display:flex; align-items:center; justify-content:space-between;
}
.brand{ display:flex; gap:10px; align-items:center; text-decoration:none; }
.brand__mark{
  width: 38px; height: 38px; border-radius: 12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--p1), var(--p2));
  font-weight: 800;
}
.brand__text{ font-weight: 800; letter-spacing: 0.3px; color: var(--text); }
.brand--text .brand__text{
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .3px;
}

.nav__links{ display:flex; gap:4px; align-items:center; }
.nav__links a{
  text-decoration:none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}
.nav__links a:hover{ background: rgba(255,255,255,0.06); color: var(--text); }
.pill{
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.28);
  color: var(--p3) !important;
}
.pill:hover{
  background: rgba(99,102,241,0.20) !important;
  border-color: rgba(99,102,241,0.40) !important;
}

.nav__burger{
  display:none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  cursor:pointer;
}
.nav__burger span{
  display:block;
  width: 18px; height: 2px;
  background: rgba(255,255,255,0.80);
  margin: 5px auto;
  border-radius: 999px;
}
.nav__mobile{
  display:none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px 16px;
  gap: 8px;
}
.nav__mobile a{
  display:block;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  color: var(--text);
  text-decoration:none;
  font-weight: 700;
}

/* Hero */
.hero{
  position: relative;
  padding: 58px 20px 42px;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 30px max(20px, calc((100vw - (var(--max) + 96px)) / 2)) 16px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(99,102,241,0.035), transparent 45%),
    rgba(255,255,255,0.012);
  border: 1px solid rgba(165,180,252,0.07);
  pointer-events: none;
  z-index: -1;
}
.hero__inner{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.8fr);
  gap: 36px;
  align-items: center;
  position: relative;
}

/* Badge */
.badge{
  display:inline-flex; align-items:center; gap:10px;
  background: rgba(99,102,241,0.10);
  border: 1px solid rgba(99,102,241,0.25);
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.badge::before{
  content:'';
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--p2);
  flex-shrink: 0;
}
@media (max-width: 720px){
  .badge{
    width: 100%;
    justify-content: center;
    padding: 8px 12px;
    font-size: 12px;
  }
}

.hero h1{
  font-size: clamp(34px, 3.25vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin: 18px 0 12px;
}
.grad{
  background: linear-gradient(135deg, var(--p1), var(--p2));
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.grad2{
  color: var(--p3);
}
.sub{
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
  line-height: 1.65;
}
.hero__cta{ display:flex; gap:12px; align-items:center; margin-top: 22px; flex-wrap: wrap; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration:none;
  transition: transform .15s ease, filter .15s ease, opacity .15s ease;
  user-select:none;
  border: none;
  cursor: pointer;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.08); }
.btn--primary{
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: white;
  box-shadow: 0 8px 28px rgba(99,102,241,0.25);
}
.btn--ghost{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text);
}

.stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px;
  margin-top: 20px;
}
.stat{
  padding: 12px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--stroke);
  transition: border-color .2s ease;
}
.stat:hover{ border-color: rgba(255,255,255,0.15); }
.stat__num{ font-weight: 900; letter-spacing: -0.2px; font-size: 17px; color: var(--text); }
.stat__label{ color: var(--muted2); font-size: 11px; margin-top: 3px; line-height: 1.45; }
.hero-proof{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.hero-proof span{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 700;
}

/* Glass card */
.glass-card{
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.028)),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  padding: 18px;
  position: relative;
  overflow:hidden;
}
.glass-card__top{
  display:flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  text-align: left;
}
.avatar{
  width: 132px; height: 132px;
  border-radius: 16px;
  background: rgba(99,102,241,0.2);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.avatar img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.name{
  font-weight: 900;
  font-size: 16px;
  white-space: normal;
}
.role-strong{
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.role{ color: var(--muted2); font-size: 13px; margin-bottom: 6px; }
.badge-small{
  font-size: 12px;
  color: var(--p3);
  font-weight: 600;
  margin-top: 6px;
}

.chips{
  display:flex; flex-wrap:wrap; gap:8px;
  margin: 14px 0;
  position: relative;
}
.chips span{
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--panel2);
  border: 1px solid var(--stroke);
  font-weight: 500;
}
.hero-dashboard{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-bottom: 10px;
}
.hero-dashboard div{
  padding: 12px;
  border-radius: var(--radius2);
  background: rgba(99,102,241,0.07);
  border: 1px solid rgba(165,180,252,0.14);
}
.hero-dashboard span{
  display: block;
  margin-bottom: 5px;
  color: var(--muted2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-dashboard b{
  display: block;
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  line-height: 1.45;
}

.mini{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}
.mini__card{
  padding: 12px;
  border-radius: var(--radius2);
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}
.mini__title{ font-weight: 800; margin-bottom: 10px; font-size: 13px; }
.mini__card ul{ padding-left: 0; color: var(--muted); list-style: none; }
.mini__card li{ margin: 7px 0; display: flex; gap: 8px; align-items: flex-start; font-size: 12px; line-height: 1.35; }
.bullet-icon{
  color: var(--p3);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.mini__card p{ color: var(--muted); font-size: 12px; }
.mini__bar{
  height: 6px; border-radius: 999px;
  background: rgba(255,255,255,0.07);
  overflow:hidden;
  margin: 12px 0 8px;
}
.mini__bar span{
  display:block; height:100%;
  background: linear-gradient(90deg, var(--p1), var(--p2));
}
.mini__card small{ color: var(--muted2); font-size: 12px; }

/* Sections */
.section{
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 20px;
}
.section--alt{
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.015);
}
.section__head{ margin-bottom: 32px; }
.section__head h2{
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.4px;
  font-weight: 900;
}
.section__head p{
  color: var(--muted);
  max-width: 60ch;
  margin-top: 10px;
  font-size: 15px;
}

/* About grid */
.about-head{
  margin-bottom: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(99,102,241,0.12), transparent 38%),
    var(--panel);
  border: 1px solid var(--stroke);
}
.section-kicker{
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--p3);
}
.about-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.about-snapshot{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  margin-bottom: 12px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.025);
}
.about-snapshot div{
  padding: 18px 20px;
  border-right: 1px solid var(--stroke);
}
.about-snapshot div:last-child{ border-right: none; }
.about-snapshot b{
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}
.about-snapshot span{
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.about-card{
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.026)),
    rgba(255,255,255,0.02);
  border: 1px solid var(--stroke);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.about-card:hover{
  border-color: rgba(165,180,252,0.32);
  background:
    linear-gradient(180deg, rgba(99,102,241,0.11), rgba(255,255,255,0.028)),
    rgba(255,255,255,0.02);
  transform: translateY(-2px);
}
.about-card__icon{
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(99,102,241,0.13);
  border: 1px solid rgba(165,180,252,0.24);
  color: var(--p3);
  font-size: 12px;
  font-weight: 900;
}
.about-card h3{ font-weight: 900; margin-bottom: 10px; font-size: 16px; }
.about-card p{ color: var(--muted); font-size: 14px; line-height: 1.6; }
.list{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top: 18px;
}
.list span{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--panel2);
  border: 1px solid var(--stroke);
  color: rgba(255,255,255,0.75);
}
.about-flow{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 12px;
}
.about-flow div{
  padding: 18px 20px;
  border-radius: var(--radius2);
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.08);
}
.about-flow span{
  display: block;
  margin-bottom: 8px;
  color: var(--p3);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
}
.about-flow b{
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 900;
}
.about-flow p{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Services */
.service-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.service{
  padding: 20px;
  border-radius: var(--radius2);
  background: var(--panel);
  border: 1px solid var(--stroke);
  transition: border-color .2s ease, transform .2s ease;
}
.service:hover{
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.service__icon{
  width: 42px; height: 42px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.22);
  margin-bottom: 12px;
}
.service h3{ font-weight: 900; margin-bottom: 8px; font-size: 15px; }
.service p{ color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.service ul{ padding-left: 16px; color: var(--muted); font-size: 14px; }
.service li{ margin: 8px 0; }
.steps{ margin-top: 10px; padding-left: 18px; color: var(--muted); }
.steps li{ margin: 8px 0; }

/* Work — Project Grid */
.projects-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.project-card{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.project-card:hover{
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 14px 48px rgba(0,0,0,0.32);
  transform: translateY(-2px);
}

.project-card__btn{
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: inherit;
}

.project-card__img{
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0f0f5;
}
.project-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease;
  display: block;
}
.project-card:hover .project-card__img img{
  transform: scale(1.04);
}

.project-card__overlay{
  position: absolute;
  inset: 0;
  background: rgba(8,8,20,0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
  backdrop-filter: blur(4px);
}
.project-card:hover .project-card__overlay{ opacity: 1; }
.project-card__overlay span{
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  background: rgba(99,102,241,0.85);
  border: 1px solid rgba(99,102,241,0.5);
  letter-spacing: 0.1px;
}

.project-card__body{
  padding: 18px 20px 22px;
}
.project-card__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.project-card__num{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--p3);
  flex-shrink: 0;
}
.project-card__chips{
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.project-card__body h3{
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.1px;
}
.project-card__body p{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Work process strip */
.work-process{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  margin-top: 12px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
}
.work-process__item{
  padding: 22px 20px;
  border-right: 1px solid var(--stroke);
}
.work-process__item:last-child{ border-right: none; }
.work-process__num{
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--p3);
  margin-bottom: 10px;
}
.work-process__item b{
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
}
.work-process__item p{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.chip{
  font-size: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--panel2);
  border: 1px solid var(--stroke);
  color: rgba(255,255,255,0.72);
}

/* Project modals */
.project-modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 120;
}
.project-modal.is-open{
  display: flex;
}
.project-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(4,6,12,0.80);
  backdrop-filter: blur(14px);
}
.project-modal__dialog{
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: 24px;
  background: #111118;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}
.project-modal__close{
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(13,13,20,0.92);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 130;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.42);
  backdrop-filter: blur(12px);
}
.project-modal__close:hover{ background: rgba(255,255,255,0.10); }
.project-modal__media{
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  background: rgba(99,102,241,0.06);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.project-modal__media img{
  width: 115%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}
@media (min-width: 721px){
  .project-modal__dialog{ min-height: 600px; }
  .project-modal__media img{ max-width: none; }
}
.project-modal__body{
  padding: 36px 30px 30px;
}
.project-modal__eyebrow{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--p3);
}
.project-modal__body h3{
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.04;
  letter-spacing: -0.4px;
}
.project-modal__intro{
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  max-width: 42ch;
  line-height: 1.65;
}
.project-modal__grid{
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.project-modal__card{
  padding: 14px;
  border-radius: var(--radius2);
  background: var(--panel);
  border: 1px solid var(--stroke);
}
.project-modal__card span{
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted2);
}
.project-modal__card strong{
  font-size: 13px;
  line-height: 1.45;
}
.project-modal__list{
  margin-top: 18px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.project-modal__list li{ margin: 10px 0; }
.project-modal__cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, var(--p1), var(--p2));
  box-shadow: 0 8px 28px rgba(99,102,241,0.22);
  transition: filter .15s ease, transform .15s ease;
}
.project-modal__cta:hover{ filter: brightness(1.08); transform: translateY(-1px); }
body.modal-open{ overflow: hidden; }


/* Proof */
.proof-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
}
.testimonial{
  padding: 28px 24px;
  border-right: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.testimonial:last-child{ border-right: none; }

.testimonial__mark{
  width: 24px;
  height: 18px;
  fill: var(--p1);
  opacity: 0.5;
  margin-bottom: 14px;
  display: block;
  flex-shrink: 0;
}
.testimonial__quote p,
.email-quote p{
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  font-style: italic;
}
.testimonial__footer,
.who{
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testimonial__name,
.who b{
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
}
.testimonial__role,
small.proof{
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted2);
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.contact__left{
  padding: 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--stroke);
}
.contact__left h2{ margin-bottom: 12px; font-size: clamp(22px, 2.2vw, 32px); letter-spacing: -0.3px; }
.contact__left p{ color: var(--muted); font-size: 14px; line-height: 1.65; }
.contact__info{
  margin-top: 20px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.info{
  padding: 14px;
  border-radius: var(--radius2);
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.08);
}
.info__k{ color: var(--muted2); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; }
.info__v{ margin-top: 6px; font-weight: 800; font-size: 14px; }
.form{
  padding: 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--stroke);
}
label{
  display:block;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 12px;
}
select option{
  background: #0d0d14;
  color: rgba(255,255,255,0.92);
}
input, textarea, select{
  width:100%;
  margin-top: 6px;
  padding: 11px 14px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.20);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s ease;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(99,102,241,0.50);
}
input::placeholder, textarea::placeholder{ color: rgba(255,255,255,0.35); }
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form__note{
  margin-top: 10px;
  color: var(--muted2);
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
}

/* Footer */
.footer{
  margin-top: 64px;
  padding: 22px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__inner{
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__copy{
  margin: 0;
  font-size: 13px;
  color: var(--muted2);
}
.footer__social{ display: flex; gap: 10px; }
.social{
  width: 38px; height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  transition: transform .2s ease, background .2s ease;
}
.social svg{
  width: 16px; height: 16px;
  fill: rgba(255,255,255,0.75);
}
.social:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
}

/* Reveal animations */
.reveal{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, var(--p1), var(--p2));
  box-shadow: 0 8px 28px rgba(99,102,241,0.28);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.92);
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  z-index: 100;
  -webkit-tap-highlight-color: transparent;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top svg { width: 20px; height: 20px; color: #fff; }
.scroll-top:hover { transform: translateY(-2px) scale(1.05); }
.scroll-top:active { transform: translateY(0) scale(0.97); }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero{ padding-top: 64px; }
  .stats{ grid-template-columns: repeat(3,1fr); }
  .about-grid{ grid-template-columns: 1fr; }
  .about-snapshot{ grid-template-columns: 1fr; }
  .about-snapshot div{ border-right: none; border-bottom: 1px solid var(--stroke); }
  .about-snapshot div:last-child{ border-bottom: none; }
  .about-flow{ grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: 1fr 1fr; }
  .proof-grid{ grid-template-columns: 1fr; border: none; gap: 10px; }
  .testimonial{ border-right: none; border: 1px solid var(--stroke); border-radius: var(--radius2); }
  .testimonial:last-child{ border-right: none; border: 1px solid var(--stroke); }
  .contact{ grid-template-columns: 1fr; }
  .contact__info{ grid-template-columns: 1fr 1fr; }
  .work-process{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .work-process__item:nth-child(2){ border-right: none; }
  .work-process__item:nth-child(3){ border-top: 1px solid var(--stroke); }
  .work-process__item:nth-child(4){ border-top: 1px solid var(--stroke); border-right: none; }
}
@media (max-width: 860px){
  .stats{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .nav__links{ display:none; }
  .nav__burger{ display:inline-block; }
  .nav__mobile.is-open{ display:grid; }
  .nav__inner{ padding: 14px 16px; }
  .hero{ padding: 52px 16px 28px; }
  .hero::before{ inset: 12px 8px 8px; border-radius: 22px; }
  .section{ padding: 56px 16px; }
  .hero__inner{ gap: 20px; }
  .hero h1{ font-size: clamp(28px, 5vw, 40px); }
  .hero__cta{ justify-content: center; }
  .hero-proof{ justify-content: center; }
  .sub{ font-size: 15px; }
  .stats{ grid-template-columns: repeat(3,1fr); gap: 8px; }
  .stat{ padding: 12px 10px; }
  .stat__num{ font-size: 14px; }
  .stat__label{ font-size: 11px; }
  .service-grid{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
  .contact__info{ grid-template-columns: 1fr; }
  .glass-card{ padding: 16px; }
  .hero-dashboard{ grid-template-columns: 1fr; }
  .glass-card__top{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .avatar{ width: 130px; height: 130px; }
  .name{ font-size: 15px; }
  .chips{ justify-content: center; margin: 14px 0; }
  .mini{ grid-template-columns: 1fr; }
  .mini__card{ padding: 12px; }
  .about-head{ padding: 22px 18px; }
  .about-card, .service{ padding: 16px; }
  .about-card{ min-height: auto; }
  .about-card__icon{ margin-bottom: 14px; }
  .about-card h3{ font-size: 15px; }
  .projects-grid{ grid-template-columns: 1fr; }
  .project-card__img{ aspect-ratio: 16/9; }
  .project-card__body{ padding: 14px 16px 18px; }
  .work-process{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .work-process__item{ padding: 16px; }
  .work-process__item:nth-child(2){ border-right: none; }
  .work-process__item:nth-child(3){ border-top: 1px solid var(--stroke); }
  .work-process__item:nth-child(4){ border-top: 1px solid var(--stroke); border-right: none; }
  .project-modal{ padding: 12px; }
  .project-modal__dialog{ grid-template-columns: 1fr; max-height: 92vh; }
  .project-modal__media{ padding: 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .project-modal__media img{ width: 100%; max-height: 300px; }
  .project-modal__body{ padding: 24px 18px 22px; }
  .project-modal__grid{ grid-template-columns: 1fr; }
  .project-modal__close{
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    width: 44px;
    height: 44px;
  }
  .proof-section__inner{ padding: 56px 16px; }
  .testimonial{ padding: 20px 18px; }
  .form, .contact__left{ padding: 18px; }
  input, textarea, select{ font-size: 16px; }
  select{
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.6) 50%),
                      linear-gradient(135deg, rgba(255,255,255,0.6) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 34px;
  }
  .btn{ width: 100%; justify-content: center; }
  .footer__inner{ flex-direction: column; text-align: center; }
  .scroll-top{ bottom: 18px; right: 18px; width: 44px; height: 44px; }
}
@media (max-width: 360px){
  .avatar{ width: 110px; height: 110px; }
  .chips span{ font-size: 11px; }
  .stat__label{ font-size: 10px; }
  .projects-grid{ gap: 8px; }
  .work-process{ grid-template-columns: 1fr; }
  .work-process__item{ border-right: none !important; border-top: 1px solid var(--stroke); }
  .work-process__item:first-child{ border-top: none; }
}
