/* ============================================================
   Setlark — landing page styles. Mobile-first (390px target).
   Light mode only. Gradient reserved for CTAs + accents.
   ============================================================ */

:root {
  --bg:        #FFFFFF;
  --bg-alt:    #FAF9FC;
  --ink:       #181225;
  --muted:     #5A5470;
  --line:      #ECE8F2;
  --violet:    #6322D6;
  --magenta:   #ED1E9C;
  --magenta-ink: #C4147E;   /* AA-contrast magenta for small text on light bg */
  --gold:      #FFB627;
  --grad:      linear-gradient(102deg, #6322D6 0%, #ED1E9C 100%);
  --grad-soft: linear-gradient(102deg, rgba(99,34,214,.10), rgba(237,30,156,.10));
  --shadow-sm: 0 2px 8px rgba(24,18,37,.06);
  --shadow:    0 14px 40px rgba(24,18,37,.10);
  --shadow-lg: 0 30px 80px rgba(53,20,90,.22);
  --r:         18px;
  --head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(237,30,156,.18); }

h1, h2, h3 { font-family: var(--head); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.gold { color: var(--gold); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.eyebrow {
  font-family: var(--head); font-weight: 600; font-size: 13px; letter-spacing: .04em;
  text-transform: lowercase; color: var(--violet);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(255,182,39,.22); }
.muted { color: var(--muted); }
.d-br { display: none; }   /* manual line breaks apply on desktop only; mobile wraps naturally */

/* ---------- buttons + form ---------- */
.btn {
  font-family: var(--head); font-weight: 600; font-size: 16px;
  border: 0; border-radius: 14px; padding: 15px 22px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(192,30,140,.32); }
.btn-grad:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(192,30,140,.42); }
.btn-grad:active { transform: translateY(0); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: #d9d3e6; }
.btn[disabled] { opacity: .6; cursor: progress; }

.waitform { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 460px; }
.field { display: flex; flex-direction: column; gap: 10px; }   /* stacked on mobile */
.field input {
  width: 100%; border: 1.5px solid var(--line); outline: 0; background: #fff;
  font-family: var(--body); font-size: 16px; color: var(--ink); padding: 15px 16px;
  border-radius: 14px; box-shadow: var(--shadow-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(99,34,214,.10); }
.field input::placeholder { color: #9b94ab; }
.field .btn { width: 100%; }
@media (min-width: 560px) {
  .field { flex-direction: row; gap: 9px; }
  .field input { flex: 1; min-width: 0; }
  .field .btn { width: auto; white-space: nowrap; }
}
.formnote { font-size: 13px; color: var(--muted); }
.formnote b { color: var(--ink); font-weight: 600; }
.formmsg { font-size: 14px; font-weight: 500; min-height: 1px; }
.formmsg.err { color: #d11a6b; }
.formmsg.ok { color: var(--violet); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-header .logo { height: 32px; width: auto; }
.site-header .btn { padding: 9px 15px; font-size: 14px; }
.hide-sm { display: none; }
.show-sm { display: inline; }

/* ---------- hero ---------- */
.hero { padding: 40px 0 16px; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(420px 320px at 88% -4%, rgba(237,30,156,.10), transparent 70%),
    radial-gradient(420px 360px at 6% 4%, rgba(99,34,214,.10), transparent 70%);
}
.hero h1 { font-size: 44px; font-weight: 800; margin: 16px 0 0; }
.hero .sub { font-size: 18px; color: var(--muted); margin: 16px 0 24px; max-width: 540px; }
.hero .sub b { color: var(--ink); font-weight: 600; }

/* ---------- phone mockup + ping ---------- */
.phone-stage { display: flex; justify-content: center; margin: 38px 0 8px; }
.phone {
  position: relative; width: 280px; aspect-ratio: 9 / 19; background: #0e0a1c;
  border-radius: 46px; padding: 11px; box-shadow: var(--shadow-lg);
  border: 1px solid #2a2342;
}
.phone .screen {
  position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, #3a2170 0%, #1d1340 55%, #140d2c 100%);
  display: flex; flex-direction: column; align-items: center;
}
.phone .notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #060410; border-radius: 16px; z-index: 4;
}
.lock-time { color: #fff; text-align: center; margin-top: 64px; }
.lock-time .d { font-family: var(--body); font-size: 13px; opacity: .8; letter-spacing: .02em; }
.lock-time .t { font-family: var(--head); font-weight: 600; font-size: 58px; line-height: 1; letter-spacing: -.02em; }

/* notification */
.noti-wrap { position: relative; margin-top: auto; width: 100%; padding: 0 12px 26px; }
.ping { position: absolute; left: 30px; top: 8px; width: 40px; height: 40px; pointer-events: none; }
.ping span {
  position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--gold);
  animation: ping 2.6s cubic-bezier(.2,.6,.3,1) infinite; opacity: 0;
}
.ping span:nth-child(2) { animation-delay: .85s; }
.ping span:nth-child(3) { animation-delay: 1.7s; }
@keyframes ping { 0% { transform: scale(.6); opacity: .75; } 80% { opacity: 0; } 100% { transform: scale(3.6); opacity: 0; } }

.noti {
  position: relative; z-index: 2; background: rgba(255,255,255,.96);
  border-radius: 20px; padding: 13px 14px; box-shadow: 0 10px 30px rgba(0,0,0,.34);
  animation: slidein .7s .2s both;
}
@keyframes slidein { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.noti .top { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.noti .ic { width: 30px; height: 30px; border-radius: 8px; }
.noti .app { font-family: var(--head); font-weight: 600; font-size: 13px; color: var(--ink); }
.noti .when { font-size: 12px; color: #8a83a0; margin-left: auto; }
.noti .title { font-family: var(--head); font-weight: 600; font-size: 15.5px; color: var(--ink); line-height: 1.2; }
.noti .body { font-size: 14px; color: var(--muted); margin-top: 3px; }
.noti .body b { color: var(--ink); font-weight: 600; }

/* ---------- generic section ---------- */
section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker { font-family: var(--head); font-weight: 600; font-size: 13px; color: var(--magenta-ink); letter-spacing: .03em; margin-bottom: 12px; }
.h2 { font-size: 31px; font-weight: 700; letter-spacing: -.02em; }
.lead { color: var(--muted); font-size: 17px; margin-top: 12px; max-width: 560px; }

/* ---------- how it works ---------- */
.steps { display: grid; gap: 16px; margin-top: 30px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.step .n {
  font-family: var(--head); font-weight: 700; font-size: 14px; color: #fff;
  width: 30px; height: 30px; border-radius: 9px; background: var(--grad);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { font-size: 19px; }
.step p { color: var(--muted); margin-top: 7px; font-size: 15.5px; }

/* ---------- receipts ---------- */
.receipts { display: grid; gap: 13px; margin-top: 28px; }
.receipt {
  display: flex; gap: 12px; align-items: flex-start; background: #fff;
  border: 1px solid var(--line); border-radius: 16px; padding: 15px 16px; box-shadow: var(--shadow-sm);
}
.receipt .ic { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; }
.receipt .txt { min-width: 0; }
.receipt .txt b { font-weight: 600; }
.receipt .txt .meta { color: var(--muted); font-size: 14.5px; margin-top: 2px; }

/* ---------- privacy band ---------- */
.privacy-band { background: var(--ink); color: #fff; border-radius: 24px; padding: 34px 24px; }
.privacy-band .kicker { color: var(--gold); }
.privacy-band h2 { font-size: 27px; }
.privacy-band p { color: #c9c3da; margin-top: 14px; font-size: 16px; }
.privacy-band .pill {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: 9px 14px; border-radius: 999px; font-size: 14px; font-weight: 500;
}
.privacy-band .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* ---------- faq ---------- */
.faq { margin-top: 26px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 40px 18px 2px; position: relative;
  font-family: var(--head); font-weight: 600; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 15px; font-size: 24px; font-weight: 400;
  color: var(--violet); transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq .ans { padding: 0 2px 20px; color: var(--muted); font-size: 16px; max-width: 640px; }

/* ---------- final cta ---------- */
.final { text-align: center; }
.final .h2 { font-size: 30px; }
.final .waitform { margin: 24px auto 0; }
.social-cta { margin-top: 28px; font-size: 15px; color: var(--muted); }
.social-cta a { font-weight: 600; color: var(--violet); }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 40px 0; }
.site-footer .logo { height: 30px; width: auto; margin-bottom: 16px; }
.site-footer .tag { font-family: var(--head); font-weight: 600; color: var(--ink); }
.site-footer .links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 16px 0; font-size: 15px; }
.site-footer .links a { color: var(--muted); }
.site-footer .links a:hover { color: var(--ink); }
.site-footer .fine { font-size: 13px; color: #6b647a; margin-top: 12px; max-width: 560px; }

/* ---------- confirm state ---------- */
.confirm { display: none; }
.confirm.show { display: block; animation: slidein .5s both; }
.confirm .pos {
  font-family: var(--head); font-weight: 800; font-size: 40px; letter-spacing: -.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.confirm .pos.small { font-size: 28px; }
.is-hidden { display: none !important; }

/* ============================================================
   DESKTOP (enhancement only — mobile is the source of truth)
   ============================================================ */
@media (min-width: 560px) {
  .d-br { display: inline; }
  .hide-sm { display: inline; }
  .show-sm { display: none; }
}
@media (min-width: 760px) {
  body { font-size: 18px; }
  .hero { padding: 60px 0 30px; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
  .hero h1 { font-size: 62px; }
  .hero .sub { font-size: 20px; }
  .phone-stage { margin: 0; }
  .phone { width: 310px; }
  .h2, .final .h2 { font-size: 40px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .receipts { grid-template-columns: 1fr 1fr; gap: 16px; }
  section { padding: 76px 0; }
  .privacy-band { padding: 52px 48px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; }
  .privacy-band h2 { font-size: 33px; }
  .faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
}
@media (min-width: 1080px) {
  .hero h1 { font-size: 70px; }
}
/* ============================================================
   FEATURE SHOWCASE — full feature coverage + conversion
   ============================================================ */

/* trust row under the hero CTA */
.trust { display: flex; flex-wrap: wrap; gap: 7px 16px; margin-top: 18px; font-size: 13.5px; color: var(--muted); }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* section intro (centered headers for showcase) */
.intro { max-width: 640px; }
.intro.center { margin: 0 auto; text-align: center; }

/* alternating feature row */
.feature .wrap { display: flex; flex-direction: column; gap: 24px; }
.feature .ftext h2 { font-size: 27px; margin-top: 10px; }
.feature .ftext p { color: var(--muted); font-size: 16.5px; margin-top: 12px; max-width: 520px; }
.feature .ftext p b { color: var(--ink); font-weight: 600; }
.fvisual { display: flex; justify-content: center; }

/* generic app-UI mockup card */
.ui-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow); padding: 17px 18px; width: 100%; max-width: 430px;
}
.uc-head { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; }
.uc-head .uic { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  background: var(--grad); color: #fff; }
.uc-head .uic svg { width: 17px; height: 17px; }
.uc-head .t { font-family: var(--head); font-weight: 600; font-size: 14px; }
.uc-head .meta { margin-left: auto; font-size: 12.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.uc-head .meta svg { width: 13px; height: 13px; color: var(--magenta-ink); }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--head); font-weight: 600; font-size: 12.5px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 13px; line-height: 1;
}
.chip.on { background: var(--grad); color: #fff; border-color: transparent; }
.chip.gold { border-color: rgba(255,182,39,.5); color: var(--ink); background: rgba(255,182,39,.12); }
.uc-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.uc-note b { color: var(--violet); font-weight: 600; }

/* list rows (shows / artists / prices) */
.urow { display: flex; align-items: center; gap: 11px; padding: 11px 0; border-top: 1px solid var(--line); }
.urow.first, .urow:first-of-type { border-top: 0; }
.art { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; color: var(--violet);
  font-family: var(--head); font-weight: 700; font-size: 15px; }
.art.b { background: linear-gradient(135deg,#FFE3F3,#EDE3FF); color: var(--magenta-ink); }
.art.c { background: linear-gradient(135deg,#E2F0FF,#E8E3FF); color: #2f6bd8; }
.um { min-width: 0; flex: 1; }
.um .nm { font-family: var(--head); font-weight: 600; font-size: 14.5px; line-height: 1.2; }
.um .s2 { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.uright { margin-left: auto; text-align: right; font-family: var(--head); font-weight: 700; font-size: 14px; white-space: nowrap; }
.uright.best { color: var(--magenta-ink); }
.uright .strike { color: #b3adc0; text-decoration: line-through; font-weight: 500; font-size: 12.5px; }
.star { color: var(--gold); font-size: 16px; }
.tagpill { font-size: 11px; font-weight: 600; color: var(--violet); background: rgba(99,34,214,.08);
  padding: 3px 8px; border-radius: 999px; white-space: nowrap; }

/* segmented control (travel tiers) */
.seg { display: flex; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px; padding: 4px; gap: 4px; margin-bottom: 6px; }
.seg span { flex: 1; text-align: center; font-family: var(--head); font-weight: 600; font-size: 12px; padding: 9px 4px; border-radius: 9px; color: var(--muted); }
.seg span.on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

/* stat bars (your year) */
.statrow { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.statrow .rk { font-family: var(--head); font-weight: 700; color: var(--magenta-ink); width: 13px; font-size: 13px; }
.statrow .nm { font-family: var(--head); font-weight: 600; font-size: 13.5px; width: 104px; flex-shrink: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar { flex: 1; height: 9px; border-radius: 999px; background: var(--bg-alt); overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--grad); border-radius: 999px; }
.statrow .pc { font-size: 11.5px; color: var(--muted); width: 58px; text-align: right; white-space: nowrap; }

/* deal ping (price drop) */
.dealping { margin-top: 13px; display: flex; align-items: center; gap: 9px; background: rgba(255,182,39,.13);
  border: 1px solid rgba(255,182,39,.4); border-radius: 12px; padding: 10px 12px; font-size: 13px; font-weight: 500; }
.dealping .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* feature grid (the rest of it) */
.fgrid { display: grid; gap: 14px; margin-top: 30px; }
.fcard { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-sm); }
.fcard .ico { width: 40px; height: 40px; border-radius: 12px; background: var(--grad-soft); color: var(--violet);
  display: flex; align-items: center; justify-content: center; margin-bottom: 13px; }
.fcard .ico svg { width: 20px; height: 20px; }
.fcard h3 { font-size: 16.5px; }
.fcard p { color: var(--muted); font-size: 14.5px; margin-top: 6px; }

/* breadth band */
.breadth { text-align: center; }
.breadth .cats { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }
.breadth .cat { font-family: var(--head); font-weight: 600; font-size: 14px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 18px; box-shadow: var(--shadow-sm); }

/* mid-page CTA band */
.cta-band .inner { background: var(--ink); border-radius: 24px; padding: 36px 24px; text-align: center; color: #fff; }
.cta-band h2 { color: #fff; font-size: 26px; }
.cta-band .lead { color: #c9c3da; margin: 12px auto 0; }
.cta-band .signup { margin-top: 22px; display: inline-block; width: 100%; }
.cta-band .waitform { margin: 0 auto; }
.cta-band .field input { background: #fff; border-color: transparent; }
.cta-band .formnote { color: #b3acc4; }
.cta-band .formnote b { color: #fff; }
.cta-band .confirm .pos { font-size: 30px; }
.cta-band .confirm .muted { color: #c9c3da; }

@media (min-width: 760px) {
  .feature .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
  .feature.reverse .fvisual { order: -1; }
  .feature .ftext h2 { font-size: 34px; }
  .fgrid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .cta-band .inner { padding: 54px; }
  .cta-band h2 { font-size: 34px; }
  .cta-band .waitform { max-width: 480px; }
}

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