/* ===================================================================
   LOOKY landing — styles
   =================================================================== */

:root {
  --violet:      #7B5CFA;
  --violet-2:    #A05CF7;
  --violet-deep: #6B46F0;
  --violet-soft: #EFEAFE;

  --ink:    #0C0C11;
  --ink-2:  #2A2A33;
  --muted:  #7B7B88;
  --line:   #ECECF1;
  --line-2: #F2F2F6;

  --bg:      #FAFAFC;
  --bg-soft: #F6F5FA;
  --card:    #FFFFFF;

  --radius:   18px;
  --radius-l: 22px;

  --container: 1280px;
  --shadow-sm: 0 1px 2px rgba(16, 16, 32, .04);
  --shadow-md: 0 10px 30px rgba(24, 18, 60, .07);
  --shadow-phone: 0 24px 60px rgba(30, 20, 70, .16), 0 4px 14px rgba(30, 20, 70, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
svg { display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 40px;
}

.accent { color: var(--violet-deep); }

/* ------------------------------ logo ------------------------------ */
.logo {
  display: block;
  height: 24px;
  width: auto;
}

/* ------------------------------ buttons --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-2) 100%);
  box-shadow: 0 6px 18px rgba(123, 92, 250, .32);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(123, 92, 250, .38); }

/* ------------------------------ header ---------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.header__inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ------------------------------ hero ------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 96px;
  background: linear-gradient(180deg, #FCFBFF 0%, var(--bg) 60%);
}
.hero__glow {
  position: absolute;
  top: -260px; right: -140px;
  width: 900px; height: 760px;
  pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(150, 108, 255, .20), transparent 70%),
    radial-gradient(closest-side at 30% 60%, rgba(96, 132, 255, .12), transparent 70%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}
.hero__content { max-width: 560px; }
.hero__media { justify-self: end; }

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--violet-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero__title {
  margin: 24px 0 20px;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.hero__text {
  max-width: 430px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

/* ------------------------------ store buttons --------------------- */
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  max-width: 472px;
}
.stores--center {
  max-width: none;
  justify-content: center;
  margin-top: 40px;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 14px;
  min-height: 52px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.store:hover {
  transform: translateY(-2px);
  border-color: #DDD8F5;
  box-shadow: 0 10px 22px rgba(30, 20, 70, .09);
}
.store__icon { width: 22px; height: 22px; color: var(--ink); flex: none; }
.store__txt { display: flex; flex-direction: column; line-height: 1.15; }
.store__txt small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}
.store__txt strong { font-size: 14px; font-weight: 700; }

/* ------------------------------ sections -------------------------- */
.section { padding: 100px 0; }

.section-head {
  text-align: center;
  max-width: 1120px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

/* ------------------------------ steps ----------------------------- */
.steps { padding-top: 40px; }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.step:hover {
  transform: translateY(-3px);
  border-color: #E2DBFB;
  box-shadow: var(--shadow-md);
}
.step__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}
.step__num {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: #E7E7EE;
}
.step__arrow { color: var(--violet); }
.step__arrow svg { width: 20px; height: 20px; }
.step:hover .step__arrow { transform: translateX(3px); transition: transform .18s ease; }
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ------------------------------ showcase -------------------------- */
.showcase { padding-top: 60px; }
.showcase__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
}

/* ------------------------------ phone mock ------------------------ */
.phone {
  --w: 252px;
  width: calc(var(--w) + 12px);
  padding: 6px;
  background: #fff;
  border-radius: 34px;
  box-shadow: var(--shadow-phone);
  flex: none;
}
.phone--hero { --w: 280px; }

.phone__screen {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #F1F1F4;
}
.phone__screen img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 780 / 1688;
  object-fit: cover;
}

/* ------------------------------ CTA ------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background: linear-gradient(180deg, #F7F4FE 0%, #FBFAFE 55%, var(--bg) 100%);
  border-top: 1px solid var(--line-2);
  text-align: center;
}
.cta__glow {
  position: absolute;
  top: -220px; left: -160px;
  width: 720px; height: 620px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(150, 108, 255, .18), transparent 70%);
}
.cta__inner { position: relative; }
.cta h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.035em;
}
.cta p { margin-top: 16px; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ------------------------------ footer ---------------------------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 64px 0 26px;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 2.6fr) minmax(0, 1fr) minmax(0, .55fr);
  gap: 40px;
}
.footer__brand p {
  margin-top: 18px;
  max-width: 300px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.footer__col a { color: var(--muted); font-size: 13.5px; transition: color .15s ease; }
.footer__col a:hover { color: var(--ink); }
.footer__muted { color: var(--muted); font-size: 13.5px; }
.footer__col .footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--violet-deep);
  font-weight: 600;
}
.footer__col .footer__contact:hover { color: var(--violet-deep); text-decoration: underline; }
.footer__contact svg { width: 17px; height: 17px; flex: none; }
.footer__bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/* ------------------------------ responsive ------------------------ */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 48px; }
  .hero__media { justify-self: center; }
  .hero__content { max-width: 620px; }
  .hero__text { max-width: none; margin-inline: auto; }
  .stores { max-width: none; justify-content: center; }
  .hero__title { font-size: 54px; }
  .steps__grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 24px; }
}

@media (max-width: 720px) {
  .container { padding-inline: 20px; }
  .hero { padding: 56px 0 68px; }
  .hero__title { font-size: 38px; }
  .section { padding: 68px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2, .cta h2 { font-size: 30px; }
  .cta { padding: 72px 0 84px; }
  .steps__grid { grid-template-columns: 1fr; gap: 16px; }
  .step { padding: 24px 22px 26px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { margin-top: 36px; }
  .phone--hero { --w: 250px; }
}
