/* ─────────────────────────────────────────────
   Incossify design system
   ───────────────────────────────────────────── */
:root {
  --radius: 1rem;
  --background: oklch(15% 0.07 300);
  --foreground: oklch(98% 0.01 300);
  --card: oklch(20% 0.08 300);
  --card-foreground: oklch(98% 0.01 300);
  --popover: oklch(20% 0.08 300);
  --popover-foreground: oklch(98% 0.01 300);
  --primary: oklch(66% 0.23 300);
  --primary-foreground: oklch(99% 0.01 300);
  --primary-glow: oklch(75% 0.2 305);
  --secondary: oklch(26% 0.09 300);
  --secondary-foreground: oklch(98% 0.01 300);
  --muted: oklch(24% 0.07 300);
  --muted-foreground: oklch(80% 0.03 300);
  --accent: oklch(32% 0.12 305);
  --accent-foreground: oklch(98% 0.01 300);
  --aqua: oklch(72% 0.21 302);
  --aqua-foreground: oklch(99% 0.01 300);
  --destructive: oklch(65% 0.22 25);
  --destructive-foreground: oklch(99% 0 0);
  --border: oklch(100% 0 0 / 0.1);
  --input: oklch(100% 0 0 / 0.14);
  --ring: oklch(66% 0.23 300);
  --gradient-hero: radial-gradient(120% 80% at 80% 20%, oklch(66% 0.23 300 / 0.45) 0%, transparent 55%),
                   radial-gradient(90% 70% at 10% 100%, oklch(75% 0.2 320 / 0.22) 0%, transparent 60%),
                   linear-gradient(180deg, oklch(11% 0.06 305) 0%, oklch(19% 0.09 300) 100%);
  --gradient-aqua: linear-gradient(135deg, oklch(72% 0.21 300), oklch(58% 0.24 295));
  --gradient-surface: linear-gradient(180deg, oklch(19% 0.09 300) 0%, oklch(13% 0.06 305) 100%);
  --gradient-text: linear-gradient(135deg, oklch(99% 0.01 300) 0%, oklch(78% 0.18 305) 55%, oklch(66% 0.23 298) 100%);
  --shadow-soft: 0 4px 20px -4px oklch(8% 0.06 305 / 0.55);
  --shadow-elegant: 0 24px 60px -24px oklch(5% 0.05 305 / 0.75);
  --shadow-aqua: 0 10px 50px -10px oklch(66% 0.23 300 / 0.55);
  --shadow-glow: 0 0 80px oklch(66% 0.23 300 / 0.45);
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Sora", "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; background: none; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
::placeholder { color: var(--foreground); opacity: 0.4; }

.font-display { font-family: var(--font-display); }

/* ── Background layers ── */
.bg-background { background: var(--background); }
.bg-gradient-hero { background: var(--gradient-hero); }
.bg-gradient-surface { background: var(--gradient-surface); }
.bg-gradient-aqua { background: var(--gradient-aqua); }
.text-gradient-aqua {
  background: var(--gradient-text);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}
.rain-bg {
  background-image: repeating-linear-gradient(115deg, #0000, #0000 16px, #ffffff0a 16px, #ffffff0a 17px);
}

.glass {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: #ffffff0f;
  border: 1px solid oklab(100% 0 5.96e-8 / 0.12);
}
.glass-strong {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  background: #ffffff1a;
  border: 1px solid oklab(100% 0 5.96e-8 / 0.18);
}

.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-aqua { box-shadow: var(--shadow-aqua); }
.shadow-glow { box-shadow: var(--shadow-glow); }

/* ── Layout helpers ── */
.wrap { max-width: 80rem; margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
.wrap-md { max-width: 42rem; margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
.wrap-lg { max-width: 56rem; margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}
.btn-aqua {
  background: var(--gradient-aqua);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-aqua);
}
.btn-aqua:hover { transform: scale(1.01); }
.btn-aqua:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-glass {
  background: #ffffff0f;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid oklab(100% 0 5.96e-8 / 0.12);
  color: var(--foreground);
}
.btn-glass:hover { border-color: color-mix(in oklab, var(--primary) 50%, transparent); }
.btn-outline-primary {
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  border-color: color-mix(in oklab, var(--primary) 50%, transparent);
  color: var(--foreground);
}
.btn-outline-primary:hover { background: color-mix(in oklab, var(--primary) 20%, transparent); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.75rem; }

.btn-danger-ghost {
  border-radius: 1rem;
  border: 1px solid oklch(65% 0.22 25 / 0.4);
  background: oklch(65% 0.22 25 / 0.1);
  color: oklch(75% 0.15 25);
  font-weight: 700;
}
.btn-danger-ghost:hover { background: oklch(65% 0.22 25 / 0.2); }

/* ── Icon buttons ── */
.icon-btn {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--foreground);
  transition: color 0.2s;
}
.icon-btn:hover { color: var(--primary); }
.icon-btn svg { height: 1.25rem; width: 1.25rem; }
.icon-btn .dot {
  position: absolute;
  top: -0.1rem;
  right: -0.1rem;
  height: 0.6rem;
  width: 0.6rem;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 2px var(--background);
}

/* ── Header (auth pages) ── */
.auth-header { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.auth-header .back { font-size: 0.875rem; font-weight: 600; color: var(--foreground); opacity: 0.7; }
.auth-header .back:hover { color: var(--primary); opacity: 1; }

/* ── Logo lockup ── */
.logo { display: inline-flex; align-items: center; gap: 0.5rem; }
.logo img { width: auto; object-fit: contain; height: 2.25rem; }
.logo .name { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; font-size: 1.35rem; }
.logo.lg img { height: 3.5rem; }

/* ── Forms ── */
.field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--foreground);
  opacity: 0.65;
  margin-bottom: 0.5rem;
}
.field {
  width: 100%;
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 0.04);
  border: 1px solid rgb(255 255 255 / 0.15);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field:focus { border-color: var(--primary); box-shadow: 0 0 0 2px color-mix(in oklab, var(--primary) 30%, transparent); }
.field.pl-10 { padding-left: 2.5rem; }
.field.pr-11 { padding-right: 2.75rem; }
select.field { appearance: none; }
.field-error {
  border-radius: 0.75rem;
  border: 1px solid oklch(65% 0.22 25 / 0.4);
  background: oklch(65% 0.22 25 / 0.1);
  color: oklch(75% 0.15 25);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}
.field-note {
  border-radius: 0.75rem;
  border: 1px solid color-mix(in oklab, var(--primary) 35%, transparent);
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  padding: 1rem;
  font-size: 0.875rem;
}

/* ── Cards ── */
.card { border-radius: 1.5rem; padding: 1.5rem; }
.card-glass { border-radius: 1.5rem; box-shadow: var(--shadow-elegant); }

/* ── Balance hero card ── */
.balance-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
  overflow: hidden;
  background: var(--gradient-aqua);
  color: var(--aqua-foreground);
}
.balance-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 10rem;
  width: 10rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.2);
  filter: blur(3rem);
  pointer-events: none;
}
.balance-card > .rel { position: relative; }

/* ── Quick actions grid ── */
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.quick-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.quick-item .icon {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s;
}
.quick-item:hover .icon { background: color-mix(in oklab, var(--primary) 15%, transparent); color: var(--primary); }
.quick-item span { font-size: 0.6875rem; font-weight: 600; color: var(--foreground); opacity: 0.8; }
.quick-item svg { height: 1.25rem; width: 1.25rem; }

/* ── Small cards / stats ── */
.mini-card { border-radius: 1rem; padding: 0.9rem 1rem; }
.mini-card h4 { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.55; }
.mini-card p { font-weight: 700; margin-top: 0.25rem; }

/* ── Section titles ── */
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.sec-head h2 { font-size: 1.125rem; font-weight: 800; }
.sec-head a { font-size: 0.75rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 0.25rem; }

/* ── Bottom nav ── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  background: color-mix(in oklab, var(--background) 85%, transparent);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.bottom-nav ul { max-width: 32rem; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); list-style: none; padding: 0; }
.bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; padding: 0.75rem 0 0.4rem; font-size: 0.6875rem; font-weight: 600; color: var(--foreground); opacity: 0.55; transition: color 0.2s; }
.bottom-nav a.active, .bottom-nav a:hover { color: var(--primary); opacity: 1; }
.bottom-nav a .nav-ic { display: grid; place-items: center; height: 2.25rem; width: 2.25rem; border-radius: 1rem; transition: background 0.2s, box-shadow 0.2s; }
.bottom-nav a.active .nav-ic, .bottom-nav a:hover .nav-ic { background: color-mix(in oklab, var(--primary) 15%, transparent); box-shadow: var(--shadow-aqua); }
.bottom-nav svg { height: 1.25rem; width: 1.25rem; }
.bottom-nav .safe { height: env(safe-area-inset-bottom); }

/* ── Badges ── */
.badge { display: inline-flex; align-items: center; border-radius: 999px; padding: 0.2rem 0.7rem; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.badge-available { background: rgb(255 255 255 / 0.1); color: var(--foreground); opacity: 0.8; }
.badge-claimed { background: oklch(80% 0.15 80 / 0.2); color: oklch(85% 0.15 80); }
.badge-completed { background: color-mix(in oklab, var(--primary) 20%, transparent); color: var(--primary); }
.badge-paid { background: oklch(80% 0.15 160 / 0.15); color: oklch(85% 0.13 160); border: 1px solid oklch(80% 0.15 160 / 0.3); }
.badge-pending { background: oklch(80% 0.13 80 / 0.15); color: oklch(85% 0.12 80); border: 1px solid oklch(80% 0.13 80 / 0.3); }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--foreground);
  color: var(--background);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 99999;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  max-width: calc(100vw - 3rem);
  overflow: hidden;
  text-overflow: ellipsis;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── Auth shell ── */
.auth-shell { position: relative; min-height: 100vh; background: var(--background); color: var(--foreground); overflow: hidden; }
.auth-shell .glow-1 { position: absolute; top: 0; left: 33%; height: 34rem; width: 34rem; border-radius: 999px; background: var(--gradient-aqua); filter: blur(3rem); opacity: 0.1; pointer-events: none; }
.auth-shell .glow-2 { position: absolute; bottom: 0; right: 0; height: 24rem; width: 24rem; border-radius: 999px; background: var(--primary); opacity: 0.15; filter: blur(3rem); pointer-events: none; }

/* ── Landing header ── */
.landing-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.5s, border-color 0.5s;
}
.landing-header.scrolled { background: rgba(10,13,18,0.85); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-color: rgb(255 255 255 / 0.08); }
.landing-header .wrap { height: 4rem; display: flex; align-items: center; justify-content: space-between; }
.landing-header .wrap-md-l { max-width: 80rem; }
.landing-nav { display: none; align-items: center; gap: 2.25rem; font-size: 0.875rem; font-weight: 500; color: var(--foreground); opacity: 0.75; }
.landing-nav a:hover { color: var(--primary); }
.landing-header .actions { display: flex; align-items: center; gap: 0.5rem; }
.landing-header .signin { display: none; font-size: 0.875rem; font-weight: 600; color: var(--foreground); opacity: 0.8; }
.landing-header .signin:hover { color: var(--primary); }

/* ── Hero ── */
.hero { position: relative; padding: 7rem 0 5rem; overflow: hidden; }
.hero .bg { position: absolute; inset: 0; background: var(--gradient-hero); z-index: -1; }
.hero .rain { position: absolute; inset: 0; opacity: 0.4; z-index: -1; }
.hero .orb { position: absolute; top: -5rem; right: 0; height: 34rem; width: 34rem; border-radius: 999px; background: var(--primary); opacity: 0.25; filter: blur(3rem); z-index: -1; }
.hero .grid { display: grid; gap: 3rem; align-items: center; }
.hero h1 { margin-top: 1.25rem; font-size: 2.5rem; line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; }
.hero p.sub { margin-top: 1.5rem; font-size: 1.0625rem; color: var(--foreground); opacity: 0.75; max-width: 36rem; }
.hero .ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero .stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 32rem; }
.hero .stat { border-radius: 1rem; padding: 1rem; }
.hero .stat b { font-size: 1.5rem; font-weight: 800; }
.hero .stat span { margin-top: 0.25rem; display: block; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--foreground); opacity: 0.6; font-weight: 600; }
.hero .flyer-wrap { position: relative; }
.hero .flyer-glow { position: absolute; inset: -1.5rem; background: var(--gradient-aqua); border-radius: 3rem; filter: blur(3rem); opacity: 0.25; }
.hero .flyer { position: relative; width: 100%; border-radius: 2rem; border: 1px solid rgb(255 255 255 / 0.15); box-shadow: var(--shadow-elegant); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
}
.eyebrow svg { height: 0.875rem; width: 0.875rem; }

/* ── Landing sections ── */
.sec { padding: 5rem 0; }
.sec-title { max-width: 36rem; }
.sec-title h2 { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 800; letter-spacing: -0.02em; }
.sec-title p { margin-top: 1rem; color: var(--foreground); opacity: 0.7; }
.sec-title.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid-4 { display: grid; gap: 1.25rem; margin-top: 3rem; }
.grid-3 { display: grid; gap: 1rem; margin-top: 3rem; }
.grid-2 { display: grid; gap: 1.5rem; margin-top: 3rem; }

.about-card { border-radius: 1.5rem; padding: 1.5rem; height: 100%; transition: border-color 0.2s; }
.about-card:hover { border-color: color-mix(in oklab, var(--primary) 40%, transparent); }
.about-card .ic { height: 2.75rem; width: 2.75rem; border-radius: 1rem; background: var(--gradient-aqua); display: grid; place-items: center; box-shadow: var(--shadow-aqua); }
.about-card .ic svg { height: 1.25rem; width: 1.25rem; color: var(--primary-foreground); }
.about-card h3 { margin-top: 1rem; font-weight: 700; font-size: 1.125rem; }
.about-card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--foreground); opacity: 0.7; }

.flyer-img { width: 100%; border-radius: 1.5rem; border: 1px solid rgb(255 255 255 / 0.12); box-shadow: var(--shadow-soft); }

.task-row { display: flex; align-items: center; gap: 1rem; border-radius: 1rem; padding: 1.25rem; }
.task-row .ic { height: 2.5rem; width: 2.5rem; border-radius: 0.75rem; background: color-mix(in oklab, var(--primary) 20%, transparent); display: grid; place-items: center; flex-shrink: 0; }
.task-row .ic svg { height: 1.25rem; width: 1.25rem; color: var(--primary); }
.task-row h4 { font-weight: 700; font-size: 0.875rem; }
.task-row p { font-size: 0.75rem; color: var(--foreground); opacity: 0.65; margin-top: 0.125rem; }

/* ── Packages ── */
.package { position: relative; border-radius: 1.5rem; padding: 1.75rem 2rem; display: flex; flex-direction: column; }
.package.popular { border-color: color-mix(in oklab, var(--primary) 50%, transparent); box-shadow: var(--shadow-aqua); }
.package .flag { position: absolute; top: -0.75rem; right: 1.5rem; border-radius: 999px; background: var(--gradient-aqua); padding: 0.25rem 0.75rem; font-size: 0.625rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary-foreground); }
.package h3 { font-size: 1.25rem; font-weight: 800; }
.package .tagline { margin-top: 0.25rem; font-size: 0.875rem; color: var(--foreground); opacity: 0.65; }
.package .price-row { margin-top: 1.25rem; display: flex; align-items: flex-end; gap: 0.75rem; }
.package .price { font-size: 2.25rem; font-weight: 800; }
.package .daily { margin-top: 0.25rem; font-size: 0.75rem; font-weight: 600; color: var(--primary); }
.package ul { margin-top: 1.5rem; flex: 1; list-style: none; display: grid; gap: 0.75rem; }
.package li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--foreground); opacity: 0.85; }
.package li .check { margin-top: 0.125rem; height: 1.25rem; width: 1.25rem; border-radius: 999px; background: var(--gradient-aqua); display: grid; place-items: center; flex-shrink: 0; }
.package li .check svg { height: 0.75rem; width: 0.75rem; color: var(--primary-foreground); }
.package .btn { margin-top: 2rem; }

/* ── Steps ── */
.step { border-radius: 1.5rem; padding: 1.5rem; height: 100%; }
.step .num { font-size: 2.25rem; font-weight: 800; color: var(--primary); opacity: 0.4; }
.step h3 { margin-top: 0.75rem; font-weight: 700; font-size: 1.125rem; }
.step p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--foreground); opacity: 0.7; }

/* ── Testimonials ── */
.testimonial { border-radius: 1.5rem; padding: 1.5rem; display: flex; flex-direction: column; height: 100%; }
.testimonial .stars { display: flex; gap: 0.25rem; color: var(--primary); }
.testimonial .stars svg { height: 1rem; width: 1rem; fill: currentColor; }
.testimonial blockquote { margin-top: 1rem; flex: 1; font-size: 0.875rem; color: var(--foreground); opacity: 0.8; }
.testimonial figcaption { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.testimonial .avatar { height: 2.25rem; width: 2.25rem; border-radius: 999px; background: var(--gradient-aqua); display: grid; place-items: center; color: var(--primary-foreground); font-size: 0.75rem; font-weight: 800; }
.testimonial figcaption b { font-size: 0.875rem; }
.testimonial figcaption span { font-size: 0.75rem; color: var(--foreground); opacity: 0.6; }

/* ── CTA banner ── */
.cta-banner { position: relative; overflow: hidden; border-radius: 2.5rem; padding: 2.5rem 3.5rem; text-align: center; }
.cta-banner .orb { position: absolute; top: -6rem; right: -4rem; height: 18rem; width: 18rem; border-radius: 999px; background: var(--primary); opacity: 0.3; filter: blur(3rem); }
.cta-banner h2 { position: relative; font-size: 1.875rem; font-weight: 800; letter-spacing: -0.02em; }
.cta-banner p { position: relative; margin-top: 1rem; color: var(--foreground); opacity: 0.75; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-banner .btns { position: relative; margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* ── Footer ── */
.footer { border-top: 1px solid rgb(255 255 255 / 0.1); padding: 3rem 0; }
.footer .grid { display: grid; gap: 2rem; }
.footer p.desc { margin-top: 1rem; font-size: 0.875rem; color: var(--foreground); opacity: 0.65; max-width: 24rem; }
.footer h4 { font-size: 0.875rem; font-weight: 700; }
.footer ul { margin-top: 0.75rem; list-style: none; display: grid; gap: 0.5rem; font-size: 0.875rem; color: var(--foreground); opacity: 0.65; }
.footer a:hover { color: var(--primary); opacity: 1; }
.footer .copy { margin-top: 2.5rem; text-align: center; font-size: 0.75rem; color: var(--foreground); opacity: 0.45; }

/* ── App pages (dashboard/tasks/withdraw) ── */
.app { position: relative; min-height: 100vh; background: var(--background); color: var(--foreground); padding-bottom: 6rem; }
.app .bg { position: absolute; inset: 0; background: var(--gradient-hero); opacity: 0.4; z-index: -1; }
.app-body { max-width: 32rem; margin: 0 auto; padding: 2rem 1.25rem 0; }

.app-top { display: flex; align-items: center; gap: 0.75rem; }
.app-top h1 { font-size: 1.5rem; font-weight: 800; }
.app-top .sub { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--primary); font-weight: 700; }
.back-btn { height: 2.5rem; width: 2.5rem; border-radius: 1rem; display: grid; place-items: center; }
.back-btn:hover { color: var(--primary); }

.user-head { display: flex; align-items: center; justify-content: space-between; }
.user-head .who { display: flex; align-items: center; gap: 0.75rem; }
.user-head .av { position: relative; height: 2.75rem; width: 2.75rem; border-radius: 999px; background: var(--gradient-aqua); padding: 2px; box-shadow: var(--shadow-aqua); }
.user-head .av > div { height: 100%; width: 100%; border-radius: 999px; background: var(--background); display: grid; place-items: center; font-weight: 800; color: var(--primary); }
.user-head .small { font-size: 0.6875rem; color: var(--foreground); opacity: 0.6; }
.user-head .name { font-size: 0.875rem; font-weight: 700; line-height: 1.2; }

/* ── Progress card (tasks) ── */
.progress-card { border-radius: 1.5rem; background: var(--gradient-aqua); padding: 1.25rem; box-shadow: var(--shadow-aqua); color: var(--aqua-foreground); position: relative; overflow: hidden; }
.progress-card::after { content: ""; position: absolute; right: 0; top: 0; height: 8rem; width: 8rem; border-radius: 999px; background: rgb(255 255 255 / 0.15); filter: blur(3rem); }
.progress-card .rel { position: relative; }
.progress-card .bar { position: relative; margin-top: 1rem; height: 0.5rem; border-radius: 999px; background: rgb(255 255 255 / 0.25); overflow: hidden; }
.progress-card .bar > div { height: 100%; background: rgb(255 255 255 / 0.7); border-radius: 999px; transition: width 0.4s; }

/* ── Task card (bobby-new standalone card) ── */
.task-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 22px;
  background: var(--gradient-aqua);
  box-shadow: var(--shadow-aqua);
  cursor: pointer;
  text-align: left;
  transition: transform 0.25s;
}
.task-card:hover { transform: translateY(-2px); }
.task-card .task-ic {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: var(--aqua-foreground);
}
.task-card .task-ic svg { width: 22px; height: 22px; }
.task-card .task-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.task-card .task-info b { font-size: 15px; font-weight: 700; color: var(--aqua-foreground); line-height: 1.3; }
.task-card .task-info .desc { font-size: 12.5px; line-height: 1.5; color: var(--aqua-foreground); opacity: 0.8; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.task-card .task-status { align-self: flex-start; }
.task-card .task-status span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--aqua-foreground);
  opacity: 0.9;
}
.task-card .task-reward {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 700;
  color: var(--aqua-foreground);
  white-space: nowrap;
}
.task-card .task-reward.done { background: rgba(255, 255, 255, 0.24); }
.task-card .task-reward .start-hint { display: block; font-size: 10px; font-weight: 600; opacity: 0.75; letter-spacing: 0.04em; }

/* Featured task cards (₦50,000 / ₦5,000) */
.task-card.featured { padding: 22px; border-radius: 26px; }
.task-card.featured .task-ic { width: 56px; height: 56px; border-radius: 16px; }
.task-card.featured .task-ic svg { width: 26px; height: 26px; }
.task-card.featured .task-info b { font-size: 16px; }
.task-card.featured .task-info .desc {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}
.task-card.featured .task-status span { font-size: 13px; font-weight: 700; }
.task-card.featured .task-reward { padding: 8px 12px; font-size: 13px; font-weight: 700; }
.task-card.featured .task-reward .start-hint { font-size: 10px; }

/* ── Admin ── */
.admin-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid rgb(255 255 255 / 0.1); background: color-mix(in oklab, var(--background) 80%, transparent); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.admin-header .inner { max-width: 56rem; margin: 0 auto; padding: 0 1.25rem; height: 4rem; display: flex; align-items: center; justify-content: space-between; }
.admin-header .brand { display: flex; align-items: center; gap: 0.5rem; }
.admin-header .brand img { height: 2rem; }
.admin-header .brand span { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.12em; }
.admin-header .signout { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; font-weight: 600; color: var(--foreground); opacity: 0.7; }
.admin-header .signout:hover { color: oklch(75% 0.15 25); }
.admin-header .signout svg { height: 1rem; width: 1rem; }
.admin-body { max-width: 56rem; margin: 0 auto; padding: 2rem 1.25rem; display: grid; gap: 1.5rem; }
.admin-tabs { display: flex; gap: 0.5rem; }
.admin-tabs button { border-radius: 999px; padding: 0.6rem 1.25rem; font-size: 0.875rem; font-weight: 700; text-transform: capitalize; transition: background 0.2s; }
.admin-tabs button.active { background: var(--gradient-aqua); color: var(--primary-foreground); box-shadow: var(--shadow-aqua); }
.admin-tabs button:not(.active) { color: var(--foreground); opacity: 0.75; }
.admin-tabs button:not(.active):hover { opacity: 1; }
.admin-card { border-radius: 1.5rem; box-shadow: var(--shadow-elegant); padding: 1.5rem; }
.admin-card .hd { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.admin-card .hd .ic { height: 2.25rem; width: 2.25rem; border-radius: 0.75rem; background: color-mix(in oklab, var(--primary) 15%, transparent); color: var(--primary); display: grid; place-items: center; }
.admin-card .hd .ic svg { height: 1rem; width: 1rem; }
.admin-card .hd h2 { font-size: 1.125rem; font-weight: 800; }
.admin-user { border-radius: 1rem; border: 1px solid rgb(255 255 255 / 0.12); background: rgb(255 255 255 / 0.03); padding: 1rem; }
.admin-user .top { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }
.admin-user .nm { font-weight: 700; font-size: 0.875rem; }
.admin-user .nm .un { color: var(--foreground); opacity: 0.5; font-weight: 500; }
.admin-user .meta { font-size: 0.75rem; color: var(--foreground); opacity: 0.65; margin-top: 0.25rem; }
.admin-user .meta2 { font-size: 0.75rem; color: var(--foreground); opacity: 0.5; margin-top: 0.25rem; }
.admin-user .actions { display: flex; align-items: center; gap: 0.5rem; }
.admin-user .del { height: 2rem; width: 2rem; border-radius: 999px; border: 1px solid oklch(65% 0.22 25 / 0.3); color: oklch(75% 0.15 25); display: grid; place-items: center; }
.admin-user .del:hover { background: oklch(65% 0.22 25 / 0.1); }
.admin-user .del svg { height: 0.875rem; width: 0.875rem; }
.settings-grid { display: grid; gap: 1rem; }
.settings-grid.cols { grid-template-columns: 1fr; }
.settings-actions { display: flex; justify-content: flex-end; margin-top: 1rem; }

/* ── Payment page ── */
.pay-bank-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; border-radius: 0.75rem; border: 1px solid rgb(255 255 255 / 0.12); background: rgb(255 255 255 / 0.03); padding: 0.75rem 1rem; }
.pay-bank-row .lbl { font-size: 0.625rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--foreground); opacity: 0.55; }
.pay-bank-row .val { margin-top: 0.125rem; font-size: 0.875rem; font-weight: 700; word-break: break-all; }
.pay-copy { flex-shrink: 0; border-radius: 999px; border: 1px solid color-mix(in oklab, var(--primary) 50%, transparent); background: color-mix(in oklab, var(--primary) 10%, transparent); padding: 0.375rem 0.75rem; font-size: 0.6875rem; font-weight: 700; }
.pay-copy:hover { background: color-mix(in oklab, var(--primary) 20%, transparent); }
.pay-pkg { width: 100%; text-align: left; border-radius: 1rem; border: 1px solid rgb(255 255 255 / 0.12); background: rgb(255 255 255 / 0.03); padding: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; transition: border-color 0.2s; }
.pay-pkg:hover { border-color: color-mix(in oklab, var(--primary) 40%, transparent); }
.pay-pkg.active { border-color: var(--primary); background: color-mix(in oklab, var(--primary) 15%, transparent); box-shadow: var(--shadow-aqua); }
.pay-pkg b { display: block; font-size: 0.875rem; }
.pay-pkg .tg { display: block; font-size: 0.6875rem; color: var(--foreground); opacity: 0.6; margin-top: 0.125rem; }
.pay-pkg .pr { font-size: 1rem; font-weight: 800; flex-shrink: 0; }

/* ── Admin login / auth card ── */
.auth-card { width: 100%; max-width: 28rem; margin: 0 auto; }
.center-screen { min-height: 100vh; display: grid; place-items: center; padding: 0 1.25rem; }

/* ── Dropdown menu ── */
.menu { position: absolute; top: 3rem; right: 0; z-index: 40; min-width: 10rem; border-radius: 1rem; box-shadow: var(--shadow-elegant); padding: 0.25rem 0; font-size: 0.875rem; }
.menu a, .menu button { display: block; width: 100%; text-align: left; padding: 0.625rem 1rem; }
.menu a:hover, .menu button:hover { background: rgb(255 255 255 / 0.05); }
.menu .danger { color: oklch(75% 0.15 25); }

/* ── Modal / gate ── */
.gate { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; background: color-mix(in oklab, var(--background) 85%, transparent); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); padding: 0 1.5rem; }
.gate .box { width: 100%; max-width: 24rem; border-radius: 1.5rem; background: var(--background); border: 1px solid rgb(255 255 255 / 0.15); box-shadow: var(--shadow-elegant); padding: 1.75rem; text-align: center; }
.gate .big { margin: 0 auto; height: 3.5rem; width: 3.5rem; border-radius: 1rem; background: var(--gradient-aqua); display: grid; place-items: center; box-shadow: var(--shadow-aqua); font-size: 1.5rem; font-weight: 800; color: var(--primary-foreground); }
.gate h2 { margin-top: 1rem; font-size: 1.25rem; font-weight: 800; }
.gate p { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--foreground); opacity: 0.8; }
.gate .btn { margin-top: 1.5rem; }
.gate .ghost { margin-top: 0.75rem; width: 100%; border-radius: 999px; border: 1px solid rgb(255 255 255 / 0.15); padding: 0.75rem; font-size: 0.75rem; font-weight: 600; color: var(--foreground); opacity: 0.7; }

/* ── Receipt ── */
.receipt-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.receipt-row .k { color: var(--foreground); opacity: 0.6; }
.receipt-row .v { text-align: right; font-weight: 600; }
.receipt-row .v.hl { color: var(--primary); }
.receipt-divider { border-top: 1px dashed rgb(255 255 255 / 0.15); margin-top: 1.5rem; padding-top: 1.25rem; display: grid; gap: 0.75rem; font-size: 0.875rem; }

/* ── Reveal animations ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.22,0.61,0.36,1), transform 0.7s cubic-bezier(0.22,0.61,0.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── Music library cards ── */
.music-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  padding: 12px 14px;
}
.music-card .music-cover {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gradient-aqua);
  display: grid;
  place-items: center;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-aqua);
  overflow: hidden;
}
.music-card .music-cover img { width: 100%; height: 100%; object-fit: cover; }
.music-card .music-cover.fallback { background: var(--gradient-aqua); }
.music-card .music-info { flex: 1; min-width: 0; }
.music-card .music-info b { display: block; font-size: 14px; font-weight: 700; }
.music-card .music-info span { display: block; font-size: 12px; color: var(--foreground); opacity: 0.6; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.music-play {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: var(--gradient-aqua);
  color: var(--primary-foreground);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  box-shadow: var(--shadow-aqua);
  transition: transform 0.2s;
}
.music-play:hover { transform: scale(1.03); }
.music-play.played {
  background: rgb(255 255 255 / 0.1);
  color: var(--foreground);
  opacity: 0.45;
  box-shadow: none;
  filter: blur(0.4px);
  cursor: not-allowed;
}
.music-play.played:hover { transform: none; }

/* ── Withdraw status card ── */
.withdraw-card {
  border-radius: 1.5rem;
  padding: 1.5rem;
  background: var(--gradient-surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elegant);
  position: relative;
  overflow: hidden;
}
.withdraw-card::after {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  height: 12rem;
  width: 12rem;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0.15;
  filter: blur(3rem);
}
.wd-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 0.375rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: oklch(80% 0.13 80 / 0.15);
  color: oklch(85% 0.12 80);
  border: 1px solid oklch(80% 0.13 80 / 0.3);
}
.wd-status.unlocked {
  background: oklch(80% 0.15 160 / 0.15);
  color: oklch(85% 0.13 160);
  border-color: oklch(80% 0.15 160 / 0.3);
}
.wd-bar {
  margin-top: 0.5rem;
  height: 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  overflow: hidden;
}
.wd-bar > div {
  height: 100%;
  border-radius: 999px;
  background: var(--gradient-aqua);
  transition: width 0.4s;
}

/* ── Withdraw Now blurred state ── */
#withdrawBtn.blurred {
  background: rgb(255 255 255 / 0.1);
  color: var(--foreground);
  opacity: 0.5;
  filter: blur(0.4px);
  box-shadow: none;
  cursor: not-allowed;
}

/* ── Withdraw limit modal ── */
#withdrawGate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--background) 85%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0 1.5rem;
}
#withdrawGate.active { display: flex; }
#activateGate {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: none;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--background) 85%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0 1.5rem;
}
#activateGate.active { display: flex; }
#accountGate {
  position: fixed;
  inset: 0;
  z-index: 102;
  display: none;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--background) 85%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0 1.5rem;
}
#accountGate.active { display: flex; }
.gate-box {
  width: 100%;
  max-width: 24rem;
  border-radius: 1.5rem;
  background: var(--background);
  border: 1px solid rgb(255 255 255 / 0.15);
  box-shadow: var(--shadow-elegant);
  padding: 1.75rem;
  text-align: center;
}
.gate-ic {
  margin: 0 auto;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 1rem;
  background: var(--gradient-aqua);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-aqua);
  color: var(--primary-foreground);
}
.gate-box h3 { margin-top: 1rem; font-size: 1.25rem; font-weight: 800; }
.gate-box p { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--foreground); opacity: 0.8; }
.gate-box p b { color: var(--primary); }
.gate-box button {
  margin-top: 1.5rem;
  width: 100%;
  border-radius: 999px;
  background: var(--gradient-aqua);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.875rem;
  box-shadow: var(--shadow-aqua);
}

/* ── All tasks done modal ── */
#doneModal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--background) 85%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0 1.5rem;
}
#doneModal.active { display: flex; }
.done-box {
  width: 100%;
  max-width: 24rem;
  border-radius: 1.5rem;
  background: var(--background);
  border: 1px solid rgb(255 255 255 / 0.15);
  box-shadow: var(--shadow-elegant);
  padding: 1.75rem;
  text-align: center;
}
.done-ic {
  margin: 0 auto;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  background: var(--gradient-aqua);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-aqua);
  color: var(--primary-foreground);
}
.done-box h3 { margin-top: 1rem; font-size: 1.25rem; font-weight: 800; }
.done-box p { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--foreground); opacity: 0.8; }
.done-box button {
  margin-top: 0.75rem;
  width: 100%;
  border-radius: 999px;
  padding: 0.875rem;
  font-weight: 700;
  font-size: 0.875rem;
}
#doneOk { background: rgb(255 255 255 / 0.08); border: 1px solid var(--border); color: var(--foreground); }
#doneActivate { background: var(--gradient-aqua); color: var(--primary-foreground); box-shadow: var(--shadow-aqua); }

/* ── Package picker cards ── */
.picker-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgb(255 255 255 / 0.04);
  padding: 16px 18px;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}
.picker-card:hover {
  border-color: color-mix(in oklab, var(--primary) 45%, transparent);
  background: color-mix(in oklab, var(--primary) 8%, transparent);
}
.picker-card .pk-name { font-weight: 700; font-size: 15px; }
.picker-card .pk-price { font-weight: 800; font-size: 16px; color: var(--primary); white-space: nowrap; }

/* ── Task modal (bobby-new full screen) ── */
#taskModal {
  position: fixed;
  inset: 0;
  background: var(--background);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 99999;
}
#taskModal.active { display: flex; }
.tm-inner {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  background: var(--gradient-surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elegant);
  text-align: center;
  padding: 26px 26px 34px;
  position: relative;
  overflow: hidden;
}
.tm-inner::after {
  content: "";
  position: absolute;
  top: -6rem;
  right: -6rem;
  height: 14rem;
  width: 14rem;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0.18;
  filter: blur(3rem);
  pointer-events: none;
}
.tm-top { display: flex; align-items: center; justify-content: space-between; position: relative; }
.tm-top button {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--foreground);
  background: rgb(255 255 255 / 0.06);
  border: 1px solid var(--border);
}
.tm-top button svg { height: 1.25rem; width: 1.25rem; }
.tm-signal { display: flex; align-items: center; gap: 8px; color: var(--foreground); opacity: 0.8; font-size: 13px; font-weight: 600; }
.tm-signal svg { height: 1.1rem; width: 1.1rem; color: var(--primary); }
.tm-avatar {
  margin: 30px auto 0;
  height: 84px;
  width: 84px;
  border-radius: 50%;
  background: var(--gradient-aqua);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-aqua);
  position: relative;
}
.tm-avatar svg { height: 2.25rem; width: 2.25rem; color: var(--primary-foreground); }
.tm-inner h2 { margin-top: 20px; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.tm-inner p#tmState { margin-top: 6px; font-size: 13px; color: var(--foreground); opacity: 0.6; }
.tm-timer {
  margin-top: 18px;
  font-size: 40px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--foreground);
}

/* Music player view */
.tm-art {
  margin: 26px auto 0;
  height: 132px;
  width: 132px;
  border-radius: 28px;
  background: var(--gradient-aqua);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-aqua);
  position: relative;
}
.tm-art::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 40px;
  background: var(--primary);
  opacity: 0.18;
  filter: blur(2.5rem);
  z-index: -1;
}
.tm-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; }
.tm-art.fallback { display: grid; }
.tm-art svg { height: 3rem; width: 3rem; color: var(--primary-foreground); }
#tmMusicView h2 { margin-top: 22px; font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }
#tmMusicView #tmArtist { margin-top: 4px; font-size: 13px; color: var(--foreground); opacity: 0.6; }
.tm-progress { margin-top: 24px; height: 5px; border-radius: 999px; background: rgb(255 255 255 / 0.12); overflow: hidden; }
.tm-progress-bar { height: 100%; width: 0%; background: var(--gradient-aqua); border-radius: 999px; transition: width 0.2s linear; }
.tm-time-row { margin-top: 8px; display: flex; justify-content: space-between; font-size: 11px; color: var(--foreground); opacity: 0.55; font-variant-numeric: tabular-nums; }
.tm-play {
  margin: 22px auto 0;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: var(--gradient-aqua);
  color: var(--primary-foreground);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-aqua);
  transition: transform 0.2s;
}
.tm-play:hover { transform: scale(1.05); }
.tm-play svg { height: 1.5rem; width: 1.5rem; }
.tm-earn {
  margin: 18px auto 0;
  max-width: 220px;
  border-radius: 16px;
  background: rgb(255 255 255 / 0.05);
  border: 1px solid var(--border);
  padding: 14px 20px;
}
.tm-earn span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--foreground); opacity: 0.55; }
.tm-earn strong { display: block; margin-top: 6px; font-size: 22px; font-weight: 800; color: var(--primary); }
.tm-actions { margin-top: 28px; display: flex; justify-content: center; gap: 12px; }
.tm-end {
  min-width: 140px;
  border-radius: 999px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  background: var(--destructive);
  color: var(--destructive-foreground);
  box-shadow: 0 10px 26px oklch(65% 0.22 25 / 0.4);
}
.tm-end.done { background: var(--gradient-aqua); color: var(--primary-foreground); box-shadow: var(--shadow-aqua); }

/* ── Responsive ── */
@media (min-width: 1024px) {
  .landing-nav { display: flex; }
  .landing-header .signin { display: inline-flex; }
  .landing-header .burger { display: none; }
  .landing-header .wrap { height: 5rem; }
  .hero { padding: 9rem 0 7rem; }
  .hero h1 { font-size: 3.75rem; }
  .hero .grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .sec { padding: 7rem 0; }
  .sec-title h2 { font-size: 2.25rem; }
  .settings-grid.cols { grid-template-columns: 1fr 1fr; }
  .footer .grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 640px) {
  .grid-2-early { grid-template-columns: repeat(2, 1fr); }
  .hero .stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 2.25rem; }
  .wrap, .wrap-md, .wrap-lg { padding-left: 1.25rem; padding-right: 1.25rem; }
  .package { padding: 1.5rem; }
  .cta-banner { padding: 2rem 1.5rem; }
}

/* Hide scrollbars for decorative, keep page scrollable */
body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-thumb { background: rgb(255 255 255 / 0.12); border-radius: 999px; }
