/* Looksy — landing (from scratch) */
:root{
  --bg0:#070a10;
  --bg1:#0b1220;
  --bg2:#0a0f1d;
  --text:#eef2ff;
  --muted: rgba(238,242,255,.72);
  --muted2: rgba(238,242,255,.56);
  --stroke: rgba(255,255,255,.10);
  --shadow: 0 28px 90px rgba(0,0,0,.48);
  --shadow2: 0 16px 44px rgba(0,0,0,.38);
  --r: 12px;
  --r2: 16px;
  --accent: #2563eb;
  --accent2: #22d3ee;
  --focus: rgba(37,99,235,.46);
  --container: 1120px;
}

*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Background: solid base + light flares + pattern */
body::before{
  content:"";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(37,99,235,.22), transparent 62%),
    radial-gradient(820px 520px at 78% 6%, rgba(34,211,238,.14), transparent 62%),
    radial-gradient(900px 560px at 52% 110%, rgba(37,99,235,.12), transparent 62%),
    /* Pattern on top (subtle dots + diagonal hatching) */
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 1.7px) 0 0 / 26px 26px,
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 1px, transparent 1px 10px),
    /* gentle vignette */
    radial-gradient(1200px 800px at 50% 40%, rgba(0,0,0,0), rgba(0,0,0,.34));
  filter: blur(0px);
  opacity: .55;
  mix-blend-mode: normal;
}

/* Ensure UI above background layers */
.h, .m, .f{
  position: relative;
  z-index: 1;
}

a{ color:inherit; text-decoration:none }
img{ max-width:100%; height:auto; display:block }

::selection{ background: rgba(37,99,235,.30) }
::focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 12px;
}

.skip{
  position:absolute;
  top:10px; left:10px;
  padding:10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  transform: translateY(-150%);
  transition: transform .2s ease;
  z-index: 50;
}
.skip:focus{ transform: translateY(0) }

.c{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.h{
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7,10,16,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.h__in{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing:-.02em;
}
.brand__mark{ width: 34px; height: 34px; display:block }
.brand--sm .brand__mark{ width: 30px; height: 30px }
.brand__name{ font-size: 15px }

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.nav a{
  padding: 10px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.nav__cta{
  color:#fff;
  background: var(--accent);
  border: 1px solid rgba(37,99,235,.38);
  box-shadow: 0 18px 46px rgba(37,99,235,.18);
}
.nav__cta:hover{ opacity:1; filter: brightness(.98) }

/* Hero */
.m{ position: relative }
.reveal{
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform;
}
.reveal--fade{ transform: none; }
.reveal--up{ transform: translate3d(0, 14px, 0); }
.reveal.is-in{
  opacity: 1;
  transform: translate3d(0,0,0);
}
.hero3{
  padding: 86px 0 56px;
}
.hero3__in{
  display:grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 34px;
  align-items:center;
}
.pill3{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 60px rgba(0,0,0,.30);
  color: var(--muted);
  font-size: 13px;
}
.pill3__dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--accent2);
  box-shadow: 0 0 0 4px rgba(34,211,238,.10);
}
.reveal.is-in .pill3__dot{
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse{
  0%,100%{ transform: scale(1); box-shadow: 0 0 0 4px rgba(34,211,238,.10); }
  50%{ transform: scale(1.18); box-shadow: 0 0 0 7px rgba(34,211,238,.10); }
}
.h1{
  margin: 14px 0 10px;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.lead3{
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}
.cta3{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn3{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 820;
  font-size: 14px;
  border: 1px solid transparent;
  user-select:none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, filter .15s ease;
}
.btn3:hover{ filter: brightness(1.02); }
.btn3:active{ transform: translateY(1px) }
.btn3--primary{
  color:#fff;
  background: var(--accent);
  border-color: rgba(37,99,235,.40);
  box-shadow: 0 22px 60px rgba(37,99,235,.20);
}
.btn3--ghost{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 44px rgba(0,0,0,.30);
  color: var(--text);
}
.btn3--ghost:hover{ background: rgba(255,255,255,.10) }

.kpis3{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.kpi3{
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
}
.kpi3{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.kpi3:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 22px 64px rgba(0,0,0,.35);
}
.kpi3__k{
  font-weight: 950;
  letter-spacing:-.02em;
  font-size: 16px;
}
.kpi3__t{
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted2);
}

.hero3__visual{
  position: relative;
  display:grid;
  place-items:center;
  min-height: 620px;
  isolation: isolate;
}
.hero3__visual::before{
  content:"";
  position:absolute;
  width: min(620px, 120%);
  aspect-ratio: 1 / 1;
  left: 58%;
  top: 56%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  pointer-events:none;
  background:
    radial-gradient(circle at 40% 35%, rgba(37,99,235,.26), transparent 62%),
    radial-gradient(circle at 65% 55%, rgba(34,211,238,.14), transparent 64%);
  filter: blur(54px);
  opacity: .95;
  z-index: 1;
}

/* Hero floating icons */
.heroFx{
  position:absolute;
  inset: -12%;
  pointer-events: none;
  z-index: 0;
}
.heroFx i{
  position:absolute;
  font-size: 22px;
  color: rgba(238,242,255,.18);
  opacity: .18;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
  transform: translate3d(0,0,0);
  animation: fxDriftA 11s ease-in-out infinite;
  will-change: transform;
}
.heroFx i::before{ display:block }
.heroFx i[data-i="1"]{
  left: -2%;
  top: 8%;
  font-size: 18px;
  animation-name: fxDriftA;
  animation-duration: 12s;
  animation-delay: -4s;
}
.heroFx i[data-i="2"]{
  left: 10%;
  bottom: 6%;
  font-size: 26px;
  animation-name: fxDriftB;
  animation-duration: 15s;
  animation-delay: -9s;
  opacity:.16;
}
.heroFx i[data-i="3"]{
  right: -3%;
  top: 10%;
  font-size: 20px;
  animation-name: fxDriftC;
  animation-duration: 13s;
  animation-delay: -6s;
}
.heroFx i[data-i="4"]{
  right: 6%;
  bottom: 4%;
  font-size: 30px;
  animation-name: fxDriftB;
  animation-duration: 17s;
  animation-delay: -12s;
  opacity:.14;
}
.heroFx i[data-i="5"]{
  left: 42%;
  top: -4%;
  font-size: 18px;
  animation-name: fxDriftC;
  animation-duration: 18s;
  animation-delay: -15s;
  opacity:.12;
}
.heroFx i[data-i="6"]{
  left: 64%;
  bottom: -2%;
  font-size: 22px;
  animation-name: fxDriftA;
  animation-duration: 16s;
  animation-delay: -7s;
  opacity:.12;
}
.heroFx i[data-i="7"]{
  left: 6%;
  top: 46%;
  font-size: 20px;
  animation-name: fxDriftB;
  animation-duration: 19s;
  animation-delay: -11s;
  opacity:.10;
}
.heroFx i[data-i="8"]{
  right: 10%;
  top: 50%;
  font-size: 20px;
  animation-name: fxDriftC;
  animation-duration: 20s;
  animation-delay: -16s;
  opacity:.10;
}

@keyframes fxDriftA{
  0%,100%{ transform: translate3d(0,0,0) rotate(-2deg); }
  33%{ transform: translate3d(10px,-12px,0) rotate(2deg); }
  66%{ transform: translate3d(-8px,-6px,0) rotate(1deg); }
}
@keyframes fxDriftB{
  0%,100%{ transform: translate3d(0,0,0) rotate(2deg); }
  40%{ transform: translate3d(-14px,-10px,0) rotate(-2deg); }
  80%{ transform: translate3d(8px,-16px,0) rotate(1deg); }
}
@keyframes fxDriftC{
  0%,100%{ transform: translate3d(0,0,0) rotate(-1deg); }
  50%{ transform: translate3d(12px,-18px,0) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce){
  .reveal,
  .heroFx i{
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
.phone3{
  position: relative;
  z-index: 2;
  width: min(520px, 94%);
}
.phone3__img{
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 84px rgba(0,0,0,.42));
}

/* Sections */
.sec3{
  padding: 86px 0;
}
.sec3--soft{
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.head3{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.h2{
  position: relative;
}
.h2::after{
  content:"";
  display:block;
  height: 2px;
  width: 0;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37,99,235,.0), rgba(37,99,235,.65), rgba(34,211,238,.45));
  transition: width .7s cubic-bezier(.2,.9,.2,1);
}
.reveal.is-in .h2::after{
  width: 56px;
}
.h2{
  margin:0;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.sub3{
  margin:0;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.6;
}
.h3{
  margin:0;
  letter-spacing:-.02em;
}
.p3{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.steps3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card3{
  padding: 22px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card3:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 64px rgba(0,0,0,.35);
}
.card3:hover{ border-color: rgba(255,255,255,.14); }
.card3__top{
  display:flex;
  align-items:center;
  gap: 12px;
}
.badge3{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  border-radius: 8px;
  background: rgba(37,99,235,.16);
  border: 1px solid rgba(37,99,235,.26);
  color: rgba(238,242,255,.96);
  font-weight: 950;
  flex: 0 0 28px;
}

.kits3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.kit3{
  padding: 22px;
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
}
.kit3{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.kit3:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 22px 64px rgba(0,0,0,.35);
}
.kit3__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.kit3__media{
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}
.kit3__img{
  width: 100%;
  height: auto;
  display:block;
  object-fit: cover;
}
.kit3:hover .kit3__media{
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 22px 64px rgba(0,0,0,.34);
}
.chip3{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(34,211,238,.10);
  border: 1px solid rgba(34,211,238,.18);
  color: rgba(238,242,255,.92);
  font-weight: 850;
  font-size: 12px;
}
.ul3{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display:grid;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}
.ul3 li{
  padding-left: 14px;
  position: relative;
}
.ul3 li::before{
  content:"";
  position:absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(37,99,235,.70);
}

.faq3{
  display:grid;
  gap: 12px;
}
.qa3{
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
}
.qa3{
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.qa3:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 22px 64px rgba(0,0,0,.35);
}
.qa3 summary{
  cursor:pointer;
  font-weight: 900;
  letter-spacing:-.01em;
  color: rgba(238,242,255,.94);
}
.qa3 summary::-webkit-details-marker{ display:none }
.qa3 summary::after{
  content:"+";
  float: right;
  color: rgba(238,242,255,.70);
  transition: transform .25s ease, opacity .25s ease;
}
.qa3[open] summary::after{ content:"–" }
.qa3 > div{
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.final3{
  margin-top: 18px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.final3__t{ font-weight: 950; letter-spacing:-.02em }
.final3__p{ margin-top: 6px; color: var(--muted); line-height: 1.6 }

/* Footer */
.f{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0 34px;
  background: rgba(7,10,16,.56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.f__in{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.f__muted{ color: var(--muted2); font-size: 12px; margin-top: 8px }
.f__links{
  display:flex;
  gap: 14px;
  color: var(--muted2);
  font-size: 13px;
  flex-wrap: wrap;
}
.f__links a:hover{ color: var(--text) }

@media (max-width: 980px){
  .nav a:not(.nav__cta){ display:none }
  .hero3__in{ grid-template-columns: 1fr; gap: 18px }
  .hero3__visual{ min-height: 640px }
  .phone3{ width: min(460px, 100%) }
  .steps3{ grid-template-columns: 1fr }
  .kits3{ grid-template-columns: 1fr }
  .kpis3{ grid-template-columns: 1fr }
  .heroFx{ inset: -6%; opacity: .75; }
  .heroFx i[data-i="7"],
  .heroFx i[data-i="8"]{ display:none; }
}

@media (max-width: 520px){
  .cta3{ flex-direction: column; align-items: stretch }
  .btn3{ width: 100% }
  .hero3__visual{ min-height: 560px }
  .phone3{ width: min(360px, 100%) }
  .heroFx{ display:none; }
}

