/* ===========================
   GuildPass – Base Styles
   =========================== */
:root {
  --gp-bg: #0b1120;
  --gp-bg-elevated: #020617;
  --gp-border: #1f2937;
  --gp-border-soft: #111827;
  --gp-text: #e5e7eb;
  --gp-text-muted: #9ca3af;
  --gp-accent: #6366f1;
  --gp-accent-soft: rgba(99, 102, 241, 0.12);
  --gp-accent-strong: #4f46e5;
  --gp-danger: #f97373;
  --gp-success: #22c55e;
  --gp-warn: #facc15;
  --gp-radius-lg: 18px;
  --gp-radius-pill: 999px;
  --gp-shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --gp-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-size: 17px;
  line-height: 1.7;
}

.gp-body {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #1d2540, #020617 55%, #020617);
  color: var(--gp-text);
  font-family: var(--gp-font-sans);
}

/* ===========================
   Layout
   =========================== */

.gp-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gp-logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #a5b4fc, #4f46e5 55%, #1d244b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
  color: #e5e7eb;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.8);
}

.gp-header-text h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.03em;
}

.gp-header-text p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--gp-text-muted);
}

.gp-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gp-main {
  max-width: 1120px;
  margin: 24px auto 48px;
  padding: 0 clamp(16px, 3vw, 32px);
}

/* ===========================
   Badges & Pills
   =========================== */
.gp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--gp-radius-pill);
  padding: 6px 12px;
  font-size: 12px;
  border: 1px solid var(--gp-border);
  background: rgba(15, 23, 42, 0.85);
  color: var(--gp-text-muted);
}

.gp-badge strong {
  color: var(--gp-text);
}

.gp-badge-muted {
  background: rgba(15, 23, 42, 0.9);
}

/* ===========================
   Grid & Sections
   =========================== */
.gp-grid {
  display: grid;
  gap: 18px;
}

.gp-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gp-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

@media (max-width: 720px) {
  .gp-grid-3,
  .gp-grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.gp-section {
  margin-top: 32px;
}

.gp-section-header {
  margin-bottom: 12px;
}

.gp-section-header h2 {
  margin: 0 0 4px;
  font-size: 16px;
}

.gp-section-header p {
  margin: 0;
  font-size: 13px;
  color: var(--gp-text-muted);
}

/* ===========================
   Cards
   =========================== */
.gp-card {
  background: radial-gradient(circle at top left, #111827, #020617);
  border-radius: var(--gp-radius-lg);
  border: 1px solid var(--gp-border-soft);
  padding: 16px 16px 14px;
  box-shadow: var(--gp-shadow-soft);
  position: relative;
  overflow: hidden;
}

.gp-card::before {
  content: "";
  position: absolute;
  inset: -120px;
  background: radial-gradient(
    circle at top,
    rgba(129, 140, 248, 0.12),
    transparent 60%
  );
  opacity: 0.8;
  pointer-events: none;
}

.gp-card > * {
  position: relative;
  z-index: 1;
}

.gp-card-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gp-text-muted);
  margin: 0 0 12px;
}

.gp-card-primary {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
}

.gp-card-sub {
  margin: 0;
  font-size: 12px;
  color: var(--gp-text-muted);
}

.gp-card-actions {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gp-card-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gp-card-body {
  flex: 1 1 auto;
}

.gp-card-actions-vertical {
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 720px) {
  .gp-card-horizontal {
    flex-direction: column;
    align-items: stretch;
  }

  .gp-card-actions-vertical {
    align-items: stretch;
  }
}

/* ===========================
   Pills
   =========================== */
.gp-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--gp-radius-pill);
  font-size: 11px;
  margin-top: 8px;
  border: 1px solid transparent;
}

.gp-pill-success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
  color: #bbf7d0;
}

.gp-pill-danger {
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.4);
  color: #fecaca;
}

.gp-pill-warn {
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.4);
  color: #fef3c7;
}

/* ===========================
   Buttons
   =========================== */
.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.08s ease,
    background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}

.gp-btn-primary {
  background: linear-gradient(135deg, var(--gp-accent), var(--gp-accent-strong));
  border-color: rgba(129, 140, 248, 0.7);
  color: white;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.8);
}

.gp-btn-outline {
  background: transparent;
  border-color: var(--gp-border);
  color: var(--gp-text);
}

.gp-btn-ghost {
  background: rgba(15, 23, 42, 0.7);
  border-color: transparent;
  color: var(--gp-text-muted);
}

.gp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.7);
}

.gp-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* ===========================
   Code / Join Link
   =========================== */
.gp-code-block {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--gp-border);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  max-width: 100%;
  overflow-x: auto;
}

/* ===========================
   Checklist
   =========================== */
.gp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: var(--gp-radius-lg);
  border: 1px solid var(--gp-border-soft);
  background: rgba(15, 23, 42, 0.8);
}

.gp-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--gp-text-muted);
  border-top: 1px solid rgba(15, 23, 42, 0.95);
}

.gp-checklist li:first-child {
  border-top: none;
}

.gp-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.7);
  flex-shrink: 0;
}

.gp-checklist-item--done {
  color: #e5e7eb;
}

.gp-checklist-item--done .gp-check-icon {
  background: radial-gradient(circle at 30% 20%, #bbf7d0, #16a34a 60%, #064e3b);
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);
}

/* === Pricing section === */

.gp-section-pricing {
  max-width: 1120px;
  margin: 96px auto 0;
  padding: 0 24px 96px;
}

/* Pricing header layout */

.gp-section-pricing .gp-section-header {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

/* Wrapper that holds the toggle – makes it centered under the header */

.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 8px;     /* space under subtitle */
  margin-bottom: 32px; /* space above the cards */
}

/* Actual toggle pill */

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
  gap: 4px;
}

/* Toggle buttons */

.pricing-toggle button {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

/* Active state */

.pricing-toggle button.is-active {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  transform: translateY(-1px);
}

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

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

@media (max-width: 768px) {
  .gp-section-pricing {
    padding-inline: 16px;
  }

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top left, rgba(55, 65, 81, 0.35), rgba(15, 23, 42, 0.98));
  border-radius: 24px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.85);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
  min-height: 340px;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.95);
  border-color: rgba(129, 140, 248, 0.8);
}

.pricing-card-pro {
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 24px 70px rgba(129, 140, 248, 0.35);
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.4), rgba(15, 23, 42, 0.98));
}

.pricing-card-pro:hover {
  box-shadow: 0 32px 80px rgba(129, 140, 248, 0.5);
}

.pricing-card-header {
  margin-bottom: 20px;
  min-height: 120px; /* keeps feature lists aligned across cards */
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 18px;
}

.pricing-pill-popular {
  border-color: rgba(251, 191, 36, 0.9);
  color: #facc15;
  background: rgba(24, 16, 4, 0.8);
}

.pricing-name {
  font-size: 18px;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 4px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-amount {
  font-size: 32px;
  font-weight: 700;
  color: #f9fafb;
}

.pricing-period {
  font-size: 13px;
  color: #9ca3af;
}

.pricing-tagline {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e5e7eb;
  font-size: 13px;
}

.pricing-features li::before {
  content: "✔";
  color: #a855f7;
  opacity: 0.9;
  margin-right: 8px;
}

.pricing-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* === GuildPass Pricing Section Overrides === */

#pricing.pricing-section {
  padding: 4rem 1.5rem 5rem;
}

#pricing .container {
  max-width: 1120px;
  margin: 0 auto;
}

#pricing .pricing-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem auto;
}

/* Make this visually match the section headers above (e.g. "How GuildPass works") */

#pricing .pricing-title {
  font-size: clamp(2.4rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0.85rem;
}

/* Subtitle directly under the title */

#pricing .pricing-subtitle {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.4rem;
  margin-bottom: 1.8rem;
}

/* Keep the toggle centered under the subtitle */

#pricing .pricing-toggle-row {
  display: flex;
  justify-content: center;
}

/* === Pricing grid layout & card polish === */

.pricing-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.pricing-card {
  background: radial-gradient(
      circle at top left,
      rgba(88, 28, 135, 0.3),
      rgba(15, 23, 42, 0.96)
    );
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.75rem 1.6rem 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  position: relative;
  overflow: hidden;

  transition:
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    border-color 150ms ease-out,
    background 150ms ease-out;
}

.pricing-card-header {
  margin-bottom: 1.25rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: #d1d5db;
}

.pricing-features li::before {
  content: "✓";
  display: inline-block;
  margin-right: 0.4rem;
  font-size: 0.85rem;
  color: #a855f7;
}

/* CTA sits at the bottom for all cards */

.pricing-cta {
  align-self: flex-start;
  margin-top: auto;
}

/* Hover effect: subtle lift + glow */

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 50px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(168, 85, 247, 0.7);
  border-color: rgba(168, 85, 247, 0.7);
}

/* Slightly stronger glow on the Pro (most popular) card */

.pricing-card-pricing-card-pro,
.pricing-card.pricing-card-pro:hover {
  box-shadow:
    0 26px 60px rgba(88, 28, 135, 0.9),
    0 0 0 1px rgba(248, 250, 252, 0.2);
}

/* Toggle pills: nicer hover */

.billing-pill {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: transparent;
  color: #e5e7eb;
  opacity: 0.7;
  transition:
    background 140ms ease-out,
    color 140ms ease-out,
    opacity 140ms ease-out,
    transform 140ms ease-out,
    box-shadow 140ms ease-out;
  white-space: nowrap;
}

.billing-pill.is-active {
  background: radial-gradient(circle at 0% 0%, #6366f1, #8b5cf6);
  color: #f9fafb;
  opacity: 1;
  box-shadow: 0 10px 25px rgba(88, 28, 135, 0.8);
  transform: translateY(-1px);
}

.billing-pill:hover {
  opacity: 1;
}

/* Fix pricing header size to match other gp-section h2 */

#pricing .pricing-title {
  font-size: 2.75rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* CSS Custom Properties */
:root {
  --bg-primary: #0a0e27;
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  --bg-card: rgba(30, 41, 59, 0.6);
  --accent: #6366f1;
  --accent-hover: #818cf8;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.1);
  --border-hover: rgba(148, 163, 184, 0.2);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: radial-gradient(ellipse at top left, #0f172a 0%, #0a0e27 50%, #020617 100%);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 640px) {
  .navbar-container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .navbar-container {
    padding: 0 48px;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.btn-nav {
  padding: 8px 20px;
  font-size: 14px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  padding: 12px 24px;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  padding: 12px 24px;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.btn-large {
  padding: 14px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 80px 0 120px;
  position: relative;
}

@media (min-width: 1024px) {
  .hero {
    padding: 120px 0 160px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-hover);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 20px;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

.hero-proof {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-proof {
    text-align: left;
  }
}

/* Dashboard Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.dashboard-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.dashboard-header {
  margin-bottom: 24px;
}

.dashboard-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.dashboard-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.status-tiles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-success {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.join-link-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.join-link-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.join-link-input-group {
  display: flex;
  gap: 8px;
}

.join-link-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 13px;
  font-family: 'Monaco', 'Menlo', monospace;
}

.btn-copy {
  padding: 10px 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Section Styles */
section {
  padding: 80px 0;
}

@media (min-width: 1024px) {
  section {
    padding: 120px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 48px;
  }
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Features Section */
.features {
  background: rgba(15, 23, 42, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(99, 102, 241, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* How It Works Section */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-glow);
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}


/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  padding: 24px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.faq-q {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.faq-a {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Final CTA */
.final-cta {
  background: rgba(99, 102, 241, 0.1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 40px;
  }
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .footer-content {
    flex-direction: row;
    text-align: left;
  }
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* Mobile Menu (if needed in future) */
@media (max-width: 767px) {
  .navbar-links {
    display: none;
  }
}

/* === Pricing section === */

.gp-section-pricing {
  max-width: 1120px;
  margin: 96px auto 0;
  padding: 0 24px 96px;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
  margin: 24px auto 32px;
  gap: 4px;
}

.pricing-toggle-btn {
  position: relative;
  border: none;
  background: transparent;
  color: #e5e7eb;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition:
    background 0.18s ease-out,
    color 0.18s ease-out,
    transform 0.18s ease-out;
}

.pricing-toggle-btn.is-active {
  background: radial-gradient(circle at top left, #7c3aed, #4f46e5);
  color: #f9fafb;
  transform: translateY(-1px);
}

.pricing-toggle-badge {
  font-size: 11px;
  opacity: 0.85;
}

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

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

@media (max-width: 768px) {
  .gp-section-pricing {
    padding-inline: 16px;
  }

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top left, rgba(55, 65, 81, 0.35), rgba(15, 23, 42, 0.98));
  border-radius: 24px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.85);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
  min-height: 340px;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.95);
  border-color: rgba(129, 140, 248, 0.8);
}

.pricing-card-pro {
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 24px 70px rgba(129, 140, 248, 0.35);
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.4), rgba(15, 23, 42, 0.98));
}

.pricing-card-pro:hover {
  box-shadow: 0 32px 80px rgba(129, 140, 248, 0.5);
}

.pricing-card-header {
  margin-bottom: 20px;
  min-height: 120px; /* keeps feature lists aligned across cards */
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 18px;
}

.pricing-pill-popular {
  border-color: rgba(251, 191, 36, 0.9);
  color: #facc15;
  background: rgba(24, 16, 4, 0.8);
}

.pricing-name {
  font-size: 18px;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 4px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-amount {
  font-size: 32px;
  font-weight: 700;
  color: #f9fafb;
}

.pricing-period {
  font-size: 13px;
  color: #9ca3af;
}

.pricing-tagline {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e5e7eb;
  font-size: 13px;
}

.pricing-features li::before {
  content: "✔";
  color: #a855f7;
  opacity: 0.9;
  margin-right: 8px;
}

.pricing-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* === Pricing section layout refinements === */

#pricing.gp-section {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 32px 96px;
}

/* Centered header like "How GuildPass works" */

#pricing .gp-section-header {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

#pricing .gp-section-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

#pricing .gp-section-subtitle {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.8;
}

/* Toggle alignment */

#pricing .pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  margin: 0 auto 32px;
}

#pricing .pricing-toggle-option {
  border: none;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

#pricing .pricing-toggle-option.is-active {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  transform: translateY(-1px);
}

#pricing .pricing-toggle-badge {
  font-size: 11px;
  margin-left: 4px;
  opacity: 0.85;
}

/* Pricing grid & cards */

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

/* Card base */

#pricing .pricing-card {
  position: relative;
  border-radius: 24px;
  padding: 22px 22px 24px;
  background: radial-gradient(circle at top left, rgba(148, 163, 253, 0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.18), #050816);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(148, 163, 253, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

/* Hover lift */

#pricing .pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.75);
  border-color: rgba(167, 139, 250, 0.7);
}

/* Pro highlight */

#pricing .pricing-card-pro {
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.12), transparent 60%),
              radial-gradient(circle at bottom, rgba(147, 51, 234, 0.45), #050816);
  border-color: rgba(216, 180, 254, 0.9);
  box-shadow: 0 26px 70px rgba(109, 40, 217, 0.8);
}

/* Pills */

#pricing .pricing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 253, 0.5);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(209, 213, 219, 0.9);
  margin-bottom: 14px;
}

#pricing .pricing-pill-popular {
  border-color: #fbbf24;
  color: #fef3c7;
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.3), transparent 60%);
}

/* Card header & text */

#pricing .pricing-card-header {
  margin-bottom: 18px;
}

#pricing .pricing-name {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
}

#pricing .pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

#pricing .pricing-price {
  font-size: 32px;
  font-weight: 600;
}

#pricing .pricing-period,
#pricing .pricing-period-year {
  font-size: 14px;
  opacity: 0.7;
}

#pricing .pricing-tagline {
  font-size: 14px;
  opacity: 0.8;
}

/* Feature list */

#pricing .pricing-features {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.9;
}

/* CTA buttons */

#pricing .pricing-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Responsive */

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

  #pricing .pricing-card-pro {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  #pricing.gp-section {
    padding: 0 20px 72px;
  }

  #pricing .pricing-grid {
    grid-template-columns: 1fr;
  }

  #pricing .pricing-card-pro {
    grid-column: auto;
  }
}

/* CSS Custom Properties */
:root {
  --bg-primary: #0a0e27;
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  --bg-card: rgba(30, 41, 59, 0.6);
  --accent: #6366f1;
  --accent-hover: #818cf8;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.1);
  --border-hover: rgba(148, 163, 184, 0.2);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: radial-gradient(ellipse at top left, #0f172a 0%, #0a0e27 50%, #020617 100%);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 640px) {
  .navbar-container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .navbar-container {
    padding: 0 48px;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.btn-nav {
  padding: 8px 20px;
  font-size: 14px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  padding: 12px 24px;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  padding: 12px 24px;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.btn-large {
  padding: 14px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 80px 0 120px;
  position: relative;
}

@media (min-width: 1024px) {
  .hero {
    padding: 120px 0 160px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-hover);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 20px;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

.hero-proof {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-proof {
    text-align: left;
  }
}

/* Dashboard Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.dashboard-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.dashboard-header {
  margin-bottom: 24px;
}

.dashboard-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.dashboard-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.status-tiles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-success {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.join-link-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.join-link-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.join-link-input-group {
  display: flex;
  gap: 8px;
}

.join-link-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 13px;
  font-family: 'Monaco', 'Menlo', monospace;
}

.btn-copy {
  padding: 10px 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Section Styles */
section {
  padding: 80px 0;
}

@media (min-width: 1024px) {
  section {
    padding: 120px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 48px;
  }
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Features Section */
.features {
  background: rgba(15, 23, 42, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(99, 102, 241, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* How It Works Section */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-glow);
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}


/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  padding: 24px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.faq-q {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.faq-a {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Final CTA */
.final-cta {
  background: rgba(99, 102, 241, 0.1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 40px;
  }
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .footer-content {
    flex-direction: row;
    text-align: left;
  }
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* Mobile Menu (if needed in future) */
@media (max-width: 767px) {
  .navbar-links {
    display: none;
  }
}

/* === Pricing section === */

.gp-section-pricing {
  max-width: 1120px;
  margin: 96px auto 0;
  padding: 0 24px 96px;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
  margin: 24px auto 32px;
  gap: 4px;
}

.pricing-toggle-btn {
  position: relative;
  border: none;
  background: transparent;
  color: #e5e7eb;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition:
    background 0.18s ease-out,
    color 0.18s ease-out,
    transform 0.18s ease-out;
}

.pricing-toggle-btn.is-active {
  background: radial-gradient(circle at top left, #7c3aed, #4f46e5);
  color: #f9fafb;
  transform: translateY(-1px);
}

.pricing-toggle-badge {
  font-size: 11px;
  opacity: 0.85;
}

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

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

@media (max-width: 768px) {
  .gp-section-pricing {
    padding-inline: 16px;
  }

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top left, rgba(55, 65, 81, 0.35), rgba(15, 23, 42, 0.98));
  border-radius: 24px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.85);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
  min-height: 340px;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.95);
  border-color: rgba(129, 140, 248, 0.8);
}

.pricing-card-pro {
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 24px 70px rgba(129, 140, 248, 0.35);
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.4), rgba(15, 23, 42, 0.98));
}

.pricing-card-pro:hover {
  box-shadow: 0 32px 80px rgba(129, 140, 248, 0.5);
}

.pricing-card-header {
  margin-bottom: 20px;
  min-height: 120px; /* keeps feature lists aligned across cards */
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 18px;
}

.pricing-pill-popular {
  border-color: rgba(251, 191, 36, 0.9);
  color: #facc15;
  background: rgba(24, 16, 4, 0.8);
}

.pricing-name {
  font-size: 18px;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 4px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-amount {
  font-size: 32px;
  font-weight: 700;
  color: #f9fafb;
}

.pricing-period {
  font-size: 13px;
  color: #9ca3af;
}

.pricing-tagline {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #e5e7eb;
  font-size: 13px;
}

.pricing-features li::before {
  content: "✔";
  color: #a855f7;
  opacity: 0.9;
  margin-right: 8px;
}

.pricing-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* === Pricing section layout refinements === */

#pricing.gp-section {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 32px 96px;
}

/* Centered header like "How GuildPass works" */

#pricing .gp-section-header {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

#pricing .gp-section-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

#pricing .gp-section-subtitle {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.8;
}

/* Toggle alignment */

#pricing .pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  margin: 0 auto 32px;
}

#pricing .pricing-toggle-option {
  border: none;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

#pricing .pricing-toggle-option.is-active {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  transform: translateY(-1px);
}

#pricing .pricing-toggle-badge {
  font-size: 11px;
  margin-left: 4px;
  opacity: 0.85;
}

/* Pricing grid & cards */

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

/* Card base */

#pricing .pricing-card {
  position: relative;
  border-radius: 24px;
  padding: 22px 22px 24px;
  background: radial-gradient(circle at top left, rgba(148, 163, 253, 0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.18), #050816);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(148, 163, 253, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

/* Hover lift */

#pricing .pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.75);
  border-color: rgba(167, 139, 250, 0.7);
}

/* Pro highlight */

#pricing .pricing-card-pro {
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.12), transparent 60%),
              radial-gradient(circle at bottom, rgba(147, 51, 234, 0.45), #050816);
  border-color: rgba(216, 180, 254, 0.9);
  box-shadow: 0 26px 70px rgba(109, 40, 217, 0.8);
}

/* Pills */

#pricing .pricing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 253, 0.5);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(209, 213, 219, 0.9);
  margin-bottom: 14px;
}

#pricing .pricing-pill-popular {
  border-color: #fbbf24;
  color: #fef3c7;
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.3), transparent 60%);
}

/* Card header & text */

#pricing .pricing-card-header {
  margin-bottom: 18px;
}

#pricing .pricing-name {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
}

#pricing .pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

#pricing .pricing-price {
  font-size: 32px;
  font-weight: 600;
}

#pricing .pricing-period,
#pricing .pricing-period-year {
  font-size: 14px;
  opacity: 0.7;
}

#pricing .pricing-tagline {
  font-size: 14px;
  opacity: 0.8;
}

/* Feature list */

#pricing .pricing-features {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.9;
}

/* CTA buttons */

#pricing .pricing-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Responsive */

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

  #pricing .pricing-card-pro {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  #pricing.gp-section {
    padding: 0 20px 72px;
  }

  #pricing .pricing-grid {
    grid-template-columns: 1fr;
  }

  #pricing .pricing-card-pro {
    grid-column: auto;
  }
}


/* -------------------------------------------------------------------------- */
/* Harmonize Pricing Header with "How GuildPass Works"                        */
/* -------------------------------------------------------------------------- */
.gp-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
}

.gp-section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}


/* -------------------------------------------------------------------------- */
/* Value Proposition Section                                                  */
/* -------------------------------------------------------------------------- */

.value-prop {
  padding: 4.5rem 1.5rem 4.5rem;
  background: radial-gradient(circle at top center, rgba(88, 28, 135, 0.18), transparent);
}

.value-header {
  max-width: 760px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.value-title {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.value-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.9);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.value-card {
  position: relative;
  border-radius: 1.25rem;
  padding: 1.75rem 1.6rem 1.9rem;
  background:
    radial-gradient(circle at top left, rgba(88, 28, 135, 0.55), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  transition:
    transform 160ms ease-out,
    box-shadow 160ms ease-out,
    border-color 160ms ease-out;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 1),
    0 0 0 1px rgba(168, 85, 247, 0.9);
  border-color: rgba(168, 85, 247, 0.8);
}

.value-pill {
  display: inline-block;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(129, 140, 248, 0.18);
  color: rgba(196, 181, 253, 0.95);
  border: 1px solid rgba(165, 180, 252, 0.6);
  margin-bottom: 0.9rem;
}

.value-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.value-card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(209, 213, 219, 0.95);
}


/* Creator Pain Points */

.creator-pain {
  padding: 5rem 1.5rem 5rem;
  background: radial-gradient(circle at center, rgba(88, 28, 135, 0.18), transparent);
}

.creator-pain .section-header {
  max-width: 760px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.creator-pain .section-title {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.creator-pain .section-subtitle {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.9);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .pain-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pain-card {
  position: relative;
  border-radius: 1.25rem;
  padding: 1.75rem 1.6rem 1.9rem;
  background:
    radial-gradient(circle at top left, rgba(88, 28, 135, 0.50), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(6px);
  transition:
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    border-color 150ms ease-out;
}

.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.75);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 1),
    0 0 0 1px rgba(168, 85, 247, 0.9);
}

.pain-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: #ffffff;
}

.pain-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(209, 213, 219, 0.96);
}


/* -------------------------------------------------------------------------- */
/* Value Proposition (below pricing)                                         */
/* -------------------------------------------------------------------------- */

.gp-section-value {
  padding: 5rem 1.5rem 5.5rem;
}

.gp-section-value .gp-section-header {
  max-width: 780px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.gp-section-value .gp-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.gp-section-value .gp-section-subtitle {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.9);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.value-card {
  position: relative;
  border-radius: 1.4rem;
  padding: 1.9rem 1.7rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(88, 28, 135, 0.50), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(6px);
  transition:
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    border-color 150ms ease-out;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.8);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 1),
    0 0 0 1px rgba(168, 85, 247, 0.9);
}

.value-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.9);
  color: rgba(196, 181, 253, 0.96);
  margin-bottom: 0.9rem;
  border: 1px solid rgba(162, 28, 175, 0.7);
}

.value-title {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.value-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(209, 213, 219, 0.96);
}

/* ---- Trust & comparison sections ---- */
.trust-section,
.compare-section {
  padding-top: 5rem;
  padding-bottom: 1rem;
}

.gp-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* header already styled via gp-section-header, we just keep it centered */
.trust-section .gp-section-header,
.compare-section .gp-section-header {
  text-align: center;
}

/* Card grids */
.trust-grid,
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

/* Base card style */
.trust-card,
.compare-card {
  border-radius: 24px;
  padding: 1.75rem 1.9rem;
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.35), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

/* Slightly subtler background for the non-highlight comparison cards */
.compare-card {
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.25), rgba(15, 23, 42, 0.98));
}

/* Highlighted GuildPass card */
.compare-card--highlight {
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.5), rgba(15, 23, 42, 0.98));
  border-color: rgba(168, 85, 247, 0.7);
  transform: translateY(-4px);
}

/* Typography */
.trust-card-title,
.compare-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.5rem;
}

.trust-card-text,
.compare-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5f5;
}

/* Pills / labels on compare cards */
.compare-label {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
  background: rgba(148, 163, 184, 0.2);
  margin-bottom: 0.65rem;
}

.compare-label--highlight {
  background: rgba(168, 85, 247, 0.2);
  color: #f9fafb;
}

/* ---------------------------------------------------
   Premium card styling (shared across mid-page sections)
   Inspired by pricing section aesthetic
--------------------------------------------------- */
.gp-card {
  position: relative;
  border-radius: 24px;
  padding: 22px 24px;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.18), transparent 55%),
    rgba(10, 16, 35, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
}

.gp-card + .gp-card {
  /* slightly different gradient on neighbors so the grid feels alive */
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.2), transparent 55%),
    rgba(10, 16, 35, 0.98);
}

/* Card icon badge (for top-left icons like ⚡, 💳) */
.gp-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
  background:
    radial-gradient(circle at 30% 0, #f97316, #fb7185);
  box-shadow: 0 8px 22px rgba(248, 113, 113, 0.55);
}

/* Small glowing pill above titles – matches the vibe of pricing labels */
.gp-card-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #f9fafb;
  border: 1px solid rgba(251, 113, 133, 0.9);
  background:
    radial-gradient(circle at top left, rgba(251, 113, 133, 0.45), transparent 55%),
    rgba(24, 24, 54, 0.96);
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.3),
    0 12px 30px rgba(15, 23, 42, 0.9);
}

/* Typography tweaks inside gp-card to feel consistent with pricing */
.gp-card .feature-title,
.gp-card .step-title,
.gp-card .pain-title,
.gp-card .faq-q,
.gp-card h3 {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  color: #f9fafb;
}

.gp-card .feature-text,
.gp-card .step-text,
.gp-card .pain-text,
.gp-card .faq-a,
.gp-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.8);
}

/* Section-specific adjustments */
.features .features-grid,
.creator-pain .pain-grid,
.how-it-works .steps-grid,
.faq .faq-grid,
.comparison-section .grid,
.trust-section .grid {
  gap: 1.75rem;
}

/* Make step cards feel like a connected 1–2–3 flow */
.step-card.gp-card {
  text-align: left;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f9fafb;
  background:
    radial-gradient(circle at top left, rgba(196, 181, 253, 0.9), rgba(129, 140, 248, 0.6));
  box-shadow: 0 10px 26px rgba(79, 70, 229, 0.6);
}

/* FAQ: convert existing grid items into proper cards */
.faq-item.gp-card {
  text-align: left;
}

.faq-q {
  margin-bottom: 6px;
}

/* Comparison + trust sections: bring them closer to pricing aesthetic */
.trust-section .gp-card,
.comparison-section .gp-card {
  padding: 20px 22px 18px;
  border-radius: 20px;
}

.comparison-section .gp-card:nth-child(3) {
  /* Make the GuildPass column subtly more "featured" */
  box-shadow:
    0 30px 80px rgba(109, 40, 217, 0.9),
    0 0 0 1px rgba(129, 140, 248, 0.65);
}

/* Shared elevated card style */
.card-elevated {
  position: relative;
  border-radius: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background:
    radial-gradient(circle at top left, rgba(129, 140, 248, 0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.25), transparent 60%),
    rgba(10, 16, 35, 0.96);
  box-shadow:
    0 18px 50px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

.card-elevated:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.9);
  box-shadow:
    0 26px 70px rgba(15, 23, 42, 1),
    0 0 0 1px rgba(168, 85, 247, 0.9);
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 6px;
}

.card-body {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(209, 213, 219, 0.9);
}

/* Small pill labels above titles */
.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #fbbf24, #f97316 65%);
  font-size: 11px;
}

/* Grid alignment so these middle sections feel like pricing */
.features .features-grid,
.creator-pain .pain-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 900px) {
  .features .features-grid,
  .creator-pain .pain-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

/* Shared grid layouts for mid-page sections */
.features-grid,
.creator-trust-grid,
.how-grid,
.pain-grid,
.faq-grid,
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 768px) {
  .features-grid,
  .creator-trust-grid,
  .how-grid,
  .pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .compare-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

/* Section spacing to match pricing block rhythm */
.features,
.creator-trust,
.how-it-works,
.creator-pain,
.compare,
.faq {
  padding-top: 80px;
  padding-bottom: 80px;
}

.features .section-header,
.creator-trust .section-header,
.how-it-works .section-header,
.creator-pain .section-header,
.compare .section-header,
.faq .section-header {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ===== Landing layout shell ===== */
.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Wrap each major band like: <section class="gp-section"> */
.gp-section {
  padding: 72px 0;
  border-top: 1px solid rgba(30, 64, 175, 0.35);
}

.gp-section:first-of-type {
  border-top: none;
}

@media (min-width: 1024px) {
  .gp-section {
    padding: 88px 0;
  }
}

/* Section header (used in features, trust, how, etc.) */
.gp-section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  text-align: left;
}

.gp-section-header.centered {
  text-align: center;
  align-items: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(191, 219, 254, 0.9);
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f46e5, #a855f7);
}

.section-title {
  font-size: clamp(2.1rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #e5e7eb;
}

.section-lede {
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(209, 213, 219, 0.86);
}

/* ===========================   GuildPass header & nav (clean)   =========================== */

/* Header background + overall padding */
.gp-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
  padding: 1.2rem 0;
}

/* Inner shell: row layout on desktop */
.gp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

/* Brand: logo + wordmark */
.gp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;              /* tighter logo ↔ GuildPass spacing */
  text-decoration: none;
}

/* Hex lockup logo */
.gp-logo-mark {
  display: inline-block;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("/img/GPlogo.svg");
  border-radius: 12px;
}

/* "GuildPass" text */
.gp-brand-text {
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: -0.3px;
}

/* Nav links between brand and CTA */
.gp-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.gp-nav-links a {
  color: rgba(148, 163, 184, 0.95);
  text-decoration: none;
  transition: color 140ms ease-out;
}

.gp-nav-links a:hover {
  color: rgb(248, 250, 252);
}

/* Dashboard pill in the header */
.gp-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.95rem;
  padding: 0.55rem 1.7rem;
}

.gp-nav-cta.btn-primary {
  font-size: 0.95rem;
  padding: 0.55rem 1.7rem;
}

/* ===========================   Responsive header   =========================== */

/* Single mobile layout breakpoint to avoid conflicting rules */
@media (max-width: 768px) {
  /* Stack the header content and center it */
  .gp-header {
    padding-top: 1.25rem;
    padding-bottom: 0.9rem;
  }

  .gp-header-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0 1.25rem;
  }

  /* Brand: slightly larger, tight logo ↔ text spacing */
  .gp-brand {
    justify-content: center;
    gap: 0.14rem;
  }

  .gp-logo-mark {
    width: 48px;    /* logo a touch bigger on mobile */
    height: 48px;
  }

  .gp-brand-text {
    font-size: 1.7rem;
    line-height: 1.05;
    font-weight: 700;
  }

  /* Center nav links row under brand */
  .gp-nav-links {
    justify-content: center;
    gap: 1.6rem;
    width: 100%;
  }

  .gp-nav-links a {
    font-size: 0.95rem;
  }

  /* Dashboard button: slightly smaller than the wordmark, centered */
  .gp-nav-cta {
    margin-top: 0.4rem;
    padding: 0.6rem 1.55rem;
    font-size: 0.9rem;
    align-self: center;
  }
}
/* ======================= end GuildPass header & nav (clean) ======================= */

/* ===========================
   Footer
   =========================== */
.gp-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
}

.gp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.6rem;
}

.gp-footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gp-footer-brand {
  font-size: 0.8rem;
  color: rgb(148, 163, 184);
}

.gp-footer-note {
  font-size: 0.78rem;
  color: rgba(100, 116, 139, 0.95);
}

.gp-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
}

.gp-footer-links a {
  color: rgb(148, 163, 184);
  text-decoration: none;
}

.gp-footer-links a:hover {
  color: rgb(226, 232, 240);
}

.gp-footer-separator {
  color: rgba(71, 85, 105, 0.9);
}

@media (max-width: 640px) {
  .gp-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* FAQ compact cards */
.card-elevated--compact {
  padding: 16px 18px;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(209, 213, 219, 0.9);
}


.gp-logo-img {
  height: 46px;
  width: auto;
  display: block;
}

/* =============================== */
/*   FINAL HEADER ALIGNMENT FIX   */
/* =============================== */

/* Desktop brand tightening */
.gp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;   /* tighter logo ↔ text */
}

/* Ensure logo & text stay aligned correctly */
.gp-logo-mark {
  width: 42px;
  height: 42px;
  background-size: contain;
}

.gp-brand-text {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}

/* Dashboard button consistent sizing */
.gp-nav-cta.btn-primary {
  padding: 0.45rem 1.5rem !important;
  font-size: 0.95rem !important;
  transform: scale(0.92);
}

/* =============================== */
/* MOBILE ALIGNMENT: 640px & down */
/* =============================== */

@media (max-width: 640px) {

  /* Stack everything cleanly */
  .gp-header-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem; /* tighter overall vertical spacing */
    padding: 1.1rem 0 1.2rem;
  }

  /* SUPER tight logo + text spacing */
  .gp-brand {
    gap: 0.08rem !important;
  }

  .gp-logo-mark {
    width: 38px;
    height: 38px;
  }

  .gp-brand-text {
    font-size: 1.45rem;
    font-weight: 700;
  }

  /* Center the nav links perfectly */
  .gp-nav-links {
    justify-content: center;
    gap: 1.4rem;
  }

  /* Dashboard button centered and proportionate */
  .gp-nav-cta {
    margin-top: 0.5rem;
    align-self: center !important;  /* override stray flex rules */
    padding: 0.6rem 1.4rem !important;
    font-size: 0.9rem !important;
  }

  /* Pull hero section up tighter */
  .hero, .hero-section, .hero-wrapper {
    margin-top: 0.75rem !important;
  }
}

