:root{
  --bg:#07090f;
  --bg2:#0b0f1a;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --muted2:rgba(255,255,255,.55);
  --shadow:0 30px 80px rgba(0,0,0,.55);
  --radius:18px;
  --radius2:26px;
  --accent:#8b5cf6;
  --accent2:#22d3ee;
  --ring:0 0 0 4px rgba(139,92,246,.25);
  --max:1120px;
  --header-h:74px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  padding-top:var(--header-h);
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(139,92,246,.18), transparent 55%),
    radial-gradient(1000px 600px at 85% 20%, rgba(34,211,238,.12), transparent 50%),
    radial-gradient(900px 600px at 60% 95%, rgba(139,92,246,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit;text-decoration:none}
a:hover{color:rgba(255,255,255,.98)}

img,svg{max-width:100%;display:block}
button,input,textarea{font:inherit;color:inherit}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.skip-link{
  position:absolute;
  left:12px;top:12px;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  transform:translateY(-160%);
  transition:transform .2s ease;
  z-index:9999;
}
.skip-link:focus{transform:translateY(0); outline:none; box-shadow:var(--ring)}

.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.site-header{
  position:fixed; top:0; left:0; right:0; z-index:50;
  background:rgba(7,9,15,.55);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brand-mark{
  width:44px;height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  overflow:hidden;
}
.brand-mark svg{width:100%;height:100%}
.brand-mark .logo-orb{
  transform: translate3d(var(--orb-x, 0px), var(--orb-y, 0px), 0);
  transition: transform .12s ease;
}
.brand-mark:hover .logo-orb{
  transition: transform .05s linear;
}
.brand-text{display:flex; flex-direction:column; line-height:1.05}
.brand-name{font-weight:700; letter-spacing:.2px}
.brand-tag{font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:12px}
.nav-menu{
  display:flex; align-items:center; gap:14px;
  padding:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.nav-menu a{
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  transition:background .2s ease, color .2s ease;
}
.nav-menu a:hover{background:rgba(255,255,255,.06); color:rgba(255,255,255,.92)}

.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.nav-toggle:focus{outline:none; box-shadow:var(--ring)}
.nav-toggle-icon{
  display:block;
  width:18px;height:2px;
  background:rgba(255,255,255,.8);
  margin:0 auto;
  position:relative;
  border-radius:2px;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;height:2px;
  background:rgba(255,255,255,.8);
  border-radius:2px;
  transition:transform .18s ease, top .18s ease, opacity .18s ease;
}
.nav-toggle-icon::before{top:-6px}
.nav-toggle-icon::after{top:6px}

@media (min-width: 761px){
  .nav-menu{display:flex !important}
  .nav-toggle{display:none !important}
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.92);
  text-decoration:none;
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.18)}
.btn:focus{outline:none; box-shadow:var(--ring)}
.btn--primary{
  border-color:rgba(139,92,246,.55);
  background:linear-gradient(135deg, rgba(139,92,246,.95), rgba(34,211,238,.75));
}
.btn--primary:hover{background:linear-gradient(135deg, rgba(139,92,246,1), rgba(34,211,238,.85))}
.btn--ghost{
  background:transparent;
  border-color:rgba(255,255,255,.16);
}
.btn--subtle{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.10);
  color:var(--muted);
}

.hero{padding:72px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:30px;
  align-items:center;
}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  margin:0 0 14px;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:0 0 0 4px rgba(139,92,246,.15);
}

h1{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.05;
  letter-spacing:-.9px;
  margin:0 0 14px;
}
h2{
  font-size: clamp(26px, 3vw, 36px);
  line-height:1.12;
  letter-spacing:-.5px;
  margin:0;
}
h3{margin:0; font-size:18px; letter-spacing:-.2px}

.policy h3{
  margin-top:18px;
}
.policy h3:first-of-type{
  margin-top:10px;
}
.policy .lead{
  margin-top:10px;
  margin-bottom:12px;
}
.policy .ticks{
  margin-top:10px;
  margin-bottom:12px;
}
.policy .form-note{
  margin-top:16px !important;
}

.reveal{
  opacity:0;
  transform: translateY(10px);
  filter: blur(8px);
  animation: revealUp .75s cubic-bezier(.2,.9,.2,1) .08s forwards;
}

@keyframes revealUp{
  to{
    opacity:1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.grad{
  background:linear-gradient(135deg, rgba(139,92,246,1), rgba(34,211,238,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{color:var(--muted); font-size:16.5px; line-height:1.6; margin:0 0 18px}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 18px}

.stats{
  display:flex; gap:18px; flex-wrap:wrap;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
}
.stat{padding:10px 12px; border-radius:14px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08)}
.stat-value{font-weight:700; font-size:18px}
.stat-label{color:var(--muted); font-size:12px; margin-top:2px}

.hero-art .art-card{
  border-radius:var(--radius2);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.art-top{
  display:flex; gap:8px; flex-wrap:wrap;
  padding:14px 14px 0;
}
.chip{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
}
.hero-svg{width:100%; height:auto; padding:10px 10px 14px}
.hero-orb{
  transform: translate(var(--hero-mx, 0px), var(--hero-my, 0px));
  transition: transform .12s ease;
}
.hero-art:hover .hero-orb{
  transition: transform .05s linear;
}
.hero-orb--a{
  transform: translate(calc(var(--hero-mx, 0px) * .55), calc(var(--hero-my, 0px) * .55));
}
.hero-orb--b{
  transform: translate(calc(var(--hero-mx, 0px) * .32), calc(var(--hero-my, 0px) * .32));
}

.trust{padding:24px 0 0}
.trust-row{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.logo-svg{
  border-radius:16px;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.08);
  padding:12px;
}

.section{padding:72px 0}
.section--alt{
  background: radial-gradient(800px 500px at 20% 20%, rgba(34,211,238,.08), transparent 55%),
              radial-gradient(900px 500px at 85% 20%, rgba(139,92,246,.08), transparent 55%),
              rgba(255,255,255,.01);
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; flex-wrap:wrap;
  margin-bottom:22px;
}
.section-head p{margin:0; color:var(--muted); max-width:58ch; line-height:1.6}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.card{
  padding:18px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 50px rgba(0,0,0,.25);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(34,211,238,.10);
}
.card-icon{
  width:44px;height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  display:grid; place-items:center;
  margin-bottom:12px;
}
.card-icon svg{width:28px;height:28px}
.card p{margin:10px 0 12px; color:var(--muted); line-height:1.6}

.ticks{list-style:none; padding:0; margin:0; display:grid; gap:8px}
.ticks li{
  position:relative;
  padding-left:22px;
  color:var(--muted2);
  line-height:1.45;
}
.ticks li::before{
  content:"";
  position:absolute; left:0; top:.42em;
  width:12px; height:12px;
  border-radius:4px;
  background:linear-gradient(135deg, rgba(139,92,246,1), rgba(34,211,238,1));
  opacity:.9;
}

.work-grid{display:grid; grid-template-columns:1fr; gap:16px}
.work{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  padding:16px;
  border-radius:var(--radius2);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
}
.work-media{
  border-radius:20px;
  overflow:hidden;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.08);
}
.work-preview{display:block; position:relative; color:inherit}
.work-preview img{
  width:100%;
  height:auto;
  display:block;
}
.work-preview__badge{
  position:absolute;
  left:12px; top:12px;
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(7,9,15,.70);
  border:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
}
.work-media svg{width:100%; height:auto}
.work-body{padding:8px 6px}
.work-body p{margin:10px 0 12px; color:var(--muted); line-height:1.6}
.tags{display:flex; flex-wrap:wrap; gap:8px}
.tag{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
}

.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.step{
  padding:16px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.step:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(139,92,246,.10);
}
.step-icon{
  width:44px;height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  display:grid; place-items:center;
  margin-bottom:12px;
}
.step-icon svg{width:28px;height:28px}
.step p{margin:10px 0 0; color:var(--muted); line-height:1.6}

.pricing{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.price{
  position:relative;
  padding:18px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.price:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(139,92,246,.12);
}
.price--featured:hover{
  border-color: rgba(139,92,246,.48);
  box-shadow: 0 22px 70px rgba(139,92,246,.18), 0 22px 70px rgba(0,0,0,.30);
}
.price--featured{
  background:linear-gradient(180deg, rgba(139,92,246,.12), rgba(255,255,255,.03));
  border-color:rgba(139,92,246,.35);
  box-shadow: 0 22px 70px rgba(139,92,246,.12), 0 22px 70px rgba(0,0,0,.28);
}
.badge{
  position:absolute;
  top:14px; right:14px;
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(139,92,246,.18);
  border:1px solid rgba(139,92,246,.35);
  color:rgba(255,255,255,.9);
}
.price-value{margin:10px 0 8px; font-size:28px; font-weight:700; letter-spacing:-.6px}
.muted{color:var(--muted); margin:0 0 12px; line-height:1.6}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.contact-copy{padding:10px 6px}
.contact-cards{display:grid; gap:10px; margin-top:16px}
.mini{
  display:flex; gap:12px; align-items:center;
  padding:14px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
}
.mini-icon{
  width:44px;height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  display:grid; place-items:center;
}
.mini-icon svg{width:28px;height:28px}
.mini-title{font-size:12px; color:var(--muted); margin-bottom:2px}
.mini-link{font-weight:600}

.form{
  padding:18px;
  border-radius:var(--radius2);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
}
.form label{display:grid; gap:8px; margin-bottom:12px}
.form span{font-size:12px; color:var(--muted)}
.form input,.form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(10,12,18,.55);
  color:rgba(255,255,255,.92);
  outline:none;
}
.form textarea{resize:vertical; min-height:120px}
.form input:focus,.form textarea:focus{box-shadow:var(--ring); border-color:rgba(139,92,246,.55)}
.form-row{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  margin-top:8px;
}
.check{display:flex; gap:10px; align-items:center; color:var(--muted); margin:0}
.check input{width:18px;height:18px}
.form-note{margin:12px 0 0; color:rgba(255,255,255,.45); font-size:12px; line-height:1.5}

.footer{
  padding:24px 0 44px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.12);
}
.toast{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  width:min(420px, calc(100vw - 36px));
  display:grid;
  grid-template-columns: 22px 1fr 34px;
  gap:12px;
  align-items:start;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(7,9,15,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  animation: toastIn .22s ease-out both;
}
.toast.is-hidden{
  animation: toastOut .18s ease-in both;
}
.toast__icon{
  width:22px;height:22px;
  border-radius:8px;
  margin-top:2px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}
.toast--success .toast__icon{
  background: rgba(34,211,238,.12);
  border-color: rgba(34,211,238,.22);
  box-shadow: 0 0 0 1px rgba(34,211,238,.10) inset;
}
.toast--error .toast__icon{
  background: rgba(248,113,113,.12);
  border-color: rgba(248,113,113,.22);
  box-shadow: 0 0 0 1px rgba(248,113,113,.10) inset;
}
.toast__title{font-weight:700; letter-spacing:-.2px}
.toast__text{margin-top:4px; color:rgba(255,255,255,.70); line-height:1.45; font-size:13px}
.toast__close{
  width:34px;height:34px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.75);
  display:grid; place-items:center;
  cursor:pointer;
}
.toast__close:hover{background: rgba(255,255,255,.07); color: rgba(255,255,255,.92)}
.toast__close:focus{outline:none; box-shadow: var(--ring)}
@keyframes toastIn{
  from{opacity:0; transform: translateY(10px); filter: blur(8px)}
  to{opacity:1; transform: translateY(0); filter: blur(0)}
}
@keyframes toastOut{
  from{opacity:1; transform: translateY(0); filter: blur(0)}
  to{opacity:0; transform: translateY(10px); filter: blur(8px)}
}

.cookie{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:9998;
  width:min(760px, calc(100vw - 36px));
}
.cookie__inner{
  display:grid;
  grid-template-columns: 22px 1fr auto;
  gap:14px;
  align-items:start;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(7,9,15,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  animation: toastIn .22s ease-out both;
}
.cookie__icon{
  width:22px;height:22px;
  border-radius:8px;
  margin-top:2px;
  background: rgba(139,92,246,.14);
  border:1px solid rgba(139,92,246,.24);
  box-shadow: 0 0 0 1px rgba(139,92,246,.10) inset;
}
.cookie__title{font-weight:700; letter-spacing:-.2px}
.cookie__text{
  margin-top:4px;
  color:rgba(255,255,255,.70);
  line-height:1.45;
  font-size:13px;
}
.cookie__text a{
  color:rgba(255,255,255,.86);
  text-decoration:underline;
  text-underline-offset:3px;
}
.cookie__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cookie__btn{padding:10px 14px; border-radius:14px}

@media (max-width: 760px){
  .cookie__inner{grid-template-columns: 22px 1fr; }
  .cookie__actions{grid-column: 1 / -1; justify-content:stretch}
  .cookie__btn{width:100%}
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px; flex-wrap:wrap;
}
.foot-brand{display:flex; gap:12px; align-items:center}
.brand-mark.small{width:36px;height:36px; border-radius:12px}
.foot-name{font-weight:700}
.foot-muted{color:rgba(255,255,255,.55); font-size:12px; margin-top:2px}
.foot-right{display:flex; gap:12px; flex-wrap:wrap}
.foot-right a{color:var(--muted); padding:8px 10px; border-radius:12px}
.foot-right a:hover{background:rgba(255,255,255,.05); color:rgba(255,255,255,.92)}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; gap:18px}
  .trust-row{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .cards{grid-template-columns:1fr}
  .work{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .pricing{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .contact{grid-template-columns:1fr}
}

@media (max-width: 760px){
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav-menu{
    position:absolute;
    right:20px;
    top:74px;
    width:min(320px, calc(100vw - 40px));
    padding:12px;
    border-radius:18px;
    background:rgba(7,9,15,.78);
    backdrop-filter: blur(12px);
    border:1px solid rgba(255,255,255,.12);
    display:none;
    flex-direction:column;
    align-items:stretch;
  }
  .nav-menu a{border-radius:14px}
  .nav-menu.is-open{display:flex}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important; transition:none !important; animation:none !important}
}
