/* Social Pocket — landing page */

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 60; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 64px;
  margin-top: 0; padding: 0 10px 0 18px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line); border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 20px rgba(44, 44, 44, .06);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { height: 40px; width: auto; border-radius: 10px; box-shadow: 0 4px 14px rgba(44, 44, 44, .15); }
.brand-text { font-size: 19px; font-weight: 800; letter-spacing: -.3px; line-height: 1; color: var(--ink); }
.brand-text small {
  font-weight: 700; font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase; display: block; margin-top: 3px;
  background: var(--grad-bright); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-login {
  font-weight: 600; font-size: 14px; color: var(--ink); padding: 8px 16px; border-radius: 10px;
  transition: color .2s ease, background .2s ease; text-decoration: none;
}
.nav-login:hover { background: rgba(44, 44, 44, .06); }
.nav-signup { padding: 9px 18px !important; font-size: 13.5px !important; border-radius: 10px !important; }

/* Hamburger toggle */
.hm-toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; border: none; background: none; cursor: pointer; gap: 5px;
  border-radius: 10px; transition: background .15s;
}
.hm-toggle:hover { background: rgba(133,57,83,.08); }
.hm-toggle span {
  display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px;
  transition: all .25s ease;
}
.hm-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hm-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hm-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Overlay */
.hm-overlay {
  position: fixed; inset: 0; z-index: 70; background: rgba(0,0,0,.45);
  opacity: 0; pointer-events: none; transition: opacity .3s ease; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.hm-overlay.open { opacity: 1; pointer-events: auto; }

/* Landing Menu */
.hm-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 80;
  width: 300px; background: var(--surface); border-left: 1px solid var(--line);
  box-shadow: -8px 0 30px rgba(0,0,0,.12);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column; overflow-y: auto;
}
.hm-menu.open { transform: translateX(0); }

/* Menu head — brand */
.lm-head {
  padding: 22px 20px 18px; border-bottom: 1px solid var(--line);
}
.lm-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.lm-brand .brand-logo { height: 38px; }
.lm-brand .brand-text { font-size: 17px; }
.lm-brand .brand-text small { font-size: 9.5px; }

/* Menu links */
.lm-links { padding: 10px 0; flex: 1; }
.lm-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 20px;
  text-decoration: none; color: var(--ink); transition: background .1s;
}
.lm-item:hover { background: var(--bg-tint); }
.lm-ico {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 8px;
  background: var(--grad-soft); color: var(--plum); display: grid; place-items: center;
}
.lm-text b { font-size: 13.5px; font-weight: 700; }

/* Theme toggle */
.lm-theme { padding: 6px 20px 0; }
.lm-theme-btn {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 10px 14px; border: none; border-radius: 10px;
  background: none; font-size: 13.5px; font-weight: 600; color: var(--ink);
  cursor: pointer; transition: background .15s;
}
.lm-theme-btn:hover { background: var(--bg-tint); }
.lm-theme-icon { display: grid; place-items: center; color: var(--plum); }

/* Auth buttons */
.lm-auth {
  padding: 14px 20px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.lm-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all .15s; border: none; cursor: pointer;
}
.lm-login {
  background: var(--surface); color: var(--ink); border: 1px solid var(--line);
}
.lm-login:hover { border-color: var(--plum); color: var(--plum); }
.lm-signup { background: var(--grad); color: #fff; box-shadow: 0 4px 14px rgba(133,57,83,.25); }
.lm-signup:hover { box-shadow: 0 6px 20px rgba(133,57,83,.35); transform: translateY(-1px); }

/* ---------- Hero — dark gradient ---------- */
.hero {
  position: relative; padding: 110px 0 80px; overflow: hidden;
  background: linear-gradient(160deg, #612d53 0%, #853953 35%, #a04468 65%, #7a3658 100%);
  color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.06) 0%, transparent 40%);
}
.hero::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0; height: 120px; pointer-events: none;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-glow2 { display: none; }
.hero-bg-pattern, .hero-mesh, .hero-shape { display: none; }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-left { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
}
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 12px rgba(255,255,255,.6); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.8); } }

.hero h1 {
  font-size: clamp(40px, 5.2vw, 64px); line-height: 1.05; font-weight: 800;
  letter-spacing: -2px; margin: 24px 0 20px; color: #fff;
}
.hero h1 .grad-text {
  background: linear-gradient(90deg, #ffd6e0, #fff, #ffd6e0);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub { font-size: 17px; color: rgba(255,255,255,.75); max-width: 480px; margin-bottom: 34px; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn-primary {
  background: #fff; color: #853953; font-weight: 800;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.hero-cta .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.3); }
.hero-cta .btn-ghost {
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25);
}
.hero-cta .btn-ghost:hover { background: rgba(255,255,255,.2); }

.hero-stats { display: flex; gap: 28px; margin-top: 48px; }
.hero-stat b { display: block; font-size: 28px; font-weight: 800; letter-spacing: -.5px; color: #fff; }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 600; }

/* ---------- Hero mock ---------- */
.hero-visual { position: relative; }
.mock-wrap { position: relative; }
.mock {
  background: var(--surface); border-radius: 28px; padding: 10px; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.1);
  transform: rotate(1.6deg); transition: transform .35s ease;
}
.mock:hover { transform: rotate(0deg) translateY(-4px); }
.mock::before {
  content: ""; position: absolute; inset: -1px; border-radius: 29px; z-index: -1;
  background: linear-gradient(140deg, rgba(255,255,255,.3), transparent 40%, transparent 60%, rgba(255,255,255,.2));
}
.mock-body { background: var(--bg-tint); border-radius: 20px; padding: 22px; }
.mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mock-title { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; color: var(--ink); }
.mock-title .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--plum-bright); box-shadow: 0 0 10px var(--plum-bright); }
.mock-bal { text-align: right; }
.mock-bal b { display: block; font-size: 20px; color: var(--plum); letter-spacing: -.3px; }
.mock-bal span { font-size: 11px; color: var(--faint); }
.mock-chart { margin: 4px 0 14px; }
.mock-chart svg { width: 100%; height: 56px; display: block; }
.mock-task {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 12px 14px; border-radius: 14px; margin-bottom: 10px;
  transition: border-color .2s ease, transform .2s ease;
}
.mock-task:hover { border-color: rgba(201, 95, 126, .5); transform: translateX(3px); }
.mock-task .t-icon { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-soft); color: var(--plum); display: grid; place-items: center; flex-shrink: 0; }
.mock-task .t-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.mock-task .t-desc { font-size: 11.5px; color: var(--muted); }
.mock-task .t-pay { margin-left: auto; font-weight: 800; color: var(--plum); font-size: 13px; white-space: nowrap; }
.mock-cta {
  text-align: center; padding: 13px; margin-top: 6px; border-radius: 12px;
  background: var(--grad); font-weight: 700; font-size: 13px; color: #fff;
  box-shadow: 0 8px 20px rgba(133, 57, 83, .35); transition: transform .2s ease;
}
.mock-cta:hover { transform: translateY(-2px); }

.float-chip {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  padding: 10px 16px; border-radius: 14px; font-size: 13px; font-weight: 600; color: var(--ink);
  animation: floatY 5s ease-in-out infinite;
}
.float-chip .fc-ico { width: 26px; height: 26px; border-radius: 8px; background: var(--grad-soft); color: var(--plum); display: grid; place-items: center; }
.float-chip b { color: var(--plum); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
.fc-1 { top: -22px; right: 6px; animation-delay: 0s; }
.fc-2 { bottom: -22px; left: -14px; animation-delay: 1.2s; }
.fc-3 { bottom: 120px; right: -18px; animation-delay: 2.1s; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; padding: 20px 0;
  background: linear-gradient(135deg, #853953, #612d53);
  position: relative; box-shadow: 0 4px 20px rgba(97,45,83,.2);
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #853953, transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, #612d53, transparent); }
.marquee-track { display: flex; gap: 72px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span { font-size: 13px; font-weight: 700; letter-spacing: .8px; color: rgba(255,255,255,.7); text-transform: uppercase; white-space: nowrap; }
.marquee-track span b { color: #fff; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section-pad { padding: 88px 0; position: relative; }
.section-pad.alt { background: linear-gradient(180deg, rgba(133,57,83,.05) 0%, rgba(97,45,83,.03) 50%, rgba(133,57,83,.05) 100%); }

/* ---------- Section titles ---------- */
.sec-label { display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; color: var(--plum); }
.sec-label::before { content: ""; width: 28px; height: 3px; background: var(--grad); border-radius: 3px; }
.sec-title { font-size: clamp(32px, 4vw, 46px); font-weight: 800; letter-spacing: -1.4px; line-height: 1.1; margin: 16px 0 14px; color: var(--ink); }
.sec-sub { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.6; }
.sec-head { max-width: 660px; margin-bottom: 56px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .sec-label { justify-content: center; }

/* ---------- How it works ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.steps::before {
  content: ""; position: absolute; top: 52px; left: 18%; right: 18%;
  border-top: 2px dashed rgba(133, 57, 83, .25); z-index: 0;
}
.step {
  position: relative; z-index: 1;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 28px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad); opacity: 0; transition: opacity .25s ease;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(133,57,83,.2); }
.step:hover::before { opacity: 1; }
.step-num {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 22px; margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(133, 57, 83, .3);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.step:hover .step-num { transform: scale(1.08) rotate(-3deg); }
.step.in .step-num { animation: popIn .55s cubic-bezier(.34, 1.56, .64, 1) both; animation-delay: .15s; }
@keyframes popIn { from { transform: scale(.35); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.step h3 { font-size: 19px; margin-bottom: 10px; color: var(--ink); font-weight: 800; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- Features ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.feat:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(133,57,83,.2); }
.feat:hover::after { transform: scaleX(1); }
.feat-ico {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--grad); color: #fff;
  box-shadow: 0 8px 22px rgba(133, 57, 83, .28);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease;
}
.feat.in .feat-ico { animation: popIn .55s cubic-bezier(.34, 1.56, .64, 1) both; animation-delay: .15s; }
.feat:hover .feat-ico { transform: scale(1.1) rotate(-4deg); box-shadow: 0 10px 28px rgba(133, 57, 83, .35); }
.feat-ico svg { width: 28px; height: 28px; }
.feat h3 { font-size: 18px; margin-bottom: 8px; color: var(--ink); font-weight: 800; }
.feat p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- Tasks ---------- */
.tasks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.task-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.task-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.task-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(133,57,83,.2); }
.task-card:hover::after { transform: scaleX(1); }
.task-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.task-ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad); color: #fff;
  box-shadow: 0 6px 18px rgba(133, 57, 83, .22);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease;
}
.task-card:hover .task-ico { transform: scale(1.1) rotate(-4deg); box-shadow: 0 8px 24px rgba(133, 57, 83, .3); }
.task-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--plum);
  padding: 5px 12px; border: 1px solid rgba(133, 57, 83, .2); border-radius: 999px; background: rgba(133, 57, 83, .06);
}
.task-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--plum-bright); animation: pulse 1.6s infinite; }
.task-card h3 { font-size: 17px; margin-bottom: 6px; color: var(--ink); font-weight: 800; }
.task-card p { font-size: 14px; color: var(--muted); margin-bottom: 18px; line-height: 1.55; }
.task-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px dashed var(--line); }
.task-pay { font-weight: 800; color: var(--plum); font-size: 18px; }
.task-time { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }

/* ---------- Advertisers ---------- */
.advertise {
  background: var(--grad); border-radius: 30px; padding: 72px; position: relative; overflow: hidden;
  box-shadow: 0 30px 70px rgba(97, 45, 83, .35);
}
.advertise::before {
  content: ""; position: absolute; right: -100px; top: -100px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 65%); pointer-events: none;
}
.advertise::after {
  content: ""; position: absolute; left: -80px; bottom: -120px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 0, 0, .2), transparent 65%); pointer-events: none;
}
.advertise-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.advertise .sec-label { color: rgba(255,255,255,.7); }
.advertise .sec-label::before { background: rgba(255,255,255,.4); }
.advertise h2 { font-size: clamp(28px, 3.6vw, 38px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.12; margin: 14px 0 14px; color: #fff; }
.advertise .sec-sub { color: rgba(255,255,255,.75); }
.adv-list { margin: 24px 0 34px; display: grid; gap: 14px; }
.adv-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,.92); }
.adv-list li svg { flex-shrink: 0; margin-top: 3px; color: #fff; }
.adv-panel {
  background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
  padding: 26px; backdrop-filter: blur(12px);
}
.adv-panel .metric { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,.12); font-size: 13.5px; color: rgba(255,255,255,.8); }
.adv-panel .metric:last-of-type { border-bottom: none; }
.adv-panel .metric b { color: #fff; }
.adv-panel .metric b em { font-style: normal; color: rgba(255,255,255,.5); font-weight: 600; font-size: 12px; }
.bar { margin-top: 14px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; }
.bar-fill {
  height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, #fff, #ffd6e0);
  transition: width 1.4s cubic-bezier(.22, 1, .36, 1) .4s;
}
.advertise.in .bar-fill { width: var(--w, 68%); }

/* ---------- Testimonials ---------- */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.test::before {
  content: "\201C"; position: absolute; top: 12px; right: 20px;
  font-size: 80px; font-weight: 800; line-height: 1; color: rgba(133,57,83,.06);
  font-family: Georgia, serif; pointer-events: none;
}
.test::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.test:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(133,57,83,.2); }
.test:hover::after { transform: scaleX(1); }
.test .stars { color: #e8a33d; font-size: 15px; letter-spacing: 3px; margin-bottom: 16px; }
.test p { font-size: 14.5px; line-height: 1.65; margin-bottom: 20px; color: var(--ink); font-style: italic; }
.test-user { display: flex; align-items: center; gap: 12px; }
.test-ava {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 14px; box-shadow: 0 4px 14px rgba(133, 57, 83, .3);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1); flex-shrink: 0;
}
.test:hover .test-ava { transform: scale(1.12) rotate(6deg); }
.test-user b { font-size: 14px; display: block; color: var(--ink); font-weight: 800; }
.test-user span { font-size: 12px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px 24px; position: relative; overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.faq details::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--grad); opacity: 0; transition: opacity .25s ease;
}
.faq details[open] { border-color: rgba(201, 95, 126, .4); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.faq details[open]::before { opacity: 1; }
.faq summary {
  font-weight: 700; font-size: 15px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex-shrink: 0; width: 30px; height: 30px; border-radius: 10px;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  font-size: 18px; font-weight: 400; line-height: 1;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.faq details[open] summary::after { content: "\2212"; transform: rotate(180deg); }
.faq p { font-size: 14px; color: var(--muted); margin-top: 14px; line-height: 1.65; padding-left: 2px; }

/* ---------- CTA — dark gradient ---------- */
.cta-band {
  position: relative; text-align: center; padding: 100px 0; overflow: hidden;
  background: linear-gradient(160deg, #612d53, #853953 50%, #7a3658);
  color: #fff;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(255,255,255,.04) 0%, transparent 40%);
}
.cta-band h2 {
  position: relative; font-size: clamp(30px, 4.2vw, 46px); font-weight: 800;
  letter-spacing: -1.4px; margin-bottom: 14px; color: #fff;
}
.cta-band h2 .grad-text {
  background: linear-gradient(90deg, #ffd6e0, #fff, #ffd6e0);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cta-band p { position: relative; font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 32px; }
.cta-band .orb { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-band .orb-1 { width: 80px; height: 80px; left: 12%; top: 28%; background: radial-gradient(circle, rgba(255,255,255,.15), transparent 70%); animation: floatY 6s ease-in-out infinite; }
.cta-band .orb-2 { width: 120px; height: 120px; right: 10%; top: 46%; background: radial-gradient(circle, rgba(255,255,255,.1), transparent 70%); animation: floatY 7.5s ease-in-out infinite reverse; }
.cta-band .btn { position: relative; }
.cta-band .btn-primary { background: #fff; color: #853953; font-weight: 800; box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.cta-band .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.3); }

/* ---------- Footer ---------- */
.footer { background: #1a1018; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer .brand { margin-bottom: 14px; }
.footer .brand-text { color: #fff; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.45); max-width: 280px; }
.footer h4 { font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s ease; }
.footer li a:hover { color: #c95f7e; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.3);
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .nav { top: 0; }
  .nav-inner { height: 60px; border-radius: 0 0 12px 12px; padding-left: 14px; }
  .nav-login, .nav-signup { display: none; }
  .hero { padding: 80px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-left { max-width: 100%; }
  .hero-visual { order: 2; max-width: 400px; margin-inline: auto; width: 100%; }
  .hero h1 { font-size: clamp(34px, 8vw, 48px); }
  .hero-sub { max-width: 100%; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .section-pad { padding: 64px 0; }
  .steps { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .steps::before { display: none; }
  .feat-grid, .tasks-grid, .test-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .advertise { padding: 44px 28px; }
  .advertise-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-chip { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 30px; letter-spacing: -1px; margin: 18px 0 14px; }
  .hero-sub { font-size: 14.5px; margin-bottom: 26px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; padding: 16px; font-size: 16px; border-radius: 14px; text-align: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 28px; }
  .hero-stat { text-align: center; }
  .hero-stat b { font-size: 22px; }
  .hero-stat span { font-size: 11px; }

  .nav-inner { height: 54px; padding-left: 10px; border-radius: 0 0 12px 12px; }
  .brand-logo { height: 30px; }
  .brand-text { font-size: 15px; }
  .brand-text small { letter-spacing: 1px; font-size: 9px; }
  .hm-toggle { width: 36px; height: 36px; }
  .hm-toggle span { width: 20px; height: 2px; }

  .section-pad { padding: 48px 0; }
  .sec-head { margin-bottom: 36px; }
  .sec-title { font-size: 24px; letter-spacing: -.8px; }
  .sec-sub { font-size: 14px; }

  .step, .feat, .task-card, .test { padding: 22px 18px; border-radius: 16px; }
  .step-num { width: 46px; height: 46px; font-size: 18px; border-radius: 13px; margin-bottom: 16px; }
  .step h3 { font-size: 16px; }
  .step p { font-size: 13px; }

  .feat-ico { width: 48px; height: 48px; border-radius: 14px; margin-bottom: 14px; }
  .feat h3 { font-size: 15px; }
  .feat p { font-size: 13px; }

  .task-ico { width: 44px; height: 44px; border-radius: 12px; }
  .task-card h3 { font-size: 15px; }
  .task-card p { font-size: 12.5px; margin-bottom: 14px; }
  .task-pay { font-size: 15px; }

  .test p { font-size: 13px; }
  .test-ava { width: 38px; height: 38px; font-size: 12px; }

  .mock { transform: none; border-radius: 22px; padding: 6px; }
  .mock-body { padding: 16px; border-radius: 16px; }
  .mock-bal b { font-size: 17px; }
  .mock-task { padding: 10px 12px; gap: 10px; margin-bottom: 7px; border-radius: 12px; }
  .mock-task .t-icon { width: 34px; height: 34px; border-radius: 9px; }
  .mock-task .t-name { font-size: 12px; }
  .mock-task .t-desc { font-size: 10.5px; }
  .mock-task .t-pay { font-size: 12px; }
  .mock-cta { padding: 10px; font-size: 12px; border-radius: 10px; }

  .faq { gap: 10px; }
  .faq details { padding: 16px 18px; }
  .faq summary { font-size: 14px; }
  .faq summary::after { width: 26px; height: 26px; font-size: 16px; }

  .cta-band { padding: 64px 0; }
  .cta-band h2 { font-size: 26px; }
  .cta-band p { font-size: 14px; margin-bottom: 28px; }
  .cta-band .btn { padding: 16px; font-size: 16px; width: 100%; border-radius: 14px; }

  .advertise { padding: 32px 20px; border-radius: 22px; }
  .advertise h2 { font-size: 24px; }
  .advertise .sec-sub { font-size: 14px; }
  .adv-list { margin: 18px 0 28px; gap: 12px; }
  .adv-list li { font-size: 13px; gap: 10px; }
  .adv-panel { padding: 20px; border-radius: 16px; }
  .adv-panel .metric { font-size: 12.5px; padding: 12px 0; }
  .adv-panel .metric b { font-size: 13px; }
  .advertise .btn { width: 100%; text-align: center; }

  .marquee { padding: 14px 0; }
  .marquee-track span { font-size: 11px; }

  .footer { padding: 40px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  .to-top { width: 40px; height: 40px; right: 12px; bottom: 16px; border-radius: 10px; font-size: 16px; }
}

@media (max-width: 400px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 26px; }
  .hero-badge { font-size: 11px; padding: 6px 12px; }
  .hero-stats { grid-template-columns: 1fr; gap: 8px; }
  .hero-stat { display: flex; align-items: center; gap: 10px; text-align: left; padding: 10px 14px; background: rgba(255,255,255,.08); border-radius: 10px; border: 1px solid rgba(255,255,255,.1); }
  .hero-stat b { font-size: 18px; }
  .hero-stat span { font-size: 12px; }
  .brand-text small { display: none; }
  .nav-login { display: none; }
  .nav-signup { display: none; }
  .sec-title { font-size: 22px; }
  .step, .feat, .task-card, .test { padding: 18px 14px; }
  .advertise { padding: 24px 16px; border-radius: 18px; }
  .advertise h2 { font-size: 20px; }
  .adv-list li { font-size: 12px; gap: 8px; }
  .adv-list li svg { width: 16px; height: 16px; }
  .adv-panel { padding: 16px; border-radius: 14px; }
  .adv-panel .metric { font-size: 12px; padding: 10px 0; }
  .mock-title { font-size: 12px; }
  .mock-task .t-name { font-size: 11px; }
  .mock-task .t-desc { font-size: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .advertise h2 { font-size: 22px; }
  .cta-band h2 { font-size: 24px; }
}
