:root {
  --yellow: #ffdd00;
  --yellow-soft: #ffea5c;
  --black: #0a0a0a;
  --text: #101010;
  --muted: #6b7280;
  --border: #eef2f7;
  --bg: #ffffff;
  --bg-soft: #f9f9f9;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font: "Plus Jakarta Sans", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.brand-mark svg {
  width: 18px;
  height: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: #4b5563;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #111827;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu[open] summary {
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.nav-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  min-width: 360px;
  z-index: 20;
}

.nav-menu-panel a {
  text-decoration: none;
  font-size: 0.85rem;
  color: #475569;
  font-weight: 600;
}

.nav-menu-panel a:hover {
  color: #111827;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: var(--font);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 16px 30px rgba(255, 221, 0, 0.35);
}

.btn.primary:hover {
  background: var(--yellow-soft);
  transform: translateY(-2px);
}

.btn.dark {
  background: var(--black);
  color: white;
}

.btn.dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 221, 0, 0.18), transparent 60%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 12px 0 18px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fffce1;
  border: 1px solid #fef3c7;
  font-size: 0.8rem;
  font-weight: 700;
  color: #a16207;
}

.highlight {
  position: relative;
  display: inline-block;
}

.highlight svg {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 12px;
  color: var(--yellow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.url-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: #9ca3af;
}

.url-input input {
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  background: transparent;
}

.hero-trust {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
}

.trust-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-pills span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f8fafc;
  font-weight: 600;
  font-size: 0.75rem;
  color: #374151;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.stat-card.highlight-card {
  background: var(--yellow);
  border-color: transparent;
}

.stat-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fffce1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1f2937;
}

.stat-label {
  margin: 0 0 4px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.stat-value {
  margin: 0;
  font-weight: 700;
}

.stat-value span {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--muted);
}

.stat-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-head.center {
  text-align: center;
  margin: 0 auto 50px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 10px;
}

.eyebrow.accent {
  background: rgba(255, 221, 0, 0.2);
  border: 1px solid rgba(255, 221, 0, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
  color: #a16207;
}

.eyebrow.dark {
  background: #111827;
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
}

.pill-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #111827;
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 12px;
  font-weight: 800;
  line-height: 1.1;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
}

.highlight-block {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight-block::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  height: 14px;
  width: 100%;
  background: rgba(255, 221, 0, 0.35);
  z-index: -1;
  border-radius: 4px;
}

.how {
  background: #ffffff;
  position: relative;
}

.how::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.25;
  pointer-events: none;
}

.how .container {
  position: relative;
  z-index: 1;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}

.steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step-dot {
  position: relative;
  margin: 0 auto 18px;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
}

.step-dot svg {
  width: 32px;
  height: 32px;
}

.step-dot span {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--black);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
}

.step-yellow {
  background: #fef9c3;
  color: #b45309;
}

.step-blue {
  background: #e0f2fe;
  color: #2563eb;
}

.step-green {
  background: #dcfce7;
  color: #16a34a;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.support {
  background: var(--bg-soft);
}

.underline {
  position: relative;
  display: inline-block;
}

.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: var(--yellow);
  border-radius: 999px;
}

.support-stage {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 30px 0 10px;
}

.support-ui {
  position: relative;
  width: min(560px, 100%);
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.support-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.support-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  padding: 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.coffee-pill {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.coffee-pill svg {
  width: 16px;
  height: 16px;
}

.support-message {
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 18px;
  color: #4b5563;
  font-weight: 500;
}

.support-tiers button.active {
  background: var(--yellow);
  border-color: transparent;
}

.reaction {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
}

.reaction svg {
  width: 22px;
  height: 22px;
}

.float-a {
  top: 0;
  left: 22%;
  animation: float-y 4s ease-in-out infinite;
}

.float-b {
  top: 20px;
  right: 18%;
  color: #f59e0b;
  animation: float-y 5s ease-in-out infinite;
}

.support-bubble {
  position: absolute;
  max-width: 240px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.support-bubble strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.support-bubble span {
  color: var(--muted);
  font-size: 0.75rem;
}

.bubble-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.bubble-avatar svg {
  width: 18px;
  height: 18px;
}

.bubble-left {
  left: 6%;
  top: 90px;
  animation: float-y 6s ease-in-out infinite;
}

.bubble-right {
  right: 4%;
  top: 180px;
  animation: float-y 6.5s ease-in-out infinite;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
}

.support-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.support-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-head h3 {
  margin: 0;
}

.support-head p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

.support-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  border-radius: 20px;
  padding: 14px 16px;
  border: 1px solid #eef2f7;
  margin-bottom: 18px;
  font-weight: 700;
}

.support-tiers {
  display: flex;
  gap: 8px;
}

.support-tiers button {
  border: 1px solid #e2e8f0;
  background: white;
  border-radius: 12px;
  padding: 6px 10px;
  font-weight: 700;
}

.supporters {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
}

.supporter {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.note {
  margin-left: auto;
  font-style: italic;
  color: #374151;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
  display: grid;
  gap: 12px;
}

.feature-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
}

.highlight-card {
  background: var(--yellow);
  border-color: transparent;
}

.highlight-card p {
  color: #1f2937;
}

.link {
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
}

.shop {
  background: #ffffff;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.shop-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 14px;
}

.shop-illustration {
  border-radius: 20px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.shop-illustration.yellow {
  background: var(--yellow);
}

.shop-illustration.gray {
  background: #f3f4f6;
}

.doc-icon {
  width: 84px;
  height: 110px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1f2937;
  border: 2px solid rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.file-pill {
  position: absolute;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.file-pill.small {
  font-size: 0.65rem;
  padding: 4px 8px;
}

.file-pill.pdf {
  top: 16px;
  left: 18px;
  background: #fef3c7;
  color: #92400e;
  animation: float-y 5.5s ease-in-out infinite;
}

.file-pill.zip {
  top: 16px;
  right: 16px;
  background: #e0f2fe;
  color: #0369a1;
  animation: float-y 6.5s ease-in-out infinite;
}

.file-pill.doc {
  bottom: 28px;
  right: 26px;
  background: #e0e7ff;
  color: #4338ca;
  animation: float-y 4.8s ease-in-out infinite;
}

.file-pill.psd {
  top: 22px;
  right: 86px;
  background: #ede9fe;
  color: #6d28d9;
  animation: float-y 6.2s ease-in-out infinite;
}

.file-pill.mp3 {
  bottom: 30px;
  left: 20px;
  background: #d1fae5;
  color: #047857;
  animation: float-y 5.1s ease-in-out infinite;
}

.file-pill.apk {
  top: 86px;
  right: 18px;
  background: #dcfce7;
  color: #166534;
  animation: float-y 6.4s ease-in-out infinite;
}

.file-pill.mp4 {
  top: 86px;
  left: 18px;
  background: #ffe4e6;
  color: #be123c;
  animation: float-y 5.9s ease-in-out infinite;
}

.file-pill.ai {
  bottom: 78px;
  right: 56px;
  background: #ffedd5;
  color: #9a3412;
  animation: float-y 6.9s ease-in-out infinite;
}

.shop-chip {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.video-card {
  width: min(300px, 100%);
  background: white;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.video-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.video-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background: #ef4444;
}

.dot.yellow {
  background: #f59e0b;
}

.dot.green {
  background: #22c55e;
}

.video-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 14px;
}

.video-pill {
  background: #e5e7eb;
  color: #4b5563;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.video-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #ef4444;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-footer {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.shop-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.courses {
  background: #ffffff;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.course-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 14px;
}

.course-thumb {
  border-radius: 20px;
  min-height: 170px;
  background: #fef9c3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.course-thumb.light {
  background: #f3f4f6;
}

.course-play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

.course-play svg {
  width: 22px;
  height: 22px;
}

.course-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: white;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.lesson-list {
  width: 80%;
  display: grid;
  gap: 10px;
}

.lesson-line {
  height: 10px;
  background: white;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.1);
}

.courses-footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mini-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.content-section {
  background: #ffffff;
}

.content-head {
  max-width: 820px;
}

.content-pill-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffe6e0;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.content-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.content-feature {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  min-height: 360px;
}

.content-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
  color: white;
}

.feature-tag {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-overlay h3 {
  margin: 0;
  font-size: 1.6rem;
  max-width: 420px;
}

.feature-meta {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.content-side {
  display: grid;
  gap: 18px;
}

.content-panel {
  background: white;
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 16px;
}

.content-panel.premium {
  border-color: rgba(239, 68, 68, 0.25);
}

.panel-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
}

.panel-head h4 {
  margin: 0 0 6px;
}

.panel-head p {
  margin: 0;
  color: var(--muted);
}

.panel-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #111827;
}

.panel-icon svg {
  width: 20px;
  height: 20px;
}

.panel-icon.lock {
  background: #ffe4e6;
  color: #ef4444;
}

.panel-icon.note {
  background: #e0f2fe;
  color: #2563eb;
}

.panel-badge {
  background: #111827;
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.panel-preview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 120px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-preview .blurred {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d1d5db, #f3f4f6);
  filter: blur(2px);
  opacity: 0.9;
}

.panel-preview .btn {
  position: relative;
  z-index: 1;
}

.panel-footer {
  font-size: 0.85rem;
  color: var(--muted);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pillar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}

.callout {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 22px;
}

.bangladesh {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.bangla-skyline {
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 221, 0, 0.08));
  opacity: 0.9;
}

.bangla-skyline::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 0%, rgba(255, 221, 0, 0.12) 12%, transparent 24%),
    linear-gradient(90deg, transparent 0%, rgba(255, 221, 0, 0.1) 18%, transparent 36%),
    linear-gradient(90deg, transparent 0%, rgba(255, 221, 0, 0.08) 20%, transparent 40%);
  background-size: 220px 100%, 320px 100%, 420px 100%;
  background-position: 0 30px, 60px 40px, 140px 20px;
  opacity: 0.35;
}

.benefit-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.benefit-card h4 {
  margin: 0 0 6px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-icon.yellow {
  background: #fef3c7;
  color: #b45309;
}

.benefit-icon.orange {
  background: #ffedd5;
  color: #ea580c;
}

.benefit-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.float-card {
  animation: float-y 6s ease-in-out infinite;
}

.lift {
  animation: lift 6.5s ease-in-out infinite;
}

.phone-shell {
  width: min(340px, 100%);
  background: #0f0f0f;
  border-radius: 36px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-notch {
  width: 120px;
  height: 16px;
  background: #000;
  border-radius: 999px;
  margin: 0 auto 14px;
}

.phone-shell .phone-screen {
  background: #111111;
  border-radius: 24px;
  padding: 20px;
  color: white;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.phone-balance span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.phone-balance strong {
  font-size: 1.6rem;
}

.phone-actions {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}

.phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
}

.phone-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.btn.small {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.phone-activity {
  display: grid;
  gap: 10px;
}

.phone-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  align-items: center;
}

.phone-row strong {
  display: block;
  margin-bottom: 4px;
}

.phone-row span {
  color: rgba(255, 255, 255, 0.7);
}

.phone-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
}

.phone-icon.pink {
  background: rgba(236, 72, 153, 0.2);
}

.phone-icon.green {
  background: rgba(34, 197, 94, 0.2);
}

.phone-icon.gray {
  background: rgba(148, 163, 184, 0.2);
}

.floating-card {
  position: absolute;
  right: -40px;
  bottom: 30px;
  width: 180px;
  height: 110px;
  background: #f8fafc;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  transform: rotate(-8deg);
}

.card-chip {
  width: 36px;
  height: 24px;
  border-radius: 6px;
  background: #fef3c7;
  border: 1px solid #facc15;
}

.card-line {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
}

.card-logo {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111827;
}

.card-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ef4444;
  align-self: flex-end;
}

.compare-dark {
  background: var(--black);
  color: white;
  position: relative;
  overflow: hidden;
}

.compare-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(255, 221, 0, 0.08), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(255, 221, 0, 0.06), transparent 50%);
  pointer-events: none;
}

.section-head.light h2,
.section-head.light p {
  color: white;
}

.section-head.light p {
  color: rgba(255, 255, 255, 0.7);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 34px 0 30px;
  position: relative;
  z-index: 1;
}

.compare-panel {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.compare-panel h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.compare-sub {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.compare-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row strong {
  display: block;
  margin-bottom: 6px;
}

.compare-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.compare-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-icon svg {
  width: 18px;
  height: 18px;
}

.compare-icon.red {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.compare-icon.yellow {
  background: rgba(255, 221, 0, 0.2);
  color: var(--yellow);
}

.highlight-panel {
  background: rgba(255, 221, 0, 0.08);
  border-color: rgba(255, 221, 0, 0.35);
}

.compare-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #f8fafc;
  padding: 6px 16px;
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1rem;
  padding: 14px 0;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  color: var(--muted);
  padding-bottom: 0;
}

.faq-item.open .faq-panel {
  max-height: 120px;
  padding-bottom: 12px;
}

.faq-cta {
  text-align: center;
  margin-top: 20px;
}

.cta {
  background: var(--yellow);
  padding: 70px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.footer {
  background: var(--black);
  color: white;
  padding: 70px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.footer-top p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer .brand {
  color: #ffffff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer-links h4 {
  margin-bottom: 12px;
}

.footer-links a,
.footer-links span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.page-hero {
  padding: 90px 0 40px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 10px 0 12px;
}

.page-hero p {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 20px;
}

.page-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.login-section {
  background: radial-gradient(circle at top right, rgba(255, 221, 0, 0.15), transparent 55%);
}

.login-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.login-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 12px;
}

.login-copy p {
  color: var(--muted);
  max-width: 420px;
}

.login-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.login-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.point-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fef3c7;
  color: #b45309;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.point-icon svg {
  width: 20px;
  height: 20px;
}

.login-point strong {
  display: block;
  margin-bottom: 4px;
}

.login-point p {
  margin: 0;
  color: var(--muted);
}

.login-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 14px;
}

.login-card-header {
  text-align: center;
  display: grid;
  gap: 8px;
}

.login-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.login-badge svg {
  width: 26px;
  height: 26px;
}

.login-google {
  gap: 10px;
  border: 1px solid #e5e7eb;
}

.google-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #374151;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9ca3af;
  font-size: 0.85rem;
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.login-forgot {
  justify-self: end;
  font-size: 0.9rem;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.page-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.info-card h3 {
  margin: 0 0 8px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fef3c7;
  color: #a16207;
  font-size: 0.75rem;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-band {
  margin-top: 30px;
  background: var(--yellow);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-band h3 {
  margin: 0 0 6px;
}

.cta-band p {
  margin: 0;
  color: #1f2937;
}

.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  display: grid;
  gap: 12px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.95rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.notice {
  margin-top: 12px;
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.signup-page {
  min-height: 100vh;
  background: #ffffff;
}

.signup-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
}

.signup-left {
  background: linear-gradient(135deg, #ffd500 0%, #ffde4d 55%, #ffe98f 100%);
  padding: 64px;
  display: grid;
  align-content: start;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.signup-left::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  border-radius: 50%;
}

.signup-left::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: 120px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  border-radius: 50%;
}

.signup-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #111827;
  position: relative;
  z-index: 1;
}

.signup-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.8);
  position: relative;
  z-index: 1;
}

.signup-left h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0;
  position: relative;
  z-index: 1;
}

.signup-lead {
  margin: 0;
  max-width: 360px;
  color: #1f2937;
  position: relative;
  z-index: 1;
}

.signup-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.meta-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 24, 39, 0.12);
  font-size: 0.8rem;
  font-weight: 600;
  color: #111827;
}

.signup-preview {
  position: relative;
  width: min(420px, 100%);
  z-index: 1;
}

.preview-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  padding: 6px 14px;
  background: #111827;
  color: white;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.25);
  animation: float-y 6s ease-in-out infinite;
}

.preview-toast {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: white;
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.2);
  animation: float-y 7s ease-in-out infinite;
}

.toast-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffe08a;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
}

.signup-card {
  background: white;
  border-radius: 26px;
  padding: 22px;
  width: min(360px, 100%);
  box-shadow: 0 26px 60px rgba(17, 24, 39, 0.25);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.signup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(17, 24, 39, 0.3);
}

.signup-card-title {
  font-weight: 700;
  text-align: center;
}

.signup-card-sub {
  font-size: 0.9rem;
  text-align: center;
  color: var(--muted);
  margin: 6px 0 16px;
}

.signup-card-ui {
  background: #f8fafc;
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.signup-tier-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.coffee-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fef3c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
}

.coffee-dot svg {
  width: 16px;
  height: 16px;
}

.tier {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: white;
}

.signup-input {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  color: #9ca3af;
  font-size: 0.85rem;
}

.signup-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.avatar-stack {
  display: flex;
  gap: -6px;
}

.avatar-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #ffdd00;
  margin-right: -8px;
}

.stars {
  color: #111827;
  font-weight: 700;
}

.trust-text {
  font-size: 0.85rem;
  color: #1f2937;
}

.signup-right {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 64px 48px;
  text-align: center;
  background: #ffffff;
}

.signup-panel {
  width: min(420px, 100%);
  background: #ffffff;
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
  display: grid;
  justify-items: center;
  gap: 12px;
}

.check-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-badge svg {
  width: 34px;
  height: 34px;
}

.signup-note {
  max-width: 320px;
  color: var(--muted);
}

.signup-actions {
  display: grid;
  gap: 12px;
  width: min(340px, 100%);
  margin-top: 12px;
}

.signup-secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #16a34a;
}

.secure-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
}

.signup-legal {
  font-size: 0.8rem;
  color: #9ca3af;
  max-width: 320px;
}

.signup-legal a {
  color: inherit;
}

.signup-help {
  font-size: 0.85rem;
  color: var(--muted);
}

.signup-help a {
  color: #111827;
  font-weight: 700;
}

.dashboard-page {
  min-height: 100vh;
  background: #f8fafc;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.dash-sidebar {
  background: #ffffff;
  border-right: 1px solid var(--border);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.dash-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #111827;
}

.dash-nav {
  display: grid;
  gap: 22px;
  flex: 1;
}

.dash-group {
  display: grid;
  gap: 8px;
}

.dash-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
}

.dash-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #111827;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dash-link:hover {
  background: #f1f5f9;
}

.dash-link.active {
  background: #111827;
  color: #fff;
}

.dash-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.dash-link.active .dash-icon {
  background: rgba(255, 255, 255, 0.15);
}

.dash-icon svg {
  width: 16px;
  height: 16px;
}

.dash-footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.dash-main {
  padding: 40px 48px 60px;
  display: grid;
  gap: 28px;
}

.dash-hero {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dash-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-profile img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
}

.dash-profile h1 {
  font-size: 1.3rem;
  margin: 0;
}

.dash-profile p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.dash-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dash-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.stat-card h3 {
  font-size: 1.6rem;
  margin: 10px 0;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #111827;
}

.stat-pill.positive {
  background: #dcfce7;
  color: #166534;
}

.dash-panels {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.card-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 700;
}

.earnings-card {
  display: grid;
  gap: 12px;
}

.earnings-total {
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.earnings-total span {
  font-size: 1rem;
  color: var(--muted);
}

.card-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.goal-form {
  display: grid;
  grid-template-columns: 1fr 140px auto;
  gap: 10px;
}

.goal-form input {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: var(--font);
  font-size: 0.9rem;
}

.goal-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

.goal-footer a {
  color: inherit;
}

.activity-card {
  display: grid;
  gap: 16px;
}

.activity-empty {
  background: #f8fafc;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 12px;
}

.activity-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff7ed;
  color: #f97316;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.activity-icon svg {
  width: 20px;
  height: 20px;
}

.activity-list {
  display: grid;
  gap: 12px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #334155;
}

.activity-item strong {
  color: #111827;
}

.activity-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0f172a;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.activity-amount {
  margin-left: auto;
  font-weight: 700;
  color: #111827;
}

.dash-earn {
  display: grid;
  gap: 16px;
}

.earn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.earn-card {
  display: grid;
  gap: 12px;
}

.earn-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fef3c7;
  color: #92400e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.earn-icon svg {
  width: 20px;
  height: 20px;
}

.activity-item p {
  margin: 4px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .dashboard-page {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .dash-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dash-footer {
    width: 100%;
  }

  .dash-hero {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .dash-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dash-panels {
    grid-template-columns: 1fr;
  }

  .goal-form {
    grid-template-columns: 1fr;
  }

  .goal-footer {
    flex-direction: column;
    gap: 6px;
  }

  .earn-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dash-main {
    padding: 30px 20px 40px;
  }

  .dash-sidebar {
    padding: 20px;
  }

  .dash-nav {
    grid-template-columns: 1fr;
  }
}

.support-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f3f4f6 0%, #f8fafc 40%, #ffffff 100%);
  padding: 32px 0 60px;
}

.support-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto 30px;
  padding: 0 24px;
}

.support-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #111827;
}

.support-pill {
  padding: 8px 18px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
  color: #111827;
}

.support-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 24px;
}

.support-main {
  display: grid;
  gap: 20px;
}

.support-profile .profile-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-info img {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
}

.profile-info h1 {
  margin: 0;
  font-size: 1.4rem;
}

.profile-info p {
  margin: 4px 0 8px;
  color: var(--muted);
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #e2e8f0;
  color: #0f172a;
}

.badge-pill.warn {
  background: #fff7ed;
  color: #ea580c;
}

.badge-pill.ok {
  background: #dcfce7;
  color: #166534;
}

.support-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.support-card h2,
.support-card h3 {
  margin-top: 0;
}

.support-empty {
  border-radius: 18px;
  background: #f8fafc;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  display: grid;
  gap: 12px;
  place-items: center;
}

.support-empty-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff7ed;
  color: #f97316;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.support-empty-icon svg {
  width: 20px;
  height: 20px;
}

.support-panel {
  position: sticky;
  top: 28px;
  height: fit-content;
}

.support-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 14px;
}

.support-tier {
  background: #f8fafc;
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 12px;
}

.smile-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #111827;
}

.smile-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fef3c7;
  color: #b45309;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.smile-icon svg {
  width: 16px;
  height: 16px;
}

.tier-buttons {
  display: flex;
  gap: 8px;
}

.tier-btn {
  flex: 1;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 0;
  font-weight: 700;
  cursor: pointer;
}

.tier-btn.active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.support-total {
  background: #fff7ed;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
}

.support-total span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ea580c;
  font-weight: 700;
}

.support-total strong {
  font-size: 1.8rem;
  display: block;
  margin-top: 6px;
  color: #111827;
}

.support-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
}

.support-input {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.9rem;
  resize: none;
}

.support-checkbox {
  font-size: 0.78rem;
  color: #64748b;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
}

.support-checkbox a {
  color: inherit;
  font-weight: 600;
}

.support-secure {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
}

.settings-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 32px 24px 60px;
}

.settings-top {
  max-width: 1120px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.settings-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #111827;
}

.settings-actions {
  display: flex;
  gap: 12px;
}

.settings-tabs {
  max-width: 1120px;
  margin: 0 auto 18px;
  display: flex;
  gap: 10px;
  background: #ffffff;
  padding: 8px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.settings-tab {
  border: none;
  background: transparent;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
  color: #64748b;
  cursor: pointer;
}

.settings-tab.active {
  background: #111827;
  color: #ffffff;
}

.settings-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 24px;
}

.settings-main {
  display: grid;
  gap: 20px;
}

.settings-side {
  display: grid;
  gap: 20px;
}

.settings-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 16px;
}

.settings-compact {
  padding: 24px 20px 50px;
}

.settings-compact .settings-top {
  margin-bottom: 18px;
}

.settings-compact .settings-grid {
  gap: 18px;
}

.settings-compact .settings-main,
.settings-compact .settings-side {
  gap: 16px;
}

.settings-card.compact {
  padding: 18px;
  border-radius: 20px;
  gap: 12px;
}

.settings-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.settings-head h2 {
  margin: 0;
}

.settings-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.settings-badge {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #e2e8f0;
  color: #0f172a;
}

.settings-badge.ok {
  background: #dcfce7;
  color: #166534;
}

.profile-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-row.compact {
  gap: 12px;
}

.settings-avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.12);
}

.settings-compact .settings-avatar {
  width: 56px;
  height: 56px;
}

.settings-help {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 6px;
}

.settings-form {
  display: grid;
  gap: 14px;
}

.settings-compact .settings-form {
  gap: 10px;
}

.settings-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.settings-field {
  display: grid;
  gap: 8px;
}

.settings-field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 700;
}

.settings-input {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.95rem;
  background: #f8fafc;
}

.settings-compact .settings-input {
  padding: 10px 12px;
  font-size: 0.9rem;
}

.social-grid {
  display: grid;
  gap: 12px;
}

.social-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.social-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0f172a;
  background: #e2e8f0;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.social-icon.fb {
  background: #dbeafe;
  color: #1d4ed8;
}

.social-icon.yt {
  background: #fee2e2;
  color: #dc2626;
}

.social-icon.ig {
  background: #fce7f3;
  color: #db2777;
}

.social-icon.tt {
  background: #e2e8f0;
  color: #0f172a;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-card {
  position: sticky;
  top: 24px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #475569;
}

.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #0f172a;
}

.status-pill.ok {
  background: #dcfce7;
  color: #166534;
}

.settings-divider {
  height: 1px;
  background: var(--border);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: #475569;
}

.toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.toggle-item:last-child {
  border-bottom: 0;
}

.toggle-item strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
}

.toggle-item span {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 4px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex: none;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  background: #e2e8f0;
  border-radius: 999px;
  transition: 0.2s ease;
}

.slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.2);
  transition: 0.2s ease;
}

.switch input:checked + .slider {
  background: #111827;
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

.shop-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 36px 24px 60px;
}

.shop-page .shop-hero {
  max-width: 1080px;
  margin: 0 auto 28px;
  text-align: center;
}

.shop-page .shop-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.shop-page .shop-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
}

.shop-page .shop-hero p {
  color: var(--muted);
  margin-top: 10px;
}

.shop-page .shop-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.shop-page .shop-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.shop-page .shop-card h3 {
  margin: 0 0 4px;
}

.shop-page .shop-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.shop-page .shop-card.muted {
  opacity: 0.6;
  border: 1px dashed #e2e8f0;
}

.shop-page .shop-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
}

.shop-page .shop-icon svg {
  width: 22px;
  height: 22px;
}

.shop-page .shop-icon.green {
  background: #dcfce7;
  color: #166534;
}

.shop-page .shop-icon.purple {
  background: #ede9fe;
  color: #7c3aed;
}

.shop-page .shop-icon.gray {
  background: #e2e8f0;
  color: #64748b;
}

.shop-page .shop-soon {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
}

.shop-page .shop-listings {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 16px;
}

.shop-page .shop-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-page .shop-empty {
  border-radius: 18px;
  border: 2px dashed #e2e8f0;
  padding: 40px;
  text-align: center;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.shop-page .shop-empty-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #fef3c7;
  color: #92400e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.shop-page .shop-empty-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 900px) {
  .shop-page .shop-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 980px) {
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .sticky-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .settings-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .settings-actions {
    width: 100%;
    flex-direction: column;
  }

  .settings-tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .profile-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .settings-split {
    grid-template-columns: 1fr;
  }

  .social-grid.compact {
    grid-template-columns: 1fr;
  }

  .settings-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.withdraw-overlay {
  min-height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  display: grid;
  place-items: center;
  padding: 30px;
}

.withdraw-modal {
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
  display: grid;
  gap: 18px;
}

.withdraw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.withdraw-head h1 {
  margin: 0;
  font-size: 1.4rem;
}

.withdraw-close {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.withdraw-balance {
  background: #fff7ed;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  display: grid;
  gap: 6px;
  border: 1px solid #fde68a;
}

.withdraw-balance span {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #b45309;
}

.withdraw-balance strong {
  font-size: 2.2rem;
  color: #7c2d12;
}

.withdraw-field {
  display: grid;
  gap: 8px;
}

.withdraw-field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 700;
}

.withdraw-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
}

.withdraw-select,
.withdraw-input {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.95rem;
  background: #f8fafc;
}

.withdraw-note {
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

@media (max-width: 520px) {
  .withdraw-row {
    grid-template-columns: 1fr;
  }
}

.qr-overlay {
  min-height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  display: grid;
  place-items: center;
  padding: 30px;
}

.qr-modal {
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
  display: grid;
  gap: 16px;
  text-align: center;
}

.qr-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qr-head h1 {
  margin: 0;
  font-size: 1.4rem;
}

.qr-close {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.qr-sub {
  margin: 0;
  color: var(--muted);
}

.qr-preview {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  position: relative;
  box-shadow: inset 0 0 0 1px #e2e8f0;
}

.qr-preview img {
  width: 100%;
  border-radius: 16px;
}

.qr-avatar {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.qr-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.qr-brand {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.qr-inputs {
  display: grid;
  gap: 8px;
  text-align: left;
}

.qr-inputs label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 700;
}

.qr-link-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.qr-link-row input {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.9rem;
  background: #f8fafc;
}

.qr-colors {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.qr-color {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
}

.qr-color.active {
  border-color: #111827;
}

.qr-note {
  margin: 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

@media (max-width: 520px) {
  .qr-link-row {
    grid-template-columns: 1fr;
  }
}

.design-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 36px 24px 60px;
  display: grid;
  gap: 24px;
}

.design-top {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.design-top h1 {
  margin: 0;
  font-size: 1.8rem;
}

.design-top p {
  margin: 6px 0 0;
  color: var(--muted);
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

.design-card {
  max-width: 1080px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 20px;
}

.design-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.design-card h2 {
  margin: 0;
}

.design-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 700;
}

.layout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.layout-option {
  display: grid;
  gap: 10px;
}

.layout-option input {
  display: none;
}

.layout-preview {
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 18px;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.layout-preview.active {
  border: 2px solid #111827;
  background: #ffffff;
}

.layout-title {
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.layout-mock {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.layout-header {
  font-weight: 700;
}

.layout-row {
  display: flex;
  gap: 8px;
}

.layout-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  font-weight: 700;
  font-size: 0.8rem;
}

.layout-chip.active {
  background: #facc15;
}

.layout-input {
  height: 36px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.layout-cta {
  background: #facc15;
  border-radius: 999px;
  text-align: center;
  padding: 10px 12px;
  font-weight: 700;
}

.design-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.design-row h3 {
  margin: 0;
}

.design-row p {
  margin: 6px 0 0;
  color: var(--muted);
}

.design-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.design-input-group input {
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 1rem;
  width: 80px;
}

.design-divider {
  height: 1px;
  background: #e2e8f0;
}

.design-icons {
  display: flex;
  gap: 10px;
}

.design-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

.design-icon.active {
  border-color: #111827;
  background: #f8fafc;
}

.design-select {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-family: var(--font);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .layout-grid {
    grid-template-columns: 1fr;
  }

  .design-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .design-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.post-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 40px 24px 70px;
  display: grid;
  gap: 26px;
}

.post-hero {
  text-align: center;
  display: grid;
  gap: 10px;
}

.post-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.post-hero p {
  margin: 0;
  color: var(--muted);
}

.post-card {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 18px;
}

.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.post-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-profile img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.post-profile h3 {
  margin: 0;
}

.post-profile span {
  color: #94a3b8;
  font-size: 0.85rem;
}

.post-actions {
  display: flex;
  gap: 10px;
}

.post-body {
  display: grid;
  gap: 12px;
}

.post-title,
.post-editor {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 1rem;
  background: #f8fafc;
}

.post-editor {
  resize: vertical;
  min-height: 180px;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.post-tools {
  display: flex;
  gap: 10px;
}

.tool-btn {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0f172a;
}

.tool-icon {
  font-size: 1rem;
}

.post-visibility {
  display: flex;
  align-items: center;
  gap: 12px;
}

.visibility-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-empty {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  color: var(--muted);
  display: grid;
  gap: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.post-empty-icon {
  font-size: 1.8rem;
}

@media (max-width: 820px) {
  .post-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-visibility {
    width: 100%;
    justify-content: space-between;
  }
}

.explore-hero {
  padding: 90px 0 70px;
  text-align: center;
  background: #f8fafc;
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 18px 18px;
}

.explore-hero-inner {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.spotlight-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.explore-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin: 0;
}

.explore-hero .highlight {
  background: #facc15;
  padding: 0 12px;
  border-radius: 16px;
}

.explore-hero p {
  max-width: 520px;
  color: var(--muted);
}

.explore-search {
  width: min(520px, 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.explore-search input {
  border: none;
  outline: none;
  font-size: 1rem;
  width: 100%;
  font-family: var(--font);
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #94a3b8;
}

.search-icon svg {
  width: 20px;
  height: 20px;
}

.explore-list {
  padding: 70px 0;
  background: #ffffff;
}

.explore-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: #94a3b8;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.creator-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  display: grid;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.creator-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto 6px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #111827;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-avatar.teal {
  background: #99f6e4;
  color: #0f766e;
}

.creator-avatar.purple {
  background: #c4b5fd;
  color: #4c1d95;
}

.creator-avatar.yellow {
  background: #fde68a;
  color: #92400e;
}

.creator-avatar.green {
  background: #bbf7d0;
  color: #166534;
}

.creator-handle {
  color: #94a3b8;
  font-size: 0.85rem;
}

.creator-bio {
  color: var(--muted);
  font-size: 0.9rem;
  min-height: 52px;
}

.creator-cta {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .creator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .creator-grid {
    grid-template-columns: 1fr;
  }

  .explore-list-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 980px) {
  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .support-top {
    flex-direction: column;
    gap: 14px;
  }

  .support-profile .profile-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .tier-buttons {
    flex-wrap: wrap;
  }

  .tier-btn {
    flex: 1 1 45%;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .steps,
  .feature-grid,
  .shop-grid,
  .courses-grid,
  .pillars,
  .page-grid,
  .page-columns,
  .compare-grid,
  .content-layout {
    grid-template-columns: 1fr 1fr;
  }

  .login-layout {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-menu-panel {
    right: auto;
    left: 0;
    min-width: 240px;
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 0 90px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .url-input {
    width: 100%;
    justify-content: center;
  }

  .steps,
  .feature-grid,
  .shop-grid,
  .courses-grid,
  .pillars,
  .page-grid,
  .page-columns,
  .compare-grid,
  .content-layout,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-bubble,
  .reaction {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .signup-grid {
    grid-template-columns: 1fr;
  }

  .signup-left {
    padding: 48px 28px;
  }

  .signup-right {
    padding: 48px 28px;
  }

  .preview-badge {
    right: 8px;
  }

  .preview-toast {
    position: static;
    margin-top: 14px;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .nav-inner {
    flex-direction: column;
    gap: 12px;
  }

  .support-amount {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .supporter {
    flex-direction: column;
    align-items: flex-start;
  }

  .note {
    margin-left: 0;
  }
}

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

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes lift {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-12px) rotate(-6deg);
  }
}
