: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;
}

.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-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 24px 50px rgba(15, 23, 42, 0.08);
}

.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;
}

.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;
  font-weight: 800;
  color: #ef4444;
}

.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: #fef3c7;
  color: #b45309;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.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);
}

.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);
}

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

.mini-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border);
}

.content-stack {
  display: grid;
  gap: 14px;
}

.content-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.content-card.locked {
  background: #fffbea;
  border-color: rgba(255, 221, 0, 0.6);
}

.content-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
}

.content-title {
  margin: 0 0 6px;
  font-weight: 700;
}

.content-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.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;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.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-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);
}

.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);
}

.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.6s ease, transform 0.6s ease;
}

.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,
  .pillars,
  .page-grid,
  .page-columns,
  .compare-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .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,
  .pillars,
  .page-grid,
  .page-columns,
  .compare-grid,
  .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;
  }
}

@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);
  }
}
