

:root {
  --bg: #f0f0f3;
  --ink: #111114;
  --muted: #6b6f78;
  --green: #1f8f4d;
  --orange: #c46a1f;

  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.74);
  --stroke: rgba(255, 255, 255, 0.62);
  --hi: rgba(255, 255, 255, 0.95);
  --shadow: 0 12px 40px -14px rgba(18, 20, 32, 0.24);
  --shadow-sm: 0 6px 20px -12px rgba(18, 20, 32, 0.26);
  --hover: rgba(120, 125, 140, 0.13);

  --r-lg: 30px;
  --r-md: 22px;
  --r-sm: 16px;
  --maxw: 1120px;
  --blur: saturate(160%) blur(22px);

  font-synthesis: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #07080b;
    --ink: #f2f3f6;
    --muted: #9aa0ad;
    --green: #43c46e;
    --orange: #e08a3c;

    --glass: rgba(28, 30, 38, 0.5);
    --glass-strong: rgba(34, 36, 46, 0.66);
    --stroke: rgba(255, 255, 255, 0.12);
    --hi: rgba(255, 255, 255, 0.2);
    --shadow: 0 18px 50px -16px rgba(0, 0, 0, 0.62);
    --shadow-sm: 0 8px 26px -14px rgba(0, 0, 0, 0.55);
    --hover: rgba(255, 255, 255, 0.08);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20vh -10vw;
  z-index: -2;
  background:
    radial-gradient(46% 40% at 16% 4%, rgba(255, 255, 255, 0.9), transparent 70%),
    radial-gradient(42% 38% at 90% 8%, rgba(255, 255, 255, 0.55), transparent 70%),
    radial-gradient(60% 50% at 50% 102%, rgba(110, 116, 132, 0.12), transparent 72%);
}
@media (prefers-color-scheme: dark) {
  body::before {
    background:
      radial-gradient(46% 40% at 16% 4%, rgba(255, 255, 255, 0.06), transparent 70%),
      radial-gradient(42% 38% at 90% 8%, rgba(255, 255, 255, 0.05), transparent 70%),
      radial-gradient(60% 50% at 50% 102%, rgba(120, 130, 160, 0.08), transparent 72%);
  }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

html:not(.sq) [data-lang="sq"] { display: none !important; }
html.sq [data-lang="en"] { display: none !important; }

.glass {
  position: relative;
  background: var(--glass);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--stroke);
  box-shadow: inset 0 1px 0 var(--hi), var(--shadow);
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 38%);
  opacity: 0.55;
}
.lit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.45), transparent 60%);
}
.lit:hover::after { opacity: 0.7; }

.nav { position: sticky; top: 18px; z-index: 50; padding: 0 16px; }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; height: 60px; padding: 0 12px 0 20px;
  border-radius: 999px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; text-decoration: none; color: var(--ink); }
.brand .mark {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center; font-weight: 800; font-size: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 500; padding: 8px 13px; border-radius: 999px; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--ink); background: var(--hover); }

.lang-switch { display: inline-flex; align-items: center; padding: 3px; border-radius: 999px; gap: 2px; }
.ls-btn {
  border: 0; background: transparent; color: var(--muted); cursor: pointer;
  font: 600 13px/1 inherit; padding: 7px 10px; border-radius: 999px; letter-spacing: 0.02em;
  transition: color .15s, background .15s;
}
.ls-btn:hover { color: var(--ink); }
html:not(.sq) .ls-btn[data-setlang="en"],
html.sq .ls-btn[data-setlang="sq"] { background: var(--ink); color: var(--bg); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .14s cubic-bezier(.2,.8,.2,1), filter .2s, background .2s;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--ink); color: var(--bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), var(--shadow-sm);
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-glass { color: var(--ink); }
.btn-glass.glass { padding: 12px 23px; }
.nav .btn-primary { padding: 10px 18px; }

.hero { padding: 78px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 52px; align-items: center; }
.tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
  font-size: 13px; font-weight: 500; color: var(--muted);
}
.tag b { color: var(--ink); }
.tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.16); }
.hero h1 {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(40px, 6vw, 66px); line-height: 1.02; letter-spacing: -0.035em; margin: 0 0 20px; font-weight: 800;
}
.hero h1 .soft { color: var(--muted); }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--muted); margin: 0 0 30px; max-width: 30em; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.meta-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 26px; font-size: 14px; color: var(--muted); }
.meta-row span { display: inline-flex; align-items: center; gap: 7px; }
.meta-row svg { width: 16px; height: 16px; color: var(--green); }

.stage { display: grid; place-items: center; }
.phone {
  position: relative; width: 290px; height: 590px; border-radius: 52px; padding: 13px;
  background: linear-gradient(160deg, #2a2c33, #0c0d11);
  box-shadow: 0 50px 90px -34px rgba(10, 12, 24, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 40px; overflow: hidden; background: linear-gradient(180deg, #f6f6f9, #ececf0); }
@media (prefers-color-scheme: dark) { .phone-screen { background: linear-gradient(180deg, #15161c, #0a0b0f); } }
.notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 96px; height: 28px; background: #0a0b0f; border-radius: 999px; z-index: 4; }
.scr-head { padding: 30px 18px 10px; display: flex; align-items: center; justify-content: space-between; }
.scr-head .h1 { font-weight: 800; font-size: 24px; letter-spacing: -0.02em; color: var(--ink); }
.scr-head .av { width: 30px; height: 30px; border-radius: 50%; background: #d7d9df; }
.scr-search { margin: 4px 18px 12px; height: 38px; border-radius: 12px; display: flex; align-items: center; gap: 8px; padding: 0 12px; font-size: 13px; color: var(--muted); }
.scr-search svg { width: 15px; height: 15px; }
.scr-grid { padding: 2px 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.tile { border-radius: 16px; overflow: hidden; }
.tile .ph { height: 84px; background: linear-gradient(135deg, #d9dbe1, #c4c7cf); }
.tile .tm { padding: 7px 9px; }
.tile .pr { font-weight: 800; font-size: 13px; color: var(--ink); }
.tile .tt { font-size: 10px; color: var(--muted); margin-bottom: 4px; }
.tile .badge { display: inline-block; font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 999px; }
.badge.new { color: var(--green); background: rgba(52, 199, 89, 0.16); }
.badge.used { color: var(--orange); background: rgba(255, 149, 0, 0.16); }
.tabbar { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); width: 80%; height: 56px; border-radius: 999px; display: flex; align-items: center; justify-content: space-around; }
.tabbar svg { width: 21px; height: 21px; color: var(--muted); }
.tb-on { display: grid; place-items: center; padding: 7px 14px; border-radius: 999px; background: var(--hover); }
.tb-on svg { color: var(--ink); }

section { padding: 72px 0; }
.head { max-width: 38em; margin: 0 auto 46px; text-align: center; }
.head h2 { font-family: "SF Pro Display", -apple-system, sans-serif; font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.03em; margin: 0 0 12px; font-weight: 800; }
.head p { font-size: 18px; color: var(--muted); margin: 0; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { border-radius: var(--r-md); padding: 26px; }
.ico {
  width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--stroke); box-shadow: inset 0 1px 0 var(--hi);
}
.ico svg { width: 24px; height: 24px; color: var(--ink); }
.feature h3 { margin: 0 0 7px; font-size: 19px; letter-spacing: -0.015em; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { border-radius: var(--r-md); padding: 26px; }
.step .n {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  font-weight: 800; font-size: 18px; color: var(--bg); background: var(--ink); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.step h3 { margin: 0 0 6px; font-size: 19px; letter-spacing: -0.015em; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

.band { border-radius: var(--r-lg); padding: 58px; text-align: center; }
.band h2 { font-family: "SF Pro Display", -apple-system, sans-serif; font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.03em; margin: 0 0 14px; font-weight: 800; }
.band p { color: var(--muted); font-size: 18px; margin: 0 0 28px; }

footer { padding: 40px 0 56px; }
.foot { border-radius: var(--r-md); padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot .c { color: var(--muted); font-size: 14px; }
.foot-links { display: flex; gap: 6px; flex-wrap: wrap; }
.foot-links a { text-decoration: none; color: var(--muted); font-size: 14px; padding: 7px 12px; border-radius: 999px; transition: color .15s, background .15s; }
.foot-links a:hover { color: var(--ink); background: var(--hover); }

.legal-shell { padding: 34px 0 64px; }
.legal { border-radius: var(--r-lg); padding: 48px clamp(24px, 5vw, 60px); max-width: 820px; margin: 0 auto; }
.legal .back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 26px; text-decoration: none; color: var(--muted); font-size: 15px; }
.legal .back:hover { color: var(--ink); }
.legal h1 { font-family: "SF Pro Display", -apple-system, sans-serif; font-size: clamp(32px, 5vw, 42px); letter-spacing: -0.03em; margin: 0 0 6px; }
.legal .updated { color: var(--muted); font-size: 15px; margin: 0 0 32px; }
.legal h2 { font-size: 22px; letter-spacing: -0.02em; margin: 38px 0 12px; }
.legal h3 { font-size: 17px; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--ink); opacity: 0.9; font-size: 16px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.callout { border-radius: var(--r-sm); padding: 16px 18px; margin: 22px 0; border-left: 3px solid var(--muted); font-size: 15px; color: var(--muted); background: var(--hover); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .phone { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 880px) {
  .hero { padding: 40px 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .features, .steps { grid-template-columns: 1fr; }
  .band { padding: 40px 24px; }
  .nav-links a { display: none; }
  section { padding: 56px 0; }
}
