/* ==========================================================================
   Drawing Grid — landing page
   Palette (brand):
     Violet      #7C5CFF  primary: mark, links, key actions
     Deep violet #5B3FD6  structure, gradients, pressed states
     Coral       #FF7A9A  accent — used sparingly
     Ink         #14121C  text, dark surfaces
     Slate       #5C5670  secondary text
     Mist        #F5F3FC  tinted backgrounds
   ========================================================================== */

:root {
  --violet: #7C5CFF;
  --deep: #5B3FD6;
  --coral: #FF7A9A;
  --ink: #14121C;
  --slate: #5C5670;
  --mist: #F5F3FC;
  --white: #ffffff;

  --border: #ECE8F6;
  --shadow-sm: 0 1px 2px rgba(20, 18, 28, .06), 0 4px 12px rgba(20, 18, 28, .05);
  --shadow-md: 0 8px 30px rgba(20, 18, 28, .10);
  --shadow-lg: 0 24px 60px rgba(43, 28, 110, .28);

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1140px;

  --grad: linear-gradient(135deg, var(--violet) 0%, var(--deep) 100%);

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--deep); text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; margin: 0; }

/* ----- layout helpers ----- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 14px;
}
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; }
.section-head p { color: var(--slate); font-size: 1.075rem; margin: 16px 0 0; }

/* ----- buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--violet); color: var(--white); box-shadow: 0 8px 20px rgba(124, 92, 255, .35); }
.btn-primary:hover { background: var(--deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(91, 63, 214, .4); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .5); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

/* ----- store badges ----- */
.badges { display: flex; flex-wrap: wrap; gap: 14px; }
.badges.center { justify-content: center; }
.badge-link { display: inline-block; transition: transform .15s ease, filter .2s ease; }
.badge-link img { height: 56px; width: auto; }
.badge-link:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.brand-mark { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; flex: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.nav-link { font-weight: 600; font-size: .95rem; color: var(--slate); }
.nav-links a.nav-link:hover { color: var(--ink); }
.nav-cta { padding: 10px 20px; font-size: .95rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad);
  color: var(--white);
  padding: 132px 0 90px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 10%, rgba(255, 122, 154, .35), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(124, 92, 255, .45), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .22);
  padding: 7px 16px; border-radius: 999px; font-size: .9rem; font-weight: 600; margin-bottom: 22px;
}
.hero-rating .stars { color: #FFD166; letter-spacing: 2px; }
.hero h1 { font-size: clamp(2rem, 7.5vw, 3.6rem); font-weight: 800; }
.hero h1 .hl { color: #FFD8E2; }
.hero-sub { font-size: 1.16rem; color: rgba(255, 255, 255, .9); margin: 22px 0 32px; max-width: 520px; }
.hero-note { margin-top: 18px; font-size: .9rem; color: rgba(255, 255, 255, .78); }
.hero-note i { color: var(--coral); }

/* phone mockup */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  position: relative; width: 290px; max-width: 78vw;
  background: #0c0a14; border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, .12);
}
.phone-screen { border-radius: 33px; overflow: hidden; background: #14121C; }
.phone-screen img { width: 100%; display: block; }
.float-card {
  position: absolute; z-index: 3; background: #fff; color: var(--ink);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-md);
  font-weight: 600; font-size: .9rem; display: flex; align-items: center; gap: 10px;
}
.float-card .dot { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex: none; }
.float-card.one { top: 14%; left: -34px; }
.float-card.two { bottom: 12%; right: -30px; }
.float-card.three { top: 46%; left: -44px; }

/* ----- logo strip / trust ----- */
.trust { background: var(--white); padding: 26px 0; border-bottom: 1px solid var(--border); }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 40px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--slate); font-weight: 600; font-size: .95rem; }
.trust-item i { color: var(--violet); font-size: 1.1rem; }

/* ==========================================================================
   Benefits
   ========================================================================== */
.benefits { background: var(--white); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--mist); color: var(--deep); font-size: 1.35rem; margin-bottom: 20px;
}
.card h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--slate); margin: 0; font-size: .99rem; }

/* ==========================================================================
   How it works
   ========================================================================== */
.how { background: var(--mist); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { text-align: center; padding: 0 8px; }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; background: var(--grad); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  box-shadow: 0 10px 22px rgba(91, 63, 214, .3);
}
.step h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--slate); margin: 0; font-size: .98rem; }

/* ==========================================================================
   Social proof
   ========================================================================== */
.proof { background: var(--white); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.stat { text-align: center; padding: 28px 18px; background: var(--mist); border-radius: var(--radius); }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--deep); line-height: 1; }
.stat .lbl { color: var(--slate); font-weight: 600; margin-top: 8px; font-size: .95rem; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; }
.quote .stars { color: #FFB23E; letter-spacing: 2px; margin-bottom: 14px; }
.quote p { margin: 0 0 18px; font-size: 1rem; color: var(--ink); }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.quote .who strong { display: block; font-size: .95rem; }
.quote .who span { color: var(--slate); font-size: .85rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--mist); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ico { flex: none; color: var(--violet); transition: transform .2s ease; font-size: 1rem; }
.faq-item[open] summary .ico { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--slate); }
.faq-item .faq-body p { margin: 0; }

/* ==========================================================================
   Public gallery feature band
   ========================================================================== */
.gallery-band { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.gallery-copy h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; }
.gallery-copy > p { color: var(--slate); font-size: 1.08rem; margin: 16px 0 26px; }
.gallery-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.gallery-list li { display: flex; gap: 14px; align-items: flex-start; }
.gallery-list .tick { flex: none; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: var(--mist); color: var(--deep); font-size: .85rem; margin-top: 2px; }
.gallery-list strong { font-family: var(--font-display); }
.gallery-list span { color: var(--slate); }
/* mock browser showing a public gallery */
.gallery-visual { background: var(--grad); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-lg); }
.browser { background: var(--ink); border-radius: 14px; overflow: hidden; }
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: #1d1a26; }
.browser-bar .dots { display: flex; gap: 6px; }
.browser-bar .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser-url { flex: 1; background: #2a2733; color: #cfc9e0; font-size: .78rem; padding: 6px 12px; border-radius: 7px; font-family: var(--font-body); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 4px; }
.gallery-thumbs span { position: relative; aspect-ratio: 1; border-radius: 6px; background-size: cover; background-position: center; }
.gallery-thumbs .tag { position: absolute; bottom: 6px; left: 6px; background: rgba(20,18,28,.78); color: #fff; font-size: .68rem; font-weight: 600; padding: 2px 7px; border-radius: 999px; }
.gallery-thumbs .tag.sold { background: var(--coral); color: var(--ink); }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta { background: var(--grad); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 0%, rgba(255, 122, 154, .3), transparent 60%);
}
.cta .container { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; max-width: 680px; margin: 0 auto; }
.cta p { color: rgba(255, 255, 255, .9); font-size: 1.12rem; margin: 18px auto 34px; max-width: 540px; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer { background: var(--ink); color: rgba(255, 255, 255, .7); padding: 56px 0 32px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; margin-bottom: 36px; }
.footer-brand { max-width: 320px; }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand .brand-mark { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16); }
.footer-brand p { font-size: .95rem; margin: 0; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 56px; }
.footer-col h4 { font-family: var(--font-display); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255, 255, 255, .5); margin: 0 0 16px; }
.footer-col a { display: block; color: rgba(255, 255, 255, .75); font-size: .95rem; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; color: #fff; transition: background .2s ease; }
.socials a:hover { background: var(--violet); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .88rem; color: rgba(255, 255, 255, .55); }

/* ==========================================================================
   Mobile nav toggle
   ========================================================================== */
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); font-size: 1.4rem; cursor: pointer; padding: 6px; }

/* ==========================================================================
   Responsive — mobile first adjustments
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .badges { justify-content: center; }
  .hero-rating { margin-left: auto; margin-right: auto; }
  .cards, .steps, .quotes, .stat-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone .float-card.one { left: -10px; }
  .phone .float-card.two { right: -10px; }
  .phone .float-card.three { left: -10px; }
}

/* Collapse to the hamburger menu before the horizontal links start wrapping. */
@media (max-width: 820px) {
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); padding: 8px 0;
    max-height: 0; overflow: hidden; transition: max-height .25s ease; visibility: hidden;
  }
  .nav-links.open { max-height: 320px; visibility: visible; }
  .nav-links a.nav-link { padding: 14px 24px; }
  .nav-links .nav-cta { margin: 10px 24px; }
  .nav-toggle { display: block; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .cards, .steps, .quotes, .stat-row { grid-template-columns: 1fr; }
  .badge-link img { height: 50px; }
  .float-card { display: none; }
  .footer-top { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
